$(function(){


	// login fields gedeelte
	$('input#form-username').focus(function() {
		$(this).val('');
	}).blur(function() {
		if ($(this).val() == '' || $(this).val() == null) {
			$(this).val('gebruikersnaam');
		}
	});

	$('input#form-password').focus(function() {
		$(this).val('');
	}).blur(function() {
		if ($(this).val() == '' || $(this).val() == null) {
			$(this).val('wachtwoord');
		}
	});




});
