
	  //jQuery calendar/list hide/show
      $(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#events-list').hide();
        $('a#show-calendar').hide();
            // toggles the slickbox on clicking the noted link 
        $('a#show-list').click(function() {
          $('#events-list').slideDown(400);
          $('#calendar_wrapLarge').hide();
          $('a#show-list').hide();
          $('a#show-calendar').show();
          return false;
        });
        $('a#show-calendar').click(function() {
          $('#calendar_wrapLarge').slideDown(400);
          $('#events-list').hide();
          $('a#show-calendar').hide();
          $('a#show-list').show();
          return false;
        });
      });
