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