function toogleSub(id) {
    if ($("#sub_" + id).css('display') == "none") {
	$(".navContainer").each(function(i) { catid = this.id.substr(4); if ($("#" + this.id).css('display') != "none") { $("#" + this.id).slideUp(250); $("#subT_" + catid).css("font-weight", "normal"); $("#subA_" + catid).html("+");} });
        $("#subA_" + id).html("^");
        $("#subT_" + id).css("font-weight", "bold");
        $("#sub_" + id).slideDown(250);
    }
    else {
        $("#subA_" + id).html("+");
        $("#subT_" + id).css("font-weight", "normal");
        $("#sub_" + id).slideUp(250);
    }

}