$(document).ready(function() {
    function displayAction(name, aresult) {
        $(name).each(function() {
            if (this.checked == true) {
                $(aresult).show("fast");
            }
            else {
                $(aresult).hide("fast");
            }
        });
    }

    function displayVals(name, target) {
        displayAction(name, target);
        $(name).change(function() { displayAction(name, target) });
    }
    displayVals("#fabric", "#fabricsamples");
    displayVals("#leather", "#leathersamples");
    displayVals("#other-fabric", "#other-fabric-label");
    displayVals("#plain-colours", "#plain-colours-label");
    displayVals("#Self-Patterned-colours", "#Self-Patterned-colours-label");
    displayVals("#printed-patterned-colours", "#printed-patterned-colours-label");
    displayVals("#plain-leather", "#plain-leather-options");
    displayVals("#corrected-leather", "#corrected-leather-options");
    displayVals("#antique-leather", "#antique-leather-options");
    displayVals("#pigmented-grain-leather", "#pigmented-grain-leather-options");
    displayVals("#full-grain-leather", "#full-grain-leather-options");
    displayVals("#semi-aniline-leather", "#semi-aniline-leather-options");
    displayVals("#rub-off-leather", "#rub-off-leather-options");
});
 
