$(document).ready(function(){
//Page Flip on hover
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '470px', 
				height: '455px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '80px', 
				height: '86px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '80px', 
				height: '83px'
			}, 200);
	});
});
