  function title()
  {
			// ランダムに画像を表示する
			jmp = new Array();
			img = new Array();
			// ジャンプ先のアドレス(数字は画像と対応)
			jmp[0] = "index.html";
			jmp[1] = "index.html";
			jmp[2] = "index.html";
			jmp[3] = "index.html";
			jmp[4] = "index.html";
			jmp[5] = "index.html";
			jmp[6] = "index.html";
			jmp[7] = "index.html";
			jmp[8] = "index.html";
			jmp[9] = "index.html";
			// 画像のアドレス(数字はジャンプ先のアドレスと対応)
			img[0] = "img/top/0.gif";
			img[1] = "img/top/1.gif";
			img[2] = "img/top/2.gif";
			img[3] = "img/top/3.gif";
			img[4] = "img/top/4.gif";
			img[5] = "img/top/5.gif";
			img[6] = "img/top/6.gif";
			img[7] = "img/top/7.gif";
			img[8] = "img/top/8.gif";
			img[9] = "img/top/9.gif";
			n = Math.floor(Math.random()*jmp.length);
			//document.write("<a href='"+jmp[n]+"'>");
			//document.write("<img src='"+img[n]+"' alt='BudapestNavi' border='0'>");
			//document.write("</a>");
  }
