//______LEFT MENU MANAGER__________________________//Use this script to edit and generate content for the left menuvar start_menu_body = '<div class="menu">';var end= '</div>';var menu_item = new Array();//______ADD A MENU ITEM_______________________________//Add a new link to the menu here by adding a new line of the form 	['filename.file ext','css class name','display name'],//Insert it where you would like to see it displayed.menu_item= [			['index.html','home-link','Home'],//This home link has a different style designated			['keepers.html','menu-link','Buy the Book'],			['excerpts.html','menu-link','Excerpts & Reviews'],			['mediakit.html','menu-link','Media Kit'],			['contactus.html','menu-link','Contact Us']//Make sure there is no comma at the end of this last line			];var content = '<img src="image-files/menu-header.gif">' + start_menu_body;//loop and add menu itemsvar i=0;do{		content += '<a href="';		content += menu_item[i][0];//add file name		content+='" class="';		content+=menu_item[i][1];//add css class name		content+='">';		content+=menu_item[i][2];//add display name		content+='</a></br>';}while (++i < menu_item.length);content += end + '<img src="image-files/menu-footer.gif">';document.write( content ) ;