function getAbsoluteElementPosition(element) {
  if (typeof element == "string")
    element = document.getElementById(element)
    
  if (!element) return { top:0,left:0 };
  
  var y = 0;
  var x = 0;
  while (element.offsetParent) {
    x += element.offsetLeft;
    y += element.offsetTop;
    element = element.offsetParent;
  }
  return {top:y,left:x};
}


function enseniar()
{
	document.getElementById("resumen").style.display = "block";
  	var elemento = document.getElementById("otrosEnlaces");
  	var pos = getAbsoluteElementPosition(elemento);
	pos.top = pos.top - 180;
	pos.left = pos.left - 80;
	document.getElementById("resumen").style.top = pos.top+"px";
	document.getElementById("resumen").style.left = pos.left+"px";
}

function esconde()
{
	document.getElementById("resumen").style.display = "none";
}

function mostrar(id)
{
	if (document.getElementById('td_sub_' + id)!= 'null'){
		if (document.getElementById('td_sub_' + id).style.display != ''){
			document.getElementById('td_sub_' + id).style.display ='';
			document.getElementById('vinculo' + id).className ="link1_over";
		}
		else {
			document.getElementById('td_sub_' + id).style.display='none';
			document.getElementById('vinculo' + id).className ="link1";
		}
	}
}

function mostrarocultar()
{
 	   if (document.getElementById("subterminos").style.display != 'none'){
			document.getElementById("subterminos").style.display ='none';
		}
		else {
			document.getElementById("subterminos").style.display='block';
		}
}

function mostrar_ocultarUL(id){
   	if (document.getElementById('ul'+id).style.display == 'none' || document.getElementById('ul'+id).style.display == '' ) {
		document.getElementById('ul'+id).style.display ='block';
		document.getElementById('plus'+id).firstChild.nodeValue = '[-]';
	} else {
		document.getElementById('ul'+id).style.display='none';
		document.getElementById('plus'+id).firstChild.nodeValue = '[+]';
	}
}


var i;
var imagenes = new Array('http://www.akrocard.com/imgs/home_f2.jpg','http://www.akrocard.com/imgs/productos_f2.jpg','http://www.akrocard.com/imgs/aplicaciones_f2.jpg','http://www.akrocard.com/imgs/sectores_f2.jpg','http://www.akrocard.com/imgs/empresa_f2.jpg','http://www.akrocard.com/imgs/quehacemos_f2.jpg','http://www.akrocard.com/imgs/noticias_f2.jpg','http://www.akrocard.com/imgs/enlaces_f2.jpg','http://www.akrocard.com/imgs/contacto_f2.jpg','http://www.akrocard.com/imgs/home.jpg','http://www.akrocard.com/imgs/productos.jpg','http://www.akrocard.com/imgs/aplicaciones.jpg','http://www.akrocard.com/imgs/sectores.jpg','http://www.akrocard.com/imgs/empresa.jpg','http://www.akrocard.com/imgs/quehacemos.jpg','http://www.akrocard.com/imgs/noticias.jpg','http://www.akrocard.com/imgs/enlaces.jpg','http://www.akrocard.com/imgs/contacto.jpg');
var lista_imagenes = new Array();

//function cargarimagenes(){
	for(i in imagenes){
		lista_imagenes[i] = new Image();
		lista_imagenes[i].src = imagenes[i];
	}

//} 


	