// Main Menu
$(document).ready(function(){
	$("#nav-one li").unbind();
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("slow"); }, 
		function() { } 
	);
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}
});
// Sub Menu
$(document).ready(function(){
	$("#product-info").hide();
	$("#nav-two li").hover(
		function(){ 
			var a = $(this).find(".product-desc").html();
			$("#product-info").html(a).show();
		}, function(){$("#product-info").hide();}
	);
	$("#product-info").hover(
		function(){ 
			$(this).show();
		}, function(){$(this).hide();}
	);
});		
$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};