﻿
/* 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';
jQuery(document).ready(function() {

 // $.cluetip.setup({insertionType: 'insertBefore', insertionElement: 'div:first'});
 // $.fn.cluetip.defaults.ajaxSettings.beforeSend = function(ct) {
 //     console.log(this);
 // };





// Rounded Corner theme
  //$('a.load-local').cluetip({cluetipClass: 'rounded',local:true, hideLocal: true, sticky: false, arrows: true, cursor: 'pointer'});
  jQuery('a.load-local').cluetip({cluetipClass: 'rounded',local:true, hideLocal: true, dropShadow: false, sticky: false, ajaxCache: false, arrows: true,cursor:'pointer'});
 
  
});

//unrelated to clueTip -- just for the demo page...

jQuery(document).ready(function() {
  jQuery('div.html, div.jquery').next().css('display', 'none').end().click(function() {
   jQuery(this).next().toggle('fast');
  });
  
  jQuery('a.false').click(function() {
    return false;
  });
});
  



// JScript File

