//______FOOTER MANAGER__________________________//Use this script to edit and generate content for the latest footer section//Note : If you add or reduce the number of footer items, you will need to adjust the footer margin in the style sheet//       by either increasing or decreasing the listing that appears like (margin: 100px;) under .footervar start_footer_body = '<div class="footer">';var end= '</div>';var footer_item = new Array();//______ADD A FOOTER ITEM_______________________________//Add a footer item to the section here by adding a new line of the form 	['filename.file ext','footer text']//The filename.file ext is the link for the MORE tag//Insert it where you would like to see it displayed.footer_item= [			['rights.html','All Rights Reserved'],			['links.html','Native Links'],			['mailto:lauraramirez@charter.net','Contact'],			['privacypolicy.html','Privacy Policy'],			['siteindex.html','Site Index']//Make sure there is no comma at the end of this last line			];var footer_content =  start_footer_body;//loop and add footer itemsvar k=0;do{		footer_content += '<a class="footer-link" href="' + footer_item[k][0] + '">';		footer_content += footer_item[k][1];		footer_content += '</a>';		if (k+1 < footer_item.length)//add the dot separator if this isn't the last item		{			footer_content+='<img src="image-files/top-menu-separator.jpg" height=10 width=10>';		}}while (++k < footer_item.length);footer_content += end;document.write( footer_content ) ;