// Champs (avec contenance)
(function($) {
	$.fn.champs = function( contenu ) {
		// Si on veut récupérer le contenu d'origine
		if( contenu == '' || contenu == null )
			return $(this).attr('champs');
		// A l'initialisation de l'objet, on attribut une valeur au contenu
		$(this).val( contenu ) ;
		// Et un attribut pour pouvoir retrouver la valeur
		$(this).attr( 'champs', contenu ) ;
		// L'objet à le pointeur
		$(this).focus( function() {
			// Si il contient le texte de base
			if( $(this).val() == contenu )
				$(this).val( '' ) ;
		});
		// L'objet perd le pointeur
		$(this).blur( function() {
			// Si l'objet ne contient rien
			if( $(this).val() == '' )
				$(this).val( contenu ) ;
		});
		return this;
	};
})(jQuery);
