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