var SIMPLE_FORMAT =
[
//0. left position
	17,
//1. top position
	0,
//2. show +/- buttons
	false,
//3. couple of button images (collapsed/expanded/blank)
	["../../images/c.gif", "../../images/e.gif", "../../images/b.gif"],
//4. size of images (width, height,ident for nodes w/o children)
	[14,14,0],
//5. show folder image
	true,
//6. folder images (closed/opened/document/fc/fe/d/c/e)
	["../../images/fc.gif", "../../images/fe.gif", "../../images/fc.gif"],
//7. size of images (width, height)
	[14,14],
//8. identation for each level [0/*first level*/, 16/*second*/, 32/*third*/,...]
//	[0,16,32,48,64,80,96,112,124],
	[0,8,16,32,48,64,80,94,112,124],
//9. tree background color ("" - transparent)
	"",
//10. default style for all nodes
	["clsDemoNode","clsDemoNode1","clsDemoNode1","clsDemoNode1","clsDemoNode1"],
//11. styles for each level of menu (default style will be used for undefined levels)
	[],//["clsNodeL0","clsNodeL1","clsNodeL2","clsNodeL3","clsNodeL4"],
//12. true if only one branch can be opened at same time
	true,
//13. item pagging and spacing
	[1,2],
	
];

var SIMPLE_NODES = [
//	['Promotion', null, null,
//	],
//	['Seminar', null, null, 
//	],
	['Seminar Review', null, null,
		[{id:'CVworkshop.htm'},'CV Workshop Highlights','../events/CVworkshop.htm',''],
		[{id:'sales.htm'},'A Human Relations Approach in Making Sales','../events/sales.htm',''],
		[{id:'heart.htm'},'Seminar Review: How to Win the Heart of the Employer in Job Interviews','../events/heart.htm',''],
		[{id:'Utalk.htm'},'Seminar Review: Job Hunting Tips for Fresh Graduates','../events/Utalk.htm',''],
		[{id:'marketing_review.htm'},'『做個「周身刀」的公關及市場推廣人才』講座回顧','../events/marketing_review.htm',''],
		[{id:'banking_review.htm'},'「金融界專才如何為事業作好投資」講座回顧','../events/banking_review.htm',''],
		[{id:'job_fair_review.htm'},'「大學畢業生求職全攻略」講座回顧','../events/job_fair_review.htm',''],
		[{id:'best_offer.htm'},'如何爭取最好既offer講座回顧','../events/best_offer.htm',''],
		[{id:'ITseminar_review.htm'},'Review of Successful Story of IT Professionals','../events/ITseminar_review.htm',''],
		[{id:'graduate_review.htm'},'開拓職業路向的秘笈工作坊回顧','../events/graduate_review.htm',''],
		[{id:'interview.htm'},'JobsDB 面試特訓工作坊回顧','../promotion/interview.htm',''],
		[{id:'accounting.htm'},'Seminar Review on Career Opportunities of the Accounting and Finance Profession in Hong Kong','../promotion/accounting.htm',''],
	],
];

var tree = new COOLjsTree("tree1", SIMPLE_NODES, SIMPLE_FORMAT);
tree.expandAll(false);
function exp(node) {
	while (node) {
		if (!node.expanded) node.treeView.expandNode(node.index);
		node = node.parentNode;
	}
}
var SectionID2 = unescape(SectionID)
var node1 = tree.nodeByID(SectionID2)
exp(node1);

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}
