// JavaScript Document

var spacing = '&nbsp;&nbsp;&nbsp;&nbsp;';
var links = [];
	links.push( '<a href="./index.html">Home</a>' );
	links.push( spacing );
	links.push( '<a href="./choices.html">Your Choices</a>' );
	links.push( spacing );
	links.push( '<a href="./health.html">Your Health</a>' );
	links.push( spacing );
	links.push( '<a href="./about.html">About Us</a>' );
	links.push( spacing );
	links.push( '<a href="./contact.html">Contact Us</a>' );
	links.push( spacing );
	links.push( '<a href="./testimonials.html">Testimonials</a>' );
	links.push( spacing );
	links.push( '<a href="./qa.html">Q&A</a>' );
document.write( links.join('') );