$(document).ready(function(){
  $("#pageflip").hover(function() {
		  $("#pageflip img, , .msg_block").stop()
			 .animate({
  				width: '250px', 
		  		height: '250px'
		  }, 500); 
  } , function() {
				$("#pageflip img").stop() 
				.animate({
						width: '43px', 
						height: '55px'
				}, 220);
				$(".msg_block").stop() 
				.animate({
						width: '40px', 
						height: '66px'
				}, 200);
	 });
});