// JavaScript Document
function menu(pagina) {
	html  = '<div id="menu" style="background:url(imagenes/menu/menu_' + pagina + '.png) no-repeat">';

	html += '<a href="curriculum.htm" id="curriculum" title="Jorge Fdez. Hidalgo"></a>';
	html += '<a href="escuela.htm" id="escuela" title="La Escuela"></a>';
<!--	html += '<a href="disciplinas.htm" id="disciplinas" title="Las Disciplinas"></a>';	--
	html += '<a href="cursos.htm" id="cursos" title="Los Cursos"></a>';
	html += '<a href="programa.htm" id="programa" title="Programa 2009-2010"></a>';
	html += '<a href="fotos.htm" id="fotos" title="Galería de Fotos"></a>';
	html += '<a href="festival.htm" id="festival" title="Festival 2009"></a>';

	html += '</div>';



	// BOTÓN DE CLASES DE CANTO
	html += '<a href="canto.htm" id="canto" title="Clases de Canto"></a>';

	document.write(html);
}

function enlacesComunes() {
	html  = '<a href="inicio.htm" id="logo" title="Inicio"></a>';
	html += '<a href="mailto:info@fdez-hidalgo.com" id="email" title="Enviar mail"></a>';
	html += '<a href="http://www.gerundio.info" target="_blank" id="gerundio" title="Gerundio"></a>';
	
	document.write(html);
}