// JavaScript Document

//menu horizontal de dentro do site
function menuH(x){ //v1.0
	if (x==0){rota = "";}
	else if (x==1){rota = "../";}
	document.write("<table width=100% border=0 cellpadding=0 cellspacing=15>"
	+ "<tr><td class=txt_menu_interno><b>"
	+ "<a href=" + rota + "institucional/historia.htm>História</a> | "
	+ "<a href=" + rota + "institucional/objetivo.htm>Objetivo</a> | "
	+ "<a href=" + rota + "institucional/definicoes.htm>Definição</a> | "
	+ "<a href=" + rota + "institucional/Quemsomos.htm>Quem somos</a> | "
	+ "<a href=" + rota + "institucional/contato.htm>Contato</a> | "
	+ "<a href=" + rota + "institucional/participe.htm>Participe</a> | "
	+ "<a href=" + rota + "institucional/Mapadosite.htm>Mapa do site</a>"
	+ "<hr size=1><< <a href=javascript:history.back();>Voltar</a> | <a href=" + rota + "index.htm>Principal</a>"
	+ "</b></td></tr>"
	+ "</table>"
	);
}

//menu vertical da capa de dentro do site
function menuV(x){ //v1.0
	if (x==0){rota = "";}
	else if (x==1){rota = "../";}
	document.write("<table width=100% border=0 cellpadding=0 cellspacing=5>"
	+ "<tr><td class=txt_menu_interno>&nbsp;&nbsp;&nbsp;<b>"
	+ "<a href=" + rota + "institucional/historia.htm>História</a> | "
	+ "<a href=" + rota + "institucional/objetivo.htm>Objetivo</a> | "
	+ "<a href=" + rota + "institucional/definicoes.htm>Definição</a> | "
	+ "<a href=" + rota + "institucional/Quemsomos.htm>Quem somos</a> | "
	+ "<a href=" + rota + "institucional/contato.htm>Contato</a> | "
	+ "<a href=" + rota + "institucional/participe.htm>Participe</a> | "
	+ "<a href=" + rota + "institucional/Mapadosite.htm>Mapa do site</a>"
	+ "</b></td></tr>"
	+ "</table>"
	);
}

//rodape
function menuD(x){ //v1.0
	if (x==0){rota = "";}
	else if (x==1){rota = "../";}
	document.write(
	"<table width=199 border=0 cellpadding=0 cellspacing=0>"
	+ "<tr><td valign=top background=" + rota + "imgs/fundo_menu.gif>"
	+ "<img src=" + rota + "imgs/MenuBibliografia.jpg width=195 height=200 border=0 usemap=#biblio><br>"
	+ "<img src=" + rota + "imgs/MenuBiografia.jpg width=192 height=75 border=0 usemap=#bio><br>"
	+ "</td></tr><tr><td>"
	+ "<img src=" + rota + "imgs/acabamento_menu.gif width=199 height=21 /></td></tr>"
	+ "</td></tr>"
	+ "</table>"
	+ "<map name=biblio id=biblio>"
	+ "<area shape=rect coords=40,174,155,197 href=" + rota + "bibliografia/CriticaLiteraria.html />"
	+ "<area shape=rect coords=109,152,178,175 href=" + rota + "bibliografia/Religiao.html />"
	+ "<area shape=rect coords=109,130,178,153 href=" + rota + "bibliografia/Historia.htm />"
	+ "<area shape=rect coords=102,108,187,131 href=" + rota + "bibliografia/Psicanalise.htm />"
	+ "<area shape=rect coords=112,86,177,109 href=" + rota + "bibliografia/CinemaeLiteratura.htm />"
	+ "<area shape=rect coords=12,152,77,175 href=" + rota + "bibliografia/Filosofia.htm />"
	+ "<area shape=rect coords=12,130,77,153 href=" + rota + "bibliografia/Politicaeliteratura.htm />"
	+ "<area shape=rect coords=6,107,84,131 href=" + rota + "bibliografia/Jornalismoseliteratura.htm />"
	+ "<area shape=rect coords=16,86,73,108 href=" + rota + "bibliografia/Musica.htm />"
	+ "<area shape=rect coords=143,57,194,82 href=" + rota + "bibliografia/Comoescrevo.htm />"
	+ "<area shape=rect coords=1,57,49,81 href=" + rota + "bibliografia/Ondeescrevo.htm />"
	+ "<area shape=rect coords=62,33,132,57 href=" + rota + "bibliografia/Porqueescrevo.htm />"
	+ "</map>"
	+ "<map name=bio id=bio>"
	+ "<area shape=rect coords=2,31,188,71 href=" + rota + "biografia/index.htm />"
	+ "</map>"
	);
}

//menu de destaque
function rodape(x){ //v1.0
	if (x==0){rota = "";}
	else if (x==1){rota = "../";}
	document.write("<table width=760 border=0 align=center cellpadding=0 cellspacing=0 bgcolor=#FFFFFF>"
	+ "<tr><td>"
		+ "<img src=" + rota + "imgs/pixel_transp.gif width=15 height=15 />"
	+ "</td></tr><tr><td>"
		+ "<img src=" + rota + "imgs/rodape2.jpg width=760 height=35 border=0 usemap=#Map />"
	+ "</td></tr><tr><td height=25 align=center>"
		+ "<span class=rodape>&copy; 2007 Tiro de Letra - Mist&eacute;rios da Cria&ccedil;&atilde;o Liter&aacute;ria. Todos os direitos reservados</span>"
	+ "</td></tr>"
	+ "</table>"
	+ "<map name=Map id=Map><area shape=rect coords=531,10,746,29 href=http://www.tirodeletra.com.br target=_top /></map>"
	);
}
