function autoFormFill() {
	//Vul lege text inputs met hun titel als default waarde
	$('input:text[title],input:password[title]').
			blur(function() {
				var defaultWaarde = $(this).attr('title');
				if ($(this).val() == '') {
					$(this).val(defaultWaarde);
					$(this).css('color','#bcbcbc');
				}
			}).
			focus(function() {
				var defaultWaarde = $(this).attr('title');
				if ($(this).val() == defaultWaarde) {
					$(this).val('');
					$(this).css('color', '#222');
				}
			}).
			each(function () {
				var element = $(this);
				element.trigger('blur');
				$(this).closest('form').submit(function() {
					element.trigger('focus')
				});
			});
			
}

$(autoFormFill);
