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

