/*--------------------------------------------------------------------
JAVASCRIPT "tooltips para lista de imoveis" - Chave dourada

Version: 	1.0 - 2009
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", "linkImov");
	for (var i=0; i<linkS.length; 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="10";
			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);