$(document).ready(function () {
    $("#search label, #login label").inFieldLabels();

    $('[name=shippingAddressCheck]').each(function () {
        $(this).change(function () {
            $("#shippingAddress").toggle("fast");
        });
    });

    $("#product li:nth-child(5n+1)").addClass("first");
    $("#product li:nth-child(5n)").addClass("last");

    if ($(".colorbox").length > 0) {
        $(".colorbox").colorbox({ width: "550px;" });
    }
    if ($(".colorboxwide").length > 0) {
        $(".colorboxwide").colorbox({ width: "650px;" });
    }
    if ($(".colorbox").length > 0) {
        $(".colorbox").colorbox({ width: "550px;" });
    }
    if ($(".colorbox2").length > 0) {
        $(".colorbox2").colorbox({ width: "650px;",height: "400px", iframe: true });
    }
    if ($(".colorSelector").length > 0) {
        $(".colorSelector").click(function (e) {
            var target = $(this).attr("id");
            $("#colorID").val(target);
            $('#imageBox').load("/home/ProductColorImage/" + target);
            $('#skudisp').html(target);
            $("#cartBtn").attr("href", "/cart/add/" + target);
        });
        
    }
});


