var HTMLpagename = document.pagevars.pagename.value
var HTMLsubpagename = document.pagevars.subpagename.value

if (HTMLpagename == "ShowAll") {writetopnav(); writesubnav();}
else {writetopnav();}

function writetopnav() {
document.write('<TD VALIGN="top" ALIGN="left">');
if (HTMLpagename == "ServiceOfferings") {document.write('<IMG SRC="images/navselect1.gif" HSPACE="0" VSPACE="0" BORDER="0"><BR>');}
else {document.write('<IMG SRC="images/navselect.gif" HSPACE="0" VSPACE="0" BORDER="0"><BR>');}
document.write('</TD>');

document.write('<TD VALIGN="top" ALIGN="left">');
//document.write(HTMLpagename);
if (HTMLpagename == "ServiceOfferings") {document.write('&nbsp; <A HREF="so-projectmanagement.html" CLASS="topnavselected">Service Offerings</A><BR>'); writesubnav()}
else {document.write('&nbsp; <A HREF="so-projectmanagement.html" CLASS="topnav">Service Offerings</A><BR>');}
}

function writesubnav() {
document.write('<FONT CLASS="subnav">');
//document.write(HTMLsubpagename);
if (HTMLsubpagename == "ProjectManagement") {document.write('&nbsp; &nbsp;  - <A HREF="so-projectmanagement.html" CLASS="subnavselected">Project<BR> &nbsp; &nbsp; &nbsp; Management</A><BR>');}
else {document.write('&nbsp; &nbsp;  - <A HREF="so-projectmanagement.html" CLASS="subnav">Project<BR> &nbsp; &nbsp; &nbsp; Management</A><BR>');}

if (HTMLsubpagename == "KnowledgeManagement") {document.write('&nbsp; &nbsp;  - <A HREF="so-knowledgemanagement.html" CLASS="subnavselected">Knowledge<BR> &nbsp; &nbsp; &nbsp; Management</A><BR>');}
else {document.write('&nbsp; &nbsp;  - <A HREF="so-knowledgemanagement.html" CLASS="subnav">Knowledge<BR> &nbsp; &nbsp; &nbsp; Management</A><BR>');}

if (HTMLsubpagename == "HumanResources") {document.write('&nbsp; &nbsp;  - <A HREF="so-humanresources.html" CLASS="subnavselected">Human<BR> &nbsp; &nbsp; &nbsp; Resources</A><BR>');}
else {document.write('&nbsp; &nbsp;  - <A HREF="so-humanresources.html" CLASS="subnav">Human<BR> &nbsp; &nbsp; &nbsp; Resources</A><BR>');}

if (HTMLsubpagename == "PublicSpeaking") {document.write('&nbsp; &nbsp;  - <A HREF="so-publicspeaking.html" CLASS="subnavselected">Public Speaking</A><BR>');}
else {document.write('&nbsp; &nbsp;  - <A HREF="so-publicspeaking.html" CLASS="subnav">Public Speaking</A><BR>');}
document.write('</FONT>');
}

document.write('<IMG SRC="images/blank.gif" HEIGHT="9" WIDTH="1" VSPACE="0" HSPACE="0"><BR>');
document.write('</TD>');

