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