//
// Footer events
//
jQuery(document).ready(function($) {
  $("#footer ul").hide();
  $("#footer h3").toggle(
    function() {
      $("ul", this.parentNode).show("fast");
      $(this).toggleClass("open");
    }, 
    function() {
      $("ul", this.parentNode).hide("fast");    
      $(this).toggleClass("open");
    }
  )
});
