
$(document).ready(function(){
	
	// Sidebar product menu
	$("#navigation").treeview({
		control: "#treecontrol",
		persist: "location",
		animated: "fast",
		toggle: function() {
			window.console && console.log("%o was toggled", this);
		}
	});
	
	// Set maincontainer to same heigth of sidebar
	expand_height = $("div.maincontainer div.sidebarcontainer").height();
	$("div.maincontainer div.contentcontainer").css('min-height', expand_height);
	
});
