// JavaScript Document

var AboutUs;
var ContactUs;

var AboutUsLink;
var ContactUsLink;

var FormName;
var reservationForm;


function prepTextMenuBar ()
{
	if (document.getElementById ("AboutUs") != null)
	{
		AboutUs = document.getElementById ("AboutUs");
		ContactUs = document.getElementById ("ContactUs");
		AboutUsLink = document.getElementById ("AboutUsLink");
		ContactUsLink = document.getElementById ("ContactUsLink");
		
		//alert (currentLocation);
		var LinkText = currentLocation.replace ("_ThankYou", "");
		LinkText = LinkText.replace ("_ContactUs", "")
		LinkText = LinkText.replace ("_AboutUs", "")
		LinkText = LinkText + "_AboutUs" + ".php";
		AboutUsLink.href = LinkText;
		
		LinkText = currentLocation.replace ("_ThankYou", "");
		LinkText = LinkText.replace ("_ContactUs", "")
		LinkText = LinkText.replace ("_AboutUs", "")
		LinkText = LinkText + "_ContactUs" + ".php";
		ContactUsLink.href = LinkText;
		//alert (LinkText + " - " + currentLocation);
		FormName = document.getElementById ("FormName");
		if (FormName != null)
		{
			if (currentLocation.indexOf ("_ContactUs") > 0)
			{
				FormName.value = currentLocation.replace ("_ContactUs", "");
			}
			else if (currentLocation.indexOf ("_AboutUs") > 0)
			{
				FormName.value = currentLocation.replace ("_AboutUs", "");
			}
		}
	}
	if (document.getElementById ("reservationForm") != null)
	{
		reservationForm = document.getElementById ("reservationForm");
		reservationForm.action = FormName.value.replace (".php", "");
		reservationForm.action = reservationForm.action + "_ThankYou.php";
	}
}
