		myQuote = new Array(); // length of the array can vary
		
		myQuote[0] = "I prefer winter . . .  when you feel the bone structure of the landscape, the loneliness of it the dead feeling of winter.  Something waits beneath it, the whole story doesn't show.<br/><br/> - Andrew Wyeth";
		
		myQuote[1] = "There is a privacy about it which no other season gives you - only in the winter can you have longer, quiet stretches when you can savor belonging to yourself.<br/><br/> - Ruth Stout";
		
		myQuote[2] = "If we had no winter, the spring would not be so pleasant: if we did not sometimes taste of adversity, prosperity would not be so welcome.<br/><br/> - Anne Bradstreet";
		
		myQuote[3] = "Every gardener knows that under the cloak of winter lies a miracle ... a seed waiting to sprout, a bulb opening to the light, a bud straining to unfurl.  And the anticipation nurtures our dream.<br/><br/> - Barbara Winkler";
		
		index = Math.floor(Math.random() * myQuote.length); // random number from 0 to length-1

		document.writeln(myQuote[index]);
		
		
