$(document).ready(function(){
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '300px', 
				height: '316px'
			}, 300); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '40px', 
				height: '44px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '40px', 
				height: '40px'
			}, 200);
	});	
});
