// JavaScript Document
function message()
	{
	alert('Thanks for your interest!  Call us at 248-698-8855 to schedule a personalized assessment.');
	}

function menu()
	{
	if ((document.URL.search(/nutritionalhealthrestoration.com\/$/) != -1) || (document.URL.search(/index.html$/) != -1))
		{
		document.writeln("  <p><strong>&raquo; Home</strong></p>");
		}
	else
		{
		document.writeln("  <p><strong><a href=\"index.html\">Home</a></strong></p>");
		}

	if (document.URL.search(/about.html$/) != -1)
		{
	    document.writeln("  <p><strong>&raquo; About Us</strong></p>");
		}
	else
		{
	    document.writeln("  <p><strong><a href=\"about.html\">About Us</a></strong></p>");
		}

	if (document.URL.search(/faq.html$/) != -1)
		{
	    document.writeln("  <p><strong>&raquo; Frequently Asked Questions</strong></p>");
		}
	else
		{
	    document.writeln("  <p><strong><a href=\"faq.html\">Frequently Asked Questions</a></strong></p>");
		}

	if (document.URL.search(/testimonials.html$/) != -1)
		{
	    document.writeln("  <p><strong>&raquo; Testimonials</strong></p>");
		}
	else
		{
	    document.writeln("  <p><strong><a href=\"testimonials.html\">Testimonials</a></strong></p>");
		}

	if (document.URL.search(/sandy.html$/) != -1)
		{
	    document.writeln("  <p><strong>&raquo; Sandy's Testimonial</strong></p>");
		}
	else
		{
	    document.writeln("  <p><strong><a href=\"sandy.html\">Sandy's Testimonial</a></strong></p>");
		}

	document.writeln("  <p><strong><a href=\"NRT.pdf\" target=\"_blank\"></a></strong><strong><a href=\"NRT.pdf\" target=\"_blank\">NRT<sup>&reg;</sup>, New Client Orientation</a></strong></p>");
	document.writeln("  <p><strong><a href=\"http://www.nervexpress.com\" target=\"_blank\">Riftine Heart Rate Variability Test</a></strong></p>");
    document.writeln("  <p><strong><a href=\"http://www.standardprocess.com\" target=\"_blank\">Standard Process</a></strong></p>");
    document.writeln("  <p><strong><a href=\"javascript:message()\">Contact Us</a></strong></p></td>");
	}

