//Make Logo clickable.
$('#logo').click(function(){window.location = '/'});

//Fadeout .message and .error div.
if($('.message')){setTimeout("$('.message').fadeOut('slow')",2500);};
if($('.error')){setTimeout("$('.error').fadeOut('slow')",2500);};

//Show or Hide forum post controls.
$('.post > .controls').hide();
$('.post').hover(function(){$(this).children('.controls').fadeIn()},function(){$(this).children('.controls').hide()})

























