$(document).ready(function(){
	slideshow();
	
    $(".tweet").tweet({
          join_text: "<br />",
          username: "uhpres",
          avatar_size: 0,
          count: 1,
          auto_join_text_default: "we said,", 
          auto_join_text_ed: "we",
          auto_join_text_ing: "we were",
          auto_join_text_reply: "we replied",
          auto_join_text_url: "we were checking out",
          loading_text: " loading tweets..."
    });
});




function slideshow(){
	$.get("/features/on-campus/moores-chorale/feature/features.xml",{},function(xml){
		$('feature',xml).each(function(i){
			imgName = $(this).find("name").text();
			imgURL = $(this).find("location").text();
			imgLink = $(this).find("destination").text();
			imgDescription = $(this).find("description").text();
			$("#mc-slideshow").append("<div class='mc-slide'><a href='"+imgLink+"'><div><img id='"+i+"' alt='"+imgName+"' src='"+imgURL+"'/><p>"+imgDescription+"</p></div></a></div>");
		});
		$('#mc-slideshow').cycle({ 
			fx: 'scrollUp',
			timeout: 6000, 
			random: 1 
		});
	});
}