$(document).ready(function(){
	$("ul#navbar li").hover(
		//function() { $("ul", this).fadeIn("fast"); $(this).addClass("shover"); },
		//function() { $("ul", this).hide(); $(this).removeClass("shover"); }
		function() { $(this).addClass("shover"); },
		function() { $(this).removeClass("shover"); }
	);
});
