Лови:
Code
<div id="count"></div>
<fieldset id="wrap"><legend>Сообщения</legend><div id="threads"></div></fieldset>
<script>
$(function () {
$.get('/index/14', function (k) {
// (c) Expert
count = $('b.unread',k).size() > 0 ? $('b.unread',k).size() : 'Нет';
$('#count').html('Непрочитанных сообщений: '+count );
$("b.unread",k).each(function(){
$('#threads').append('<a href="'+$(this).parent().attr("href")+'">'+$(this).text()+'</a><hr>');
})
})
})
</script>