  $(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $('#searchbox').hide();
  $('#subsbox').hide();
 // toggles the slickbox on clicking the noted link
  $('a#search-toggle').click(function() {
  $('#searchbox').slideToggle(400);
 return false;
  });
  
    $('a#subs-toggle').click(function() {
  $('#subsbox').slideToggle(400);
 return false;
  });
  
});
