function carga(){
	
	$("#tt1").hide(); 
	$("#tt2").hide();
	$("#tt3").hide();
	$("#tt4").hide();

}



function selector(tipo){

	if (tipo!="#tt1") { $("#tt1").hide(); } 
	if (tipo!="#tt2") { $("#tt2").hide(); }
	if (tipo!="#tt3") { $("#tt3").hide(); }
	if (tipo!="#tt4") { $("#tt4").hide(); }
	$(tipo).toggle()  
}


	