$(document).ready(function(){

//Page Flip on hover

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

	
});
