﻿$(document).ready(function () {
    $('#Photo').corner('tr br 6px');
    $('.picShade').corner('br 6px');
    $('.OrangeAccent').corner('tl bl 6px');
    $('.s_top').corner('tr tl 6px');
    $('.s_mid').corner('br bl 6px');

    Services.ImgService.GetRandomImage(onGetPhotoSuccess);
});

window.setInterval('SwitchPhoto()', 12000);
function SwitchPhoto() {
    Services.ImgService.GetRandomImage(onGetPhotoSuccess, onGetPhotoFail);    
}

function onGetPhotoSuccess(photo) {
    var returnPhoto = photo.split(';;');
    var filePath = returnPhoto[0];
    var caption = returnPhoto[1];
    
    $("#Photo").css('background-image', 'url(' + filePath + ')');    
    $("#Caption").text(caption);
}

function onGetPhotoFail() {
    $("#Photo").show();
}
