function showNapis(feature) {
  $('#tooltip').show();
          $('#tooltip').html(feature, function() {
          });
};
function hideNapis(){
    $('#tooltip').hide();
};
jQuery(document).ready(function(){
$().mousemove(function(e){
	if ($('#tooltip').css('display') != 'none')
	{
	  var width = $('#tooltip').width();
	  var half = width/2;
	  document.getElementById('tooltip').style.top=e.pageY+10+'px';
	  document.getElementById('tooltip').style.left=e.pageX-half+'px';
	}
})

		})	
