$(document).ready(function() {

  $('a.basic').cluetip({sticky: true, closePosition: 'title', 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;
  });
});

