	  $(document).ready(function(){
	  		$("#nav-two li ul").fadeOut("fast");
	  		
			$("#nav-two li").hover(
				function(){ $("ul", this).fadeIn("fast"); }, 
				function(){ $("ul", this).fadeOut("fast"); } 
			);
	  	if (document.all) {
				$("#nav-two li").hoverClass("sfHover");
			}
	  });
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
				
				
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	  
