$(function() {


	 $(".menu li").hover(function(){
									  
			if($(this).children().is("ul")) { 			  
				$(this).children("ul").show();
				return false;
			}
						   
         },
		 function(){
			 
			 $(this).children("ul").hide();	 
	 
		 });							   
							   
							   
		$('#gallery a.gallery').lightBox();


});
 
