/* moo style */
window.addEvent('domready',function() {
  //opacity / display fix
  $$('.jq-checkpointSubhead').setStyles({
    opacity: 0,
    display: 'block'
  });
  //put the effect in place
  $$('.jq-checkpoints .ce_text').each(function(el,i) {
    el.addEvents({
      'mouseenter': function() {
        el.getElement('div.jq-checkpointSubhead').fade('in');
      },
      'mouseleave': function() {
        el.getElement('div.jq-checkpointSubhead').fade('out');
      }
    });
  });
});
