function limpaCampos( obj, nowValue )
{
	target = document.getElementById( obj );
	
	if( obj.name == "busca" && nowValue == "Digite aqui para buscar"  )
	{
		obj.value = "";
	}
	if ( obj.name == "busca" && nowValue == "" ){
		obj.value = "Digite aqui para buscar";	
	}
	
	if( obj.name == "email" && nowValue == "Digite seu e-mail" ){
		obj.value = "";
	}
	if ( obj.name == "email" && nowValue == "" ){
		obj.value = "Digite seu e-mail";	
	}
	
	if( obj.name == "senha" && nowValue == "0123456789" ){
		obj.value = "";
	}
	if ( obj.name == "senha" && nowValue == "" ){
		obj.value = "0123456789";	
	}
}

function mostraMenu( menu )
{
	obj = document.getElementById( menu );
	if( obj.style.display == "none" ){
		obj.style.display = "block";
	}else if( obj.style.display == "block" ){ 
		obj.style.display = "none";
	}
}


function popUP(sURL, sName, iWidth, iHeight, scrollb) { 
	posHoriz = parseInt((screen.availWidth / 2) - parseInt(iWidth / 2));
	posVert = parseInt((screen.availHeight / 2) - parseInt(iHeight / 2));
	
	open (sURL, sName, "status=no, scrollbars=no, left=" + posHoriz + ", top=" + posVert + ", width="+iWidth+", height="+iHeight)
}

function abreFaq(id)
{

	idFotoSelecionada = id;

	var tamanho = total;

	for ( var i=0, len=tamanho; i<len; ++i ){
		
		var troca = document.getElementById("faq_"+i);
			troca.style.display = 'none';

		
		var titulo = document.getElementById("titulo_faq_"+i);
			titulo.style.fontWeight = 'normal';
			titulo.style.color = '#242424';
	}


	var troca = document.getElementById("faq_"+id);
		troca.style.display = 'block';
	
	var titulo = document.getElementById("titulo_faq_"+id);
			titulo.style.fontWeight = 'bold';
			titulo.style.color = '#005aab';



}


function abreDownload(id)
{

	idFotoSelecionada = id;

	var tamanho = total;

	for ( var i=0, len=tamanho; i<len; ++i ){
		
		var troca = document.getElementById("faq_"+i);
			troca.style.display = 'none';

	}

	var troca = document.getElementById("faq_"+id);
		troca.style.display = 'block';


}

function abreBusca(id)
{

	if(document.getElementById(id).style.display == 'block'){
		document.getElementById(id).style.display = 'none'
	} else {
		document.getElementById(id).style.display = 'block'
	}

}

function trocaImagem(pro, valor)
{

	var img = document.getElementById("imgFotoProduto");
	img.src = 'images/produtos/m/'+ pro +'_'+ valor +'.jpg';
	idFotoSelecionada = pro;
	
	for ( var i=1; i<=ini; ++i ){
		
		var troca = document.getElementById("troca_"+ i);
			troca.className = 'troca_imagem';
		
	}
	
	var troca = document.getElementById("troca_"+valor);
	troca.className = 'troca_imagem_ativo';

}

