var thePrograms = new Array();
thePrograms[0] = '/images/images_alumni/alumni01.jpg';
thePrograms[1] = '/images/images_alumni/alumni02.jpg';
thePrograms[2] = '/images/images_alumni/alumni03.jpg';
thePrograms[3] = '/images/images_alumni/alumni04.jpg';

var theProgramsAlt = new Array();
theProgramsAlt[0] = 'Alumni';
theProgramsAlt[1] = 'Alumni';
theProgramsAlt[2] = 'Alumni';
theProgramsAlt[3] = 'Alumni';


var i = 0;
var j = 0;
var p = thePrograms.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
	preBuffer[i] = new Image();
	preBuffer[i].src = thePrograms[i];
}

var whichPrograms = Math.round(Math.random()*(p-1));
function showPrograms(){
	if(whichPrograms==0){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
	else if(whichPrograms==1){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
	else if(whichPrograms==2){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
	else if(whichPrograms==3){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
}

