//////////////////////////////////////////////////////////////////////////////////////////////////
/*  sLmenu v1.0 - 4:40 PM 13/03/2007
//////////////////////////////////////////////////////////////////////////////////////////////////
	@author: sons of suckerfish
	@description: replaces .htc file (hack for IE no :hover use)
	@comment: rewriten by 3oxa match mootools
*/
//////////////////////////////////////////////////////////////////////////////////////////////////
// class - no editing below this line
//////////////////////////////////////////////////////////////////////////////////////////////////
if (window.ie){
    window.addEvent('load',function(){
        $$('ul#dropdown li').each(function(el){
        	
            el.addEvent('mouseover', function(){ el.addClass('sfhover'); el.setStyle('color','#F00')});
            el.addEvent('mouseout',  function(){ el.removeClass('sfhover'); el.setStyle('color','#0F0')});
        });
    });
}
