function get_rss_feed() {
	$("#newsList").empty();
 
	$.get('http://www.stokesleyshow.co.uk/getRSS.php?url=http://www.nfuonline.com/rss_news_feed/', function(d) {
 
		$(d).find('item').each(function() {
 
			var $item = $(this);
			var title = $item.find('title').text();
			var link = $item.find('link').text();
			var description = $item.find('description').text();
			var html = "<li><a href='" + link + "' target='_blank'>" + title +"</a><br />" + description +"</li>";
 			$('#newsList').append(html);  
		});

		$("#newsFeed").jCarouselLite({  
			vertical: true,  
			visible: 1,  
			auto:5000,  
			speed:2500  
		});
		
	});
 
};
