google.load("feeds", "1");

$( function(){ 
var feed = new google.feeds.Feed("http://blogbis.blogspot.com/feeds/comments/default");	//	use full URI when in Blogger
var last = $('#last_comments > div');

	feed.setNumEntries(15); // we want a maximum of ...
	feed.load( function(result) {
		last.html('');	// delete any other entries
		if (result.error) {last.html(result.error.message); return;}
		
		$(result.feed.entries).each( function(j){
			$('<a></a>').appendTo(last).
				attr('href', this.link).attr('title', this.publishedDate).
				html('<b>'+ this.author +'</b>: '+ this.contentSnippet);
		});
		// $('#banner h1 a span').overlay({target: '#last_comments'});
		$('#last_comments_trigger a').overlay({
			onLoad: function() {
				urchinTracker('/last_comments');
			}, 
			target: '#last_comments'
		});
		$('#last_comments_trigger').show();
	});
});
/*
<div id="last_comments">
	<h3>Ultimos comentarios</h3>
	<div></div>
</div>	
...
<!-- end #foxmenu -->
<div id="last_comments_trigger">
	<a name="last_comments_trigger"><img src="http://www.librecanal.com/includes/blogbis/icon_news.png" title="Comentarios recientes" /></a>
</div>
<!-- tag a added for IE -->
*/