<!-- This File Goes In the WWW root directory -->

var marquee = "The Lemont Bears 2011-2012 season is off to a great start! Don't Forget the Mandatory Bears Bash parent meeting Tuesday Jan 17th at 6:30 pm." <!-- The value inside the quotation marks on this line is where the scrolling text goes. Any Text can go inside the quotation marks except a quotation character.-->

document.write('<td>');
document.write('	<table class="header" width=100%>');
document.write('		<tr>');
document.write('			<td class="header" align="center">');
document.write('				<table width="100%" align="center" height="250px">');
document.write('					<tr>');
document.write('						<td class="header" valign="top" align="left">');
document.write('							<img class="logo" src="Images_lb/trophy.jpg">');
document.write('						</td>');
document.write('						<td align="center" valign="middle">');
document.write('							<img class="logo" src="Images_lb/banner.jpg">');
document.write('						</td>');
document.write('						<td class="header" valign="top" align="right">');
document.write('							<img class="logo" src="Images_lb/wrestlers.jpg">');
document.write('						</td>');
document.write('					</tr>');
document.write('					<tr>');
document.write('						<td colspan="3" align="center" valign="bottom">');
document.write('							<marquee scrollamount="4" class="headline" direction="left" loop="9999" width="100%">'+ marquee +'</marquee>');
document.write('						</td>');
document.write('					</tr>');
document.write('				</table>');
document.write('			</td>');
document.write('		</tr>');
document.write('	</table>');
document.write('</td>');
