<!-- Begin HEADER OPTIONS CODE

// NOTE: If you use a ' add a slash before it like this \'

// ONLY USE lowercase FOR ALL OPTIONS


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

var flashcolor		= "000000"		// FLASH BACKGROUND COLOR
var color		= "2b5595"		// HEADER BACKGROUND COLOR
var flashheight		= "275"			// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var flashwidth		= "776"			// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)

var showimage 		= "no"	 		// SHOW THE SMALL IMAGE ON THE HEADER RIGHT SIDE
var imaglink		= "contact.htm"		// SMALL IMAGE PAGE LINK
var edge_distance	= "0"			// PLACE IMAGE FROM EDGE

var showdate		= "yes"			// SHOW THE DATE ON TsHE PAGE
var dateLR		= "left"		// DATE LEFT OR RIGHT
var dateX		= "10"			// DATE X LOCATION
var dateY		= "80"			// DATE Y LOCATION



// COPYRIGHT 2004 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

document.write('<div style="height:247px; width:776px; position: absolute; top: 0%;left: auto;">')
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="775" ><tr><td ALIGN="center" VALIGN="center">');
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+flashwidth+'" height="'+flashheight+'" id="hours-and-fees" align="center">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="hours-and-fees.swf" />');
document.write('<param name="loop" value="false" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="wmode" value="transparent" />');
//document.write('<param name="bgcolor" value="#'+flashcolor+'" />');
document.write('<embed src="hours-and-fees.swf" loop="false" quality="high" wmode=transparent width="'+flashwidth+'" height="'+flashheight+'" name="hours-and-fees" align="center" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object><br>');
document.write('</td><td align="right" valign="middle">');
   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="picts/header_image.jpg" border="0" width="130" height="50"></a><br>');
}
else {
<!--document.write('<img src="picts/spacer.gif" width="0" height="10"><br>');-->
}
document.write('</td><td align="center" valign="middle" width="'+edge_distance+'">');
document.write('<img src="picts/spacer.gif" width="'+edge_distance+'" height="10"><br>');
document.write('</td></tr></table></div>');






// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+':auto; POSITION:absolute; TOP: '+dateY+'px" >');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}



//  End -->