$(function(){
  $(".menu_img").mouseover(
    function(){
	$("#menu"+$(this).attr("tab")).show();
	var offset = $(this).offset();

	$("#menu"+$(this).attr("tab")).css('top','497px');
	$("#menu"+$(this).attr("tab")).css('left',offset .left+'px');



    });
$(".links").hover(function(){},function(){
	$(this).hide();
	});
  
});
