// JavaScript Document
<!--

if (document.images) {
  hart1on = new Image();
  hart1on.src = "img/home2.jpg";
  hart2on = new Image();
  hart2on.src = "img/about2.jpg";
  hart3on = new Image();
  hart3on.src = "img/contact2.jpg";
  hart4on = new Image();
  hart4on.src = "img/feedback2.jpg";
  hart5on = new Image();
  hart5on.src = "img/testimonials2.jpg";
  
  hart1off = new Image();
  hart1off.src = "img/home1.jpg";
  hart2off = new Image();
  hart2off.src = "img/about1.jpg";
  hart3off = new Image();
  hart3off.src = "img/contact1.jpg";  
  hart4off = new Image();
  hart4off.src = "img/feedback1.jpg";  
  hart5off = new Image();
  hart5off.src = "img/testimonials1.jpg";  
}


function jasOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}
function jasOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->