

// ************************************************************************* //
// **************** Funciones del primer nivel: **************************** //
// ************************************************************************* //

function ajaxInicio(){
  iniciarAjax('inicio.html','cuerpo','');
  return false;
}  


function ajaxAvisos(){
  iniciarAjax('avisos.html','cuerpo','');
  return false;
}
   

function ajaxContactar(){
  iniciarAjax('contactar.html','cuerpo','');
  return false;
}

// ************************************************************************* //
// **************** Funciones del segundo nivel: *************************** //
// ************************************************************************* //


function ajaxCI(){
  iniciarAjax('conjunto.html','cuerpo',''); 
  return false;
}

function ajaxCA(){
  iniciarAjax('coro.html','cuerpo',''); 
  return false;
}

function ajaxCJ(){
  iniciarAjax('corojuvenil.php','cuerpo',''); 
  return false;
}

function ajaxEscuela(){
  iniciarAjax('escuela.html','cuerpo',''); 
  return false;
}

function ajaxJD(){ 
  iniciarAjax('jdirectiva.html','cuerpo','');
  return false;
}

function ajaxEnsayos(){
  iniciarAjax('ensayos.html','cuerpo','');
  return false;
}

function ajaxEventos(){
  iniciarAjax('eventos.html','cuerpo','');
  return false;
}

function ajaxDescargas(){
  iniciarAjax('descargas.php','cuerpo','');
  return false;
}

function ajaxFotos(parametro){
  iniciarAjax('fotos.html','cuerpo',''); 
  return false;
}



// ************************************************************************* //
// **************** Funciones del tercer nivel: **************************** //
// ************************************************************************* //

function ajaxHistoria(){
  iniciarAjax('historia.html','cuerpo',''); 
  return false;
}

function ajaxPlantilla(){
  iniciarAjax('plantilla.html','cuerpo','');
  return false;
}

function ajaxDirectores(){
  iniciarAjax('directores.html','cuerpo','');
  return false;
}

function ajaxPremios(){
  iniciarAjax('premios.html','cuerpo','');
  return false;
}

// ************************************************************************* //
// *************Función que abre un popup para ver las fotos *************** //
// ************************************************************************* //

function visualizar(foto) {
    window.open(foto, 'Foto', 'width=200', 'height=100');
}

// ************************************************************************* //
// *********** Funciones para los diferentes álbunes de fotos ******************** //
// ************************************************************************* //

function fotosOtras(parametro){
    iniciarAjax('fotos/fotosOtras.php','cuerpo','seleccion='+parametro); 
    return false;
}

function fotosFC09(parametro){
    iniciarAjax('fotos/fotosFC09.php','cuerpo','seleccion='+parametro); 
    return false;
}




