$(document).ready(function() {
	 $('.fotoblok img').tooltip({
		    track: true, 
		    delay: 0, 
		    showURL: false, 
		    showBody: " - ",
		    positionLeft:true
	});
	
	// empty contact form fields
	$('input.nieuwsbrief').focus(function() {
		if ($(this).val()==$(this).attr('id')) $(this).val('');
	});
	$('input.nieuwsbrief').blur(function() {
		if ($(this).val()=='') $(this).val($(this).attr('id'));
	});
	
	
});