$(document).ready(function(){
  $('article.totip').each(function(){
    var text = $(".tooltip#"+$(this).attr('data-tooltip')).html();
    
    $(this).simpletip({
      content: text,
      position: [ '500', '50' ]
    });
  });
});
