$(document).ready(function(){
//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop() //Animate and expand the image and the msg_block (Width + height)
			.animate({
				width: '200px', 
				height: '208px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() //On hover out, go back to original size 50x52
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() //On hover out, go back to original size 50x50
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});
	
});