//Son of Suckerfish Dropdowns

sfHover = function()
{
	var allLists = document.getElementsByTagName("UL"); 
 	for (var j = 0; j < allLists.length; j++)
 	{
 		if(allLists[j].className == 'navmenu')
 		{
			var sfEls = allLists[j].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"), "");
				}
			}
 		}
 	}
}

if (window.attachEvent) window.attachEvent("onload", sfHover);