 $(document).ready(function(){


$(".popup").hover(
      function () {
        $(this).next("div").fadeIn("fast");
      }, 
      function () {
        $(this).next("div").fadeOut("fast");
      }
    );



 });


