function header(idSection){
	var div = document.getElementById("headerPage");
	html = '<table width="100%" cellpadding="0" cellspacing="0">';
	html += '				<tbody>';
	html += '					<tr>';
	html += '						<td width="200" align="center">';
	html += '							<img src="Z-files/logomirror.gif" />';
	html += '						</td>';
	html += '						<td valign="middle" align="right">';
	html += '							<p class="title">';
	html += '								7 FESTIVAL INTERNACIONAL DE CORTOMETRAJES Y ESCUELAS DE CINE';
	html += '								<br/>';
	html += '								<span class="titleBlue">BOGOTÁ, 24 AL 30 DE JUNIO DE 2010</span>';
	html += '							</p>';
	html += '							<div class="menu">';
	html += '								<div class="menuOption' + (idSection==1?'2':'') + '">';
	html += '									<a href="index.html">Inicio</a>';
	html += '								</div>';
	html += '								<div class="menuOption' + (idSection==2?'2':'') + '">';
	html += '									<a href="el_espejo.html">El Espejo</a>';
	html += '								</div>';
	html += '								<div class="menuOption' + (idSection==3?'2':'') + '">';
	html += '									<a href="festival_2010.html">Festival 2010</a>';
	html += '								</div>';
	html += '								<div class="menuOption' + (idSection==4?'2':'') + '">';
	html += '									<a href="festivales_anteriores.html">Fest. Anteriores</a>';
	html += '								</div>';
	html += '								<div class="menuOption' + (idSection==5?'2':'') + '">';
	html += '									<a href="otros_eventos.html">Otros Eventos</a>';
	html += '								</div>';
	html += '								<div class="menuOption' + (idSection==6?'2':'') + '">';
	html += '									<a href="contactenos.html">Contáctenos</a>';
	html += '								</div>';
	html += '							</div>';
	html += '						</td>';
	html += '					</tr>';
	html += '				</tbody>';
	html += '			</table>';
	if(div){
		div.innerHTML = html;
	}
}