function sfHover ( objID )
{
	var sfEls = document.getElementById( objID ).getElementsByTagName( "LI" );
	for (var i=0; i<sfEls.length; i++)
	{
		/*if ( !browser.isMac && ( browser.isIE55 || browser.isIE6x ))*/
		if ( true )
		{
			sfEls[i].onmouseover = function()
			{
				this.className+=" sfhover";
				var ieUL = this.getElementsByTagName( "UL" )[0];
				if ( ieUL )
				{
					var ieMat = document.createElement( "IFRAME" );
					ieMat.src = "javascript:false";
					ieMat.style.width = ieUL.offsetWidth + "px";
					ieMat.style.height = ieUL.offsetHeight + "px";
					ieMat.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
					ieUL.insertBefore( ieMat, ieUL.firstChild );
					ieMat.style.zIndex = "-1";
				}
			}
			sfEls[i].onmouseout = function()
			{
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				var ieUL = this.getElementsByTagName('ul')[0];
				if (ieUL)
				{
					//ieUL.removeChild( ieUL.firstChild );
				}
			}
		}
		else
		{
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
}


/* Hier kommen Funktionen & Funktionalitäten, die ausgeführt werden, sobald DOM geladen ist */


