var PreloadFlag = false;
var baseURL = 'http://www.naricharlotte.com/img/';
var Section = '';
if (document.images) {
    home = new Image(); home.src = baseURL + "homeBut-on.gif";
    aboutUs = new Image(); aboutUs.src = baseURL + "aboutUsBut-on.gif";
    awards = new Image(); awards.src = baseURL + "awardsBut-on.gif";
    education = new Image(); education.src = baseURL + "educationBut-on.gif";
    newsEvents = new Image(); newsEvents.src = baseURL + "newsEventsBut-on.gif";
    relatedLinks = new Image(); relatedLinks.src = baseURL + "relatedLinksBut-on.gif";
    joinNari = new Image(); joinNari.src = baseURL + "joinNariBut-on.gif";
    contactUs = new Image(); contactUs.src = baseURL + "contactUsBut-on.gif";
    PreloadFlag = true;
}
function changeImg() {
    if (document.images && PreloadFlag && Section != changeImg.arguments[0]) {
        document[changeImg.arguments[0]].src = baseURL + changeImg.arguments[0] + changeImg.arguments[1] + '.gif';
    }
}
function setSection (thisSection) {
	changeImg (thisSection, '-on');
	Section = thisSection;
	return true;
}
if (window.focus) { window.focus() }
