
$(".showSimpletip[title]").live('mouseover', function(){

	if( $(this).data('qtip') ) { return true; } // nepovolí volání na již otipované prvky
   
	$(this).qtip({
	  overwrite: false, // Make sure another tooltip can't overwrite this one without it being explicitly destroyed
	  content: false,
	  show: {
		 ready: true // Needed to make it show on first mouseover event
	  },
	  style: 'red', // Give it some style   
	});

});

