$("document").ready(function() {
  var timer = null;
  $('body#home #page ul li a').mouseover(
    function() {
      if (timer) { 
        clearInterval(timer); 
      }
      var offset = $(this).position();
      $('div.tooltip div').fadeOut();
      timer = setInterval( (function(id, left, top) {
        return function() {
          if (timer) clearInterval(timer);
          timer = 0;
          $('div.tooltip div.' + id).css({left:left+20, top:top + 40}).fadeIn();
        }
      })($(this).attr('id'), offset.left, offset.top), 500);
    }
  );
  
  // $('#page p:has(img)').addClass('bijschrift');
});
