$(document).ready(function(){

	$('.menuGeneral li').mouseenter(function() {

		if ($(this).children('ul').is(":hidden")) {
			$(this).children('ul').slideDown();

		
		}
	});

	 $('.menuGeneral li').mouseleave(function() {


		 if ($(this).children('ul').is(":visible")) {
				$(this).children('ul').slideUp();

				

		}
	});


});


