// JavaScript Document
<!--

if (document.images) {
  pvi1on = new Image();
  pvi1on.src = base_url + "img/home2.jpg";
  pvi2on = new Image();
  pvi2on.src = base_url + "img/products2.jpg";
  pvi3on = new Image();
  pvi3on.src = base_url + "img/testimonials2.jpg";
  pvi4on = new Image();
  pvi4on.src = base_url + "img/faq2.jpg";
  pvi5on = new Image();
  pvi5on.src = base_url + "img/download2.jpg";
  pvi6on = new Image();
  pvi6on.src = base_url + "img/about2.jpg";
  pvi7on = new Image();
  pvi7on.src = base_url + "img/contact2.jpg";
 
  pvi1off = new Image();
  pvi1off.src = base_url + "img/home1.jpg";
  pvi2off = new Image();
  pvi2off.src = base_url + "img/products1.jpg";
  pvi3off = new Image();
  pvi3off.src = base_url + "img/testimonials1.jpg";
  pvi4off = new Image();
  pvi4off.src = base_url + "img/faq1.jpg";
  pvi5off = new Image();
  pvi5off.src = base_url + "img/download1.jpg";
  pvi6off = new Image();
  pvi6off.src = base_url + "img/about1.jpg";
  pvi7off = new Image();
  pvi7off.src = base_url + "img/contact1.jpg";
   
  itemon = new Image();
  itemon.src = base_url + "img/prod_item2.gif";
  useon = new Image();
  useon.src = base_url + "img/prod_use2.gif";
  categoryon = new Image();
  categoryon.src = base_url + "img/prod_cat2.gif";
  materialon = new Image();
  materialon.src = base_url + "img/prod_mat2.gif";
  
  itemoff = new Image();
  itemoff.src = base_url + "img/prod_item1.gif";
  useoff = new Image();
  useoff.src = base_url + "img/prod_use1.gif";
  categoryoff = new Image();
  categoryoff.src = base_url + "img/prod_cat1.gif";
  materialoff = new Image();
  materialoff.src = base_url + "img/prod_mat1.gif";
 
  faq1on = new Image();
  faq1on.src = base_url + "img/faq/brackle_kitchen_coach2.jpg";
  faq2on = new Image();
  faq2on.src = base_url + "img/faq/brackle_manufacturing2.jpg";
  faq3on = new Image();
  faq3on.src = base_url + "img/faq/bright_rampman2.jpg";
  faq4on = new Image();
  faq4on.src = base_url + "img/faq/bright_recreational2.jpg";
  
  faq1off = new Image();
  faq1off.src = base_url + "img/faq/brackle_kitchen_coach1.jpg";
  faq2off = new Image();
  faq2off.src = base_url + "img/faq/brackle_manufacturing1.jpg";
  faq3off = new Image();
  faq3off.src = base_url + "img/faq/bright_rampman1.jpg";
  faq4off = new Image();
  faq4off.src = base_url + "img/faq/bright_recreational1.jpg";
 
}


function jasOn(imageName) {
  if (document.images) {
  	document[imageName].src = eval(imageName + "on.src");
  }
}
function jasOff(imageName, base_url) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->