$(document).ready(function() {
   
$("#link-1").hover(
  function () {
    $("#tooltip-1").show();
  },
  function () {
    $("#tooltip-1").hide();
  }
);


$("#link-2").hover(
  function () {
    $("#tooltip-2").show();
  },
  function () {
    $("#tooltip-2").hide();
  }
);



$("#link-3").hover(
  function () {
    $("#tooltip-3").show();
  },
  function () {
    $("#tooltip-3").hide();
  }
);



$("#link-4").hover(
  function () {
    $("#tooltip-4").show();
  },
  function () {
    $("#tooltip-4").hide();
  }
);



$("#link-5").hover(
  function () {
    $("#tooltip-5").show();
  },
  function () {
    $("#tooltip-5").hide();
  }
);



$("#link-6").hover(
  function () {
    $("#tooltip-6").show();
  },
  function () {
    $("#tooltip-6").hide();
  }
);



$("#link-7").hover(
  function () {
    $("#tooltip-7").show();
  },
  function () {
    $("#tooltip-7").hide();
  }
);



});
