function loadAnimation(){
	$.get("feature/ps-features.xml",{},function(xml){
		$('feature',xml).each(function(i){
			imgAlt = $(this).find("alt").text();
			imgName = $(this).find("name").text();
			imgURL = $(this).find("location").text();
			$("#slide").append("<img id='"+i+"' name='"+imgName+"' alt='"+imgAlt+"' src='"+imgURL+"'>");
		});
		$('#slide').cycle({
		    fx: 'fade',
			timeout: 5000,
			random: 1,
			before: onBefore, 
		    after: onAfter
		});
	});
}
function onBefore(){
	$("#slideDescription").fadeOut("slow");
}
function onAfter(){
	document.getElementById("slideDescription").innerHTML = "";
    $('#slideDescription').append(this.name);
	$("#slideDescription").fadeIn("slow");
}
