$(document).ready(function() {
	
	$('#notes a.close-link, *').live('click', function(e) {
		$('#notes').fadeOut(function() {
			$('#notes').remove();
		});
		
		return false;
	});
		
});