
	sfHover = function()
	{

		var ssfEls = document.getElementById("mn").getElementsByTagName("LI");

		for (var i=0; i<ssfEls.length; i++)
		{

			ssfEls[i].onmouseover=function()
			{
			this.className+=" over";
			}

			ssfEls[i].onmouseout=function()
			{
			this.className=this.className.replace(new RegExp(" over\\b"), "");
			}

		}

	}

	if (window.attachEvent) window.attachEvent("onload", sfHover);

