document.write('<style type="text/css">body{display:none}</style>');
	jQuery(function($) {$('body').css('display','block');
});

$(document).ready(function() {
	//$('div.tog> p.element').hide();
	$('.tog .element').hide();
	
	$('.tog > .toggler').click(function() {
		$('.open').css("color", "#342c26").removeClass('open');
		$(this).addClass("open").next('.element').stop().slideToggle('slow').siblings('.element:visible').stop().slideUp('slow');
	});
	
	$('.tog> .toggler').hover(function() {
		 $(this).css("color", "#55284f");
	}, 
	
	function () {
		if($(this).hasClass("open")){
			return false;
		} else {
			$(this).css("color", "#342c26");
		}
	});
	
	$(".accClose").click(function(){
		$(this).parents(".element").stop().hide();
	})
	
});
