var theImages = new Array() 


theImages[0] = '/idaho/media/image1.jpg'

theImages[1] = '/idaho/media/image2.jpg'

theImages[2] = '/idaho/media/image3.jpg'

theImages[3] = '/idaho/media/image4.jpg'

theImages[4] = '/idaho/media/image5.jpg'

theImages[5] = '/idaho/media/image6.jpg'

theImages[6] = '/idaho/media/image7.jpg'

theImages[7] = '/idaho/media/image8.jpg'

theImages[8] = '/idaho/media/image9.jpg'






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]+'" TITLE="idaho" ALT="idaho" WIDTH="600" HEIGHT="150" BORDER="0">');

}

// used in the quicklinks select dropdown
function goHere(url) {window.location=url;}

function goHere2(url) {
	if(url != "") {
		if(url.indexOf('boisestate') == -1) {
			 window.open (url,"newWindow");
		} else {
			window.location=url;
		}
	}

}

