
//Header image rotator
tN=0;
var theImages = new Array()
theImages[tN++] = '/templates/fchm1/images/header1.gif'
theImages[tN++] = '/templates/fchm1/images/header2.gif'
theImages[tN++] = '/templates/fchm1/images/header3.gif'
theImages[tN++] = '/templates/fchm1/images/header4.gif'
theImages[tN++] = '/templates/fchm1/images/header5.gif'
theImages[tN++] = '/templates/fchm1/images/header6.gif'
theImages[tN++] = '/templates/fchm1/images/header7.gif'
theImages[tN++] = '/templates/fchm1/images/header8.gif'
theImages[tN++] = '/templates/fchm1/images/header9.gif'
theImages[tN++] = '/templates/fchm1/images/header10.gif'
var p = theImages.length;
var pickImage = Math.round(Math.random()*(p-1));
var i = pickImage;

 //preload the image into cache
var preBuffer = new Array()
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]

function showImage() {
document.write('<img src="'+theImages[i]+'" width="579" height="100" />');
}

//Quote rotator
qN=0;
var Quotes = new Array()
Quotes[qN++] = '<i>"Friday School is a lot of fun!"</i><p align="right" style="margin-right:8px;">-First Class Mom<br /> Portland, OR</p>'
Quotes[qN++] = '<i>"First Class has filled the desire of our heart...We have felt welcome, at home, and uplifted"</i><p align="right" style="margin-right:8px;">-First Class Parent<br />Battle Ground, WA</p>'
Quotes[qN++] = '<i>"First Class has been an answer to prayer for our family. May God bless you richly!"</i><p align="right" style="margin-right:8px;">-First Class Parent<br />Longview, WA</p>'
Quotes[qN++] = '<i>"I cannot tell you how excited we are about First Class! This is such an answer to prayer. I have been hoping for a group that I could get together with and put our ideas together. Sharing in fellowship, education, and fun."</i><p align="right" style="margin-right:8px;">First Class Family<br />Ridgefield, WA</p>'
Quotes[qN++] = '<i>"I cannot begin to tell you how excited we are that FC3 is here in the Portland/Vancouver area! We were so excited when we heard about your co-op. I almost cried! I have been praying for a Christian co-op - First Class has been an answer to many months of prayer."</i><p align="right" style="margin-right:8px;">-First Class Mom<br />Vancouver, WA</p>'
Quotes[qN++] = '<i>"Thank you for Friday School!"</i><p align="right" style="margin-right:8px;">-8 year old student<br />Kelso, WA</p>'
Quotes[qN++] = '<i>"It never ceases to amaze me how blessed we are to be a part of such a wonderful opportunity. It\’s impossible to express the smile God must have when He walks thru the halls with us at Friday School, I can only compare it to mine and that does no justice. Thank you."</i><p align="right" style="margin-right:8px;">-First Class Dad<br />Ridgefield, WA</p>'
Quotes[qN++] = '<i>"First Class is a "First Class" co-op....Our family has been very blessed by attending."</i><p align="right" style="margin-right:8px;">-First Class Mom<br />Vancouver, WA</p>'
Quotes[qN++] = '<i>"We are looking forward to continuing the friendships we have started at First Class."</i><p align="right" style="margin-right:8px;">-First Class Mom<br />Camas, WA</p>'
Quotes[qN++] = '<i>"I like my classes a lot. Thank you Friday School"</i><p align="right" style="margin-right:8px;">-6 yr old student<br />Portland, OR</p>'
Quotes[qN++] = '<i>"First Class is FIRSTCLASSTIC!"</i><p align="right" style="margin-right:8px;">-First Class Dad<br />Vancouver, WA</p>'

var Q = Quotes.length;
var whichQuote = Math.round(Math.random()*(Q-1));

function showQuote() {
document.write(Quotes[whichQuote]);
}

//place where quote is to appear.
//showQuote();
// --> 


