function doPreload() {
	var the_images = new Array(
	'../images/home_upT.jpg','../images/home_dwnT.jpg',
	'../images/whatsnew_upT.jpg','../images/whatsnew_dwnT.jpg',
	'../images/news_upT.jpg','../images/news_dwnT.jpg',
	'../images/calendar_title12.jpg','../images/church_upT.jpg','../images/church_dwnT.jpg',
	'../images/aboutus_upT.jpg','../images/aboutus_dwnT.jpg',
	'../images/contact_upT.jpg','../images/contact_dwnT.jpg',
	'get_adobe_reader.gif','09sept10.pdf','10oct10.pdf','11nov10.pdf','12dec10.pdf','01jan11.pdf',
	'02feb11.pdf','03march11.pdf','04april11.pdf','05may11.pdf','06june11.pdf',
	   '../images/topimage_001_adventcandles.jpg',
// 'images/topimage_002_snowmen.jpg',
	   '../images/newschoolskylineandlogo.jpg','../images/topimage_003_lillies.jpg',
	   '../images/topimage_005_mygardenCrop.jpg','../images/topimage_006_autumnchurch.jpg',
	   '../images/topimage_007_dewdrops.jpg','../images/topimage_008_nasturtium.jpg',
	   '../images/topimage_009_nasturtium2.jpg','../images/topimage_010_morningglory.jpg',
//	   '../images/topimage_011_morningglory2.jpg','../images/topimage_012_morningglory3.jpg',
	   '../images/topimage_013_butterfly.jpg','../images/topimage_014_butterfly2.jpg',
	   '../images/topimage_015_squirrel.jpg'
	  			);
	preloadImages(the_images);
}

function preloadImages(the_images_array) {
	for (i=0;i<the_images_array.length;i++) {
		var an_image = new Image();
		an_image.src = the_images_array[i];
	}
}

function swap(name,image){
	document.images[name].src = image;
	return true;
}


var arrImages = new Array();
arrImages[0]= "../images/topimage_003_lillies.jpg";
arrImages[1]= "../images/newschoolskylineandlogo.jpg";
arrImages[2]= "../images/topimage_005_mygardenCrop.jpg";
arrImages[3]= "../images/topimage_006_autumnchurch.jpg";
arrImages[4]= "../images/topimage_007_dewdrops.jpg";
arrImages[5]= "../images/topimage_008_nasturtium.jpg";
arrImages[6]= "../images/topimage_009_nasturtium2.jpg";
arrImages[7]= "../images/topimage_010_morningglory.jpg";
arrImages[8]= "../images/topimage_001_adventcandles.jpg";
// arrImages[12]= "../images/topimage_002_snowmen.jpg";
arrImages[9]= "../images/topimage_013_butterfly.jpg";
arrImages[10]= "../images/topimage_014_butterfly2.jpg";
arrImages[11]= "../images/topimage_015_squirrel.jpg";
// arrImages[13]= "../images/topimage_011_morningglory2.jpg";
// arrImages[14]= "../images/topimage_012_morningglory3.jpg";
var intRandom = Math.floor(Math.random()*12);


function quote() {
var intRandom = Math.floor(Math.random()*5);
var arrQuotes = new Array();
arrQuotes[0]= "St. Joseph, pray for us!";
arrQuotes[1]= "Don\'t forget to attend Mass this weekend with your family!";
arrQuotes[2]= "Nothing ventured, nothing gained.";
arrQuotes[3]= "Seize the Day!";
arrQuotes[4]= "Character Counts and so do you.";

	document.write('<div align="center"><TABLE width="100%" border="3" bgcolor="#ffffff"><tr><td><center><TABLE border="0" width="80%" cellpadding="5" cellspacing="0" bgcolor="#ffffff"><\/td><\/tr>');
	document.alinkColor="#ff0000";
	document.fgColor="#405098";
	document.linkColor="#0000ff";
	document.vlinkColor="#008080";
	document.write('<tr><td width="30%" align="left"><font size="4" face="BD Merced, Trebuchet MS, Arial, Helvetica, sans-serif"><b>Adage of the Day:<\/b><\/font> &nbsp;&nbsp;<td align="left" width="70%"><font size="2" face="Trebuchet MS, Arial, Helvetica, sans-serif">'+arrQuotes[intRandom]+'<\/font><\/tr>');
	document.write('<\/div><\/center><\/table><\/table>');
}

