<!-- hide
var quadrantUpperLeft = new Array();
quadrantUpperLeft[0] = '/ChancellorSearch/img/new.jpg';
quadrantUpperLeft[1] = '/ChancellorSearch/img/new.jpg';
quadrantUpperLeft[2] = '/ChancellorSearch/img/new.jpg';

var quadrantLowerLeft = new Array();
quadrantLowerLeft[0] = '/ChancellorSearch/img/sparky.jpg';
quadrantLowerLeft[1] = '/ChancellorSearch/img/student.jpg';
quadrantLowerLeft[2] = '/ChancellorSearch/img/architecture.jpg';

var quadrantLowerRight = new Array();
quadrantLowerRight[0] = '/ChancellorSearch/img/skyline.jpg';
quadrantLowerRight[1] = '/ChancellorSearch/img/exercise.jpg';
quadrantLowerRight[2] = '/ChancellorSearch/img/eltrain.jpg';

var quadImageTotalCount = quadrantUpperLeft.length;
var numRandom = Math.floor(Math.random()*quadImageTotalCount);

var preloadBuffer = new Array();

for (i = 0; i < numRandom; i++){
   preloadBuffer[i] = new Image();
   preloadBuffer[i].src = quadrantUpperLeft[i];
}

for (i = 0; i < numRandom; i++){
   preloadBuffer[i] = new Image();
   preloadBuffer[i].src = quadrantLowerLeft[i];
}

for (i = 0; i < numRandom; i++){
   preloadBuffer[i] = new Image();
   preloadBuffer[i].src = quadrantLowerRight[i];
}

function showQuadrantUpperLeft(){
document.write('<a href=/our/news/2008/june17.allen.meares.cfm><img src="'+quadrantUpperLeft[numRandom]+'" width="300" height="300" alt="Paula Allen-Meares" border="0" /></a>');
}
function showQuadrantLowerLeft(){
document.write('<img src="'+quadrantLowerLeft[numRandom]+'" width="300" height="300" alt="UIC Photo" border="0" />');
}
function showQuadrantLowerRight(){
document.write('<img src="'+quadrantLowerRight[numRandom]+'" width="300" height="300" alt="UIC Photo" border="0" />');
}

//  end hide -->