var $jq=jQuery.noConflict();
$jq(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $jq('#slickbox').hide();
 // shows the slickbox on clicking the noted link
  $jq('#slick-show').click(function() {
 $jq('#slickbox').show('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $jq('#slick-hide').click(function() {
 $jq('#slickbox').hide('fast');
 return false;
  });
 // toggles the slickbox on clicking the noted link
  $jq('#slick-toggle').click(function() {
 $jq('#slickbox').slideToggle("slow");
 return false;
  });
});

