function initSpoilers(context)
{
	(function($,context) {
		var context = context || 'body';
		jQuery('div.sp-head-wrap', $(context)).click(function(){
			jQuery(this).find('div.sp-head').toggleClass('unfolded');
			jQuery(this).next('div.sp-body').slideToggle('fast');
		});
	})(jQuery);
}
