/*
    Begin Drop Down Menu javascript
*/

sfHover = function()
{
    if (document.getElementById("horizontal"))
    {
      	var sfElsH = document.getElementById("horizontal").getElementsByTagName("LI");
      	
        for (var i = 0; i < sfElsH.length; i++)
        {
        		sfElsH[i].onmouseover = function()
            {
        			 this.className += " sfhover";
        		}
        		
        		sfElsH[i].onmouseout = function()
            {
        			 this.className = this.className.replace(new RegExp(" sfhover\\b"), "");
        		}
      	}
  	}
  	else
    {
        //alert('Can not find H menu');
    }
}

if (window.attachEvent) window.attachEvent("onload", sfHover);

/*
    End Drop Down Menu javascript
*/
