// Desenvolvido por: Luiz alberto Libralon - Web Designer / Motion Designer
// Contato: luiz.libralon@levitron.com.br 
// JavaScript Document


//*OPACIDADE PARA BOTOES*/
////////////////////////////////////////////////////////////////////

function opacBtn(id)
{
//	alert(id);
	document.getElementById(id).style.opacity="0.4";
	document.getElementById(id).style.filter="alpha(opacity=40)";
}

function opacBtn2(id)
{
//	alert(id);
	document.getElementById(id).style.color="#000000";
	//document.getElementById(id).style.filter="alpha(opacity=40)";
}

function opacBtnNo(id)
{
	document.getElementById(id).style.opacity="";
	document.getElementById(id).style.filter="";
}
function apareceCampo(id)
{
		document.getElementById(id).style.display = "";
}
function mudaImgPrincipal(img,imgPrincipal,imgLinkBox)
{
	document.getElementById(imgPrincipal).src = img;
	document.getElementById(imgLinkBox).href = img;
}
