﻿//this script will set the selected nav item based on
//the current page url
var loc = window.location.pathname.toLowerCase();
var pageBody = document.body;

if (String(loc).indexOf('/rooms/') > -1)
    pageBody.className = 'sectionRooms pageTertiary';
if (String(loc).indexOf('/services/') > -1)
    pageBody.className = 'sectionServices pageTertiary';
if (String(loc).indexOf('/team/') > -1)
    pageBody.className = 'sectionTeam pageTertiary';
if (String(loc).indexOf('/building/') > -1)
    pageBody.className = 'sectionBuilding pageTertiary';
if (String(loc).indexOf('/availability/') > -1)
    pageBody.className = 'sectionAvailability pageTertiary';
if (String(loc).indexOf('/contact/') > -1)
    pageBody.className = 'sectionContact pageTertiary';
if (String(loc).indexOf('/news/') > -1)
    pageBody.className = 'sectionNews pageTertiary';

function setBodyClass(className) {
    document.body.className = className;
}
