$(document).ready(function() {
	
	return $('.show-title').each(function(){
		var label = $(this).attr('title');
		if ($(this).val()=='') { $(this).val(label); }
		$(this).focus(function() {
			if ($(this).val()==label) { $(this).val(''); }
			$(this).removeClass('textfield-fout');
			$(this).addClass('ingevuld');
		});
		$(this).blur(function() {
			if ($(this).val()=='') { $(this).val(label); $(this).removeClass('ingevuld'); }
		});
		
	});
			
});
