$(document).ready(function(){
			// $("#FabricsMenu, #FunMenu").hide();

			// SHOW FABRICS MENU ON ROLLOVER
			$("#Fabrics").mouseenter(function(){
				$("#FabricsMenu").show(0);
				return false; });

					// HIDE FABRICS MENU ON ROLLOUT OR ROLLOVER OF OTHER MENU ITEM
					$("#FabricsMenu").mouseleave(function(){
						$(this).hide(0);
						return false; });
					$("#nav li a").not("#Fabrics").mouseenter(function(){
						$("#FabricsMenu").hide(0);
						return false; });
					$("#Home").mouseenter(function(){
						$("#FabricsMenu").hide(0);
						return false;
			});


			$("#Fun").mouseenter(function(){
				$("#FunMenu").show(0);
				return false; });

					$("#FunMenu").mouseleave(function(){
						$(this).hide(0);
						return false; });
					$("#nav li a").not("#Fun").mouseenter(function(){
						$("#FunMenu").hide(0);
						return false;
			});

			$("body").mouseleave(function(){
				$("#FabricsMenu").hide(0);
				return false;
			});
});
