var thePrograms = new Array();
thePrograms[0] = '/images/images_after_school_programs/after_school_programs01.jpg';
thePrograms[1] = '/images/images_after_school_programs/after_school_programs02.jpg';
thePrograms[2] = '/images/images_after_school_programs/after_school_programs03.jpg';
thePrograms[3] = '/images/images_after_school_programs/after_school_programs04.jpg';
thePrograms[4] = '/images/images_after_school_programs/after_school_programs05.jpg';
thePrograms[5] = '/images/images_after_school_programs/after_school_programs06.jpg';


var theProgramsAlt = new Array();
theProgramsAlt[0] = 'The Aquinas Montessori School Girl Scouts';
theProgramsAlt[1] = 'The Aquinas Montessori School Girl Scouts';
theProgramsAlt[2] = 'The Aquinas Montessori School Drama Club &ndash; Aladdin, Jr.';
theProgramsAlt[3] = 'The Aquinas Montessori School Drama Club &ndash; Willy Wonka, Jr.';
theProgramsAlt[4] = 'The Aquinas Montessori School Drama Club &ndash; High School Musical, Jr.';
theProgramsAlt[5] = 'The Aquinas Montessori School Drama Club &ndash; High School Musical, Jr.';


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>');
	}
	else if(whichPrograms==4){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
	else if(whichPrograms==5){
		document.write('<img src="' + thePrograms[whichPrograms] + '" alt="' + theProgramsAlt[whichPrograms] + '" title="' + theProgramsAlt[whichPrograms] + '" width=174>');
	}
}

