/* 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 = '450px';
$(document).ready(function() {

    // $.cluetip.setup({insertionType: 'insertBefore', insertionElement: 'div:first'});

    //default theme
    $('a.tip-title').cluetip({ splitTitle: '|', arrows: false, cursor: 'pointer' });
    $('a.tip-basic').cluetip();
    $('a.tip-load-local').cluetip({ local: true, hideLocal: false, arrows: false, cursor: 'pointer', onActivate: function(e) { var cb = $('#cb')[0]; return !cb || cb.checked; } });
    $('a.tip-sticky').cluetip({ sticky: true, closePosition: 'title', arrows: false, cursor: 'pointer' });
});

function overlib(astring) {
    return false;
}
function nd() {
    return false;
}
//$('a.tip-custom-width').cluetip({ width: '200px', showTitle: false });
  //$('a.tip-highlight').cluetip({ attribute: 'id', hoverClass: 'highlight' });
  //$('#clickme').cluetip({activation: 'click', width: 650});
  //$('ol:first a:last').cluetip({tracking: true});

// jTip theme
//$('a.jt:eq(0)').cluetip({cluetipClass: 'jtip',arrows: true,dropShadow: false,sticky: true,mouseOutClose: true,closePosition: 'title',closeText: '<img src="cross.png" alt="close" />'});
//$('a.jt:eq(1)').cluetip({cluetipClass: 'jtip', arrows: true, dropShadow: false, hoverIntent: false});
//$('span[title]').css({borderBottom: '1px solid #900'}).cluetip({splitTitle: '|', arrows: true, dropShadow: false, cluetipClass: 'jtip'});
//$('a.jt:eq(2)').cluetip({cluetipClass: 'jtip',arrows: true,dropShadow: false,height: '150px',sticky: true,positionBy:'bottomTop'});
//$('a.jt:eq(3)').cluetip({local: true, hideLocal: false});
//$('a.jt:eq(4)').cluetip({cluetipClass: 'jtip', arrows: true,dropShadow: false,onActivate: function(e) {var cb = $('#cb')[0];return !cb || cb.checked;}});
//$('select.cl').cluetip({splitTitle: '|', positionBy: 'mouse', tracking: true});
// Rounded Corner theme
//  $('ol.rounded a:eq(0)').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', showtitle: false});
//  $('ol.rounded a:eq(1)').cluetip({cluetipClass: 'rounded', dropShadow: false, showtitle: false, positionBy: 'mouse'});
//  $('ol.rounded a:eq(2)').cluetip({cluetipClass: 'rounded', dropShadow: false, showtitle: false, positionBy: 'bottomTop', topOffset: 70});
//  $('ol.rounded a:eq(3)').cluetip({cluetipClass: 'rounded', dropShadow: false, sticky: true, ajaxCache: false, arrows: true});
//  $('ol.rounded a:eq(4)').cluetip({cluetipClass: 'rounded', dropShadow: false});    
