$(document).ready(function(){
	
	
	if ($('textarea#content')) {
		$('textarea#content').focus(function(){
			$('.hiddenPost').slideDown();
			$(this).attr('rows','5');
		});
	}

	
	$('#oldTitle').val($('#header_title').html());
	setInterval(updateMessage, 20000);
	
});

function updateMessage() {

	$.get('includes/ajax/updateMessage.php?time=hamster', function(data) {
		$('#header_title').html(data);
	});
	
	$.ajax({
		type: "POST",
		url: "includes/ajax/updateMessage.php",
		cache: false,
		data: "time="+$('#time_now').val(),
		success: function(html){
			if (html > 0) {
			$("#header_title").html('('+html+') '+$('#oldTitle').val());
			} else {
			$("#header_title").html($('#oldTitle').val());
			}
		}
	});
	
}
