
$(document).ready
(
	function()
	{
		$("ul.topnav li").hover   // hover over mens or womens
		(
			function()
			{ 
				$(this).find("ul.subnav").stop(true, true).slideDown('fast').show(); //Drop down the subnav on click(on hover)
				//$(this).find("ul.subnav").show();
			},

			function ()
			{	
				$(this).find("ul.subnav").stop(true, true).slideUp('slow');
				//$(this).find("ul.subnav").hide();
			}
		);
	}
);





