
/* the next line is an example of how you can override default options globally (currently commented out) ... */

 // $.fn.cluetip.defaults.tracking = true;
  // $.fn.cluetip.defaults.width = 'auto';
$(document).ready(function() {

  
    $('a.gp').cluetip({
		cluetipClass: 'rounded',
		arrows: true,
		tracking: false,
		sticky: true,
		dropShadow: false,
		showtitle: false,
		positionBy: 'mouse',
		closeText: '<span style="font-size:12px">close</span>',
		closePosition: 'bottom',
		local: true, 
		hideLocal: true,
		mouseOutClose: true
		});
 });

//unrelated to clueTip -- just for the demo page...

$(document).ready(function() {
  $('div.html, div.jquery').next().css('display', 'none').end().click(function() {
    $(this).next().toggle('fast');
  });
  
  $('a.false').click(function() {
    return false;
  });
});
  



