var meta = document.createElement('meta');meta.setAttribute('http-equiv', 'X-UA-Compatible');meta.setAttribute('content', 'IE=EmulateIE7');document.getElementsByTagName('head')[0].appendChild(meta);
(function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name;},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)data=m[1];}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)data=$.trim(e[0].innerHTML);}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)data=attr;}if(data.indexOf('{')<0)data="{"+data+"}";data=eval("("+data+")");$.data(elem,settings.single,data);return data;}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts);};})(jQuery);
(function($) {var has_VML, create_canvas_for, add_shape_to, clear_canvas, shape_from_area,canvas_style, fader, hex_to_decimal, css3color, is_image_loaded;var counter = 0;has_VML = document.namespaces;has_canvas = document.createElement('canvas');has_canvas = has_canvas && has_canvas.getContext;
if(!(has_canvas || has_VML)) {$.fn.maphilight = function() { return this; };return;}
if(has_canvas) {fader = function(element, opacity, interval) {if(opacity <= 1) {element.style.opacity = opacity;window.setTimeout(fader, 10, element, opacity + 0.1, 10);}};
hex_to_decimal = function(hex) {return Math.max(0, Math.min(parseInt(hex, 16), 255));};
css3color = function(color, opacity) {return 'rgba('+hex_to_decimal(color.substr(0,2))+','+hex_to_decimal(color.substr(2,2))+','+hex_to_decimal(color.substr(4,2))+','+opacity+')';};
create_canvas_for = function(img) {var c = $('<canvas id="canvas_' + $(this).attr("id") + ' style="width:'+img.width+'px;height:'+img.height+'px;"></canvas>').get(0);c.getContext("2d").clearRect(0, 0, c.width, c.height);return c;};	
add_shape_to = function(canvas, shape, coords, options, name){var i, context = canvas.getContext('2d');context.beginPath();if(shape == 'rect'){context.rect(coords[0], coords[1], coords[2] - coords[0], coords[3] - coords[1]);} 
else if(shape == 'poly'){context.moveTo(coords[0], coords[1]);for(i=2; i < coords.length; i+=2){context.lineTo(coords[i], coords[i+1]);}} else if(shape == 'circ'){context.arc(coords[0], coords[1], coords[2], 0, Math.PI * 2, false);}context.closePath();
if(options.fill){context.fillStyle = css3color(options.fillColor, options.fillOpacity);context.fill();}if(options.stroke){context.strokeStyle = css3color(options.strokeColor, options.strokeOpacity);context.lineWidth = options.strokeWidth;context.stroke();}
if(options.fade){fader(canvas, 0);}};clear_canvas = function(canvas, area) {canvas.getContext('2d').clearRect(0, 0, canvas.width,canvas.height);};}else {document.createStyleSheet().addRule("v\\:*", "behavior: url(#default#VML); antialias: true;"); document.namespaces.add("v", "urn:schemas-microsoft-com:vml"); create_canvas_for = function(img){return $('<var id="iemainvmlcontainer" style="zoom:1;overflow:hidden;display:block;width:'+img.width+'px;height:'+img.height+'px;"></var>').get(0);};add_shape_to = function(canvas, shape, coords, options, name, id){var fill, stroke, opacity, e;
fill = '<v:fill color="#'+options.fillColor+'" opacity="'+(options.fill ? options.fillOpacity : 0)+'" />';stroke = (options.stroke ? 'strokeweight="'+options.strokeWidth+'" stroked="t" strokecolor="#'+options.strokeColor+'"' : 'stroked="f"');opacity = '<v:stroke opacity="'+options.strokeOpacity+'"/>';
if(shape == 'rect'){e = $('<v:rect id="canvas_' + id + '" name="'+name+'" filled="t" '+stroke+' style="zoom:1;margin:0;padding:0;display:block;position:absolute;left:'+coords[0]+'px;top:'+coords[1]+'px;width:'+(coords[2] - coords[0])+'px;height:'+(coords[3] - coords[1])+'px;"></v:rect>');} else if(shape == 'poly'){e = $('<v:shape id="canvas_' + id + '" name="'+name+'" filled="t" '+stroke+' coordorigin="0,0" coordsize="'+canvas.width+','+canvas.height+'" path="m '+coords[0]+','+coords[1]+' l '+coords.join(',')+' x e" style="zoom:1;margin:0;padding:0;display:block;position:absolute;top:0px;left:0px;width:'+canvas.width+'px;height:'+canvas.height+'px;"></v:shape>');} else if(shape == 'circ'){e = $('<v:oval id="canvas_' + id + '" name="'+name+'" filled="t" '+stroke+' style="zoom:1;margin:0;padding:0;display:block;position:absolute;left:'+(coords[0] - coords[2])+'px;top:'+(coords[1] - coords[2])+'px;width:'+(coords[2]*2)+'px;height:'+(coords[2]*2)+'px;"></v:oval>');}e.get(0).innerHTML = fill+opacity;$(canvas).append(e);};clear_canvas = function(canvas){$(canvas).find('[name=highlighted]').remove();};}
shape_from_area = function(area){var i, coords = area.getAttribute('coords').split(',');for (i=0; i < coords.length; i++) { coords[i] = parseFloat(coords[i]); }return [area.getAttribute('shape').toLowerCase().substr(0,4), coords];};is_image_loaded = function(img) {if(!img.complete) { return false; }if(typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) { return false; }return true;}
canvas_style = {position: 'absolute',left: 0,top: 0,padding: 0,border: 0};
$.fn.maphilight = function(opts) {opts = $.extend({}, $.fn.maphilight.defaults, opts);return this.each(function() {var img, wrap, options, map, canvas, canvas_always, mouseover, highlighted_shape;img = $(this);if(!is_image_loaded(this)) {return window.setTimeout(function() {img.maphilight(opts);}, 200);}options = $.metadata ? $.extend({}, opts, img.metadata()) : opts;map = $('map[name="'+img.attr('usemap').substr(1)+'"]');
if(!(img.is('img') && img.attr('usemap') && map.size() > 0)) { return; }if(img.hasClass('maphilighted')) {var wrapper = img.parent();img.insertBefore(wrapper);wrapper.remove();}wrap = $('<div>').css({display:'block',background:'url('+this.src+')',position:'relative',padding:0,width:this.width,height:this.height});img.before(wrap).css('opacity', 0).css(canvas_style).remove();if($.browser.msie) { img.css('filter', 'Alpha(opacity=0)'); }
wrap.append(img);canvas = create_canvas_for(this);$(canvas).css(canvas_style);canvas.height = this.height;canvas.width = this.width;canvas.id = this.id;mouseover = function(e){var shape, area_options;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;if (area_options.linked){var thislinked = area_options.linked;$(map).find('area[coords]').each(function(){var shape, area_options, object;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;
if (thislinked == area_options.linked) {shape = shape_from_area(this);add_shape_to(canvas, shape[0], shape[1], area_options, "highlighted", null);}});}else{shape = shape_from_area(this);add_shape_to(canvas, shape[0], shape[1], area_options, "highlighted", null);}}
draw = function(object){var shape, area_options, object;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;		
if(has_canvas){canvas_always = create_canvas_for(img.get());$(canvas_always).css(canvas_style);canvas_always.width = img.width();canvas_always.height = img.height();canvas_always.id = 'canvas_' + $(object).attr("id");img.before(canvas_always);}shape = shape_from_area(object);
if ($.browser.msie){add_shape_to(canvas, shape[0], shape[1], area_options, "", $(object).attr("id"));} else{add_shape_to(canvas_always, shape[0], shape[1], area_options, "");}}
mouseclick = function(e,id){var shape, area_options, object;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;	if (id) {object = id;}else {object = this;}if (!$('#canvas_' + $(object).attr('id')).attr('id')){
if (area_options.linked){var thislinked = area_options.linked;$(map).find('area[coords]').each(function(){var shape, area_options, object;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;	
if (thislinked == area_options.linked) {draw(this);}});}else{draw(object);}}else{if (area_options.linked){var thislinked = area_options.linked;$(map).find('area[coords]').each(function(){var shape, area_options, object;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;
if (thislinked == area_options.linked) {$('#canvas_' + $(this).attr('id')).remove();}});clear_canvas(canvas);}else{$('#canvas_' + $(object).attr('id')).remove();clear_canvas(canvas);	}}}
if(options.alwaysOn) {$(map).find('area[coords]').each(mouseover);} else {if($.metadata) {$(map).find('area[coords]').each(function() {var shape, area_options;area_options = $.metadata ? $.extend({}, options, $(this).metadata()) : options;
if(area_options.alwaysOn){draw(this);	}});}$(map).find('area[coords]').mouseover(mouseover).mouseout(function(e) { clear_canvas(canvas); });$(map).find('area[coords]').click(mouseclick); }img.before(canvas);img.addClass('maphilighted');});};
$.fn.maphilight.defaults = {fill: true,fillColor: '000000',fillOpacity: 0.2,stroke: false,strokeColor: '534bfe',strokeOpacity: 1,strokeWidth: 1,fade: true,alwaysOn: false};})(jQuery);

