$(document).ready(function(){
		
	
	// third example
	$("#red").treeview({
		animated: "fast",
		collapsed: true,
		unique: true,
		persist: "cookie",
		toggle: function() {
			window.console && console.log("%o was toggled", this);
		}
	});

	$(".tit").click(function(){
		$(".tit").removeClass("on");
		$(this).addClass("on");		
	}); 
	

});
