﻿/// <reference name="MicrosoftAjax.js" />
/// <reference path="jquery-1.4.2.min.js" />
/// <reference path="projectorPoint.js" />

$(document).ready(function() {
    $("a.addToCart").click(function(event) {
        event.preventDefault();
        var $this = $(this);
        ProjectorPoint.Web.WebServices.DefaultService.AddProductToCart($this.attr("data-productId"), 1, function() {
            projectorPoint.refreshMiniCart();
        }, projectorPoint.ajaxRequestFailed);
    });
});
