function initPostBBCode(context) { 	initSpoilers(context); }

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