// basic show and hide
 	    $(document).ready(function() 
		{                             
			
			// this is for the wines details drop menu
			
			
			//hide on load
    		$('ul#winesDrop').hide();
                        

			// then show
			$('a#winesTopDropLink').mouseover( function() {
    			$('ul#winesDrop').show();
   			});

				$('a#winesTopDropLink').mouseout( function() {
	    			$('ul#winesDrop').hide();
	   			});
	
			$('ul#winesDrop').mouseover( function() {
	    	   	$('ul#winesDrop').show();
	   		});

				$('ul#winesDrop').mouseout( function() {
		    		$('ul#winesDrop').hide();
		   		});
                              
 		});
