$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img").stop()
			.animate({
				width: '396px',
				height: '427px'
			}, 500);
                $(".msg_block").stop()
			.animate({
				width: '396px',
				height: '427px'
			}, 600);
		} , function() {
		$("#pageflip img").stop()
			.animate({
				width: '125px',
				height: '135px'
			}, 220);
		$(".msg_block").stop()
			.animate({
				width: '110px',
				height: '115px'
			}, 190);
	});


});