﻿jQuery(document).ready(function () {
    GetUserFavoritesCount();
});

function GetUserFavoritesCount() {
    $.ajax({
        type: "POST",
        url: "/ajaxcontrol/getuserfavoritescount",
        success: function (msg) {
            $("#favcnt").html(msg);
        },
        error: function (msg) {
            $("#favcnt").html(msg);
        }
    });
}
function AddToFavorites(itemid, checked, type) {
    $.ajax({
        type: "POST",
        url: "/ajaxcontrol/addtofavorites",
        data: "itemid=" + itemid + "&checked=" + checked + "&type=" + type,
        success: function (msg) {
            $("#favcnt").html(msg);
        },
        error: function (msg) {
            $("#favcnt").html(msg);
        }
    });
}
