TO_LOAD_INDEX++;
TO_LOAD[TO_LOAD_INDEX]='load_emptyfield();';

function load_emptyfield(){
	// Vide un champ si au clic
	var s='input.empty_field,input.empty-field,textarea.empty-field,textarea.empty_field';
	$(s).each(function(){
		if($(this).attr('orig')){
			return;
		}
		$(this).attr('orig',$(this).attr('value'));
	});

	$(s).focusin(function(){
		if($(this).val()==$(this).attr('orig')){
			$(this).val('');
		}
	});

	$(s).focusout(function(){
		if($(this).val()==''){
			$(this).val($(this).attr('orig'));
		}
	});
}
