function get_rss_feed(feedurl) {
	//clear the content in the div for the next feed.
	$("#feedContent").empty();
 
	//use the JQuery get to grab the URL from the selected item, put the results in to an argument for parsing in the inline function called when the feed retrieval is complete
	$.get('/pr/?url='+feedurl, function(d) {
 
		var html = "<ul id=\"menu\">";
		//find each 'item' in the file and parse it
		$(d).find('item').each(function(index) {
 
			if (index < 2){
			//name the current found item this for this particular loop run
			var $item = $(this);
			// grab the post title
			var title = $item.find('title').text();
			if (title.length > 81) {
				title = title.substring(0,81) + " ...";
			}
			// grab the post's URL
			var link = $item.find('link').text();
 
			// now create a var 'html' to store the markup we're using to output the feed to the browser window
			html = html + "<li>" + "<a href=\"" + link + "\" target=\"_blank\">" + title + "<\/a><\/li>";
			}	
 
		});
			html = html + "<\/ul>";
			//put that feed content on the screen!
			$('#feedContent').append($(html));  
	});
 
};


//$(document).ready(function(){

//var first = 0;
//var speed = 700;
//var pause = 3000;

//function removeFirst(){
//first = $('ul#bread li:first').html();
//$('ul#bread li:first')
//.animate({opacity: 0}, speed)
//.fadeOut('slow', function() {$(this).remove();});
//addLast(first);
//}
//function addLast(first){
//# last = ''+
//first+'';
//$('ul#bread').append(last)
//$('ul#bread li:last')
//.animate({opacity: 1}, speed)
//.fadeIn('slow')
//}
//
//interval = setInterval(removeFirst, pause);
//});
