function makeArray(len) {
      for (var i = 0; i < len; i++) this[i] = null;
  	this.length = len;
  }
  tag = new makeArray(22);
  tag[0] = "Where the World is My Playground&hellip;";
  tag[1] = "Anywhere But Here&hellip;";
  tag[2] = "On the Road Again";
  tag[3] = "From Antigua to Zimbabwe";
  tag[4] = "Four Months&#63; You&rsquo;ll Be Gone Longer than That&#33;";
  tag[5] = "Aussie Rules, Mate&hellip; We Play by Aussie Rules";
  tag[6] = "I&rsquo;m Happy to Say, I&rsquo;m On My Way&hellip;";
  tag[7] = "Where Freedom Is My Playground&hellip;";
  tag[8] = "My Digital Scrapbook";
  tag[9] = "Visting Places Whose Names I Cannot Pronounce";
  tag[10] = "Been Gone Too Long; You&rsquo;ll Never Be the Same";
  tag[11] = "Severe and Utter Dromomania";
  tag[12] = "Until We Meet Again&hellip; Shalom";
  tag[13] = "68 and (who&rsquo;s) counting(?)";
  tag[14] = "Break Away From the Way You Live Your Life&hellip;";
  tag[15] = "Hop on board we&rsquo;re alomst on our way&hellip;";
  tag[16] = "Lost in alleyway mazes like a dream&hellip;";
  tag[17] = "Run away, run away, run away with me&hellip;";
  tag[18] = "Take that airplane to the land that&rsquo;s far away&hellip;";
  tag[19] = "See the People and the Rhythms of Their Life&hellip;";
  tag[20] = "The road is a long, long white Eternal run of dreams";
  tag[21] = "My Innocence Bends as My Eyes Flicker Open";
  
  
  function rand(n) {
  	seed = (0x015a4e35 * seed) % 0x7fffffff;
  	return (seed >> 16) % n;
  }
  var now = new Date()
  var seed = now.getTime() % 0xffffffff