jQuery(document).ready(function() {
  // hides the slickbox as soon as the DOM is ready
  // (a little sooner than page load)
  jQuery('#headerStrip').hide();
  // toggles the slickbox on clicking the noted link
  jQuery('a#triggerCatID').click(function() {
   jQuery('#headerStrip').slideToggle(400);
   return false;
  });
	
	
});