tms=new Array()

var associacao="teste";
//Mostra o submenu no mouseover
function over(n){
	if(typeof(tms[n])!="undefined")clearTimeout(tms[n])
	document.getElementById("s"+n).style.visibility="visible";
}
//Esconde o submenu no mouseout
function out(n){
	tms[n]=setTimeout('document.getElementById("s'+n+'").style.visibility="hidden"',500);
}

function getUrlVars() {
	var hash;
	var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
	if (associacao=="teste")
	{

		hash = hashes[0].split('=');
		associacao = hash[1];
		if (associacao == "acicam") {
			document.getElementById("serasa").href="javascript:redirecionar('acicam')";
		}
	}
}

function verificarBrowser(){
	getUrlVars();
	if(navigator.appVersion.indexOf("MSIE")!= -1){
		document.getElementById("iframe_formulario").className="iframe_formularioIE";
	} else {
		document.getElementById("iframe_formulario").className="iframe_formulario";
	}
}

function redirecionar(associacao) {

	if (associacao == "acicam") {
		window.location = "http://www.ertecnologia.com.br/campomourao/index.php?sub=concentre";
	} 

}

