function some(id){
	if(document.getElementById(id).style.display==""){
		document.getElementById(id).style.display="none";
	}else{
		document.getElementById(id).style.display="";
	}
}


function someseta(id){
	if(document.getElementById(id).style.display==""){
		document.getElementById(id).style.display="none";
		document.getElementById(id+'a').src="imagens/internas/nosso_dvd_icon_seta.gif";
	}else{
		document.getElementById(id).style.display="";
		document.getElementById(id+'a').src="imagens/internas/nosso_dvd_icon_seta_baixo.gif";
	}
}


function somesetafaq(id){
	if(document.getElementById(id).style.display==""){
		document.getElementById(id).style.display="none";
		document.getElementById(id+'a').src="imagens/internas/faq_icon_seta.gif";
	}
	else{
		document.getElementById(id).style.display="";
		document.getElementById(id+'a').src="imagens/internas/faq_icon_seta2.gif";
	}
}

function menuAcao() {
	if (window.document.getElementById("divMenuAcao").style.display == 'none'){
		window.document.getElementById("divMenuAcao").style.display = '';
	} else {
		window.document.getElementById("divMenuAcao").style.display = 'none';
	}
}

function dragAndDrop(over, id){
	if(over == 1){
		window.document.getElementById(id).className = "drop";
	}else if(over == 0){
		window.document.getElementById(id).className = "no_drop";
	}
}
function deselLinhas(){
	for(i=1;i<=2;i++){
		window.document.getElementById("linha"+i).className = "grid_linha";
		window.document.getElementById("esq_"+i).src = "imagens/meusdvds_grid_esq_drop.gif";
		window.document.getElementById("dir_"+i).src = "imagens/meusdvds_grid_dir.gif";
	}
}
function selLinha(id){
	deselLinhas();
	window.document.getElementById("linha"+id).className = "grid_linha_sel";
	window.document.getElementById("esq_"+id).src = "imagens/meusdvds_grid_esq_drop_sel.gif";
	window.document.getElementById("dir_"+id).src = "imagens/meusdvds_grid_dir_sel.gif";
}