/**************************************
*  accordean agenda kit (non obscruptive js)

*  required jQuery
*      
* author:  erational(http://www.erational.org)
* version: 0.2
* date:    2007.10.10
* licence: GPL 2.0    
***********************************/

$(document).ready(function(){
  init_agenda();
});


//
//  init_date: output date
//
function init_agenda() { 
  $(".subcat").hide();  
  
  // rollover
  $("h1").hover(function () {
      $(this).addClass("oover");
    }, function () {
      $(this).removeClass("oover");
  });
  // click
  $("h1").click(function () { 
      if ('none' == $(this).next().css("display")) {
        $(this).next().slideDown('slow');
        $(this).addClass("clicked");
      }  else {
        $(this).next().slideUp('slow');
        $(this).removeClass("clicked");
      } 
    }, function () {
      $(this).next().hide();
  });
  
} // agenda


