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

