$(function() {
	$.bindTooltips = function()
	{
		$('span.prom_lm, span.prom_ko, span.prom_kpr, span.prom_kg').tooltip({
			track: true,
			opacity: 1,
			fade: 200,
			bodyHandler: function() {
				var this_class = '';
				if($(this).hasClass('prom_lm'))
					this_class = 'lm_opis';
				else if($(this).hasClass('prom_ko'))
					this_class = 'ko_opis';
				else if($(this).hasClass('prom_kpr'))
					this_class = 'kpr_opis';
				else if($(this).hasClass('prom_kg'))
					this_class = 'kg_opis';
	
				return (this_class.length && $('#' + this_class).html()) ? $('#' + this_class).html() : '';
			} 
		});
	}
	
	$.bindTooltips();
});