$(document).ready(function() {
	$("a[href][rel='externe']").click(function(){
		window.open(this.href);
		return false;
	});	
});

