$(function() {
	// récupération des éléments racine

	// on masque par défaut les sous-rubrique lorsqu'une rubrique racine est cochée dans la config
	$("input").each( function(i) {
		
		if($(this).attr('type') == "text" || $(this).attr('type') == "password") { 
			$(this).focus( function() { 
				$(this).css({
					backgroundImage:	"url(/rien.gif)",
					backgroundColor:	"#fff",
					border:				"1px solid #636363"
				});
			});
			$(this).blur( function() { 
				$(this).css({
					backgroundImage:	"url(coquilles/CSS/input.jpg)",
					backgroundColor:	"#fefcdd",
					border:				"1px solid #442d30"
				});
			});
		}
	});
	
	$("textarea").each( function(i) {
		
//		if($(this).attr('type') == "text" || $(this).attr('type') == "password") { 
			$(this).focus( function() { 
				$(this).css({
					backgroundImage:	"url(/rien.gif)",
					backgroundColor:	"#fff",
					border:				"1px solid #636363"
				});
			});
			$(this).blur( function() { 
				$(this).css({
					backgroundImage:	"url(coquilles/CSS/input.jpg)",
					backgroundColor:	"#fefcdd",
					border:				"1px solid #442d30"
				});
			});
//		}
	});
	
	$("input#statut").click( function() {
		if($(this).attr('type') == "checkbox") {
			if($(this).is(':checked')) {
				$("img#img_statut").attr("src", "coquilles/CSS/ico_show.png");
				$("img#img_statut").attr("title", "Visible");
			}
			else {
				$("img#img_statut").attr("src", "coquilles/CSS/ico_hide.png");
				$("img#img_statut").attr("title", "Invisible");
			}
		}
	});
});
