$(document).ready(function() {
	$(".toggle_button").click(function () {
		  $(this).next(".toggle_output").toggle("slow");
		 $(this).find('.more').toggle("slow");
		  $(this).toggleClass("li2"); 
	});
});
