displaytab01 = '<a id="tab01" class="lev01" href="index.html">Home</a>';


HiLite("Services");
displaytab02 = a + 'id="tab02" class="lev01" href="services.html" onMouseClick="SelectTab(\'tab02content\')">Client Services</a>';

// START LEVEL 02
displaytab02 += '<div id="tab02content" class="lev02" style="display:none;">';

HiLite("Pregnancy Test");
displaytab02 += a + 'href="test.html">Pregnancy Test</a>';

HiLite("Exploring Your Options");
displaytab02 += a + 'href="options.html">Pregnancy Options Counseling</a>';

HiLite("Post Abortion Care");
displaytab02 += a + 'href="post-abortion.html">Post Abortion Care</a>';

displaytab02 += '</div>'; // END LEVEL 02


HiLite("Our Mission");
displaytab03 = a + 'id="tab03" class="lev01" href="about.html" onMouseClick="SelectTab(\'tab03content\')">About SVPCC</a>';

// START LEVEL 02
displaytab03 += '<div id="tab03content" class="lev02" style="display:none;">';

HiLite("Staff");
displaytab03 += a + 'href="staff.html">SVPCC Staff</a>';

HiLite("Directors");
displaytab03 += a + 'href="directors.html">Board of Directors</a>';

HiLite("Pastoral Advisor");
displaytab03 += a + 'href="advisors.html">Pastoral Advisor</a>';

HiLite("Friends");
displaytab03 += a + 'href="friends.html">Friends and Supporters</a>';

HiLite("Newsletters");
displaytab03 += a + 'href="newsletters.html">Newsletters</a>';

HiLite("Photos");
displaytab03 += a + 'href="photos.html?center">Photo Galleries</a>';

displaytab03 += '</div>'; // END LEVEL 02


HiLite("How Can You Help?");
displaytab04 = a + 'id="tab04" class="lev01" href="help.html" onMouseClick="SelectTab(\'tab04content\')">How Can You Help?</a>';

// START LEVEL 02
displaytab04 += '<div id="tab04content" class="lev02" style="display:none;">';

HiLite("Donate");
displaytab04 += a + 'href="donate.html">Donate</a>';

HiLite("Volunteer");
displaytab04 += a + 'href="volunteer.html">Volunteer</a>';

displaytab04 += '</div>'; // END LEVEL 02


HiLite("Are You Pregnant?");
displaytab05 = a + 'id="tab05" class="lev01" href="pregnant.html" onMouseClick="SelectTab(\'tab05content\')">Are You Pregnant?</a>';

// START LEVEL 02
displaytab05 += '<div id="tab05content" class="lev02" style="display:none;">';

HiLite("Exploring Your Options");
displaytab05 += a + 'href="options.html">Exploring Your Options</a>';

HiLite("Parenting");
displaytab05 += a + 'href="parenting.html">Becoming a Parent</a>';

HiLite("Adoption");
displaytab05 += a + 'href="adoption.html">Choosing Adoption</a>';

HiLite("Considering Abortion");
displaytab05 += a + 'href="abortion.html">Considering Abortion</a>';

HiLite("Fetal Development");
displaytab05 += a + 'href="fetal-development.html">Fetal Development</a>';

displaytab05 += '</div>'; // END LEVEL 02

HiLite("Healthy Choices");
displaytab06 = a + 'id="tab06" class="lev01" href="health.html" onMouseClick="SelectTab(\'tab06content\')">Healthy Choices</a>';

HiLite("Events and Campaigns");
displaytab07 = a + 'id="tab07" class="lev01" href="events.html" onMouseClick="SelectTab(\'tab07content\')">Events and Campaigns</a>';

HiLite("Precious Blessings");
displaytab08 = a + 'id="tab08" class="lev01" href="slideshow.html" onMouseClick="SelectTab(\'tab08content\')">Precious Blessings</a>';

HiLite("Contact Us");
displaytab09 = a + 'id="tab09" class="lev01" href="contact.html" onMouseClick="SelectTab(\'tab09content\')">Contact Us</a>';

// FUNCTIONS //

function DisplayTabs() {
  document.write (displaytab01);  // Home
  document.write (displaytab05);  // Are You Pregnant?
  document.write (displaytab06);  // Healthy Choices
  document.write (displaytab02);  // Client Services
  document.write (displaytab08);  // Precious Blessings
  document.write (displaytab07);  // Events and Campaigns
  document.write (displaytab03);  // About SVPCC
  document.write (displaytab09);  // Contact Us
  document.write (displaytab04);  // How Can You Help?
}

function SelectTab(d) {
// alert ('bing');
// if (d != "tab01content") {HideContent('tab01content')}
if (d != "tab02content") {HideContent('tab02content')}
if (d != "tab03content") {HideContent('tab03content')}
if (d != "tab04content") {HideContent('tab04content')}
if (d != "tab05content") {HideContent('tab05content')}
ShowContent(d);
return;
}

function HideContent(d) {
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function ReverseContentDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = ""; }
else { document.getElementById(d).style.display = "none"; }
}

function HiLite(key) {
if (document.title.indexOf(key) != -1 ) {a = '<a style="background-color: #748FB0; color:#ffffff;" '} else {a = '<a '}
return (a)
}

