<!--
function menu(){
var TextoLink = new Array();
var contador = 0;
TextoLink[0] = 'Inicio'
TextoLink[1] = 'Trayectoria'
TextoLink[2] = 'Fotos'
TextoLink[3] = 'Calendario'
TextoLink[4] = 'Noticias'
TextoLink[5] = 'Videos'
TextoLink[6] = 'Links'
TextoLink[7] = 'Sponsors'
TextoLink[8] = 'Contactos'
var txt = ''
txt += '<table border="0" align="center" cellpadding="0" cellspacing="0"><tr>'
while ( contador <= 8 ){
	if (contador == (IdPagina-1)) {
txt += '<td width="85" align="center" valign="bottom" bgcolor="#EAC02E" style="border-left:1px solid #FFFFFF;padding-top:5px;"><b>'+ TextoLink[contador] +'</b><br><img src="_imag/bt_1.jpg" width="85" height="7"></td>'
	}else{
txt += '<td width="85" align="center" valign="bottom" bgcolor="#CCCCCC" style="border-left:1px solid #FFFFFF;"><a href="'
links = TextoLink[contador]
if (contador == 0 ) links = 'index'
txt += links
txt += '.html">'+ TextoLink[contador] +'</a><br><img src="_imag/bt_2.jpg" width="85" height="10"></td>'
}
contador += 1
}
txt += '</tr></table>'

document.getElementById('menurava').innerHTML = txt;
}
-->
