$(document).ready(function(){
	//console.log("loc:"+location.host);
	$.ajax({
	   type: "GET",
	   url: "http://vudat.msu.edu/rss/rssreader.php",
	   success: function(rss_content){
			$("#the_events").html(rss_content);
	   }
	 });
});

