﻿$(function () {
    $.getJSON(
        '/Home/GetHelpNow',
        function (data) {
            if (data != null) {
                $('#helpNowImg').attr('src', 'http://images.childrensmiraclenetwork.org/CAHelpNow/' + data.ImagePath);
                $('#helpNowDescription').html(data.Description);
                $('#helpNowLink').attr('href', data.Link);
            }
        }
    );
});

