$(document).ready(function(){
 
//Page Flip on hover
 
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '75px', 
				height: '76px'
			}, 500);
		$(".msg_block").stop() 
			.animate({
				width: '75px', 
				height: '75px'
			}, 500);
	});
});
