if (document.images) {

	var homeOn = new Image();
      homeOn.src = "icons/home_on.gif";
      var homeOff = new Image();
      homeOff.src = "icons/home_off.gif";

}

function changeIn(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "On.src");
}

function changeOut(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "Off.src");
}


document.write('<a onmouseover="changeIn(\'home\');" onmouseout="changeOut(\'home\');" href="home.html"><img src="icons/home_off.gif" name="home" border=0 width="96" height="28" vspace="1"></a>')

