$(function() {
	$("a.spip_out, a.spip_glossaire").not("[@rel*=external]").attr("rel","external");
	$("a[@rel*=external]").click(
		function(){
			window.open(this.href);
			return false;
		}
	);
});