function copyright() {
	document.write('<span class="fineprint">&#169; 2009 Stages Theatre Center</span>');
}

function navbarTop(thisPage) {
	var Section = new Array();
	Section = ["Home","AboutUs","Gallery","Contact", "NowPlaying","Map"];
	var str;
	str = '<style type="text/css"> \
tr#navrow { \
	text-align: left; \
	background-color: #222222; \
} \
tr#navrow td a { \
	display: block: \
	font-size: 12px; \
	font-family: Arial, Helvetica, sans-serif; \
	font-weight: bold; \
	text-decoration: none; \
	margin: 0px; \
	padding: 1px 8px 1px 8px; \
} \
tr#navrow td a:hover { \
	text-decoration: underline; \
} \
tr#navrow td a:active { \
	background-color: #999999; \
	color: #ffffff; \
} \
.navtitle { \
	color: #cccccc; \
	font-weight: bold; \
	font-size: 14px; \
} \
.titletable { \
	position: relative; \
	display: block; \
	border-color: #333333 #222222 #222222 #333333; \
	border-style: solid; \
	border-width;: 1px 2px 2px 1px; \
} \
';

for (i=0; i<Section.length; i++) {
	if (Section[i] == thisPage) {
		str = str + '#' + Section[i] + ' a:visited { color: #ffffff; text-decoration: underline; };';
	}
}

str = str + '</style> \
<table class="titletable" width="560" cellpadding="0" cellspacing="0"> \
<tr> \
<td width="120">&nbsp;</td> \
<td> \
<div align="left"><a href="http://stagestheatrecenter.com" target="_top"><img src="http://stagestheatrecenter.com/images/stages_theatre_center.jpg" style="width: 465px; height: 48px; border: 0px; padding: 0px;" title="Stages Theatre Center" alt="Stages Theatre Center"></a></div> \
<div align="right" class="navtitle">In Hollywood Since 1982&nbsp;&nbsp;</div> \
<td width="120">&nbsp;</td> \
</td></tr> \
<tr> \
<table width="560" cellpadding="2" cellspacing="0"> \
<tr id="navrow"> \
<td align="center" id="home"><a href="." target="_top">Home</a></td> \
<td align="center" id="aboutus"><a href="aboutus" target="_top">About Us</a></td> \
<td align="center" id="gallery"><a href="gallery" target="_top">Gallery</a></td> \
<td align="center" id="contact"><a href="contact" target="_top">Contact</a></td> \
<td align="center" id="nowplaying"><a href="nowplaying" target="_top">Now Playing</a></td> \
<td align="center" id="map" target="_blank"><a href="http://www.google.com/maps?q=1540+N.+McCadden+Place,+Hollywood,+CA+90028&spn=0.023462,0.046314&iwloc=A&hl=en" target="_blank">Map</a></td> \
</tr> \
</table> \
</td></tr> \
</table> \
';
document.write(str);
}

