$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '200px', 
				height: '208px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '100px', 
				height: '104px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '100px', 
				height: '100px'
			}, 200);
	});
});

