      $(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#slickbox').hide();
  
       // hides the slickbox on clicking the noted link 
        $('a#siteSearchH').click(function() {
          $('#siteSearchTab').hide(200);
          return false;
        });
 
       // toggles the slickbox on clicking the noted link 
        $('a#siteSearchT').click(function() {
          $('#siteSearchTab').toggle(200);
         
          return false;
        });
        
     });
