$(document).ready(function(){


// About Sidebar Menu TOC
$( "ul#about_links li a" ).each(function(){
	if ($(this).hasClass("keep")) {
	} else {
	$(this).next("ul").hide();
	}
});

//show & hide the toc
	$("ul#about_links a.x2").click(
      function () {
      if ($(this).hasClass("keep")) {
      } else {
        $(this).next("ul").toggle();
        if ($(this).hasClass("open")) {
        $(this).removeClass("open");
        } else {
        $(this).addClass("open");
        }
      }
        return false;
    });
    


});