var ExternalLinks_InNewWindow = '1';

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

jQuery(document).ready(function(){
	initSpoilers('body');
	//jQuery(function() {jQuery('a[@rel*=lightbox]').lightBox();});
});
