$(document).ready(function() {
jQuery.each($("#box-seo-first").children().children().children().children(), function() {
var strLink = $(this).html();
var arrTitolo = strLink.split("");
if (arrTitolo[1]){
arrTitolo[1] = arrTitolo[1].replace("","");
strLink = "";
if (arrTitolo[0].length>30)
strLink = arrTitolo[0].substr(0,30) + "...";
else
strLink=arrTitolo[0];
if (arrTitolo[1].length>40)
strLink = strLink + "" + arrTitolo[1].substr(0,40) + "...";
else
strLink= strLink + "" + arrTitolo[1] + "";
$(this).html(strLink);
}
});
$("#box-seo").html($("#box-seo-first").html())
});