<!--
//hilite navbar button to show current section
//first find section code
var theURL=""+window.location;
var fileNameEnd=theURL.length;
var fileNameStart=(theURL.lastIndexOf("/"))+1;
var fileName=theURL.slice(fileNameStart,fileNameEnd);
var sectionCode=theURL.slice(fileNameStart,fileNameStart+1);
var p="../images/nav/"

var sectionA=p+"home_up.gif";
var sectionB=p+"about_us_up.gif";
var sectionC=p+"our_courses_up.gif";
var sectionD=p+"resources_up.gif";

var sectionAroll=p+"home_rl.gif";
var sectionBroll=p+"about_us_rl.gif";
var sectionCroll=p+"our_courses_rl.gif";
var sectionDroll=p+"resources_rl.gif";

switch (sectionCode)
{
case "a": var sectionA=p+"home_dn.gif";break;
case "b": var sectionB=p+"about_us_dn.gif";break;
case "c": var sectionC=p+"our_courses_dn.gif";break;
case "d": var sectionD=p+"resources_dn.gif";break;
}

document.homebtn.src=sectionA;
document.about_us_btn.src=sectionB;
document.our_courses_btn.src=sectionC;
document.resources_btn.src=sectionD;
//-->

