function initSpoilers(context)
{
	var context = context || 'body';
	$('div.spoiler-head', $(context))
		.click(function(){
			var code = $(this).next('div.spoiler-body').find('textarea').text();
			if(code) $(this).next('div.spoiler-body').html(code);
			
			$(this).toggleClass('unfolded');
			$(this).next('div.spoiler-body').slideToggle('fast');
		})
	;
}

$(document).ready(function(){
	initSpoilers('body');
});
$(window).load(function(){ imgFit_Onload('body'); });