function changeHomePage() 
	{
		var location = document.getElementById('language').value;
		window.location = ('http://www.intervoice.com/'+location);
	}
	function navhighlight(id)
	{
		document.getElementById(id).style.color = "#FFFFFF";
	}

	function navdimdown(id)
	{
		document.getElementById(id).style.color = "#666666";
	}
	function navdimdown_active (id) {
		document.getElementById(id).style.color = "#CC3300";
	}
	var validate = new Array(
	'checkAlphaNum("search")'
	);


navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
			/* TURNED OFF BY REQUEST
			s = document.getElementsByTagName("SELECT");
			for(var f=0; f<s.length; f++)
			{
				s[f].style.visibility='hidden';	
			}
			*/
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
			/* TURNED OFF BY REQUEST
			s = document.getElementsByTagName("SELECT");
			for(var f=0; f<s.length; f++)
			{
				s[f].style.visibility='visible';
			}
			*/
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);