$(function() {
	$('.bottom-images a').lightBox();
});

function checkContactForm()
{
	if( document.getElementById('contact_name').value.length < 2 )
	{
		alert("Vul aub uw naam in.");
		document.getElementById('contact_name').focus();
		return false;
	}

	if(
		( document.getElementById('contact_email').value.length < 5 ) ||
		( document.getElementById('contact_email').value.indexOf("@") == -1 ) ||
		( document.getElementById('contact_email').value.indexOf(".") == -1 )
	)
	{
		alert("Vul aub uw emailadres in.");
		document.getElementById('contact_email').focus();
		return false;
	}

	if( document.getElementById('contact_message').value.length < 5 )
	{
		alert("Vul aub uw bericht in.");
		document.getElementById('contact_message').focus();
		return false;
	}

	document.getElementById('contact_send').value = "True";

	return true;
}
