$(document).ready(function() {
	fit_window();
	
	$(window).resize(fit_window);
	
	$("#tree").treeview({ // thematisch
		collapsed: true,
		animated: "medium",
		control:"#sidetreecontrol", 
		persist: "location"
	});
	$("#navigation").treeview({ // ABC
		collapsed: true,
		animated: "medium",
		persist: "location"
	});
	
	var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
	if($('#TabbedPanels2').length != 0) {
		var TabbedPanels2 = new Spry.Widget.TabbedPanels("TabbedPanels2");
	}
	
	var doc_hash = document.location.hash;
	doc_hash = doc_hash.replace('#', '');
	if(doc_hash != '') {
		TabbedPanels2.showPanel(doc_hash);
	}
});

function fit_window() {
	var w_width = $(window).width();
	
	if( w_width > 1320 ) {
		$('body').addClass('window_big');
	} else {
		$('body').removeClass('window_big');
	}
	
	if( w_width < 1100 ) {
		$('body').addClass('window_small');
	} else {
		$('body').removeClass('window_small');
	}
}
