// JavaScript Document
<!--

if (document.images) {
  aww1on = new Image();
  aww1on.src = "img/home2.gif";
  aww2on = new Image();
  aww2on.src = "img/wills2.gif";
  aww3on = new Image();
  aww3on.src = "img/news2.jpg";
  aww4on = new Image();
  aww4on.src = "img/testimonials2.gif";
  aww5on = new Image();
  aww5on.src = "img/contact2.gif";
  aww6on = new Image();
  aww6on.src = "img/spanish2.jpg";
  aww7on = new Image();
  aww7on.src = "img/trusts2.gif";

  
  aww1off = new Image();
  aww1off.src = "img/home1.gif";
  aww2off = new Image();
  aww2off.src = "img/wills1.gif";
  aww3off = new Image();
  aww3off.src = "img/news1.jpg";
  aww4off = new Image();
  aww4off.src = "img/testimonials1.gif";
  aww5off = new Image();
  aww5off.src = "img/contact1.gif";
  aww6off = new Image();
  aww6off.src = "img/spanish1.jpg";
  aww7off = new Image();
  aww7off.src = "img/trusts.gif";

}


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");
  }
}

// -->