jQuery(function(jq){
  jq('a.titAzul').each(function(){
    if(jq(this).html() == 'Notícias') {
      jq(this).removeClass('titAzul').addClass('titVerde').css({'text-transform':'lowercase'});
    }
  });
});
