/*
 * DrillSpot.Product
 */
DrillSpot.Product = {};

DrillSpot.Product.initNotifyMe = function(cfg) {
    $("div.notify-me a").click(function(e) {
        $.loadHtml(cfg.url, function(content) {
            content.attr("id", "notify-window").attr("title", "Notify Me");
            var win = new DrillSpot.Product.NotifyWindow(cfg.url, content);
            win.show();
        });
    });
};

$(function () {

    var gallery = new ImageGallery({
        mainImagePath: "#mainimage img",
        cellPath: "#gallery div.thumbs img",
        scrollRight: "#gallery img.scroll-right",
        scrollLeft: "#gallery img.scroll-left",
        imagePaths: DrillSpot.Product.Images
    });

    DrillSpot.Product.initNotifyMe({ url: document.location.href + "/NotifyMe" });

    $("#buybox div.notify-me > *").tooltip({ showURL: false });

    $("#gallery div.thumbs a").colorbox({ rel: "image", opacity: 0.5, transition: "fade" });
});
