$(document).ready(function(){

    $(".popup-image-link")
         .hover(
            function() {
                var idimg = $(this).attr("id").split("_");
                $("#photo_"+idimg[1]).show("normal");
            },
            function() {
                var idimg = $(this).attr("id").split("_");
                $("#photo_"+idimg[1]).hide("normal");
            }
          );

});

