$(document).ready(function(){
	$("a").each(function() { 
		if ($(this).attr("href").indexOf('http') != -1) {
			$(this).attr("target","_blank");
			if ($(this).attr("title")) $(this).attr("title",$(this).attr("title")+" (abre en nueva ventana)");
			else $(this).attr("title","más info sobre "+$(this).text()+" (abre en nueva ventana)");
			if ($(this).html().toLowerCase().indexOf('img') == -1)
				$('<img src="imagenes/popup.gif" style="margin-left:0.2em" alt="" />').appendTo($(this));
		}
	});
});
