function init() {
		
	
	$('container').getElements('input[type=radio]').setStyle('border', '0');

	$$('delicious').setStyle('display','none');
	
	
	$$('textarea').addEvents({
		'focus': function(el){ el.addClass('highlight');},
		'blur': function(el){ el.removeClass('highlight');}
	});
	
	$$('select').addEvents({
		'focus': function(el){ el.addClass('highlight');},
		'blur': function(el){ el.removeClass('highlight');}
	});
						
	$$('.external').addEvent('click', function(ev){
		window.open(this.href); new Event(ev).stop(); return; });
		
	$$('.professionnels').addEvent('click', function(ev){
		window.open(this.href , 'professionnels', config='height=560, width=950, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no'); new Event(ev).stop(); return; });
	$$('.particuliers').addEvent('click', function(ev){
		window.open(this.href , 'particuliers', config='height=560, width=950, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no'); new Event(ev).stop(); return; });
		
	if( $('linktoprint') )
		$('linktoprint').addEvent('click', function(ev){
			new Event(ev).stop();
			window.print();
			return;
		});
}
window.addEvent('domready', init);

