$(document).ready(function() {
$("a").hover( function() {
  if (this.title.length > 0) {
    $("a:contains("+this.title+")").addClass("hover");
  }
}, function() {
  if (this.title.length > 0) {
    $("a:contains("+this.title+")").removeClass("hover");
  }
})
});
