function follow() {
    var me   = $(this);
    var top  = me.position().top;
    var left = me.next('span').position().left;
    $('#info').show();
    $('#info').animate({'left':left, 'top':top}, 200);
    $('#infoText').html($('#msg_descr_'+me.attr('name')).html());
}

function fillText() {
    $("SPAN.replaceMe").each(function(i,obj){ $('#'+obj.id).html($('#msg_'+obj.id).html()); });
}

$(function(){ fillText(); $("input").focus(follow) });
