jQuery(document).ready(function() {
  jQuery('a.tips').cluetip();
  
  jQuery('.chbme').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: true, // hide the clueTip's heading
    arrows: true,
    sticky: false
  });
  jQuery('.cpc').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: true, // hide the clueTip's heading
    arrows: true,
    sticky: false
  });
  jQuery('.pcs').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: true, // hide the clueTip's heading
    arrows: true,
    sticky: false
  });  
});

