$(document).ready(function() {
	// Action pour supprimer une image
	$('.changerDroit').click(function() {
		
		if($(this).css('background-position') == '-16px -191px') {
			$(this).attr('alt');
			
			
			
			$(this).css('background-position', '-208px -191px');
		} else {
			alert('Droit debloquer actuelement'+$(this).attr('alt'));
			$(this).css('background-position', '-16px -191px');
		}
		
		
		
		
		/*
		imageId = $(this).parent().find('.imagePerso').attr('id').substring(5);
		$.post('./ajax/membreFiche.php',
			{ type: "supImage", imageId: imageId }
		);
		
		$(this).parent().find('.imagePerso').attr('id', 'image0');
		$(this).parent().find('.imagePerso').attr('src', '/avatar/0.png');
		$(this).remove();
		*/
	});
	



	$('.droitToutOui').click(function() {
		$(this).parent().parent().find('.ratioOui').attr("checked", true);
		$(this).parent().parent().find('.ratioNon').attr("checked", false);
	});
	
	$('.droitToutNon').click(function() {
		$(this).parent().parent().find('.ratioNon').attr("checked", true);
		$(this).parent().parent().find('.ratioOui').attr("checked", false);
	});

});
