function contato() {
	if ($('#containerContato').is(":hidden")) {
		$('#containerContato').slideDown();
	}
	else {
		$('#containerContato').slideUp();
	}
}

function areaCliente() {
	if ($('#areaCliente').is(":hidden")) {
		$('#areaCliente').fadeIn();
	}
	else {
		$('#areaCliente').fadeOut();
	}
}

var carregar; var client;

var tit;

function model(arquivo,titulo) {
    carregar = new Image();
    carregar.src = arquivo;
    //document.getElementById("codModelo").textContent = "Código do Produto: ";
    tit = titulo;
	$("#expLoading").fadeIn(400, function() {
		verificaCarregamento();								  
	});

}

function verificaCarregamento(){
    if(carregar.complete) {
        document.getElementById("codModelo").textContent = "Código do Produto: " + tit ;
		document.getElementById("expModeloContainer").style.background = "url(" + carregar.src + ") center 10px no-repeat #FFF";
		$("#expLoading").fadeOut(400);
    }
    else{
        setTimeout( "verificaCarregamento()", 100 );
    }
}
