$(function(){
  
  $('#teller #main .group img[title]').each(function(){
    $(this).after('<span>'+this.title+'</span>');
  });
  
  $('a:not([href^="http://tellermagazine.com"])').each(function(){
    this.target = "_blank";
    this.className = "ext";
  });
  
});

