$(document).ready(function(){
	
	// Menu
	$("#navigation li").hover(
	  function () {
	    $(this).stop(true,true).animate( { paddingTop: "0px" }, 300 );
			$(this).children('.more_quick').show();
	  }, 
	  function () {
			$(this).stop(true,true).animate( { paddingTop: "11px" }, 300 );
			$(this).children('.more_quick').fadeOut();
	  }
	);

});

