/*############################################################################
			Exibe / Esconde itens
##############################################################################*/
function escondeItensByClasse(classe)
{
	var items = document.getElementsByClassName(classe);
	
	for(i = 0; i < items.length; i++) {
		items[i].style.display = "none";
	}
}

function mostraItemById(idItem)
{
	var elemento = document.getElementById(idItem);
	var mapa = document.getElementById("colunaMapa");
		if (mapa) {
			mapa.style.backgroundImage = "url(imagens/" + idItem + ".gif)";
			mapa.style.paddingTop = 223 + 'px';
		}
	
	//Esconde todos os itens que possuem a mesma classe do elemento que possui o 'id = idItem'
	escondeItensByClasse(elemento.className);
	
	//Exibe o item que possui o 'id = idItem'
	elemento.style.display = "block";
	
	itemAtivo=idItem;
}

/*############################################################################
			Busca
##############################################################################*/
function buscar(listaSelecionada) {
	document.getElementById("formBusca").submit();
}

function mostraArtista(idArtista) {
	
	var form = document.getElementById("formBusca");
	form.idArtista.value = idArtista; 
	form.submit();
	
}

/*############################################################################
			Mostra Foto Home
##############################################################################*/
function mostraFotoHome() {
	var fotoHome = document.getElementById("imgPrincipal");
	var numRandom = Math.round((Math.random()*2));
		if (fotoHome) {
			fotoHome.src = "imagens/foto_home_" + numRandom + ".jpg";
		}
}




