// JavaScript Document

      $(document).ready(function() {
        $('.bar_content').hide();
       // toggles the slickbox on clicking the noted link  
        $("#bars li").toggle(
        function () {
          $(this).addClass("active");
          $(this).find('div').show('slow');
        },
        function () {
          $(this).removeClass("active");
          $(this).find('div').hide('slow');
        }
        );
        
        $("#bars li:first-child").addClass("active");
        $("#bars li:first-child div").css("display", "block");
        
        

      });


