function menu(id){
	var div = document.getElementById("menuPage");
	html = '<div class="submenu">';
	html += '    <div><a href="el_festival.html" class="submenu' + (id==1?'Up':'Down') + '">El Festival</a></div>';
	html += '    <div><a href="programacion_oficial.html" class="submenu' + (id==2?'Up':'Down') + '">Programaci&oacute;n Oficial</a></div>';
	html += '    <div><blockquote><a href="seleccion_oficial.html" class="submenu' + (id==3?'Up':'Down') + '">+ Selecci&oacute;n Oficial</a></blockquote></div>';
	html += '    <div><blockquote><a href="panorama_nacional.html" class="submenu' + (id==4?'Up':'Down') + '">+ Panorama Nacional </a></blockquote></div>';
	html += '    <div><blockquote><a href="panorama_internacional.html" class="submenu' + (id==5?'Up':'Down') + '">+ Panorama Internacional </a></blockquote></div>';
	html += '    <div><blockquote><a href="muestras_especiales.html" class="submenu' + (id==6?'Up':'Down') + '">+ Muestras Especiales</a></blockquote></div>';
	html += '	<div><blockquote><a href="salas.html" class="submenu' + (id==7?'Up':'Down') + '">+ Salas</a></blockquote></div>';
	html += '    <div><a href="eventos_teoricos.html" class="submenu' + (id==8?'Up':'Down') + '">Eventos Te&oacute;ricos</a></div>';
	html += '    <div><a href="eventos_especiales.html" class="submenu' + (id==9?'Up':'Down') + '">Eventos Especiales</a></div>';
	html += '    <div><a href="los_jurados.html" class="submenu' + (id==10?'Up':'Down') + '">Los Jurados</a></div>';
	html += '    <div><a href="invitados_internacionales.html" class="submenu' + (id==11?'Up':'Down') + '">Invitados Internacionales</a></div>';
	html += '</div>';
	html += '<br>';
	html += '<!--';
	html += '<div class="blueBox" style="margin-left: 20px; padding-top: 20px; width: 220px;">';
	html += '    <table width="100%">';
	html += '        <tbody><tr><td align="left" width="45"><img src="Z-files/iconpdf2.png" align="absmiddle"></td>';
	html += '        <td align="left"><a href="http://www.elespejofilmfestival.com/espejo/downloads/programacionresumen.pdf" target="_blank" class="textBlackMark">DESCARGAR<br>PROGRAMACIÓN<br>OFICIAL 2009 - GENERAL</a></td>';
	html += '    </tr></tbody></table>';
	html += '</div>';
	html += '<br>';
	html += '<div class="blueBox" style="margin-left: 20px; padding-top: 20px; width: 220px;">';
	html += '    <table width="100%">';
	html += '        <tbody><tr><td align="left" width="45"><img src="Z-files/iconpdf2.png" align="absmiddle"></td>';
	html += '        <td align="left"><a href="http://www.elespejofilmfestival.com/espejo/downloads/programaciondetalle.pdf" target="_blank" class="textBlackMark">DESCARGAR<br>PROGRAMACIÓN<br>OFICIAL 2009 - DETALLADA</a></td>';
	html += '    </tr></tbody></table>';
	html += '</div>';
	html += '-->';
	html += '<div style="margin-top: 50px;" align="center"><img src="Z-files/iconSection2.jpg"></div>';
	if(div){
		div.innerHTML = html;
	}
}



