$(document).ready(function() {

	if (!$(".inptCheck:checked").length) $(".inptSubmit").hide();


	$(".checkbox").click( function() {
		if (($(this).hasClass("exclusif")) && ($(this).attr("checked") == true)) {
			$(".checkbox").attr("checked",false);
			$(this).attr("checked",true);
			$(".inptSubmit").show();
		} else if (!($(".checkbox:checked").length)) {
			$(".inptSubmit").hide();
		} else {
			if (!($(this).hasClass("exclusif"))) $(".exclusif").attr("checked",false);
			$(".inptSubmit").show();
		}
	});


	$(".radio").click( function() {
		$(".inptSubmit").show();
	});


});