$(function () {
    //star
    var options = {
        max: 5,
        after_click: function (ret) {
            this.value = ret.value;
            this.enabled = false;
            $("#star").rater(this);
        }
    }
    $("#star").rater(options);

    // reply form
    $("#evaluation").click(function () { $("#reply > form").toggle(); });

    // product showZoom
    $(".item .item_warp").hover(function () { $(this).children(".showZoom").show(); }, function () { $(this).children(".showZoom").hide(); })

    // diy_select
    $(".diy_select li").toggle(
			function () {
			    $(".diy_select li").removeClass("active");
			    $(this).addClass("active");

			},
			function () {
			    $(this).removeClass("active");
			}
	)
})
