function sfTopHover() {
	
 	$('#topnav li').bind('mouseenter', function(f){
        $(this).addClass('sfTopHover');		
    });

 	$('#topnav li').bind('mouseleave', function(f){
        $(this).removeClass('sfTopHover');		
    });

 	$('#topnav2 li').bind('mouseenter', function(g){
        $(this).addClass('sfTopHover');	
    });

 	$('#topnav2 li').bind('mouseleave', function(g){
        $(this).removeClass('sfTopHover');	
    });

}

if (window.attachEvent) window.attachEvent('onload', sfTopHover);

