document.observe('dom:loaded', function() {	$('cartoMagenta').observe('mouseover', function() {		$('imgJaune').hide();		$('imgBleu').hide();		$('imgMagenta').show();		$('imgVert').hide();	});		$('cartoJaune').observe('mouseover', function() {		$('imgJaune').show();		$('imgBleu').hide();		$('imgMagenta').hide();		$('imgVert').hide();	});		$('cartoBleu').observe('mouseover', function() {		$('imgJaune').hide();		$('imgBleu').show();		$('imgMagenta').hide();		$('imgVert').hide();	});		$('cartoVert').observe('mouseover', function() {		$('imgJaune').hide();		$('imgBleu').hide();		$('imgMagenta').hide();		$('imgVert').show();	});	});
