$(document).ready(function(){

$(".external").each(function() {
var ext = $(this).attr("title");
if (ext) {
	$(this).attr("href",ext);
}
});

});
