$(document).ready(function() {

	$('.lien_ext').click(function(event) {
		event.preventDefault();
		window.open($(this).attr('href'));
	});
	
});
