function get_rss_feed() {
	$("#newsList").empty();
 	var hostName = jQuery.url.attr("host");

	$.get('http://'+ hostName +'/getRSS.php?url=www.citizensadvice.org.uk/rss_pressoffice', function(d) {
 
		$(d).find('item').each(function() {
 
			var $item = $(this);
			var title = $item.find('title').text();
			var link = $item.find('link').text();
			var html = "<li><a href='" + link + "' target='_blank'>" + title +"</a></li>";
 			$('#newsList').append(html);  
		});

		$("#latestNews").jCarouselLite({  
			vertical: true,  
			visible: 1,  
			auto:500,  
			speed:2500  
		});
		
	});
 
};