﻿
$(document).ready(function () {

    getLatestComments();
    getLatestArt();
    getLatestArtists();


    function getLatestComments() {

        $.ajax({

            type: "POST",
            url: "/WebMethods/Default.aspx/getLatestComments",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {

                $(".FooterOuterColumn1Container").html(msg.d);

            }
        });
    }

    function getLatestArt() {

        $.ajax({

            type: "POST",
            url: "/WebMethods/Default.aspx/getLatestArt",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {

                $(".FooterOuterColumn2Container").html(msg.d);

            }
        });
    }

    function getLatestArtists() {

        $.ajax({

            type: "POST",
            url: "/WebMethods/Default.aspx/getLatestArtists",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {

                $(".FooterOuterColumn3Container").html(msg.d);

            }
        });
    }


    


});
