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

window.onload = function()  
			{
				$(".shadow").dropShadow({left: 0, top: 0, opacity: 0.3, color: "#000", blur: 3});
			}
