	if (document.images)
	{
		homeoff = new Image(42, 15);
		homeoff.src = "/images/home.gif";
		homeon = new Image(42, 15);
		homeon.src = "/images/home-over.gif";
		
		aboutoff = new Image(57, 15);
		aboutoff.src = "/images/about.gif";
		abouton = new Image(57, 15);
		abouton.src = "/images/about-over.gif";
		
		inspirationoff = new Image(74, 15);
		inspirationoff.src = "/images/inspiration.gif";
		inspirationon = new Image(74, 15);
		inspirationon.src = "/images/inspiration-over.gif";
		
		softwareoff = new Image(65, 15);
		softwareoff.src = "/images/software.gif";
		softwareon = new Image(65, 15);
		softwareon.src = "/images/software-over.gif";
		
		photosoff = new Image(54, 15);
		photosoff.src = "/images/photos.gif";
		photoson = new Image(54, 15);
		photoson.src = "/images/photos-over.gif";
		
		myblogoff = new Image(57, 15);
		myblogoff.src = "/images/myblog.gif";
		myblogon = new Image(57, 15);
		myblogon.src = "/images/myblog-over.gif";
	}


function ImageOver(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function ImageOut(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

