/* function targetLinks() {
	var where;
	where="_blank";
	
	//$("a[href*='://']:not([href^="+liens_sortants_site+"])")
	//if (("a[href*='://']:not([href^="+liens_sortants_site+"])") && ("a[href*='://']:not([href^="+"http://www.irma.asso.fr"+"])"))
	if ("a[href*='://']:not([href*="+liens_sortants_site+"])")
	{
	
	$("a[href*='://']:not([href^="+liens_sortants_site+"])")
	  .attr('target',where)
		.attr('rel','external')
		.addClass('external')
		.each(function(){
			title =  "(nouvelle fenêtre)";
			if($(this).attr("title")) title = $(this).attr("title") + " (nouvelle fenêtre)";
			$(this).attr("title",title);
		});
	}else
	{
	where="_top";
	$("a[href*='://']:not([href^="+liens_sortants_site+"])")
	  .attr('target',where)
		.attr('rel','external')
		.addClass('external')
		.each(function(){
			title =  "(Imra)";
			if($(this).attr("title")) title = $(this).attr("title") + " (Irma)";
			$(this).attr("title",title);
		});
	}
}
if (window.jQuery)
	(function($){
		if(typeof onAjaxLoad == "function") onAjaxLoad(targetLinks);
		$('document').ready(targetLinks);
	})(jQuery); */
	function targetLinks() {
	var where;
	where="_blank";
	
	
	$("a[href*='://']:not([href^="+liens_sortants_site+"])")
	  .attr('target',where)
		.attr('rel','external')
		.addClass('external')
		.each(function(){
			title =  "(nouvelle fenêtre)";
			if($(this).attr("title")) title = $(this).attr("title") + " (nouvelle fenêtre)";
			$(this).attr("title",title);
		});
	
}
if (window.jQuery)
	(function($){
		if(typeof onAjaxLoad == "function") onAjaxLoad(targetLinks);
		$('document').ready(targetLinks);
	})(jQuery);
