// JavaScript Document
 
jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  jQuery('#slickbox').hide();
  

 // toggles the slickbox on clicking the noted link 
  jQuery('a#slick-toggle').click(function() {
    jQuery('#slickbox').toggle(400);
    return false;
  });
  
  jQuery('#houdini').cluetip({
    splitTitle: '|', // use the invoking element's title attribute to populate the clueTip...
                     // ...and split the contents into separate divs where there is a "|"
    showTitle: false // hide the clueTip's heading
   
});
});
 