$(document).ready(function(){
		
	// first example
	
	$("#navigation").treeview({
		persist: "cookie",
   cookieId: "navigationtree",
		collapsed: true,
		unique: true,
		animated: "fast"
	});
	
	
});

$(window).load(function(){
		
	// first example
	
	$("#navigation").show();
	
	
});
