$(function() {
	$('.img_1').show();
	$('.img_2').hide();
	$('.img_3').hide();
	
	$('.lien_1').mouseover(function(){
		$('.img_1').show();
		$('.img_2').hide();
		$('.img_3').hide();
	});
		$('.lien_2').mouseover(function(){
		$('.img_1').hide();
		$('.img_2').show();
		$('.img_3').hide();
	});
		$('.lien_3').mouseover(function(){
		$('.img_1').hide();
		$('.img_2').hide();
		$('.img_3').show();
	});
});
