﻿(function($) {
    $.fn.menuHorizontal = function() {
        this.each(function() {
            var $this = $(this);
            $this.hover(function(e) {
                $(this).addClass('bgr_dv_Menu_Temas_li_hover');
                var id = $(this).attr('id').substring(17);
                $('.bgr_dv_Menu_SubMenu').hide();
                $('#bgr_dv_Menu_SubMenu_' + id).show();
            }).mousemove(function(e) {
                $(this).addClass('bgr_dv_Menu_Temas_li_hover');                
            }).mouseout(function(e){
                $(this).removeClass('bgr_dv_Menu_Temas_li_hover');                
            });
        });
        var seleccionado = $('.bgr_li_active').attr('id').substring(17);
        $('#bgr_dv_Menu_SubMenu_' + seleccionado).show();    
    }
})(jQuery);
