function hover(ID)
{
	var theImage = document.getElementById(ID);
	
	if(theImage != null)
	{
		if(theImage.src.indexOf("_On") == -1)
		{
			theImage.src = theImage.src.replace(/_Off/g, "_On");
		}
		else
		{
			theImage.src = theImage.src.replace(/_On/g, "_Off");
		}
	}
}

function GoToSelectValue()
{
 	var stateSelect = document.getElementById("stateSelect");
 	//alert(stateSelect.options[stateSelect.selectedIndex].text.replace(/ /g, "-"));
 	window.location = "/?q=content/" + stateSelect.options[stateSelect.selectedIndex].text.replace(/ /g, "-")
}
