$.imgRotator = function(options) {
    var opts = $.extend({}, options);
    document.write('<span class="cycle_container" style="float:left; width: 175px; height: 100px;" id="cycle_container_' + opts.parentNode + '"></span>');

    $.ajax({
        type: "GET",
        url: "/css/" + opts.url,
        success: function(data) {
            $(data).find(opts.parentNode).children().each(function() {
                $("#cycle_container_" + opts.parentNode).append("<img width=\"175\" src='" + $(this).find("VirtualLogoPath").text() + "'>");
                //$("#cycle_container img").removeAttr("style");
            });

            $('.cycle_container').cycle({
                fx: 'none',
                timeout: 500
            });
        },
        error: function() {
            //alert("Error Loading Partners");
            $.imgRotator(options);
        }
    });
}
