var thePrograms = new Array();
thePrograms[0] = '/images/images_parents_and_students/parents_and_students01.jpg';
thePrograms[1] = '/images/images_parents_and_students/parents_and_students02.jpg';


var theProgramsAlt = new Array();
theProgramsAlt[0] = 'The Aquinas Montessori School';
theProgramsAlt[1] = 'The Old Town Montessori School';



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>');
	}
}

