$('document').ready(function(){
$( "#body" ).load( "/templates/home.html", function(){$("#load").fadeOut("slow");
$.get("/info", function( data ) {
var text = "
"
$.each(data, function(i, obj) {
text += "
"+i+"
"+obj+"
";
});
text += "
"
$( "#info" ).html( text );
$("#load").fadeOut("slow");
});
});
})