$(document).ready(function() { 
	myHeight = $(document).height() - 78;
	$("#wrapper").css("min-height", myHeight);
	
	if ($(".box").height() > 565){
		$(".box").addClass("medium");
		if ($(".box").height() > 800){
			$(".box").addClass("big");
		}
	}
	
	$('#submitFormContact').click(function() {
    	if ($('#nom').val() == '' ||
    		$('#prenom').val() == '' ||
    		$('#mail').val() == '' ||
    		$('#message').val() == '') {
    		alert('Veuillez saisir tous les champs obligatoires avant de valider le formulaire.');
        	return false;
    	}
	});
});
