var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
if (sPage == "" || sPage == "default.aspx")
{
    document.getElementById("default").style.backgroundColor = "#6063DE";
    document.getElementById("default").innerHTML = "Home";
}
else if (sPage == "rooms.aspx")
{
    document.getElementById("rooms").style.backgroundColor = "#6063DE";
    document.getElementById("rooms").innerHTML = "Rooms";
}
else if (sPage == "tour.aspx")
{
    document.getElementById("tour").style.backgroundColor = "#6063DE";
    document.getElementById("tour").innerHTML = "Tour";
}
else if (sPage == "dining.aspx")
{
    document.getElementById("dining").style.backgroundColor = "#6063DE";
    document.getElementById("dining").innerHTML = "Dining";
}
else if (sPage == "reservations.aspx")
{
    document.getElementById("reservations").style.backgroundColor = "#6063DE";
    document.getElementById("reservations").innerHTML = "Reservations";
}
else if (sPage == "map.aspx")
{
    document.getElementById("map").style.backgroundColor = "#6063DE";
    document.getElementById("map").innerHTML = "Map";
}
else if (sPage == "attractions.aspx")
{
    document.getElementById("attractions").style.backgroundColor = "#6063DE";
    document.getElementById("attractions").innerHTML = "Attractions";
}

