
$(document).ready(function(){

  $('a.readmore').click(function()
    {
      $(this).parent().next('.more').toggle();
      return false;
    }
  );
  /*
  $('a.menuLevel_1').hover(function()
    {
      $(this).css('background-image', 'url("../images/curvedVioletBorder_BT.gif")').show('slow');}, function(){
      $(this).css('background-image', 'url("../images/curvedGrayBorder_BT.gif")').show('slow');
    }
  );
  $('a.menuLevel_2').hover(function()
    {
      $(this).addClass('mouseover').show('slow');}, function(){
      $(this).removeClass('mouseover').show('slow');
    }
  );
  */
});
