//////////////////////////////////////////////////////////////////////////////////////////////////
/*  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#menu li').each(function(el){
            el.addEvent('mouseover', function(){ el.addClass('sfhover');});
            el.addEvent('mouseout',  function(){ el.removeClass('sfhover');});
        });
    });
}
