$(document).ready(function() {
  $('.tips').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
    clickThrough: true,
    fx: {
      open: 'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
      openSpeed:  'fast'
    }
  });
});

