//Compactado usando o site: http://www.focalizaisso.com.br/compactador-de-js-e-css/
//Arquivo original: getAJAXSuggestion.js
//Compactado usando o site: http://www.focalizaisso.com.br/compactador-de-js-e-css/

indiceAtual=0;indiceAnterior=0;lista="";totalItensVetor=0;function navigation(event){var keyCode=event.keyCode?event.keyCode:event.which?event.which:event.charCode;switch(keyCode){case 27:closeResultado();break;case 38:upSelect();break;case 40:downSelect();break;}}
function addEventos(){if(window.location=="http://ctecevitrine.com.br/"){var element=document.getElementById("filtroPesquisa");try{element.addEventListener("keyup",function(){getSuggestion(this,event)},false);}catch(er){};try{element.addEventListener("keydown",function(){navigation(event)},false);}catch(er){};try{element.addEventListener("click",function(){teste(this)},false);}catch(er){};try{element.attachEvent("onkeyup",function(){getSuggestion(this,event)});}catch(er){};try{element.attachEvent("onkeydown",function(){navigation(event)});}catch(er){};try{element.attachEvent("click",function(){teste(this)});}catch(er){};}}
function teste(teste){alert(teste.value);}
function closeResultado(){var camada=document.getElementById('resultados');if(camada.style.display=='block'){camada.style.display='none';}}
function upSelect(){if(lista.length>0){indiceAnterior=indiceAtual;if(indiceAtual==-1){indiceAtual=totalItensVetor;}else
if(indiceAnterior==totalItensVetor){indiceAtual=(totalItensVetor-1);}
if(indiceAtual>=0){document.getElementById('filtroPesquisa').value=lista[indiceAtual].firstChild.nodeValue;setFocusLink(indiceAtual);indiceAtual--;if(indiceAtual<0){indiceAtual=0;}}}}
function downSelect(){if(lista.length>0){indiceAnterior=indiceAtual;if(indiceAtual==-1){indiceAtual=0;}else
if(indiceAnterior==0&&totalItensVetor>=1){indiceAtual=1;}
if(indiceAtual<=totalItensVetor){document.getElementById('filtroPesquisa').value=lista[indiceAtual].firstChild.nodeValue;setFocusLink(indiceAtual);indiceAtual++;if(indiceAtual>totalItensVetor){indiceAtual=totalItensVetor;}}}}
function setFocusLink(indice){var links=document.getElementById('resultados').getElementsByTagName('a');for(var i=0;i<=totalItensVetor;i++){links[i].style.color="#000";links[i].style.background="#FFF";links[i].style.textDecoration="none";}
links[indice].style.color="#FFF";links[indice].style.background="#39C";links[indice].style.textDecoration="none";}
function criaXMLObject(){try{xmlhttp=new XMLHttpRequest();}
catch(ee){try{xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e){try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
catch(E){xmlhttp=false;}}}
return xmlhttp;}
function filtroSetTexto(texto){document.getElementById('filtroPesquisa').value=texto;document.getElementById('resultados').style.display='none';document.getElementById('form').submit();}
function setHiddenSuggestion(){document.getElementById('resultados').style.display='none';}
function getPosicaoElemento(elemID){var offsetTrail=document.getElementById(elemID);var offsetLeft=0;var offsetTop=0;while(offsetTrail){offsetLeft+=offsetTrail.offsetLeft;offsetTop+=offsetTrail.offsetTop;offsetTrail=offsetTrail.offsetParent;}
offsetWidth=document.getElementById(elemID).offsetWidth;if(navigator.userAgent.indexOf("Mac")!=-1&&typeof document.body.leftMargin!="undefined"){offsetLeft+=document.body.leftMargin;offsetTop+=document.body.topMargin;}
document.getElementById('resultados').style.left=offsetLeft+"px";document.getElementById('resultados').style.width=(offsetWidth-2)+"px";return{left:offsetLeft,top:offsetTop};}
function getSuggestion(filtro,event){var keyCode=event.keyCode?event.keyCode:event.which?event.which:event.charCode;if(keyCode!=38&&keyCode!=40&&keyCode!=27){var camada=document.getElementById('resultados');camada.innerHTML='';camada.style.display='none';var objXML=criaXMLObject();var url="libs/getXMLSuggestion.php?filtro="+filtro.value;if(filtro.value!=''){objXML.open("GET",url,true);objXML.setRequestHeader("Content-Type","application/x-www-form-urlencoded");objXML.setRequestHeader("Cache-Control","no-store, no-cache, must-revalidate");objXML.onreadystatechange=function(){if(objXML.readyState==4){if(objXML.status==200){var xmlData=objXML.responseXML;lista=xmlData.getElementsByTagName("resultado");indiceAtual=-1;totalItensVetor=lista.length-1;html="";for(var i=0;i<lista.length;i++){html+="<a href=\"#\" onclick=\"filtroSetTexto('"+lista[i].firstChild.nodeValue+"');\" onmouseover=\"setFocusLink("+i+")\">"+lista[i].firstChild.nodeValue+"</a>";}
camada.innerHTML=html;if(lista.length>0){getPosicaoElemento('filtroPesquisa');camada.style.display='block';}}
else
if(objXML.status==400){}else
if(objXML.status==403){}else
if(objXML.status==404){}else
if(objXML.status==0){}}}
objXML.send(null);}}
else{}}