//______LATEST NEWS MANAGER__________________________//Use this script to edit and generate content for the latest news sectionvar start_news_body = '<div class="menu">';var end= '</div>';var news_item = new Array();//______ADD A NEWS ITEM_______________________________//Add a news item to the section here by adding a new line of the form 	['filename.file ext','news text']//The filename.file ext is the link for the MORE tag//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')news_item= [			['contactus.html','Contact the author to schedule an interview or speaking engagement.'],			['excerpts.html','Read an excerpt of the book and testimonials by readers and reviewers.'],			['fundraiser.html','Sell <b>Keepers of the Children</b> at your next fundraiser and earn money for your cause or organization.']			//Make sure there is no comma immediately before this message			];var news_content = '<img src="image-files/menu-header.gif">';news_content += start_news_body;news_content += '<img src="image-files/latest-news-header.jpg" width=133 height=25 alt="Latest News">';//add section header//loop and add news itemsvar j=0;do{		news_content += '<div class="news">';		news_content += news_item[j][1];		news_content += '<a href="';		news_content += news_item[j][0];//add link		news_content += '" class="more-link">... [ MORE ]</a>';		news_content += '</div>';}while (++j < news_item.length);news_content += end + '<img src="image-files/menu-footer.gif">';document.write( news_content ) ;