var currentPersona = 2;


$(document).ready(function(){
	$("#row1").show();
	showNextTable()
	
	window.setInterval('showNextTable()', 5000);



});


function showNextTable(){
	//alert("sdfgsdfg");
	$("#sel101 tr").slideUp("slow");
	currentPersona= currentPersona%5+1;

	$("#row"+currentPersona). slideDown();


}
