﻿/* Startup code */

// Change opacities
if (document.getElementById("ctl00_logos")) {changeOpac(70, "ctl00_logos");}
if (document.getElementById("schedule")) {changeOpac(80, "schedule");}
if (document.getElementById("planning")) {changeOpac(80, "planning");}
if (document.getElementById("building")) {changeOpac(80, "building");}

// Loop through all links and highlight current page in nav
thisPage = document.URL.substring(document.URL.lastIndexOf("/")+1 ,document.URL.length);
for (i=0; i<document.links.length; i++ )
{
  pageLink = document.links[i].href.substring(document.links[i].href.lastIndexOf("/")+1 ,document.links[i].href.length);
  if (thisPage == pageLink)
  {	
	  document.links[i].style.backgroundPosition='bottom'
  }
}

