var mouseX = 0;
var mouseY = 0;
var pokaz = 0;

jQuery().mousemove( function(e) {
	mouseX = e.pageX;
	mouseY = e.pageY;
	if(pokaz) {
		jQuery('#inforWindowJQ').css('top', mouseY-70+'px');
		jQuery('#inforWindowJQ').css('left', mouseX+40+'px');
	}
});

function showInfoWindow(tekst) {
	pokaz = 1;
	jQuery('#inforWindowJQ td').html(tekst);
}

function hideInfoWindow() {
	pokaz = 0;
	jQuery('#inforWindowJQ').css('top', '-9999px');
	jQuery('#inforWindowJQ').css('left', '-9999px');
	jQuery('#inforWindowJQ td').html('');
} 
