function get_rss_feed() {
	$("#newsList").empty();
 
	$.get('http://www.travelaid.org.uk/getRSS.php?url=www.fco.gov.uk/resources/en/rss-outbound/fco-latest-news-rss', 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);  
		});

		$("#bottomRSSContent").jCarouselLite({  
			vertical: true,  
			visible: 1,  
			auto:500,  
			speed:2500  
		});
		
	});
 
};