$(document).ready(function(){
    $("#the_universe").hide();
    $("#blog").ajaxError(function(){
        $("#the_universe").fadeIn();
        $(this).append("<p>Blog could not be loaded, thanks to facebook.</p>");
    });
    $("#blog").load('/blog/', function(data){
        $("#the_universe").fadeIn();
    });
});
