function get_rss_feed() {
	var i = 0;
	$("#newsList").empty();
 
	$.get('http://www.flse.org.uk/getRSS.php?url=www.dcsf.gov.uk/consultations/feeds/live.cfm', 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>";
	 			if(i < 6) { $('#newsList').append(html); }
				i++;
		});
		
	});
 
};