$(document).ready(function(){
	
	$('.menuhit').mouseover(function(){ 
		$(this).closest('td').find('.over').stop().animate({ width: "63px", height: "47px", marginLeft: "0px", marginTop: "0px" }, 200 ) 
		});
	$('.menuhit').mouseout(function(){ 
		$(this).closest('td').find('.over').stop().animate({ width: "0px", height: "0px", marginLeft: "63px", marginTop: "47px"  }, 200 ) 
		});

	$('.button_f_area').mouseover(function(){ 
		$(this).find('.over_f').stop().animate({ width: "38px", height: "28px", marginLeft: "0px", marginTop: "0px" }, 200 ) 
		});
	$('.button_f_area').mouseout(function(){ 
		$(this).find('.over_f').stop().animate({ width: "0px", height: "0px", marginLeft: "38px", marginTop: "28px"  }, 200 ) 
		});

});
