	var s_url = String(window.location);
	var re_url = /page\=(\w+)/i;
	//alert(document.title);
	//if (re_url.exec(s_url)) {
	var s_page = document.title; //String(RegExp.$1).toLowerCase();
		var o_item, o_foundItem;
		for (var i = 0; i < o_tree.a_index.length; i++) {
			o_item = o_tree.a_index[i];
		    //alert(o_item.a_config[0]);
			if (o_item.a_config[2]
				&& o_item.a_config[2]['id']
			    && s_page.toLowerCase().indexOf(String(o_item.a_config[2]['id']).toLowerCase()) > -1) {

				o_foundItem = o_item;
				break;
			}
		}

		if (o_foundItem) {
		    //alert(o_foundItem);
			var n_id = o_foundItem.n_id,
				n_depth = o_foundItem.n_depth,
				a_index = o_tree.a_index,
				a_parents = [o_foundItem];
	
			while (n_depth) {
				if (a_index[n_id].n_depth < n_depth) {
					a_parents[a_parents.length] = a_index[n_id];
					n_depth--;
				}
				n_id--;
			}
			
			for (var i = a_parents.length-1; i >= 0; i--)
			   if (a_parents[i].n_state & 48)
			      a_parents[i].open();

			o_foundItem.select();

			//var s_target = o_foundItem.a_config[2] && o_foundItem.a_config[2]['tw'] ? o_foundItem.a_config[2]['tw'] : o_tree.a_tpl['target'];
//			if (o_foundItem.a_config[1])
//				window.open(o_foundItem.a_config[1], s_target);
		}
	//}