$(document).ready(function(){					
	
		
	var height = $(window).height();
	if (($('.inhoud').height()) >= height)
	{ 
		var height = $('.inhoud').height() + 10;
	}
	else
	{
		var height = height - 65;
	}
	$('.content').css('min-height', height);
	
	$("#contact").validate({
		submitHandler: function() 
		{ 
			$.post("forms/contact", $('form').serialize(),
					function(data){
						$('.contact_form').html(data);
			   });
			return false;
		}

	});
	
	
	
});
