function bublinaFunction() {	if(jQuery.browser.opera)	{//		pohybuje s prvkem tooltip při pohybu myši		jQuery(document).mousemove(function(e){			//jQuery('#bubl').css({top:e.pageY-15,left:e.pageX-15});		}); //		po najetí myši na odkaz  		jQuery('.bublina[title]').mouseover(function(e){			jQuery("#bubl").css({"display":"none"});			var ttext = jQuery(this).attr("title");			jQuery(this).after('<span id="bubl"><span class="top"></span><em></em><span class="bot"></span></span>');			jQuery('#bubl em').text(ttext).show().fadeTo(800,1);			var vyska = jQuery("#bubl").height();			jQuery("#bubl").css({"margin-top":"-"+vyska+"px"});			jQuery("#bubl").css({"margin-left":"-"+jQuery(this).width()+"px"});			jQuery(this).attr({title:""}); 		}); 		jQuery('.bublina[title]').mouseout(function(e){			jQuery(this).attr({title:jQuery('#bubl em').text()});			jQuery('#bubl').hide().remove();		});	}	else	{		// OVLADANI BUBLINY		jQuery(".bublina").hover(function () {			title = jQuery(this).attr("title");			jQuery(this).css({"position":"relative"});			if(title)			{				// PRIDANI KODU S TITLEM				var kod = '<span class="bubl"><span class="top"></span><em>' + title + '</em><span class="bot"></span></span>';				jQuery(this).append(kod);				// NASTAVENI HORNIHO NASTAVENI POTICOVANEHO ROHU				var vyska = jQuery(this).children(".bubl").height();				jQuery(this).children(".bubl").css({"top":"-"+vyska+"px"});				// TITLE SE VYMAZE				jQuery(this).attr("title","");			}			else			{				// EXISTUJICI KOD? JEN ROZSVITIME				jQuery(this).children(".bubl").css({"display":"block"});				jQuery(this).css({"padding-bottom":"1px"});			}		},		function () {			// ZHASNUTI BUBLINY			jQuery(this).children(".bubl").css({"display":"none"});			jQuery(this).css({"padding-bottom":"0px"});		}		);	} }jQuery(document).ready(function(){	bublinaFunction();});
