// JavaScript Document
document.writeln('<table cellspacing="0" id="menubar_nav">');
document.writeln('<tr>');
if (sPageID=='home') { 
	document.writeln('<td class="home">Home</td>');
}
else {
	document.writeln('<td class="home"><a href="index.asp">Home</a></td>');
}
if (sPageID=='about') { 
	document.writeln('<td class="about">About the<br>Gallery</td>');
}
else {
	document.writeln('<td class="about"><a href="about.asp">About the<br>Gallery </a></td>');
}
if (sPageID=='news') { 
	document.writeln('<td class="news">Gallery<br>News and<br>Events</td>');
}
else {
	document.writeln('<td class="news"><a href="news.asp">Gallery<br>News and<br>Events</a></td>');
}
if (sPageID=='pubs') { 
	document.writeln('<td class="pubs">Publications</td>');
}
else {
	document.writeln('<td class="pubs"><a href="pubs.asp">Publications</a></td>');
}
if (sPageID=='artists') { 
	document.writeln('<td class="artists">Artists &<br>Selected<br>Inventory</td>');
}
else {
	document.writeln('<td class="artists"><a href="artists.asp">Artists &<br>Selected<br>Inventory</a></td>');
}
if (sPageID=='corot') { 
	document.writeln('<td class="corot">Corot<br>Catalogue<br>Raisonn&eacute;</td>');
}
else {
	document.writeln('<td class="corot"><a href="corot.asp">Corot<br>Catalogue<br>Raisonn&eacute;</a></td>');
}
if (sPageID=='selling') { 
	document.writeln('<td class="selling">Selling<br>Your Art</td>');
}
else {
	document.writeln('<td class="selling"><a href="selling.asp">Selling<br>Your Art</a></td>');
}

if (sPageID=='curexh') { 
	document.writeln('<td class="curexh">Current<br>Exhibition</td>');
}
else {
	document.writeln('<td class="curexh"><a href="curexh.asp?ExhID=43">Current<br>Exhibition</a></td>');
}
/*
if (sPageID=='recent') { 
	document.writeln('<td class="recent">Recent<br>Acquisitions</td>');
}
else {
	document.writeln('<td class="recent"><a href="recent.asp">Recent<br>Acquisitions</a></td>');
}*/

if (sPageID=='contact') { 
	document.writeln('<td class="contact">Contact<br>Us</td>');
}
else {
	document.writeln('<td class="contact"><a href="contact.asp">Contact<br>Us</a></td>');
}
document.writeln('</tr>');
document.writeln('</table>');

