// JavaScript Document

      $(document).ready(function() {
        $('.bar_description').hide();
       // toggles the slickbox on clicking the noted link  
        $("#tabs li").toggle(
        function () {
          $(this).addClass("active");
          $(this).find('div').show('slow');
        },
        function () {
          $(this).removeClass("active");
          $(this).find('.bar_description').hide('slow');
        }
        );
        
        
        
        $("#bars > li h3").toggle(
        function () {
          $(this).parent("li").removeClass("off");
          $(this).parent("li").find('ul').hide('slow');
        },
        function () {
          $(this).parent("li").addClass("off");
          $(this).parent("li").find('ul').show('slow');
        }
        );

      });


