function statusHover(nome, id, quant, classNome){

	document.getElementById(nome+'-'+id).className = classNome;

	for(i = 1; i <=  quant; i++){

		if(id != i){
			document.getElementById(nome+'-'+i).className = "#";
		}

	}

}

function servicos(tipo){

	document.getElementById('content-'+tipo).style.display = '';

	for(i = 1; i <=  7; i++){

		if(tipo != i){
			document.getElementById('content-'+i).style.display = 'none';
		}

	}

}




function trocarFoto(id, tipo, menu){
	if(tipo == '1'){
		document.getElementById(id).src = "imagens/" + menu + tipo + ".jpg";
	}else{
		document.getElementById(id).src = "imagens/" + menu + tipo + ".jpg";
	}
}

