
$(function(){
	$(".show-line").mouseenter(function(){
		$(this).find(".show-img-cadre").toggleClass("show-img-cadre-over");
	}).mouseleave(function(){
		$(this).find(".show-img-cadre").toggleClass("show-img-cadre-over");
	});
});
