$(document).ready(function(){
		
	// first example
	$("#navigation").treeview({
		collapsed: true,
		animated: "normal",
		unique: true,
		persist: "location"
	});

	
	// second example
	$("#browser").treeview({
		animated:"normal",
		unique: true,
		persist: "location"
	});



	// third example
	$("#red").treeview({
		animated: "fast",
		collapsed: true,
		control: "#treecontrol"
	});


});
