﻿$(function() {
    if ($("#clientLogos").length > 0 && $("#hdnRotatingLogoUrl").length > 0) {
        var logoUrl = $("#hdnRotatingLogoUrl").val();        
        $("#clientLogos").html('Loading..'); 
        $.ajax({
            type: 'GET',
            url: logoUrl,
            timeout: 2000,
            success: function(data) {          
              $("#clientLogos").html(data); 
              //window.setTimeout(update, 10000);
            },
            error: function (XMLHttpRequest, textStatus, errorThrown) {
              //$("#clientLogos").html('Timeout contacting server..');
              //window.setTimeout(update, 60000);
            }
        }); 
    }
});


