$(document).ready(function(){
//bouncing menu setup
  var loc = location.pathname;
  var sel = 'a[@href="'+loc+'"]';
  $(sel).css('font-weight','bold'); 
  $('dd').hide();
  $(sel).parent().parent().parent().show();
  
  $("dt.bmExpandable a").after('<a href="#" class="bmExpander">+</a><a href="#" class="bmShrinker">-</a>');
  $("a.bmExpander").click(function(){
    $("dd:visible").slideUp("slow");
    $('.bmExpander').show();
    $(this).hide();
    $('.bmShrinker').hide();
    $(this).siblings('.bmShrinker').show();
    $(this).parent().next().slideDown("slow");
    return false;
  });
  $("a.bmShrinker").click(function(){
    $("dd:visible").slideUp("slow");
    $(this).hide();
    $(this).siblings('.bmExpander').show();
    return false;
  });
});
