// JavaScript Document
<!--//
	function menu_hover()
		{
			var _1=document.getElementById("nav");
			var _2=document.getElementById("footerNav");
			if(_1)
			{
				var el=_1.getElementsByTagName("LI");
				for(var i=0,j=el.length;i<j;i++)
				{
					el[i].onmouseover=function()
						{
							this.className+=" over";
						};
					el[i].onmouseout=function()
						{
							this.className=this.className.replace(" over","");
						};
				}
			}
			if(_2)
			{
				var el=_2.getElementsByTagName("LI");
				for(var i=0,j=el.length;i<j;i++)
				{
					el[i].onmouseover=function()
						{
							this.className+=" over";
						};
					el[i].onmouseout=function()
						{
							this.className=this.className.replace(" over","");
						};
				}
			}
		}
		if(window.attachEvent)
		{
			window.attachEvent("onload",menu_hover);
		}
	//-->