$(document).ready(function(){	
	
	$('#menuItem1').mouseenter(function(){
		$('#menuItem1').stop().animate({width:"220px", height:"340px", marginLeft:"0px"  }, 200);
		$('#menuItem2').stop().animate({width:"190px", height:"300px", marginLeft:"37px" }, 200);
		$('#menuItem3').stop().animate({width:"170px", height:"260px", marginLeft:"50px" }, 200);
		$('#menuItem4').stop().animate({width:"150px", height:"240px", marginLeft:"15px" }, 200);
		$('#menuItem5').stop().animate({width:"130px", height:"215px", marginLeft:"-25px"}, 200);
	});

	$('#menuItem2').mouseenter(function(){
		$('#menuItem1').stop().animate({width:"190px", height:"300px", marginLeft:"0px"  }, 200);
		$('#menuItem2').stop().animate({width:"220px", height:"340px", marginLeft:"7px"  }, 200);
		$('#menuItem3').stop().animate({width:"190px", height:"300px", marginLeft:"44px" }, 200);
		$('#menuItem4').stop().animate({width:"170px", height:"260px", marginLeft:"27px" }, 200);
		$('#menuItem5').stop().animate({width:"150px", height:"240px", marginLeft:"2px"  }, 200);
	});

	$('#menuItem3').mouseenter(function(){
		$('#menuItem1').stop().animate({width:"170px", height:"260px", marginLeft:"0px"  }, 200);
		$('#menuItem2').stop().animate({width:"190px", height:"300px", marginLeft:"0px"  }, 200);
		$('#menuItem3').stop().animate({width:"220px", height:"340px", marginLeft:"0px"  }, 200);
		$('#menuItem4').stop().animate({width:"190px", height:"300px", marginLeft:"0px"  }, 200);
		$('#menuItem5').stop().animate({width:"170px", height:"260px", marginLeft:"0px"  }, 200);
	});

	$('#menuItem4').mouseenter(function(){
		$('#menuItem1').stop().animate({width:"150px", height:"240px", marginLeft:"0px"  }, 200);
		$('#menuItem2').stop().animate({width:"170px", height:"260px", marginLeft:"-25px"}, 200);
		$('#menuItem3').stop().animate({width:"190px", height:"300px", marginLeft:"-32px"}, 200);
		$('#menuItem4').stop().animate({width:"220px", height:"320px", marginLeft:"-55px"}, 200);
		$('#menuItem5').stop().animate({width:"190px", height:"300px", marginLeft:"-38px"}, 200);
	});

	$('#menuItem5').mouseenter(function(){
		$('#menuItem1').stop().animate({width:"130px", height:"215px", marginLeft:"0px"   }, 200);
		$('#menuItem2').stop().animate({width:"150px", height:"240px", marginLeft:"-40px" }, 200);
		$('#menuItem3').stop().animate({width:"170px", height:"260px", marginLeft:"-65px" }, 200);
		$('#menuItem4').stop().animate({width:"190px", height:"300px", marginLeft:"-102px"}, 200);
		$('#menuItem5').stop().animate({width:"220px", height:"320px", marginLeft:"-115px"}, 200);
	});
});