function ver (img, texto)
{
	var obj= document.getElementById("detalle");
	obj.src= img;
   
   obj_t= document.getElementById("texto");
   obj_t.innerHTML= texto;
}

// Posiciona las imagenes al cargar la pagina
function posiciona ()
{
	var div_equipo= document.getElementById("div_equipo");
	var div_enlace2= document.getElementById("enlaces_2");
	div_equipo.style.top= div_enlace2.clientHeight + 20;
	
	div_equipo.style.visibility= "visible";
}
