﻿
/* 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() {

$('.clickme').cluetip({ activation: 'click', sticky: true, width: 400, positionBy: 'fixed', leftOffset: 40, topOffset: -215 });
$('#clickme1').cluetip({ activation: 'click', sticky: true, width: 400, positionBy: 'fixed', leftOffset: 40, topOffset: -215 });
$('#clickme2').cluetip({ activation: 'click', sticky: true, width: 400, positionBy: 'fixed', leftOffset: 40, topOffset: -215 });
$('#clickme3').cluetip({ activation: 'click', sticky: true, width: 400, positionBy: 'fixed', leftOffset: 40, topOffset: -215 });
$('#clickme4').cluetip({ activation: 'click', sticky: true, width: 400, positionBy: 'fixed', leftOffset: 40, topOffset: -215 });

    
  
});
  



