﻿/// <reference path="jquery-1.4.1-vsdoc.js" />


$(document).ready(function() {
    $('form.good_form').submit(function() {
        $.post("/cart/add_to_cart.html", { GoodId: $(this).children(".goodid").val(), Quantity: $(this).children(".quantity").val() }, function(data) {
            $("#cart_place").html(data);
            alert("Ваш выбор успешно добавлен в корзину.");
        }, "html");
        return false;
    });
    $(".lightbox").lightBox({ overlayOpacity: 0.6 });
    Cufon.now();
})

