/* Funcion para el hover de una seccion */
function iluminaMenu(idDiv){

     document.getElementById('boton' + idDiv).style.backgroundImage = 'url(/imagenes/menuClaro.jpg)';
     document.getElementById('boton' + idDiv).style.backgroundPosition = 'top';
     document.getElementById('boton' + idDiv).style.backgroundRepeat = 'repeat-x';
     document.getElementById('boton' + idDiv).style.backgroundColor = '#3C6293';
}

/* Funcion para el hover de una seccion */
function apagaMenu(idDiv){
     document.getElementById('boton' + idDiv).style.backgroundImage = 'url(/imagenes/menuOscuro.jpg)';
     document.getElementById('boton' + idDiv).style.backgroundPosition = 'top';
     document.getElementById('boton' + idDiv).style.backgroundRepeat = 'repeat-x';
     document.getElementById('boton' + idDiv).style.backgroundColor = '#21426D';
}


