$(document).ready(function(){
  // Your code here
  $('.calendar_info').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
    sticky: true,
    //height: 60,
    leftOffset:       35,       // Number of px to offset clueTip from left of invoking element
    width: 200,
    local: true,
    dropShadow: false,
    //dropShadowSteps: 3,
    arrows: true,
    mouseOutClose: true,
    cursor: 'pointer',
    //activation: "click", //"hover" is the default
    cluetipClass: 'augnet',
    hoverClass: 'activePopLink',
    hoverIntent: {
      sensitivity: 3,
      interval: 50,
      timeout: 750 
    }
  });

  $("a.icallink").click(function () {
    $.get($(this).attr("href"));
    replacement = $("<p>A Calendar notice has been sent.</p>");
    $(this).replaceWith(replacement);
    replacement.css("color","#797");
    return false;
  });

});
