var order_success = "<b>Congratulations!!</b> Your order was successfully processed and your tickets have been purchased. A confirmation email has been sent to your email address. If you do not receive your confirmation email, please contact the Box Office at 215.546.7824.";
var contribution_success = "Thank your for your contribution. A confirmation email is being sent to acknowledge your gift.";
var ticket_request_failed = "The tickets you requested are not available.  Please choose a different performance or contact the Box Office at 215.546.7824 or via email at tickets@wilmatheater.org with questions.";

$(document).ready(function()
{
	try
	{
		var el = null;

		if (location.href.indexOf("tickets/calendar") > -1)
		{
			el = document.getElementById("navspan_calendar");
			el.className = "active";
			el.onclick = function() { };
		}
		else if (location.href.indexOf("support/contribution") > -1)
		{
			el = document.getElementById("navspan_donation");
			el.className = "active";
			el.onclick = function() { };
		}
		else if (location.href.indexOf("tickets/productions") > -1)
		{
			el = document.getElementById("navspan_productions");
			el.className = "active";
			el.onclick = function() { };
		}
		else if (location.href.indexOf("account/") > -1)
		{
			el = document.getElementById("navspan_login");
			el.className = "active";
			el.onclick = function() { };
		}
	}
	catch (e) { }
});

