/**
 * Einkaufstipp (Cluetooltip) 
 * http://plugins.learningjquery.com/cluetip/
 */
var showOrderToolTip = true;
$(document).ready(function() {
	
	// Warenkorb-Symbol
	$('a.jt').cluetip({
	    cluetipClass: 'jtip', 
	    titleAttribute: 'accesskey',
	    dropShadow: false,
	    hoverIntent: false,
	    sticky: true,
	    mouseOutClose: true,		
		activation: 'hover',  
	    closePosition: 'title',
	    closeText: '<img src="/webimages/tooltip/tooltip-schliessen.gif" alt="schlie&szlig;en" style="border:none;">',
	    fx: {             
			open:       'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
			openSpeed:  '3000'
	    },        
	    onActivate: function(e) {
	    	return showOrderToolTip;
	    }
	});

});
  
function toggleTooltipVisibility(state) {
	// Deaktiviere Tooltip via Ajax UT Aufruf 
	$.get("/ut/168", { tooltip: !state } );
	showOrderToolTip = !state;
}  



