// JavaScript to force hover menus in IE6 

document.getElementsByClassName=function(D)
	{
		var F=new Array();
		var E=document.getElementsByTagName("*")
	;
		for(var B=0;B<E.length;B++)
		{
			if(E[B].className.indexOf(" ")>=0)
			{
				var C=E[B].className.split(" ")
			;
				for(var A=0;A<C.length;A++)
				{
					if(C[A]==D)
					{
						F.push(E[B])
					}
				}
			}
			else
			{
				if(E[B].className==D)
				{
					F.push(E[B])
				}
			}
		}
		return F
	}
;

function sfHover()
	{
		var B=document.getElementsByClassName("ie6hover")
	;
		for(var A=0;A<B.length;A++)
		{
			B[A].onmouseover=function()
			{
				this.className+=" hover"
			}
		;
			B[A].onmouseout=function()
			{
				this.className=this.className.replace(new RegExp(" hover\\b"),"")
			}
		}
	}
	
if(window.attachEvent)
	{
		window.attachEvent("onload",sfHover)
	}
;
