﻿$(function() {

    $(".butaddcart").click(function() {

        if ($(this).attr("freegift") == "Y") {

            $("#free_gift_container").dialog({ autoOpen: false, bgiframe: true, width: 650, modal: true, resizable: false });
            var ajaxURL = $(this).attr("href").replace("/shop.axd/AddToCartBP", "/free_gift_selection.aspx");


            $.ajax({
                type: "GET",
                url: ajaxURL,
                dataType: "html",
                success: function(html) {
                    $("#free_gift_container").html(html);
                    $(".style_select").each(function() {
                        $("#" + this.id).bind("change", function() {
                            handleStyleDropDownChange($(this));
                        });
                    });
                    $("#free_gift_add_to_cart").bind("click", function() {
                        freeGiftAddToCart();
                    });
                    $("#free_gift_container").dialog("open");
                }
            });

            return false;
        }
    });
});