function criaXMLHttp() {
    if (typeof XMLHttpRequest != "undefined")
        return new XMLHttpRequest();
    else if (window.ActiveXObject){
        var versoes = ["MSXML2.XMLHttp.5.0",
                       "MSXML2.XMLHttp.4.0",
                       "MSXML2.XMLHttp.3.0",
                       "MSXML2.XMLHttp",
                       "Microsoft.XMLHttp"];
        }
    for (var i = 0; i < versoes.length; i++){
        try{
            return new ActiveXObject(versoes[i]);
        }
        catch (e) {
        }
    }
    throw new Error("Seu browser n&atilde;o suporta AJAX");
}

function showProduto(divi){
	cont = "ajax/produtos.php?ShowProd="+divi;
	xmlhttp = criaXMLHttp();
	xmlhttp.open("GET",cont,true);
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4){
			dados = xmlhttp.responseText;
			$("#dicastexto").html(dados);
		}
		else{
			$("#dicastexto").html("<br /><br /><center>Carregando ...</center>");
		}
	}
	showImagem(divi);
	xmlhttp.send(null);
}
	
function showImagem(img){
	$("#dicasfoto").html("<img src='imgs/produtos/gr/"+ img +"' />"); 
}

function menUto(divi) {
	$(".produtos").hide();

	document.getElementById(divi).style.display =="" ? 
	document.getElementById(divi).style.display = "none" : 
	document.getElementById(divi).style.display = "";	
	showProduto(divi);
}
	
function abreFecha(){
	document.getElementById('filtro').className='off_div';
}