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

