// Static Javascript //
// Contains generic page text and functions that are needed for all pages //
// Items in here may not always need to be changed unless necessary //

// FOOTER TEXT //
// Copyright date & info //
var copyright="Copyright &copy; 2009 The Beckwith Theatre Company";
// Contact and Revervation Info //
var reservation="<span class=\"cursor\" onclick=\"menuClick('http://www.beckwiththeatre.org/cgi/contact.php')\">Contact Us</span> | To make ticket reservations by phone call 269-782-ROLE";

// HEADER TEXT //
// Beckwith Address & Phone //
var address="<span class=\"address\">100 NEW YORK AVENUE<br>DOWAGIAC, MICHIGAN<br><span style=\"font-size: 20px;\">269-782-ROLE</span></span>";


//*************** Do Not Modify Anything Past This Divider ******************//

// Menu Links //
function menuClick(x){
	location.href=x;
}