<!--//--><![CDATA[//><!--

sfHover = function()
    {
       var sfEls = document.getElementById("top_inner").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);
	
	if (window.attachEvent)
		window.attachEvent("onload", sfHover)
	else
		window.onload=sfHover;
	
	
/*window.addEvent('domready', function(){
	$('drop_down_menu').getElements('li.menu').each( function( elem ){
		var list = elem.getElement('ul.links');
		var myFx = new Fx.Slide(list).hide();
		elem.addEvents({
			'mouseenter' : function(){
				myFx.cancel();
				myFx.slideIn();
			},
			'mouseleave' : function(){
				myFx.cancel();
				myFx.slideOut();
			}
		});
	})
});*/

//--><!]]>