summaryrefslogtreecommitdiff
path: root/js/main.js
blob: f4772ea5ac11ed6c4563f29da9983b544aace2e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(function(){
  if (typeof main_category == "undefined") {
    $(".sidebar dl:first").slideDown(2)
  } else {
    $(".sidebar dl#" + main_category).slideDown(2)
  }

  $(".sidebar h3").click(function(){
    if ($(".sidebar dl#" + this.id).is(":hidden")) {
      $(".sidebar dl:visible").slideUp("fast")
      $(".sidebar dl#" + this.id).show("fast")
    }
  })
})