// JavaScript Document

function quickLink(link, choice, restore) {
        eval(link + ".location='" + choice.options[choice.selectedIndex].value + "'");
        if (restore) choice.selectedIndex = 0;
    }

function PhillyLoadMenuValue() {
	var sPath = window.location.pathname;
	var PageName = sPath.substring(sPath.lastIndexOf('/') + 1);

	if (PageName == "philly_layout.asp")
	{
		 document.mymenu.menu.selectedIndex = 1;
	}
	else if (PageName == "philly_directions.asp")
	{
		document.mymenu.menu.selectedIndex = 2;
	}
	else if (PageName == "philly_hotels.asp")
	{
		document.mymenu.menu.selectedIndex = 3;
	}
	else if (PageName == "philly_menu.asp")
	{
		document.mymenu.menu.selectedIndex = 4;
	}
	else if (PageName == "philly_recruitment.asp")
	{
		document.mymenu.menu.selectedIndex = 5;
	}
	else
	{
		document.mymenu.menu.selectedIndex = 0;
	}

}

function NYLoadMenuValue() {
	var sPath = window.location.pathname;
	var PageName = sPath.substring(sPath.lastIndexOf('/') + 1);

	if (PageName == "ny_layout.asp")
	{
		 document.mymenu.menu.selectedIndex = 1;
	}
	else if (PageName == "ny_directions.asp")
	{
		document.mymenu.menu.selectedIndex = 2;
	}
	else if (PageName == "ny_hotels.asp")
	{
		document.mymenu.menu.selectedIndex = 3;
	}
	else if (PageName == "ny_menu.asp")
	{
		document.mymenu.menu.selectedIndex = 4;
	}
	else if (PageName == "ny_recruitment.asp")
	{
		document.mymenu.menu.selectedIndex = 5;
	}
	else
	{
		document.mymenu.menu.selectedIndex = 0;
	}

}
