//MouseOver function
function onImage(imgName)
{
        if (document.images)
        {   
                document.images[imgName].src = "/images/pics/home/" + imgName + "2.gif";
        }
}


// if IE preloadimages. 
// Netscape doesnt like displaying one time through animations once preloaded
function preloadimages()
{
	if (document.images && document.all)
		{
		  var work = new Image();
		  work.src = "/images/pics/home/work2.gif";
		  var athome = new Image();
		  athome.src = "/images/pics/home/athome2.gif";
		  var branch = new Image();
		  branch.src = "/images/pics/home/branch2.gif";
		  var floorlaying = new Image();
		  floorlaying.src = "/images/pics/home/floorlaying2.gif";
		  var newhome = new Image();
		  newhome.src = "/images/pics/home/newhome2.gif";
		  var thestory = new Image();
		  thestory.src = "/images/pics/home/thestory2.gif";
	}
}

