$(document).ready(function(){ 
	setTimeout("cargarTitulos();", 1);
});

function cargarTitulos(){
	// Open the students.xml file
	$.post("/online/xml.php",{},function(xml){
      	
		$("#antes ul").html($('listado',xml).text());
		$("#ahora").html($('ahora',xml).text());
		
		setTimeout("cargarTitulos();", 10000);
	});
}
