if (page == "home")
	{
		window.document.write('<span class="nav-down">HOME</span>');
		window.document.write('<a href="why/" class="nav">WHY HOME PHYSICAL THERAPY?</a>');
		window.document.write('<a href="started/" class="nav">GETTING STARTED</a>');
		window.document.write('<a href="services/" class="nav">OUR SERVICES</a>');
		window.document.write('<a href="contact/" class="nav">CONTACT US</a>');
	}

else if (page == "why")
	{
		window.document.write('<a href="../" class="nav">HOME</a>');
		window.document.write('<span class="nav-down">WHY HOME PHYSICAL THERAPY?</span>');
		window.document.write('<a href="../started/" class="nav">GETTING STARTED</a>');
		window.document.write('<a href="../services/" class="nav">OUR SERVICES</a>');
		window.document.write('<a href="../contact/" class="nav">CONTACT US</a>');
	}

else if (page == "started")
	{
		window.document.write('<a href="../" class="nav">HOME</a>');
		window.document.write('<a href="../why/" class="nav">WHY HOME PHYSICAL THERAPY?</a>');
		window.document.write('<span class="nav-down">GETTING STARTED</span>');
		window.document.write('<a href="../services/" class="nav">OUR SERVICES</a>');
		window.document.write('<a href="../contact/" class="nav">CONTACT US</a>');
	}

else if (page == "services")
	{
		window.document.write('<a href="../" class="nav">HOME</a>');
		window.document.write('<a href="../why/" class="nav">WHY HOME PHYSICAL THERAPY?</a>');
		window.document.write('<a href="../started/" class="nav">GETTING STARTED</a>');
		window.document.write('<span class="nav-down">OUR SERVICES</span>');
		window.document.write('<a href="../contact/" class="nav">CONTACT US</a>');
	}

else if (page == "contact")
	{
		window.document.write('<a href="../" class="nav">HOME</a>');
		window.document.write('<a href="../why/" class="nav">WHY HOME PHYSICAL THERAPY?</a>');
		window.document.write('<a href="../started/" class="nav">GETTING STARTED</a>');
		window.document.write('<a href="../services/" class="nav">OUR SERVICES</a>');
		window.document.write('<span class="nav-down">CONTACT US</span>');
	}

else if (page == "employees")
	{
		window.document.write('<a href="../" class="nav">RETURN TO HOME</a>');
		window.document.write('<span class="nav-down">FOR OUR EMPLOYEES</span>');
	}

else
	{
		window.document.write('<a href="./" class="nav">HOME</a>');
		window.document.write('<a href="why/" class="nav">WHY HOME PHYSICAL THERAPY?</a>');
		window.document.write('<a href="started/" class="nav">GETTING STARTED</a>');
		window.document.write('<a href="services/" class="nav">OUR SERVICES</a>');
		window.document.write('<a href="contact/" class="nav">CONTACT US</a>');
	}

