$(document).ready(function() {
	$("#page-curl").hover(function() { //On hover...
		$("#page-curl img").stop()
			.animate({ //Animate and expand the image and the msg_block (Width + height)
				width: '207px',
				height: '219px'
			}, 500);
		$(".msg_block").stop()
			.animate({ //Animate and expand the image and the msg_block (Width + height)
				width: '175px',
				height: '182px'
			}, 490);
		} , function() {
		$("#page-curl img").stop() //On hover out, go back to original size 50x52
			.animate({
				width: '60px',
				height: '62px'
			}, 220);
		$(".msg_block").stop() //On hover out, go back to original size 50x50
			.animate({
				width: '50px',
				height: '52px'
			}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
	});
});