$(document).ready(function(){

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 700); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '154px', 
				height: '156px'
			}, 750);
		$(".msg_block").stop() 
			.animate({
				width: '150px', 
				height: '150px'
			}, 700);
	});

	
});
