$(document).ready(function(){

//Page Flip on hover

	$("#pagecurl").hover(function() {
		$("#pagecurl img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pagecurl img").stop() 
			.animate({
				width: '150px', 
				height: '152px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '150px', 
				height: '145px'
			}, 200);
	});

	
});

