$(document).ready(function(){
    $('#welcomeimage').cycle({
        fx: 'fade',
        pause: 1,
        random: 0,
        next: '#next',
        prev: '#prev',
        timeout: 6000
    });
	
	//Events feed
	/*feed = "http://www.st-andrews.ac.uk/events/top_events.php";*/
	
	var feed = "http://www.st-andrews.ac.uk/events/cached/top_events_live.html";

	$.ajax({
		url: feed,
		dataType: 'html',
		async: false,
		success: function(text){
			$("#include").html(text);
		}, 
		error: function(xhr,err){
			$("#include").html("<h3>An error has occurred</h3><p><strong>The following error has occurred:</strong><br />" + xhr.status + "</p>" + "<p><strong>Error details:</strong><br />" + xhr.responseText + "</p>");
		}
	});
	
});
