
/* Show tooltip info by click on dieckmann image */
$(document).ready(function() {
	$("#content #contactBox img").css('cursor','pointer');
	$("#content #contactBox img").tooltip({ 
		bodyHandler: function() { 
			return 'Meine Erfahrung aus 15 Jahren anwaltlicher Tätigkeit<br>im  Familienrecht stelle ich Ihnen gern zur Verfügung.'; 
		},
		showURL: false 
	});
});