var palmtree=new jktreeview("showtree")
var branch1=palmtree.addItem("INDEX")
	palmtree.addItem("Main page", branch1, "index.html")
var branch2=palmtree.addItem("SERVICES")
	palmtree.addItem("Editing", branch2, "editing.html")
	palmtree.addItem("Proofreading", branch2, "proofreading.html")
	palmtree.addItem("Pricing", branch2, "pricing.html")
var branch3=palmtree.addItem("EXPERIENCE")
	palmtree.addItem("Experience", branch3, "experience.html")
	palmtree.addItem("Selected titles", branch3, "selectedtitles.html")
	palmtree.addItem("Testimonials", branch3, 'testimonials.html')
var branch4=palmtree.addItem("PERSONAL")
	palmtree.addItem("Biography", branch4, "biography.html")
	palmtree.addItem("What I'm doing", branch4, "currentevents.html")
var branch5=palmtree.addItem("CONTACT")
	palmtree.addItem("E-mail", branch5, "mailto:editor [at] papertyger [dot] net")
palmtree.treetop.draw(); //REQUIRED LINE: Initalize tree
if (document.getElementById('normaltree')) {
	document.getElementById('normaltree').style.display = 'none';
}
