(function($){$().ready(function(){

	$('.toggle').each(function(){

		$(this).next().hide();
	});

	$('.toggle').click(function(){

		$(this).next().slideToggle();
		$(this).toggleClass('active');
		return false;
	});
});})(jQuery);

