//http://www.uhleeka.com/blog/2009/11/bubbletip/
// het binden aan vele tooltips
$(function() {
	$('a.tooltip').mouseover(function() {
		if ($('table.bubbletip #' + this.id + '_popup').length == 0) {
			//$('#' + this.id).bubbletip($('#' + this.id + '_popup'), { deltaDirection: 'right'};
			$('#' + this.id).bubbletip('#' + this.id + '_popup', { deltaDirection: 'right'}).trigger('mouseover');
		}	
	});
});
// het binden aan specifiek element
/*
$(window).bind('load', function() {
	//$('#a1_tip').bubbletip($('#tip1'), { deltaDirection: 'right'});
});
*/
