$(function(){
$("a").each(function(){
if($(this).attr("href") && $(this).attr("rel") == "external"){
$(this).attr("target", "_blank");
}
});
});
