$(document).on("mouseover", ".rel ", function(){
if ($('a',this).text().length< 90)
{ // error here?
$(this).addClass("rel_shorty");
$(this).removeClass("rel")
}
});
CSS
.rel_shorty{
width: 470px;
line-height: 15px;
border-bottom:dotted 1px #dfdfdf;
}