// JavaScript Document
$(function ()
	{
		 $('.spoiler').click(function ()
		{
			$(this).next('.spoiler-content').toggle('normal');
		});
	});
