$(document).ready(function(){
	$("div#sitemap-control").click(function(){
		$("div#sitemap-content").slideToggle();
		$(this).toggleClass("opened");
	});
	
	$(".togglable .content").hide();
	
	$(".togglable .title").append($("<span />", {"class": "toggle-info"}));
	
	$(".togglable .control").click(function(){
		$(this).parent().find(".content").toggle();
		$(this).parent().toggleClass("open");
	}).css("cursor", "pointer");
	
	
	function fancify_checkboxes(elem){
		var $parent = $(elem).parents("label").first();
		if($(elem).attr("checked")) $parent.addClass("checked");
		else $parent.removeClass("checked");
	}
	
	$("label input[type=checkbox]").change(function(){
		fancify_checkboxes(this);
	}).each(function(i,e){
		fancify_checkboxes(e);
	});	
});
