var theImages = new Array();
var theAlt = new Array();

theImages[0] = 'images/banners/experience.jpg'; theAlt[0] = '"You\'ll leave HSU with the experience that will take you where you want to go in life"';
theImages[1] = 'images/banners/smallclasses1.jpg'; theAlt[1] = '"small class sizes taught by professors who\'ll know your name"';
theImages[2] = 'images/banners/smallclasses2.jpg'; theAlt[2] = '"small class sizes taught by professors who\'ll know your name"';
theImages[3] = 'images/banners/adventurers1.jpg'; theAlt[3] = '"Humboldt State sits smack dab in the middle of an adventurer\'s paradise"';
theImages[4] = 'images/banners/experience3.jpg'; theAlt[4] = '"You\'ll leave HSU with the experience that will take you where you want to go in life"';
theImages[5] = 'images/banners/experience4.jpg'; theAlt[5] = '"You\'ll leave HSU with the experience that will take you where you want to go in life"';
theImages[6] = 'images/banners/adventurers2.jpg'; theAlt[6] = '"Humboldt State sits smack dab in the middle of an adventurer\'s paradise"';
theImages[7] = 'images/banners/majors.jpg'; theAlt[7] = '"With 47 majors and 80 minors, chances are we\'ve got what you want to study"';
theImages[8] = 'images/banners/equipment.jpg'; theAlt[8] = '"Access to state-of-the-art labs, equipment and facilities equals your ticket to success"';
theImages[9] = 'images/banners/smallclasses3.jpg'; theAlt[9] = '"small class sizes taught by professors who\'ll know your name"';
theImages[10] = 'images/banners/equipment2.jpg'; theAlt[10] = '"Access to state-of-the-art labs, equipment and facilities equals your ticket to success"';

var j = 0;
var p = theImages.length;
var preBuffer = new Array();	

for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i];
}

var whichImage = Math.round(Math.random()*(p-1));


function showImage(){
	document.write('<img src='+theImages[whichImage]+' alt='+theAlt[whichImage]+' />');
}
