/*--------------------------------------------------------------------
JAVASCRIPT "tooltips" - LEC

Version: 	1.0 - 2008
author: 	Burocratik (alexandre gomes)
email: 		alex@burocratik.com
website: 	http://www.burocratik.com
-----------------------------------------------------------------------*/

/* =BLOCO TOOLTIPS FOTOS
-----------------------------------------------------------------------*/
function iniciarTooltips() {
	if (!document.getElementsByTagName) return false;
	if (!document.getElementById) return false;
	var linkS = getElementsByClassName(document, "a", "toolEmpresas");
	for (var i=0; i<linkS.length; i++ ) {
		//Hack para ie6 e ie7 bug com zindex
		//linkS[i].style.zIndex=500-i;
		//
  	var sectionId = linkS[i].getAttribute("id").split("L")[1];
    if (!document.getElementById(sectionId)) continue;
		linkS[i].destination = sectionId;
    linkS[i].onmouseover = linkS[i].onfocus = function() {
			var elem = document.getElementById(this.destination);
			elem.style.zIndex="50";
			elem.style.position = "absolute";
			elem.style.left = "0px";
			elem.style.top = "0px";
    } 
		linkS[i].onmouseout = linkS[i].onblur = function() {
			var elem = document.getElementById(this.destination);
			elem.style.left = "-9999px";
			elem.style.top = "-9999px";
  	} 
	}
}


/* =Preparar Eventos
-----------------------------------------------------------------------*/
addLoadEvent(iniciarTooltips);