// JavaScript Document

function makeArray(len) {
	for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	  }
	  tag = new makeArray(15);
	  tag[0] = "The world is my playground";
	  tag[1] = "Anywhere but here";
	  tag[2] = "On the road again";
	  tag[3] = "From Antigua to Zimbabwe";
	  tag[4] = "Around the world";
	  tag[5] = "Aussie rules mate";
	  tag[6] = "My digital scrapbook";
	  tag[7] = "Been gone too long...";
	  tag[8] = "Severe dromomania";
	  tag[9] = "Bonjour <span class='fontAsia' style='letter-spacing: -5px;'>こんにちは</span> <span class='nospace'>مرحبا</span> <span class='fontAsia'>你好</span> <span class='sansserif'>שלום</span>";
	  tag[10] = "70 and counting";
	  tag[11] = "The way you live your life";
	  tag[12] = "Hop on board";
	  tag[13] = "To the land that&rsquo;s far away";
	  tag[14] = "See the people &amp; their rhythms";
	  //tag[15] = "Visting places whose names I can&rsquo;t pronounce";

function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 15) % n;
}
  var now = new Date()
  var seed = now.getTime() % 0xffffffff;

