jQuery.flitbox = function(link){
  $(link).hover(function(){
    $(this).next("#flitbox").fadeIn();
  },function(){
    $(this).next("#flitbox").fadeOut();
  });
}