
$(function(){
  
  $('.vli span a').click(function() {
    var n =  $(this).attr("rel");
    if($(".vl"+n).css("display")=="none"){
      $(".left_menu_ul li").removeClass("act");
        $('.left_menu_ul div').animate({
        height: 'hide'
      }, 10, function() {
    
      });
    
      $(".vli"+n).addClass("act");
      $('.vl'+n).animate({
        height: 'toggle'
      }, 300, function() {
    
      });
    }
  });

});
