nav1Out = new Image();
nav2Out = new Image();
nav3Out = new Image();
nav4Out = new Image();
nav5Out = new Image();
nav6Out = new Image();

nav1Out.src = "https://www.briite.org/images/nav2/homeOut.gif";
nav2Out.src = "https://www.briite.org/images/nav2/missionOut.gif";
nav3Out.src = "https://www.briite.org/images/nav2/bulletinBoardOut.gif";
nav4Out.src = "https://www.briite.org/images/nav2/documentsOut.gif";
nav5Out.src = "https://www.briite.org/images/nav2/eventsOut.gif";
nav6Out.src = "https://www.briite.org/images/nav2/participantsOut.gif";




nav1Over = new Image();
nav2Over = new Image();
nav3Over = new Image();
nav4Over = new Image();
nav5Over = new Image();
nav6Over = new Image();

nav1Over.src = "https://www.briite.org/images/nav2/homeOver.gif";
nav2Over.src = "https://www.briite.org/images/nav2/missionOver.gif";
nav3Over.src = "https://www.briite.org/images/nav2/bulletinBoardOver.gif";
nav4Over.src = "https://www.briite.org/images/nav2/documentsOver.gif";
nav5Over.src = "https://www.briite.org/images/nav2/eventsOver.gif";
nav6Over.src = "https://www.briite.org/images/nav2/participantsOver.gif";




function rollOver(num) {
	eval("document.images['nav" + num + "'].src = nav" + num + "Over.src;");
}


function rollOut(num) {
	eval("document.images['nav" + num + "'].src = nav" + num + "Out.src;");
}

