function getRSSFeed()
{	
	// Get the latest 10 tweets from the NFD account
 	$.ajax({
		url: "/widgets/rssreader/rss.php",
		success: function(html){
			$('#fmrss').append(html);			
		}
	});
}
