$(document).ready(function(){

	$('a#closeblurb').click(function() {
		$('#blurb').hide('slow');
		return false;
	});
	
});