// JavaScript Document

function menuhover(menuId, ImagetoHighlight)
{
	document.getElementById(menuId).src=ImagetoHighlight;
}

function preloadImage(imagePath)
{
  var newImage = new Image();
  newImage.src = imagePath;
}
