$(document).ready(function(){
    $("div#port>a").mouseover(function(){
      $("span#alert").html(' - '+$(this).children("img").attr('alt'));

    });
    $("div#port>a").mouseout(function(){
      $("span#alert").html('');

    });
});
