      $(document).ready(function() {
      // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#natbox').hide();
       // toggles the slickbox on clicking the noted link  
        $('a#nat-toggle').click(function() {
          $('#natbox').toggle(400);
          return false;
        });       
// hides national block 

       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#localbox').hide();
       // toggles the slickbox on clicking the noted link  
        $('a#local-toggle').click(function() {
          $('#localbox').toggle(400);
          return false;
        });
// hides local block 

       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#interbox').hide();
       // toggles the slickbox on clicking the noted link  
        $('a#inter-toggle').click(function() {
          $('#interbox').toggle(130);
          return false;
        });
// hides international block 
 
      });