	function makeArray(len) {
	    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

	// This is where the array of text/images/sounds is created.

prayers = new makeArray(8);
	prayers[0] = "Gracious God,<br>you created the world in beauty...<br>you created us in your image and yet more wonderfully restored us in Christ...<br>you are re-creating the world in Christ...<br>you revealed yourself to us in Christ...<br>you allow us to glimpse your glory in the face of Christ...(p.18)";
	prayers[1] = "We pray to you, O Lord;<br>you hear our voice in the morning;<br>at sunrise we offer our prayers<br>and wait for your answer.<br>(based on Psalm 5) (p.19)";
	prayers[2] = "To you, O LORD, I lift my soul.<br>O God, in you I trust.<br>(from Psalm 25) (p.19)";
	prayers[3] = "(We pray for...)<br>Those who suffer with physical illness, and those who care for them<br>Those who suffer with mental illness, and those who care for them<br>Those who have suffered abuse, and those who support them<br>Those who suffer with addiction, and those who support them (p.21)";
	prayers[4] = "Loving God,<br>we offer these prayers, joining our voices to the great chorus of those who sing your praise and depend on you alone.<br>We long for that day when all your children will live in your peace and praise your name.<br>Until that day, give us sturdy patience and enduring hope,<br>rooted only in Jesus, in whose name we pray. Amen. (p.24)";
	prayers[5] = "O Lord and Father of the household of faith,<br>we thank you for the gift of faith worked within us by your Holy Spirit.<br>We thank you for having called us to yourself,<br>for consecrating us to your service,<br>for having set us apart to the sacred ministry of prayer.(p.29)";
	prayers[6] = "(We pray for...)<br>Those who are unemployed or underemployed...<br>Those who work in business and industry...<br>Those who work in homemaking...<br>Those who work in medicine...<br>Those who work in agriculture..<br>Those who are seeking new or different jobs... (p.22)";
	prayers[7] = "To your holy name,<br>with the church on earth and the church in heaven,<br>we ascribe all honor and glory,<br>now and forever. Amen. (p.24)";
				
	// The random number generator.

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff

	
	// Where you place this is where the random object will be displayed.

	document.write(prayers[rand(prayers.length)])	