$(function() {
  $('#menu a.home').qtip({
     content: '<p>Hey! I\'m Marc-Andr&eacute; Cournoyer, a friendly code/life hacker from Montréal, QC.</p><p>I created Thin, tinyrb, wrote a book, created and sold a few things and I\'m now making a living online with my products.</p><p><strong>Click to go to my home page.</strong></p>',
     style: {
       name: 'dark',
       padding: 10,
       tip: 'topLeft',
       width: 500,
       border: {
        width: 3,
        radius: 5
      },
     },
     position: {
        corner: {
           target: 'bottomMiddle',
           tooltip: 'topLeft'
        }
     }
  });
  
  $("#ads a.make, #ads a.book").qtip({
     style: {
       name: 'dark',
       padding: 4,
       tip: 'rightMiddle',
       width: 110,
       border: {
        width: 3,
        radius: 5
      },
     },
     position: {
        corner: {
           target: 'leftMiddle',
           tooltip: 'rightMiddle'
        }
     }
  });
  
  $("#feedcount").load("/feedcount.txt");
});
