$(document).ready(function(){
		$("#nav li").hover(
			function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
		$("#nav2 li").hover(
			function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
			if (document.all) {
			$("#nav li").hoverClass ("sfHover");
			$("#nav2 li").hoverClass ("sfHover2");
		}
  });
  
	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
		function setStyle() {
		document.getElementById("#nav").style.zIndex = "5000";
		}
	};