

		 $(document).ready(function(){
		        var mof = false;
					$('.menuFooterDiv').mouseenter(function() {
							mof = true;
							setTimeout(function() {
								if (mof == true) {
									$('.menuFooterDiv').animate({  
										height: "155px", 
									}, 300 );
								}
							},400);
					  }).mouseleave(function() {
						  	mof = false;
							setTimeout(function() {
								if (mof == false) {
									$('.menuFooterDiv').animate({  
										height: "26px", 
									}, 800 );
								}
							},300);
					  });
					
		    });

		 
