﻿(function($) {
$(document).ready(function() {
         $('#botoneraPrincipal .botonTVN').click(function() {
            var selected = jQuery(this).attr("id");
            $(".botoneracen").each(function(i, domEle) {
                if (domEle.id != "sub_" + selected) {
                    $(this).hide();   //ocultar todos los seleccionados             
                }
            });
            $(".botoneracen2").hide(""); //ocultar lvl 2 menu
            $('#sub_' + this.id).slideToggle("slow", function() {  //mostrar sub menu lvl 1
                var $thisLvl2 = $(this);
                $(".mlateral", $thisLvl2).find('img').attr("src", "/imagenes/master/flecha_submenu.png"); //re asignar las felchas por defecto
                $(".mlateral", this).unbind("click");  //quitar evento click                  
                $(".mlateral", this).click(function() {//mostrar sub menu lvl 2                            
                    //$(".botoneracen2").hide("fast");
                    var selected2 = jQuery(this).attr("id");
                    $(".botoneracen2").each(function(i, domEle) {
                        if (domEle.id != "sub2_" + selected2) {
                            $(this).hide(); //ocultar todas las seleccionadas                 
                        }
                    });
                    $('#sub2_' + this.id).slideToggle("fast");
                    //cambiar imagen menu lvl 2 
                    if ($(this).find('img').attr("src") == "/imagenes/master/flecha_submenu.png") {
                        $(this).find('img').attr("src", "/imagenes/master/flecha_submenu.png");
                    }
                    else {
                        $(".mlateral", $thisLvl2).find('img').attr("src", "/imagenes/master/flecha_submenu.png");
                        $(this).find('img').attr("src", "/imagenes/master/flecha_submenu.png");
                    }
                });
            });
            //cambiar imagen muno lvl 1
            if ($(this).find('img').attr("src") == "/imagenes/master/flechita_up.gif") {
                $(this).find('img').attr("src", "/imagenes/master/flechita.gif");
                $(this).css({ 'background-image': 'url(/imagenes/master/botonclaro.gif)'});
               
            }
            else {
                $('#botoneraPrincipal .botonTVN').find('img').attr("src", "/imagenes/master/flechita.gif"); //reasignar la felchas por defecto
                $('#botoneraPrincipal .botonTVN').css({ 'background-image': 'url(/imagenes/master/botonclaro.gif)' });
                $('#botoneraPrincipal .botonTVN a').css("color","#000");
                $(this).find('img').attr("src", "/imagenes/master/flechita_up.gif");
                $(this).css('background', 'url(imagenes/master/botonoscuro.gif)');
                $("a", this).css("color","#ffffff");
                             
            }
        });

        //actuvar segundo nivel
       // $('#botoneraPrincipal .botonTVN:eq(3)').trigger('click');

        $('#botonMapa').click(function() {

            if ($(this).find('img').attr("src") == "/imagenes/master/flechita_up.gif") {
                $(this).find('img').attr("src", "/imagenes/master/flechita.gif");
            }
            else {
                $(this).find('img').attr("src", "/imagenes/master/flechita_up.gif");
            }

            if ($("#Home_Footer").is(":hidden")) {
                $('#Home_Footer').html("");
                $('#Home_Footer').hide().load("/footer.aspx").fadeIn("slow");
                return false;
            }
            else {
                $("#Home_Footer").hide();
            }

        }); 
    });
})(jQuery);
