$(document).ready(function(){
  /*
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	
if (document.all) { */
		$("#nav li").hoverClass ("sfHover");
//	}
});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $("ul", this).doTimeout ("menuTimeout"); $(this).doTimeout("menuTimeout"); $("ul", this).hide().fadeIn("fast"); $(this).addClass(c);  },
			function() { $("ul", this).doTimeout ("menuTimeout", 500, function() { $(this).effect("blind", {}, "fast"); }, true); $(this).doTimeout ("menuTimeout", 600, function() { $(this).removeClass(c) }, true); }
		);
	});
};  
