$(document).ready(function(){
$("#pagecurl").hover(function() { //On hover...
	$("#pagecurl img , #curlOffer").stop()
		.animate({ //Animate and expand the image and the msg_block (Width + height)
			width: '332px',
			height: '340px'
		}, 500);
	} , function() {
	$("#pagecurl img").stop() //On hover out, go back to original size 50x52
		.animate({
			width: '68px',
			height: '70px'
		}, 220);
	$("#curlOffer").stop() //On hover out, go back to original size 50x50
		.animate({
			width: '67px',
			height: '67px'
		}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
});
});