jQuery(document).ready(function(){
	jQuery("#nav > li").hover(
        function(){
        	jQuery("div.drop", this).fadeIn("fast");
		}, 
        function() { $("div.drop").hide(); } 
    );
    if (document.all) {
    	jQuery("#nav > li").hoverClass ("sfHover");
    }
});

jQuery.fn.hoverClass = function(c) {
    return this.each(function(){
    	jQuery(this).hover( 
            function() { jQuery(this).addClass(c);  },
            function() { jQuery(this).removeClass(c); }
        );
    });
}; 