﻿$(function(){

$(".text3_link").hover(
  function () {
    $(".text3_popup").show();
  },
  function () {
    $(".text3_popup").hide();
  }
);

$(".text2_link").hover(
  function () {
    $(".text2_popup").show();
  },
  function () {
    $(".text2_popup").hide();
  }
);

$(".text1_link").hover(
  function () {
    $(".text1_popup").show();
  },
  function () {
    $(".text1_popup").hide();
  }
);

});

