$(document).ready(function() {	counter = 0;	$('.crai_tooltip').each(function() {		counter++;		// prelevo parametri		var id = $(this).attr('id');		if (id == null || id == '') {			id = 'tooltip_' + counter;		}				$(this).parent().mouseover(function(e) {			$('#' + id).css('top', (e.pageY-110));			$('#' + id).css('left', e.pageX);			$('#' + id).show();		});		$(this).parent().mouseout(function() {			$('#' + id).hide();		});		$(this).parent().mousemove(function(e) {			$('#' + id).css('top', (e.pageY-110));			$('#' + id).css('left', e.pageX);		});				$(this).replaceWith(function() {			return '';		});		$('body').append('<div id="' + id + '" class="crai_tooltip" style="display: none;"><div>' + $(this).html() + '</div></div>');	});});
