//______OTHER MANAGER__________________________//Use this script to edit and generate content for the latest other sectionvar start_other_body = '<div class="menu">';var end= '</div>';var other_item = new Array();//______ADD AN OTHER ITEM_______________________________//Add a other item to the section here by adding a new line of the form 	['filename.file ext','other text']//Insert it where you would like to see it displayed.//If there is an apostrophe in the text that you need to insert, you must place a backslash (\) before//the apostrophe (ex. 'Dillon\'s')other_item= [			['keepers.html','The companion workbook for Keepers of the Children is now available. The workbook helps parents make the unique concepts in the book actionable.'],			['contactus.html','Ms. Ramirez is available to speak at presentations and conferences.'],			['contactus.html','If you would like to book Laura to appear on your radio or t.v. show, send us an email.']//Make sure there is no comma immediately before this message			];var other_content = '<img src="image-files/menu-header.gif">';other_content += start_other_body;//loop and add other itemsvar k=0;do{		other_content += '<div class="other">';		other_content += other_item[k][1];		other_content += '</div>';}while (++k < other_item.length);other_content += end + '<img src="image-files/menu-footer.gif">';document.write( other_content ) ;