(function($){$.dimensions={version:'1.2'};$.each(['Height','Width'],function(i,name){$.fn['inner'+name]=function(){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';return this.is(':visible')?this[0]['client'+name]:num(this,name.toLowerCase())+num(this,'padding'+torl)+num(this,'padding'+borr);};$.fn['outer'+name]=function(options){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';options=$.extend({margin:false},options||{});var val=this.is(':visible')?this[0]['offset'+name]:num(this,name.toLowerCase())+num(this,'border'+torl+'Width')+num(this,'border'+borr+'Width')+num(this,'padding'+torl)+num(this,'padding'+borr);return val+(options.margin?(num(this,'margin'+torl)+num(this,'margin'+borr)):0);};});$.each(['Left','Top'],function(i,name){$.fn['scroll'+name]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?val:$(window)['scrollLeft'](),name=='Top'?val:$(window)['scrollTop']()):this['scroll'+name]=val;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});$.fn.extend({position:function(){var left=0,top=0,elem=this[0],offset,parentOffset,offsetParent,results;if(elem){offsetParent=this.offsetParent();offset=this.offset();parentOffset=offsetParent.offset();offset.top-=num(elem,'marginTop');offset.left-=num(elem,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return $(offsetParent);}});function num(el,prop){return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;};})(jQuery);
;(function($) {

  var $cluetip, $cluetipInner, $cluetipOuter, $cluetipTitle, $cluetipArrows, $dropShadow, imgCount;
  $.fn.cluetip = function(js, options) {
    if (typeof js == 'object') {options = js;js = null;}
    return this.each(function(index) {
      var $this = $(this);var opts = $.extend(false, {}, $.fn.cluetip.defaults, options || {}, $.metadata ? $this.metadata() : $.meta ? $this.data() : {});var cluetipContents = false;var cluezIndex = parseInt(opts.cluezIndex, 10)-1;var isActive = false, closeOnDelay = 0;
      if (!$('#cluetip').length) {$cluetipInner = $('<div id="cluetip-inner"></div>');$cluetipTitle = $('<h3 id="cluetip-title"></h3>');$cluetipOuter = $('<div id="cluetip-outer"></div>').append($cluetipInner).prepend($cluetipTitle);$cluetip = $('<div id="cluetip"></div>').css({zIndex: opts.cluezIndex}).append($cluetipOuter).append('<div id="cluetip-extra"></div>')[insertionType](insertionElement).hide();$('<div id="cluetip-waitimage"></div>').css({position: 'absolute', zIndex: cluezIndex-1}).insertBefore('#cluetip').hide();$cluetip.css({position: 'absolute', zIndex: cluezIndex});$cluetipOuter.css({position: 'relative', zIndex: cluezIndex+1});$cluetipArrows = $('<div id="cluetip-arrows" class="cluetip-arrows"></div>').css({zIndex: cluezIndex+1}).appendTo('#cluetip');}
      var dropShadowSteps = (opts.dropShadow) ? +opts.dropShadowSteps : 0;
      if (!$dropShadow) {$dropShadow = $([]);for (var i=0; i < dropShadowSteps; i++) {$dropShadow = $dropShadow.add($('<div></div>').css({zIndex: cluezIndex-i-1, opacity:.1, top: 1+i, left: 1+i}));};$dropShadow.css({position: 'absolute', backgroundColor: '#000'}).prependTo($cluetip);}
      var tipAttribute = $this.attr(opts.attribute), ctClass = opts.cluetipClass;
      if (!tipAttribute && !opts.splitTitle && !js) return true;
      if (opts.local && opts.hideLocal) { $(tipAttribute + ':first').hide(); }
      var tOffset = parseInt(opts.topOffset, 10), lOffset = parseInt(opts.leftOffset, 10);var tipHeight, wHeight;var defHeight = isNaN(parseInt(opts.height, 10)) ? 'auto' : (/\D/g).test(opts.height) ? opts.height : opts.height + 'px';var sTop, linkTop, posY, tipY, mouseY, baseline;var tipInnerWidth = isNaN(parseInt(opts.width, 10)) ? 275 : parseInt(opts.width, 10);var tipWidth = tipInnerWidth + (parseInt($cluetip.css('paddingLeft'))||0) + (parseInt($cluetip.css('paddingRight'))||0) + dropShadowSteps;var linkWidth = this.offsetWidth;var linkLeft, posX, tipX, mouseX, winWidth;var tipParts;var tipTitle = (opts.attribute != 'title') ? $this.attr(opts.titleAttribute) : '';
      if (opts.splitTitle) {if(tipTitle == undefined) {tipTitle = '';}tipParts = tipTitle.split(opts.splitTitle);tipTitle = tipParts.shift();}var localContent;
    var activate = function(event) {if (!opts.onActivate($this)) {return false;}isActive = true;$cluetip.removeClass().css({width: tipInnerWidth});if (tipAttribute == $this.attr('href')) {$this.css('cursor', opts.cursor);}
      $this.attr('title','');
      if (opts.hoverClass) {$this.addClass(opts.hoverClass);}
      linkTop = posY = $this.offset().top;linkLeft = $this.offset().left;mouseX = event.pageX;mouseY = event.pageY;
      if ($this[0].tagName.toLowerCase() != 'area') {sTop = $(document).scrollTop();winWidth = $(window).width();}
      if (opts.positionBy == 'fixed') {posX = linkWidth + linkLeft + lOffset;$cluetip.css({left: posX});
      } else {
        posX = (linkWidth > linkLeft && linkLeft > tipWidth) || linkLeft + linkWidth + tipWidth + lOffset > winWidth ? linkLeft - tipWidth - lOffset : linkWidth + linkLeft + lOffset;
        if ($this[0].tagName.toLowerCase() == 'area' || opts.positionBy == 'mouse' || linkWidth + tipWidth > winWidth) {if (mouseX + 20 + tipWidth > winWidth) {  $cluetip.addClass(' cluetip-' + ctClass);posX = (mouseX - tipWidth - lOffset) >= 0 ? mouseX - tipWidth - lOffset - parseInt($cluetip.css('marginLeft'),10) + parseInt($cluetipInner.css('marginRight'),10) :  mouseX - (tipWidth/2);} else {posX = mouseX + lOffset;}}
        var pY = posX < 0 ? event.pageY + tOffset : event.pageY;
        $cluetip.css({left: (posX > 0 && opts.positionBy != 'bottomTop') ? posX : (mouseX + (tipWidth/2) > winWidth) ? winWidth/2 - tipWidth/2 : Math.max(mouseX - (tipWidth/2),0)});
      }
        wHeight = $(window).height();
      if (js) {$cluetipInner.html(js);cluetipShow(pY);}
      else if (tipParts) {
        var tpl = tipParts.length;
        for (var i=0; i < tpl; i++){if (i == 0) {$cluetipInner.html(tipParts[i]);} else { $cluetipInner.append('<div class="split-body">' + tipParts[i] + '</div>');}};
        cluetipShow(pY);
      }
      else if (!opts.local && tipAttribute.indexOf('#') != 0) {
        if (cluetipContents && opts.ajaxCache) {$cluetipInner.html(cluetipContents);cluetipShow(pY);}
        else {
          var ajaxSettings = opts.ajaxSettings;
          ajaxSettings.url = tipAttribute;
          ajaxSettings.beforeSend = function() {
            $cluetipOuter.children().empty();
            if (opts.waitImage) {$('#cluetip-waitimage').css({top: mouseY+20, left: mouseX+20}).show();}
          };
         ajaxSettings.error = function() {if (isActive) {$cluetipInner.html('<i>sorry, the contents could not be loaded</i>');}};
          ajaxSettings.success = function(data) {
            cluetipContents = opts.ajaxProcess(data);
            if (isActive) {$cluetipInner.html(cluetipContents);}
          };
          ajaxSettings.complete = function() {
          	imgCount = $('#cluetip-inner img').length;
        		if (imgCount && !$.browser.opera) {$('#cluetip-inner img').load(function() {imgCount--;if (imgCount<1) {$('#cluetip-waitimage').hide();if (isActive) cluetipShow(pY);}}); 
        		} else {$('#cluetip-waitimage').hide();if (isActive) cluetipShow(pY);    } 
          };
          $.ajax(ajaxSettings);
        }
      } else if (opts.local){
        var $localContent = $(tipAttribute + ':first');var localCluetip = $.fn.wrapInner ? $localContent.wrapInner('<div></div>').children().clone(true) : $localContent.html();$.fn.wrapInner ? $cluetipInner.empty().append(localCluetip) : $cluetipInner.html(localCluetip);cluetipShow(pY);
      }
    };
    var cluetipShow = function(bpY) {$cluetip.addClass('cluetip-' + ctClass);
      if (opts.truncate) { var $truncloaded = $cluetipInner.text().slice(0,opts.truncate) + '...';$cluetipInner.html($truncloaded);}
      function doNothing() {};
      tipTitle ? $cluetipTitle.show().html(tipTitle) : (opts.showTitle) ? $cluetipTitle.show().html('&nbsp;') : $cluetipTitle.hide();
      if (opts.sticky) {var $closeLink = $('<div id="cluetip-close"><a href="#">' + opts.closeText + '</a></div>');
        (opts.closePosition == 'bottom') ? $closeLink.appendTo($cluetipInner) : (opts.closePosition == 'title') ? $closeLink.prependTo($cluetipTitle) : $closeLink.prependTo($cluetipInner);
        $closeLink.click(function() {cluetipClose();return false;});
        if (opts.mouseOutClose) {
          if ($.fn.hoverIntent && opts.hoverIntent) {$cluetip.hoverIntent({over: doNothing, timeout: opts.hoverIntent.timeout,  out: function() { $closeLink.trigger('click'); }});
          } else {$cluetip.hover(doNothing, function() {$closeLink.trigger('click'); });}
        } else {$cluetip.unbind('mouseout');}}
      var direction = '';
      $cluetipOuter.css({overflow: defHeight == 'auto' ? 'visible' : 'auto', height: defHeight});tipHeight = defHeight == 'auto' ? Math.max($cluetip.outerHeight(),$cluetip.height()) : parseInt(defHeight,10);   tipY = posY;baseline = sTop + wHeight;
      if (opts.positionBy == 'fixed') {tipY = posY - opts.dropShadowSteps + tOffset;
      } else if ( (posX < mouseX && Math.max(posX, 0) + tipWidth > mouseX) || opts.positionBy == 'bottomTop') {
        if (posY + tipHeight + tOffset > baseline && mouseY - sTop > tipHeight + tOffset) { tipY = mouseY - tipHeight - tOffset;direction = 'top';} else { tipY = mouseY + tOffset;direction = 'bottom';}
      } else if ( posY + tipHeight + tOffset > baseline ) {tipY = (tipHeight >= wHeight) ? sTop : baseline - tipHeight - tOffset;
      } else if ($this.css('display') == 'block' || $this[0].tagName.toLowerCase() == 'area' || opts.positionBy == "mouse") {tipY = bpY - tOffset;
      } else {tipY = posY - opts.dropShadowSteps;}
      if (direction == '') {posX < linkLeft ? direction = 'left' : direction = 'right';}
      $cluetip.css({top: tipY + 'px'}).removeClass().addClass('clue-' + direction + '-' + ctClass).addClass(' cluetip-' + ctClass);
      if (opts.arrows) {var bgY = (posY - tipY - opts.dropShadowSteps);$cluetipArrows.css({top: (/(left|right)/.test(direction) && posX >=0 && bgY > 0) ? bgY + 'px' : /(left|right)/.test(direction) ? 0 : ''}).show();} else {$cluetipArrows.hide();}
      $dropShadow.hide();$cluetip.hide()[opts.fx.open](opts.fx.open != 'show' && opts.fx.openSpeed);
      if (opts.dropShadow) $dropShadow.css({height: tipHeight, width: tipInnerWidth}).show();
      if ($.fn.bgiframe) { $cluetip.bgiframe(); }
      if (opts.delayedClose > 0) {closeOnDelay = setTimeout(cluetipClose, opts.delayedClose);}
      opts.onShow($cluetip, $cluetipInner);
    };
    var inactivate = function() {isActive = false;$('#cluetip-waitimage').hide();
      if (!opts.sticky || (/click|toggle/).test(opts.activation) ) {cluetipClose();clearTimeout(closeOnDelay);        };
      if (opts.hoverClass) {$this.removeClass(opts.hoverClass);}
      $('.cluetip-clicked').removeClass('cluetip-clicked');};
    var cluetipClose = function() {
      $cluetipOuter 
      .parent().hide().removeClass().end().children().empty();
      if (tipTitle) {$this.attr(opts.titleAttribute, tipTitle);}
      $this.css('cursor','');
      if (opts.arrows) $cluetipArrows.css({top: ''});};
      if ( (/click|toggle/).test(opts.activation) ) {
        $this.click(function(event) {
          if ($cluetip.is(':hidden') || !$this.is('.cluetip-clicked')) {activate(event);$('.cluetip-clicked').removeClass('cluetip-clicked');$this.addClass('cluetip-clicked');} else {inactivate(event);}this.blur();return false;});
      } else if (opts.activation == 'focus') {$this.focus(function(event) {activate(event);});
        $this.blur(function(event) {inactivate(event);});
      } else {$this.click(function() {if ($this.attr('href') && $this.attr('href') == tipAttribute && !opts.clickThrough) {return false;}});
        var mouseTracks = function(evt) {if (opts.tracking == true) {var trackX = posX - evt.pageX;var trackY = tipY ? tipY - evt.pageY : posY - evt.pageY;$this.mousemove(function(evt) {$cluetip.css({left: evt.pageX + trackX, top: evt.pageY + trackY });});}};if ($.fn.hoverIntent && opts.hoverIntent) {$this.mouseover(function() {$this.attr('title',''); }).hoverIntent({sensitivity: opts.hoverIntent.sensitivity,interval: opts.hoverIntent.interval,  over: function(event) {activate(event);mouseTracks(event);}, timeout: opts.hoverIntent.timeout,out: function(event) {inactivate(event); $this.unbind('mousemove');}});} else {$this.hover(function(event) {activate(event);mouseTracks(event);}, function(event) {inactivate(event);$this.unbind('mousemove');});}}});};  $.fn.cluetip.defaults = {width:275,height:'auto',cluezIndex:97,positionBy:'auto',topOffset:15,leftOffset:15,local:false,hideLocal:true,attribute:'rel',titleAttribute:'title',splitTitle:'',showTitle:        true,cluetipClass:     'default',hoverClass:'',waitImage:true,cursor:'help',arrows:false,dropShadow:true,dropShadowSteps:  4,sticky:false,mouseOutClose:false,activation:'hover',clickThrough:false,tracking:false,delayedClose:0,closePosition:'top',closeText:'Close',truncate:0,fx: {open:'show',openSpeed:''},hoverIntent: {sensitivity:3,interval:50,timeout:0},onActivate:function(e) {return true;},onShow:function(ct, c){},ajaxCache:true,ajaxProcess:function(data) {data = data.replace(/<s(cript|tyle)(.|\s)*?\/s(cript|tyle)>/g, '').replace(/<(link|title)(.|\s)*?\/(link|title)>/g,'');return data;},ajaxSettings: {dataType: 'html'},debug: false};   
  var insertionType = 'appendTo', insertionElement = 'body';
  $.cluetip = {};
  $.cluetip.setup = function(options) {if (options && options.insertionType && (options.insertionType).match(/appendTo|prependTo|insertBefore|insertAfter/)) {insertionType = options.insertionType;}
if (options && options.insertionElement) {insertionElement = options.insertionElement;}};})(jQuery);
