function get_rss_feed() {
	$("#newsList").empty();
 
	$.get('http://www.jobheaven.co.uk/getRSS.php?url=www.recruiter.co.uk/XmlServers/navsectionRSS.aspx?navsectioncode=9', 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:3000,  
			speed:2500  
		});
		
	});
 
};
