window.addEvent('domready',function() {
	$('i_name').addEvents({
		'focus':function() {
			if (this.get('value') == 'nom/prénom') {
				this.set('value','');
			}
		}, 
		'blur':function() {
			if (!this.get('value')) {
				this.set('value','nom/prénom');
			}
		}
	});
	$('i_phone').addEvents({
		'focus':function() {
			if (this.get('value') == 'téléphone') {
				this.set('value','');
			}
		}, 
		'blur':function() {
			if (!this.get('value')) {
				this.set('value','téléphone');
			}
		}
	});
});
