
// figure out what version we're working with (staging or production sites)
var rootString = "/";

// add to the root variable to create the true root of the site if we're in staging
if(window.location.href.toUpperCase().indexOf("80Plus_staging".toUpperCase()) > 0){
    rootString = '/80Plus_staging/';
}

// output the left navigation links
document.write('<a href="' + rootString + '80what.htm">about</a><br/><br />');

document.write('<a href="' + rootString + 'manu/Where_to_buy.aspx">buy now</a><br/><br />');

document.write('<a href="' + rootString + 'manu/psu/psu_join.aspx">power supplies</a><br /><br />');

document.write('<a href="' + rootString + 'news.htm">news</a><br /><br />');

document.write('<a href="' + rootString + 'manu/partners.htm">resources</a><br /><br />');

document.write('<a href="' + rootString + 'aboutteam.aspx">contact</a><br /><br />');

document.write('<a href="' + rootString + 'toolkit/">login</a><br /><br />');