﻿$(document).ready(function() {
    $('#h_headerNav1_es,#h_headerNav1').hover(function() {
        // On Mouse Hover;
        $('#h_58').hide();
        $('#h_59').hide();
        $('#h_60').hide();
        $('#h_57').show();
    });
    $('#h_headerNav2_es,#h_headerNav2').hover(function() {
        // On Mouse Hover;
        $('#h_57').hide();
        $('#h_59').hide();
        $('#h_60').hide();
        $('#h_58').show();
    });
    $('#h_headerNav3_es,#h_headerNav3').hover(function() {
        // On Mouse Hover;
        $('#h_57').hide();
        $('#h_58').hide();
        $('#h_60').hide();
        $('#h_59').show();
    });
    $('#h_headerNav4_es,#h_headerNav4').hover(function() {
        // On Mouse Hover;
        $('#h_57').hide();
        $('#h_58').hide();
        $('#h_59').hide();
        $('#h_60').show();
    });
    $('#h_leftNavMenu').hover(function() {
        // Stuff to do when the mouse enters the element;
    }, function() {
        // Stuff to do when the mouse leaves the element;
        $('#h_57').hide();
        $('#h_58').hide();
        $('#h_59').hide();
        $('#h_60').hide();
    });
});