
   jQuery().ready(function() {
    $('#navigation').accordion({
            autoHeight: false,
            navigation: true,
            header: '.subSelect'
        });
        $(".subSelect").click(function(event) {
            window.location.hash = this.hash;
        });
    });
