$(function(){
	
	$('div#body-content h1, #body-content').hide();
	$('div#body-content h1').fadeIn('slow');
	
	$('#body-content').slideDown(600);
	
	$('#chat2me').click(function(){
	
		$('.message').fadeIn();
	
	});
	
});