﻿$(function() {

    $("li [id*='facet_group_more_']").click(function() {

        $(this).parent().hide();
        var id = $(this).attr("id");

        if ($("#" + id.replace("more_", "")).length > 0) {
            $("#" + id.replace("more_", "") + " li.morefacet").show();
        }

        return false;
    });

    $("li [id*='facet_group_hide_']").click(function() {
        var id = $(this).attr("id");

        if ($("#" + id.replace("hide_", "")).length > 0) {
            $("#" + id.replace("hide_", "") + " li.morefacet").hide();
        }

        if ($("#" + id.replace("hide_", "more_")).length > 0) {
            $("#" + id.replace("hide_", "more_")).parent().show();
        }

        return false;        
    });
});