jQuery(document).ready(function($) {
var $j = jQuery.noConflict();
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $j('#multi-category').show();
 // shows the slickbox on clicking the noted link
  $j('a#slick-show').click(function() {
 $j('#multi-category').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $j('a#slick-hide').click(function() {
 $j('#multi-category').hide('fast');
 return false;
  });
 // toggles the slickbox on clicking the noted link
  $j('#slick-slidetoggle').click(function() {
 $j('#multi-category').slideToggle(200);
 return false;
  });
});
