$(function() {

$(".referente").each(function () {
var iid = $(this).attr("id");
var anome = new Array;
var anome = iid.split('_');
var snome = anome[0].charAt(0).toUpperCase() + anome[0].slice(1)+' '+anome[1].charAt(0).toUpperCase() + anome[1].slice(1); 
var aleat = 100+Math.floor(Math.random()*99);
var tt = $(this).attr("title");
$(this).html(
'<div class=\"img\">'+
'<img src=\"fototessera/'+iid+'.jpg\" alt=\"'+iid+'\" />'+
'</div><div class=\"desc\">'+
snome+
'<hr />'+
tt+
'<br /><br />'+
'<a onclick=\"javascript:window.open(this.href);return false;\" href=\"cgi-bin/scrivi_a.pl?destinatario='+
iid+
'_'+
aleat+
'">Scrivimi</a>');
}); // $(".referente").each

$(".lega").each(function () {
$(this).click(function(){ 
window.open(this.href);
return false;
}); 
$(this).prepend('<img src="gif/8anipt5a.gif" /> ');
$(this).append('<br />');
}); // $(".lega").each

}); // $
