$(function(){
	$('#header .menu li:last').css('margin-right', '0');
})

function checkform(){

	if(!$('#naam').val()){
		alert('Naam is empty');
		return false;
	}

	if(!$('#Telefoon').val()){
		alert('Telefoon is empty');
		return false;
	}

	if(!$('#email').val()){
		alert('Email is empty');
		return false;
	}

	return fnCheckEmail($('#email').val());
}

function fnCheckEmail(str){
	if(!str) return false;
	if(str.constructor!=String) return false;
	if(str.length<6||str.length>50) return false;
	var tmp=str.match(/[\w\[\]\@\(\)\.]+\.+[A-Za-z]{2,4}/g);
	if(tmp!=null){
		if(tmp[0]==str) return true;
	}
	alert("Sorry. Your email address is invalid.");
	return false;
}

