$(function(){
	$(".show_menu").click(function() {
		$(".show_menu").hide();
		$(".megamenu").animate({"top": "15px"}, 1500);
	});
});

