timerID = new Array(); //inicializa array para temporizadores

function mostrar(nombre, numero, posicionTop){
	ocultar();
	document.getElementById(nombre + "_" + numero).style.top= posicionTop +'px';
}
function ocultar(nombre, indice){
	var n;
	for (n=1; n <= indice; n++){
		document.getElementById(nombre + "_" +n).style.top= '-1000px';
	}
}



function mostrar2(k){
	ocultar();
	document.getElementById('desplegable_'+k).style.top= '113px';
	document.getElementById('enlace_'+k).style.color= '#FFFF00';
}


function ocultar2(n){
	
		document.getElementById('desplegable_'+n).style.top= '-1000px';
		document.getElementById('enlace_'+n).style.color= '#e5e5e5';
	
}

