$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img").stop()
			.animate({
				width: '430px', 
				height: '430px'
			}, 450);
		$("#pageflip .msg_block").stop()
			.animate({
				width: '350px', 
				height: '400px'
			}, 500); 
			 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '70px', 
				height: '70px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});

	
});
