function preLoad() {
if(document.images) {
if(!document.imageArray) {
document.imageArray=new Array();
var i = document.imageArray.length;
var a = preLoad.arguments;
for(i=0; i<a.length; i++) {
document.imageArray[i] = new Image;
document.imageArray[i].src=a[i];
}
}
}
}


var nav3 = new Array();

nav3[0] = new Array();
//this value is the link for the nav item
nav3[0][0] = "honors.html";
//this value is the name of the first image, the "off" image
nav3[0][1] = "subNav_AU_Honors";
//this value is the width of the image
nav3[0][2] = "139";
//height of the image
nav3[0][3] = "21";
//alt tag for image
nav3[0][4] = "Honors";

nav3[1] = new Array();
nav3[1][0] = "activities.html";
nav3[1][1] = "subNav_AU_Activities";
nav3[1][2] = "138";
nav3[1][3] = "21";
nav3[1][4] = "Activities";

nav3[2] = new Array();
nav3[2][0] = "comments.html";
nav3[2][1] = "subNav_AU_Process";
nav3[2][2] = "94";
nav3[2][3] = "21";
nav3[2][4] = "Design Process";



function swapImage(imgName, fileName) {


if(document.images) {
var imgToChange="document." + imgName;
imgToChange=eval(imgToChange);
imgToChange.src=fileName;
}
}


var navBar3 = "";

function aboutusNav(currentPage) {
for (i = 0; i < nav3.length; i++) {
if(i == currentPage)
{
picSrc3 = 'images/' + nav3[i][1] + '_on.gif';
}
else
{
picSrc3 = 'images/' + nav3[i][1] + '.gif';
}

navBar3 += '<td><a href="' + nav3[i][0] + '" onMouseOver="swapImage(\'' + nav3[i][1] + '\',\'images/' + nav3[i][1] + '_on.gif\');" onMouseOut="swapImage(\'' + nav3[i][1] + '\',\'' + picSrc3 + '\');"><img src="' + picSrc3 + '" width="' + nav3[i][2] + '"height="' + nav3[i][3] + '" border="0" alt="' + nav3[i][4] + '" name="' + nav3[i][1] + '" /></a></td>';
}
//alert(navBar);
document.write(navBar3);
} 


