﻿$(document).ready(function(){
    $(".nw_foldable_header").siblings().hide();
    $(".nw_foldable_header").click(function(){ $(this).siblings().toggle("slow") ;
    $(this).toggleClass("nw_foldable_header_on");
    });
});