// JavaScript Document
var ExternalLinks_InNewWindow = '1';

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

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