function reloader() {
    $.ajax({
        url: "latest.php",
        type: "GET",
        success: function(r){
                $("#latestpost").fadeOut(300, function() {
                $("#latestpost").html(r); });
                $("#latestpost").fadeIn();
        }
    });
}
$(document).ready(function(){
        interval = setInterval(reloader, 10000);
});
