$(document).ready(function(){
      $('#menu a:not(".active")').mouseover(function(){
            $(this).animate({'marginTop':'0'},300);
      });
      $('#menu a:not(".active")').mouseout(function(){
            $(this).stop();
            $(this).animate({'marginTop':'10'},300);
      });
      
      $('#left_menu ul').hide();
      $('#left_menu p').click(function(){
            if ($(this).next().css('display') == 'none') {
               $('#left_menu ul').not($(this).next()).hide(300);
               $(this).next().show(300);
            } else {
               $('#left_menu ul').hide(300);
            }
      });
});
