function get_rss_feed() {
	$("#newsList").empty();
 	var hostName = jQuery.url.attr("host");

	$.get('http://'+ hostName +'/getRSS.php?url=http://www.newcarnet.co.uk/rss/news.xml', 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);
		});

		$("#newsFeed").jCarouselLite({
			vertical: true,
			visible: 1,
			auto:500,
			speed:2500
		});

	});

};
