$(function()
{
	$("input.CheckImg").CheckImg('0.png', '1.png', 'scripts/ImgChk/');
	$("img.CheckImg").css('cursor','pointer');

	function AutoSelect(c)
	{
		if(!$('.' + c + ' input.CheckImg').attr('checked'))
			$('.' + c + ' img').trigger('click');
	}

	$('#art').change(function() { AutoSelect('art'); });
	$("#nom").focus(function() { AutoSelect('nom'); });
	$("#niv_art").focus(function() { AutoSelect('niv_art'); });
	$("#niv_j").focus(function() { AutoSelect('niv_j'); });
	$("#min").focus(function() { AutoSelect('min'); });
	$("#max").focus(function() { AutoSelect('max'); });
	$('#effet').change(function() { AutoSelect('effet'); });
});
