$(document).ready(function(){
	$('#verzendContact').click(function(){
		fout = false
		$('#naam, #adres, #postcode, #woonplaats, #email').removeClass('verplichtVeld verplichtVak')
		if ($('#naam').val() == '') {
			$('#naam').hide().addClass('verplichtVeld').fadeIn(500)
			fout = true
		}
		if ($('#adres').val() == '') {
			$('#adres').hide().addClass('verplichtVeld').fadeIn(500)
			fout = true
		}
		if ($('#postcode').val() == '') {
			$('#postcode').hide().addClass('verplichtVeld').fadeIn(500)
			fout = true
		}
		if ($('#woonplaats').val() == '') {
			$('#woonplaats').hide().addClass('verplichtVeld').fadeIn(500)
			fout = true
		}
		if ($('#email').val() == '') {
			$('#email').hide().addClass('verplichtVeld').fadeIn(500)
			fout = true
		}
		if (fout == false) {
			document.forms[0].submit()
		}
		return false
	})
})
