// JScript source code
if (!window.XMLHttpRequest)    //this checks if the browser is IE 6.0
{  
	sfHover = function() 
	{
		/*Makes the menus pop up correctly*/
		var sfEls = document.getElementById("qm0").getElementsByTagName("li");
		for (var i=0; i<sfEls.length; i++)
		{
			sfEls[i].onmouseover=function() 
			{
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function()
			{
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
		/*Shrinks the menu*/
		var sfEls = document.getElementById("qm0").getElementsByTagName("a");
		for (var i=0; i<sfEls.length; i++) 
		{
			sfEls[i].className = " shrink";
		}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);
	//if (window.attachEvent) window.attachEvent("onload", shrink);
}
