$(document).ready(function() {
	
	$('#vignette img').hover(
  function () {
    var currentClass = $(this).attr("class");
    $("#visuel div").hide()
    $("#"+currentClass).show()
  }, 
  function () {
    
  }
);
  
});

