/**
 * @author Darathor < darathor@free.fr > http://admforum.edforum.net 
 */

var lang_openInNewWindow = 'Ouvrir ce lien dans une nouvelle fenêtre';

/**
 * External links management.
 */
jQuery(document).ready(function(){
    jQuery("a[@href^=\"http\"]").each(function(i){jQuery(this).not("[@href*=\""+document.domain+"\"]").not(":has(img)").after(" <a href=\""+jQuery(this).attr("href")+"\" class=\"external-link\" onclick=\"window.open(this.href); return false;\" style=\"border: none;\"><img src=\"http://" + document.domain + "/wp-content/plugins/edforum/external-link.gif\" alt=\"\" title=\"" + lang_openInNewWindow + "\" /></a>");});
});