function showAlert(){
$("div#alert").slideDown("slow");
setTimeout("closeAlert()", 3000);
}


$(document).ready(function(){
$('.postReply').click(function(){
if ($('#post').is(":hidden"))
{
$('#post').slideDown("fast");
} else {
$('#post').slideUp("fast");
}
return false;
});
});


function closeAlert() { 
$("div#alert").slideUp("slow");
}

