﻿$(function() {
    $.ajax({
        type: "GET",
        url: "/flash/imagesAAI.xml",
        dataType: "xml",
        success: function(xml) {

            var i = 0;
            $('#imageLoader img').animate({ "backgroundColor": "#ffffff" }, 4000).fadeOut(1000);
            $(document).everyTime(5000, function() {
                $(xml).find('image').eq(i).each(function() {
                    var cap = $(this).find('caption').text();
                    var img = $(this).find('url').text();

                    $('#imageLoader img')
					.attr("src", img);
                    $('#imageLoader h1')
                	.empty()
                	.append(cap);
                }); //close each(
                $('#imageLoader img').fadeIn(1000).animate({ "backgroundColor": "#ffffff" }, 3000).fadeOut(1000);
                if (i < $(xml).find('image').length-1) {
                    i++;
                } else {
                    i = 0;
                }
            });
        }
    }); //close $.ajax(
});  //close $(
