$(document).ready(function(){
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 900); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '67px', 
				height: '67px'
			}, 700);
		$(".msg_block").stop() 
			.animate({
				width: '67px', 
				height: '65px'
			}, 700);
	});
});
