$(document).ready(function(){


//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '185px', 
				height: '202px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '123px', 
				height: '135px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '123px', 
				height: '130px'
			}, 200);
	});
});
