<!--

function writeNav() {


// home

if (navPage == 'home') {

document.write ('home');
}

	
else {
document.write ('&nbsp;&nbsp;&nbsp;> <a href="default.html">Home</a>');
} 



// to find us

if (navPage == 'find us') {

document.write ('find us');
}

	
else {
document.write ('&nbsp;&nbsp;&nbsp;> <a href="findus.html">Find Us</a>');
} 



// store

if (navPage == 'store') {
document.write ('store');
}

	
else {
document.write ('&nbsp;&nbsp;&nbsp;&nbsp;> <a href="http://store.thecheesepeople.com/">Store</a>');
}


// contact

if (navPage == 'contact') {
document.write ('contact');
}

	
else {
document.write ('&nbsp;&nbsp;&nbsp;> <a href="contact.html">Contact Us</a>&nbsp;&nbsp;&nbsp;');
}


}


// -->

