$j = jQuery.noConflict();
function initSpoilers(context)
{
	var context = context || 'body';
	if(context != 'body') context = '#'+context;
	$j('div.sp-head-wrap', $j(context)).click(function(){
		$j(this).find('div.sp-head').toggleClass('unfolded');
		$j(this).next('div.sp-body').slideToggle('fast');
	});
}
$j(document).ready(function(){initSpoilers('body');});