$(document).ready(function(){
	$(".menu_element").click(function(){
		//  $(".left_menu ul").hide("slow");
		//	$(this).next('li').toggle("slow");
		$(this).next().toggle();
	})
	$(".menu_second_item").click(function(){
		
		$(this).next().toggle();
	
	})
	//$(".left_menu ul").hide();
	
  });
