window.addEvent('domready', function() {
	$$('.liensExterieur').addEvent('click',function() {
		window.open(this.href);
		return false;
	});
});