$(document).ready(function() {
	$("#cornerflip").hover(function() { //On hover...
		$("#cornerflip img").stop()
			.animate({ //Animate and expand the image and the msg_block (Width + height)
				width: '305px',
				height: '315px'
			}, 500);
		$(".pub").stop()
			.animate({ //Animate and expand the image and the msg_block (Width + height)
				width: '307px',
				height: '319px'
			}, 500);
		} , function() {
		$("#cornerflip img").stop() //On hover out, go back to original size 50x52
			.animate({
				width: '100px',
				height: '105px'
			}, 220);
		$(".pub").stop() //On hover out, go back to original size 50x50
			.animate({
				width: '100px',
				height: '100px'
			}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
	});
});
