﻿$(document).ready(function() {
	
	// add rss link to news items
	$('.cqfeed').each(function() {
		$(this).find('a').each(function() {
			link = $(this).attr('href').replace('xsl=1','xsl=2');
			$(this).attr('href',link);
		});		
	});	
});
