Спасибо, с биндом я еще не разбирался)
Только я хотел вот так:
$(document).ready(function() {
Txt = "Привет "
$("#box1").text(Txt);
$("a").each(function (i) {
$(this).bind("mouseenter", function() {
$("#box1").text(Txt + (i + 1));
return false;
});
$(this).bind("mouseleave", function() {
$("#box1").text(Txt);
return false;
});
});
});