$(document).ready(function(){	
	$('map area').tooltip({ 
	    track: true, 
	    delay: 0, 
	    showURL: false,
	    opacity: 1,
	    bodyHandler: function() {
		
			return $("#text_"+$(this).attr('id')).html(); 
	    }, 
	    fade: 250 
	});
});

