$(document).ready(function(){		
	$("#dropMenu li").hover(
		function(){ $("ul", this).show(); },
		function() {}
	);
	// fadeIn(450)
	if (document.all) {
		$("#dropMenu li").hoverClass ("sfHover");
	}
});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};
$(document).ready(function() {	
	if($.browser.msie){
		$("#dropMenu li").each(function() {
			$("a", this).css('width', $(this).width() + 'px');
		});	
	}			
});