jQuery.noConflict();
(function($) {
  $(function() {
   $('section footer li span').mouseover(function(){$(this).next('.tooltip').show();}).mouseout(function(){$(this).next('.tooltip').hide();});
  });
})(jQuery);

