// JavaScript Document
h_nav();

function h_nav(){
	//base="http://www.safeliftingportal.com/gettingstarted/";
	base="http://www.safeliftingportal.com/";

	text="				  <a href='" + base + "gettingstarted/administrative.php'>Administrative</a>  |  ";
	text= text + "                  <a href='" + base + "gettingstarted/caregiver.html'>Caregiver</a>  |  ";
	text= text + "                  <a href='" + base + "gettingstarted/legislative-and-regulatory.html'>Legislative and Regulatory</a>  |  ";
	text= text + "					<a href='" + base + "gettingstarted/patients.html'>Patients</a>  |  ";
	text= text + "					<a href='" + base + "gettingstarted/share-your-story.php'>Share your Story</a>";
	document.write(text);
}

