// JavaScript Document

function permutaImagem (oldImg, newImg) {
	oldImg.src = newImg;
}

function mudaTitulo(opcao) {
	switch (opcao){
		case 0:
			imgTitulo.src = "imagens/tit_historia.jpg";
			break;
		case 1:
			imgTitulo.src = "imagens/tit_tiposfrevo.jpg";
			break;
		case 2:
			imgTitulo.src = "imagens/tit_musicas.jpg";
			break;
		case 3:
			imgTitulo.src = "imagens/tit_aula.jpg";
			break;
		case 4:
			imgTitulo.src = "imagens/tit_artistas.jpg";
			break;
		case 5:
			imgTitulo.src = "imagens/tit_fotos.jpg";
			break;
		case 6:
			imgTitulo.src = "imagens/tit_expediente.jpg";
			break;
	}

}

function exibePagina() {
	i = document.frm.comboMusica.selectedIndex;
	window.location = document.frm.comboMusica.options[i].value;
}

function direcionaPagina() {
	html = "<div id='logoJC'><a href='http://jc.uol.com.br/' target='_self'><img src='imagens/logoJC.gif' border='0'></a></div>";
	html = html + "<div id='titPagina'><img id='imgTitulo' src=''></div>";
	html = html + "<div id='fotoInterna'>";
	html = html + "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='170' height='332'>";
    html = html + "<param name='movie' value='flash/fotosInt.swf'>";
    html = html + "<param name='quality' value='high'>";
    html = html + "<param name='wmode' value='transparent'>";
    html = html + "<embed src='flash/fotosInt.swf' width='170' height='332' quality='high' ";
	html = html + "pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' ";
	html = html + "wmode='transparent'></embed>";
	html = html + "</object>";
	html = html + "<script type='text/javascript' src='ieupdate.js'></script>";
	html = html + "</div>";
	html = html + "<div id='texto'>";
	html = html + "<iframe id='iframeTexto' name='iframeTexto' frameborder='0'></iframe>";
	html = html + "</div>";

	
	document.getElementById("miolo").innerHTML = html;
	mudaTitulo(0);
	iframeTexto.src = 'historia.htm';
}

