// The Array Function 

function makeArray(len) {
	for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

images = new makeArray(18);
images[0] = "<img src='/technology/common/headers/building1.jpg' alt='Technology Department' width='770' height='50'>";
images[1] = "<img src='/technology/common/headers/building2.jpg' alt='Technology Department' width='770' height='50'>";
images[2] = "<img src='/technology/common/headers/building3.jpg' alt='Technology Department' width='770' height='50'>";
images[3] = "<img src='/technology/common/headers/chairs1.jpg' alt='Technology Department' width='770' height='50'>";
images[4] = "<img src='/technology/common/headers/collegedesign1.jpg' alt='Technology Department' width='770' height='50'>";
images[5] = "<img src='/technology/common/headers/column1.jpg' alt='Technology Department' width='770' height='50'>";
images[6] = "<img src='/technology/common/headers/keyboard1.jpg' alt='Technology Department' width='770' height='50'>";
images[7] = "<img src='/technology/common/headers/labcomputers1.jpg' alt='Technology Department' width='770' height='50'>";
images[8] = "<img src='/technology/common/headers/spring1.jpg' alt='Technology Department' width='770' height='50'>";
images[9] = "<img src='/technology/common/headers/winter1.jpg' alt='Technology Department' width='770' height='50'>";
images[10] = "<img src='/technology/common/headers/winter2.jpg' alt='Technology Department' width='770' height='50'>";
images[11] = "<img src='/technology/common/headers/building8.jpg' alt='Technology Department' width='770' height='50'>";
images[12] = "<img src='/technology/common/headers/detail1.jpg' alt='Technology Department' width='770' height='50'>";
images[13] = "<img src='/technology/common/headers/ivy1.jpg' alt='Technology Department' width='770' height='50'>";
images[14] = "<img src='/technology/common/headers/building7.jpg' alt='Technology Department' width='770' height='50'>";
images[15] = "<img src='/technology/common/headers/building6.jpg' alt='Technology Department' width='770' height='50'>";
images[16] = "<img src='/technology/common/headers/field1.jpg' alt='Technology Department' width='770' height='50'>";
images[17] = "<img src='/technology/common/headers/building5.jpg' alt='Technology Department' width='770' height='50'>";
// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff