$(document).ready(function() {
	$('textarea').autogrow();
	$('a[rel*=facebox]').facebox();
	$('#sidebar a[rel=cal]').live('click', function() {
		$('#events').load($(this).attr('href'));
		return false;
	});
	setTimeout(function() {
		$('#flashMessage').hide('blind', null, null, function() {
			$('#flashMessage').remove();
		});
	}, 3000);
});