$(document).ready(function(){
	$(".meerwetenForm").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

	$('#headerFotos ul').innerfade({
				speed: 4000, 
				timeout: 7000,
				type: 'sequence',
				containerheight: '274px',
				runningclass: 'headerFoto'
			});

});

