$(document).ready(function(){


	$("#pageflip").hover(function() { //On hover...
		$("#pageflip img").stop()
			.animate({ //Animate and expand the paper fold (Width + height)
				width: '360px',
				height: '370px'
			}, 400);
		$(".msg_block").stop()
			.animate({ //Animate and expand the background image (Width + height)
				width: '360px',
				height: '360px'
			}, 400);			
		} , function() {
		$("#pageflip img").stop() //On hover out, go back to original paper fold size 50x52
			.animate({
				width: '60px',
				height: '60px'
			}, 520);
		$(".msg_block").stop() //On hover out, go back to original background size 50x50
			.animate({
				width: '55px',
				height: '53px'
			}, 400); //Note this one retracts a bit faster (to prevent glitching in IE)
	});

});
