$(document).ready(function(){

	$("#peel").hover(
	    function(){
		    $("#peel img , .msg_block").stop().animate({
				width:  '373px',
				height: '373px'
			}, 500);
		},
		function(){
			$("#peel img").stop().animate({
				width:  '73px',
				height: '73px'
			}, 220);
			$(".msg_block").stop().animate({
				width:  '70px',
				height: '70px'
			}, 200);
		});

});

