﻿// Ocultar y mostrar menu

function mostrarSubmenu(opcion)
{
    var enlaces = opcion.getElementsByTagName('a') || opcion.getElementsByTagName('span'); 
    if (enlaces){
        enlaces[0].className = "activo";
    }
            
    var submenus = opcion.getElementsByTagName('div');
    if (submenus){
        submenus[0].style.display = 'block';
                        
        if(navigator.userAgent.indexOf('MSIE') != -1){
            submenus[0].style.marginLeft = '-122px';
        }
    }
}
        
function ocultarSubmenu(opcion)
{
    var enlaces = opcion.getElementsByTagName('a');
    if (enlaces){
    
        if (location.pathname.indexOf('Salones') == -1 &&  location.pathname.indexOf('Jardines') == -1){
            enlaces[0].className = "";
        }
    }
            
    var submenus = opcion.getElementsByTagName('div');
    if (submenus){
        submenus[0].style.display = 'none';
    }
}

function cambiarFoto(ruta)
{

    document.getElementById('imagenGrande').src = ruta;
}