Gli anchor sono gli elementi "a". Attraverso quella stringa tu cerchi tutti gli elementi a di classe "sTitoloSinistra". Guardando l'html, invece, se vuoi ottenere tutti gli elementi degli articoli sulla sinistra devi ottenere il <tr> che li contiene. Purtroppo la tabella non ha un id, per cui bisogna trovare un attributo "univoco" e in questo caso mi pare che l'ideale sia "width = 180px".
Per questo motivo io farei così:
Document doc = Jsoup.connect("http://***********").get();
Element tbody = doc.select("table[width=180]").first().child(0);
Elements rows = tbody.children();
//Rimuovo i primi 4 elementi che non sono utili
rows.remove(0);
rows.remove(0);
rows.remove(0);
rows.remove(0);
for (Element row : rows) {
//Controllo se è vuota o meno
Element td = row.child(0);
if (td.className().equals("sDataSinistra")){
continue;
}
String link = td.select("a").first().attr("href");
System.out.println(link);
}
In questo modo trovi tutti i link degli articoli e, in maniera simile, puoi trovare anche tutte le altre informazioni che ti servono!