function selectBanner() {
      var bannerArray = new Array(
		'&quot;But we&#146;re never going to survive unless we get a little bit crazy&quot;<br>-&#146;Crazy&#146; Seal',
		'&quot;One can never consent to creep when one feels an impulse to soar.&quot;<br>-Helen Keller',
		'&quot;You think it&#146;s a conspiracy by the networks to put bad shows on TV. But the shows are bad because that&#146;s what people want. It&#146;s not like Windows users don&#146;t have any power; I think they are happy with Windows, and that&#146;s an incredibly depressing thought...&quot;<br>-Steve Jobs',
	    '&quot;I&#146;m drinking so much coffee lately that some mornings, I wake up in a fetal position outside of a Starbucks on the bad side of town with biscotti crumbs stuck to my beard.&quot; <br>-Gersh Kuntzman',
		'&quot;If you hurt me again, I will go. This isn&#146;t a threat, but I thought you should know <br> &#146;Cause your&#146;re taking away, part of me, every day and it shows.&quot; <br>-Breathe, Randi Driscoll',
		'&quot;Do we put a light cloth over it and be very quiet? I felt like we should get a baby monitor or something.&quot; <br>-Andrea and David Zuschin &quot;proud parents&quot; of a new iMac.',
		'&quot;Don&#146;t be afraid to be amazing.&quot;<br>-Andy Offut Irwin',
		'&quot;I think we dream so we don&#146;t have to be apart so long. If we&#146;re in each other&#146;s dreams, we can be together all the time.&quot;<br>-Calvin and Hobbes (Bill Watterson)',
		'&quot;Computer games don&#146;t affect kids.  I mean, if PacMan affected us as kids, we&#146;d all be running around in darkened rooms, munching pills and listening to repetitive music.&quot;<br>-Dylan Davis',
		'&quot;I believe there&#146;s nothing we can know, except that we should be kind to each other and do what we can for people.&quot;<br>-Katharine Hepburn',
		'&quot;The More People I meet, the more I like Dogs.&quot;<br>-Name Witheld. If you want to know, email me.',
		'In a recent survey, 5% of people said a tattoo makes them seem more intelligent.',
		'&quot;The curtain opens to a laughing child. With screaming lungs and dancing feet...&quot; <br>-The Play, Randi Driscoll'
        );
      var now = new Date();
      var rand = Math.abs(Math.round((bannerArray.length-1) * Math.cos(now.getTime())));
      var image = bannerArray[rand];
      return(image);

}




