//<![CDATA[

var theObj="";

function toolTip(czas, tytul, tresc, graf, me) {
  theObj=me;
	text='<img src="pliki/upload/event/'+graf+'" style="float:right; height:188px; margin:5px; width:188px;" alt=""/><h2><span class="date">'+czas+" </span>"+tytul+'</h2><div style="text-align:justify;">'+tresc+"</div>";
	
  document.getElementById('toolTipBox').innerHTML=text;
  document.getElementById('toolTipBox').style.display="block";
	theObj.onmouseout=hideMe;
}

function hideMe() {
  showInfo = false;
  document.getElementById('toolTipBox').style.display="none";
}
//]]>