$(function() {
$('.article a[@href^="http://"]')
  .not('a[@href^="http://www.celsias.com/"]')
  .click(function (){
    window.open($(this).attr('href'))
    return false
  })
  .each(function (){
    if (!$('img', this).length) {
      $(this).addClass('external-link')
        .html($(this).html() + ' <span class="external-link">&nbsp;</span>')
    }
  })
})