
/* the next line is an example of how you can override default options globally (currently commented out) ... */

$(document).ready(function() {

  $('#sticky').cluetip({cluetipClass: 'jtip', sticky: true, closePosition: 'title', closeText: '<img src="../js/tooltip/images/cross.png" alt="close" width="16" height="16" />', arrows: true });
});

$(document).ready(function() {
  $('div.html, div.jquery').next().css('display', 'none').end().click(function() {
    $(this).next().toggle('fast');
  });
  
  $('a.false').click(function() {
    return false;
  });
});



