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