function setRSSLinks() {
	if (!document.getElementsByTagName){ return; }
	var anchors = $$("div.rssItem a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute('href')) anchor.onclick = function () {window.open(this.href); return false;}
	}
}
Event.observe(window, 'load', setRSSLinks, false);
