$(document).ready(function(){
	$("#list").treeview({
		persist: "cookie",
		collapsed: true
	});
	$(function() {
		$("#tabs").tabs();
	});
	
});

function goto(location, extern)
{
	if(extern == undefined)
	{
		window.location = basepath+location;
	}
	else
	{
		window.location = location;
	}
	
}