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

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


