    $(document).ready(function() {

	var move = 0
	     zoom = 1.1;

	$('.item').hover(function() {
		
		width = $('.item').width() * zoom;
		height = $('.item').height() * zoom;
	
		$(this).find('img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:300});
		$(this).find('div.caption').stop(false,true).fadeIn(300);
	},
	function() {

		$(this).find('img').stop(false,true).animate({'width':$('.item').width(), 'height':$('.item').height(250), 'top':'0', 'left':'0'}, {duration:300});	
		$(this).find('div.caption').stop(false,true).fadeOut(400);
	});

    });
    
    
function valide_formail(){
    var form = document.formail;
    var valide;
    valide = true;
    if(form.nom.value.length < 3){
      document.getElementById("nom").innerHTML = "<img src='img/cross.png' title='Saisir un nom de trois caractères minimum !' />";
      valide = false;
    }
    else{
      document.getElementById("nom").innerHTML = "<img src='img/accept.png' title='Validé !' />";
    }
    if(form.prenom.value.length < 3){
      document.getElementById("prenom").innerHTML = "<img src='img/cross.png' title='Saisir un prénom de trois caractères minimum !' />";
      valide = false;
    }
    else{
      document.getElementById("prenom").innerHTML = "<img src='img/accept.png' title='Validé !' />";
    }
    if((form.email.value).search("^([a-z0-9_]|\\-|\\.)+@(([a-z0-9_]|\\-)+\\.)+[a-z]{2,7}$") == -1){
      document.getElementById("email").innerHTML = "<img src='img/cross.png' title='Saisir un email valide !' />";
      valide = false;
    }
    else{
      document.getElementById("email").innerHTML = "<img src='img/accept.png' title='Validé !' />";
    }
    if(form.sujet.value.length < 10){
      document.getElementById("sujet").innerHTML = "<img src='img/cross.png' title='Saisir un sujet de dix caractères minimum !' />";
      valide = false;
    }
    else{
      document.getElementById("sujet").innerHTML = "<img src='img/accept.png' title='Validé !' />";
    }
    return valide;
}