jQuery.noConflict();

jQuery(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        jQuery('#slickbox').hide();
       // shows the slickbox on clicking the noted link  
        jQuery('a#slick-show').click(function() {
          jQuery('#slickbox').show('slow');
          return false;
        });
       // hides the slickbox on clicking the noted link  
        jQuery('a#slick-hide').click(function() {
          jQuery('#slickbox').hide('fast');
          return false;
        });
       
       // toggles the slickbox on clicking the noted link  
        jQuery('a#slick-toggle').click(function() {
          jQuery('#slickbox').toggle(400);
          return false;
        });
      });

