$(document).ready(function(){
        jq(".expandschemata").click(function() {
            jq(this).nextAll().slideToggle(450);
            jq(this).children(".schemataarrow").toggle();
        });
        jq("span.fieldRequired").closest("div.octapyfieldset").find("b.fieldRequired").toggle();
        jq("div.error").closest("div.octapyfieldset").find("h4").removeAttr("style");
        jq("div.error").closest("div.octapyfieldset").find("h4").css("background-color", "#FFDDCC");
        jq("div.error").closest("div.octapyfieldset").find("h4").css("border", "1px solid #DD0000");
});

