 
/* the next line is an example of how you can override default options globally (currently commented out) ... */
 // $.fn.cluetip.defaults.tracking = true;
var $j = jQuery.noConflict();

$j(document).ready(function() {
  //alert("DOM IS READY");
  $j('a.jt2:lt(1000)').cluetip({

      cluetipClass: 'jtip',
      width:395,
      leftOffset: -30,
      activation: 'click',
      //arrows: false,
      //dropShadow: false,
      sticky: true,
      //ajaxCache: true,
      cluezIndex: 9999,
      //cursor: 'hand',
      mouseOutClose: true,
      closePosition: 'title',
      hoverIntent: false,
      closeText: '<img src="/assets/images/global/cluetip/cross.png" alt="close" />'
    });

    $j('a.jtimg:lt(500)').cluetip({

        cluetipClass: 'jtip',
        width:395,
        leftOffset: -30,
        activation: 'click',
        //arrows: false,
        //dropShadow: false,
        sticky: true,
        //ajaxCache: true,
        cluezIndex: 9999,
        //cursor: 'hand',
        mouseOutClose: true,
        closePosition: 'title',
        hoverIntent: false,
        closeText: '<img src="/assets/images/global/cluetip/cross.png" alt="close" />'
    });

    $j('a.jt4:lt(1000)').cluetip({

        cluetipClass: 'jtip',
        width:395,
        leftOffset: -30,
        activation: 'click',
        //arrows: false,
        //dropShadow: false,
        sticky: true,
        //ajaxCache: true,
        cluezIndex: 9999,
        //cursor: 'hand',
        mouseOutClose: true,
        closePosition: 'title',
        hoverIntent: false,
        closeText: '<img src="/assets/images/global/cluetip/cross.png" alt="close" />'
      });


});

//unrelated to clueTip -- just for the demo page...

$j(document).ready(function() {
  $j('div.html, div.jquery').next().css('display', 'none').end().click(function() {
    $j(this).next().toggle('fast');
  });
  
  $j('a.false').click(function() {
    return false;
  });
});
  



