    var wordArray = new makeArray(
'<IMG SRC="/ads/activism.jpg" WIDTH="329" HEIGHT="225" ALT="Social activism is more than giving of your checkbook. It is giving of yourself." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/birds.jpg" WIDTH="328" HEIGHT="225" ALT="Talking about the birds and the bees was tough. Then she asked about God." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/consciousness.jpg" WIDTH="328" HEIGHT="225" ALT="To us, raising kids right means raising their consciousness." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/freedom.jpg" WIDTH="328" HEIGHT="225" ALT="I finally found a religion that values freedom as much as I do." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/school.jpg" WIDTH="328" HEIGHT="225" ALT="It is like regular school-except nobody flunks." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/god.jpg" WIDTH="328" HEIGHT="225" ALT="You do not have to see God as straight, white and a man." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/time.jpg" WIDTH="329" HEIGHT="225" ALT="Between a professional life and social life, who has room for a spiritual life?" vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/fit-me.jpg" WIDTH="294" HEIGHT="225" ALT="Instead of me fitting a religion I found a religion to fit me." vspace="2" hspace="6" align="left" border="1">',
'<IMG SRC="/ads/wedding.jpg" WIDTH="294" HEIGHT="225" ALT="We were looking for a church for the wedding. We found a religion." vspace="2" hspace="6" align="left" border="1">');
   function makeArray(){
     this.length = makeArray.arguments.length
     for (var i = 0; i < this.length; i++)
     this[i + 1] = makeArray.arguments[i]
   }

   function randNum (num) {
     var now = new Date();
     var rand = Math.round(num * Math.cos(now.getTime()));
     if (rand < 0) rand = - rand; 
	if (rand == 0) rand++;
     return rand;
   }
