if(pageID == 'Home') {
document.write('Home : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/index.html">Home</a> : ');
}

if(pageID == 'About') {
document.write('About : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/aboutsite.html">About</a> : ');
}

if(pageID == 'Plays') {
document.write('Plays : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/plays/index.html">Plays</a> : ');
}

if(pageID == 'Projects') {
document.write('Projects : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/projects/index.html">Projects</a> : ');
}

if(pageID == 'Articles') {
document.write('Articles : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/articles/index.html">Articles</a> : ');
}

if(pageID == 'Free') {
document.write('Free Scripts : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/free/index.html">Free Scripts</a> : ');
}

if(pageID == 'Links') {
document.write('Links : ');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/links.html">Links</a> : ');
}

if(pageID == 'Sitemap') {
document.write('Sitemap');
}
else {
document.write('<a class="dark" href="http://www.rocketman.co.nz/sitemap.html">Sitemap</a>');
}