function hover(ID)
{
	var theImage = document.getElementById(ID);
	
	if(theImage != null)
	{
		if(theImage.src.indexOf("_On") == -1)
		{
			if(theImage.className == "active")
				return;
			else
				theImage.src = theImage.src.replace(/_Off/g, "_On");
		}
		else
		{
			if(theImage.className == "active")
				return;
			else
				theImage.src = theImage.src.replace(/_On/g, "_Off");
		}
	}
}

function changeImage(otherImage)
{
	var theImage = document.getElementById('homePageImage');
	theImage.src =  "Images/HomePageImage" + otherImage + ".jpg"
}
