$(document).ready(function(){
	
	$('body').append($('<div id="update"><div id="modal"><h2>Thanks!</h2><p>Carols in the City 2009 was a great event and you can find out more about it on this site as well as seeing pictures and video. This site will be updated in the Autumn with full details of this year\'s event which takes place on Saturday 11 December 2010.</p><p class="close">Close</p></div></div>'));
	$('#update').fadeIn('slow');
	$('body').css('overflow','hidden');
	
	$('.close').click(function(){
		$('#update').fadeOut('slow');
		$('body').css('overflow','auto');
	});

});
