$(function() {
  $("#leftwrap .leftwrap_body ul li").each(
    function (){
      var $ul = $(this).children("ul");
      $(this).children("h4").not(".side_shead_link").not(".side_shead_text").children("a").click(
        function (){
          $ul.toggle();
          return false;
        }
      );
      $(this).children("h5").not(".side_shead_link").not(".side_shead_text").children("a").click(
        function (){
          $ul.toggle();
          return false;
        }
      );
    }
  );
});
