﻿$(function () {
    $.getJSON(
        '/Home/GetSpotlight',
        function (data) {
            if (data != null) {
                $('#spotlightImg').attr('src', 'http://images.childrensmiraclenetwork.org/CASpotlight/' + data.ImagePath);
                $('#spotlightDescription').html(data.Description);

                if (data.Link == "<Your Hospital>") {
                    if ($.cookie('hospitalName') != null) {
                        $('#spotlightLinkRoute').attr('href', '/Hospital/' + $.cookie('hospitalName'));
                    }
                    else {
                        $('#spotlightLinkRoute').attr('href', '/Hospital/');
                    }
                }
                else
                    $('#spotlightLinkRoute').attr('href', data.Link);
            }
        }
    );
});

