


<!-- 

// MOUSEOVERS
// define image arrays
mOutArray = new Array('/img/nb_home_off.gif', '/img/nb_academics_off.gif', '/img/nb_publications_off.gif', '/img/nb_people_off.gif', '/img/nb_events_off.gif', '/img/nb_support_off.gif', '/img/nb_resources_off.gif');
mOverArrayTemp = new Array('/img/nb_home_on.gif', '/img/nb_academics_on.gif', '/img/nb_publications_on.gif', '/img/nb_people_on.gif', '/img/nb_events_on.gif', '/img/nb_support_on.gif', '/img/nb_resources_on.gif');

	
// load images into cache by transferring to new array and declaring src for each element.
mOverArray = new Array(mOverArrayTemp.length)
for (i = 0; i < mOverArrayTemp.length; i++) {
   mOverArray[i] = new Image
   mOverArray[i].src = mOverArrayTemp[i]
}		
		
// functions: loc points to an <img> tag; img points to an element in the array.
// note: full syntax for loc.src would be document.loc.src, but frames confuse the browser. with simply loc.src, 
// the browser defaults to the proper frame.
function mOver(loc, img) { 
loc.src = mOverArray[img].src;
}


function mOut(loc, img) {
loc.src = mOutArray[img];		// don't need .src here since these images are cached via body <img> tags.
}

	
// pop-up windows: quiz
function launchQuiz() {
  		slideShowWin = window.open('/~webmaster/cgi-bin/inequiz?FORMID=quiz-2008;next=1','quiz','scrollbars=1,resizable=1,width=600,height=500');
  		slideShowWin.focus();
}



// -->



