// ライブヒストリー表示ルーチン

var liveCount;					// ライブヒストリーコンテンツ数
var liveDate = new Array();		// 年月
var livePlace = new Array();	// 場所
var liveUrl = new Array();		// コンテンツURL
var i;

liveDate[0]		= "2002年8月";
livePlace[0]	= "神奈川、東京";
liveUrl[0]		= "200208.html";

liveDate[1]		= "2002年11月";
livePlace[1]	= "福岡";
liveUrl[1]		= "200211.html";

liveDate[2]		= "2002年11月";
livePlace[2]	= "東京";
liveUrl[2]		= "200211_2.html";

liveDate[3]		= "2003年4月";
livePlace[3]	= "北海道、東京";
liveUrl[3]		= "200304.html";

liveDate[4]		= "2003年6-7月";
livePlace[4]	= "大阪、京都";
liveUrl[4]		= "200306.html";

liveDate[5]		= "2003年10月";
livePlace[5]	= "東京、大阪、香川";
liveUrl[5]		= "200310.html";

liveDate[6]		= "2004年2月";
livePlace[6]	= "東京";
liveUrl[6]		= "200402.html";

liveDate[7]		= "2004年3月";
livePlace[7]	= "北海道";
liveUrl[7]		= "200403.html";

liveDate[8]		= "2004年5月";
livePlace[8]	= "京都、兵庫、香川";
liveUrl[8]		= "200405.html";

liveDate[9]		= "2004年9-10月";
livePlace[9]	= "2004秋全国ツアー";
liveUrl[9]		= "200410.html";

liveDate[10]	= "2004年12月";
livePlace[10]	= "東京";
liveUrl[10]		= "200412.html";

liveDate[11]	= "2005年4月";
livePlace[11]	= "沖縄";
liveUrl[11]		= "200504.html";

liveDate[12]	= "2005年9-10月";
livePlace[12]	= "2005バースデーツアー";
liveUrl[12]		= "200510.html";

liveDate[13]	= "2005年12月";
livePlace[13]	= "クリスマス忘年会ライブ";
liveUrl[13]		= "200512.html";

liveDate[14]	= "2006年2月";
livePlace[14]	= "与那国";
liveUrl[14]		= "200602.html";

liveDate[15]	= "2006年10月";
livePlace[15]	= "2006バースデーツアー";
liveUrl[15]		= "200610.html";

liveDate[16]	= "2007年2月";
livePlace[16]	= "与那国";
liveUrl[16]		= "200702.html";

liveDate[17]	= "2007年3月";
livePlace[17]	= "静岡、東京";
liveUrl[17]		= "200703.html";

liveDate[18]	= "2007年6月";
livePlace[18]	= "東京(うたの日)";
liveUrl[18]		= "200706.html";

liveDate[19]	= "2007年6月";
livePlace[19]	= "関西ライブ";
liveUrl[19]		= "200706kansai.html";

liveDate[20]	= "2007年10月";
livePlace[20]	= "2007秋ライブツアー";
liveUrl[20]		= "200710.html";

liveDate[21]	= "2007年12月";
livePlace[21]	= "那覇・桜坂劇場";
liveUrl[21]		= "200712.html";

liveDate[22]	= "2008年3-4月";
livePlace[22]	= "2008春ライブツアー";
liveUrl[22]		= "200803.html";

liveDate[23]	= "2008年6月";
livePlace[23]	= "東京・横浜";
liveUrl[23]		= "200806.html";

liveDate[24]	= "2008年11月";
livePlace[24]	= "2008秋ライブツアー";
liveUrl[24]		= "200811.html";

liveDate[25]	= "2009年1月";
livePlace[25]	= "東京";
liveUrl[25]		= "200901.html";

liveDate[26]	= "2009年2月";
livePlace[26]	= "鳩間島民俗芸能と<br>三線の夕べ";
liveUrl[26]		= "200902.html";

liveDate[27]	= "2009年6月";
livePlace[27]	= "2009夏ライブツアー";
liveUrl[27]		= "200906.html";

liveDate[28]	= "2009年11月";
livePlace[28]	= "2009秋ライブツアー";
liveUrl[28]		= "200911.html";

liveDate[29]	= "2010年02月";
livePlace[29]	= "2010新春ライブツアー";
liveUrl[29]		= "201002.html";

liveDate[30]	= "2010年06月";
livePlace[30]	= "2010夏ライブツアー";
liveUrl[30]		= "201006.html";

document.write("<table width=\"180\" border=\"0\" cellpadding=\"3\" cellspacing=\"1\" background=\"../img/blind4.jpg\" bgcolor=\"#ccccff\">");
document.write("<tr>");
document.write("<td class=\"font5\" colspan=\"2\" ><font color=\"#333333\">【ライブヒストリー】</font></td>");
document.write("</tr>");

for( i = liveDate.length-1 ; i>=0 ; i-- ){
	document.write("<tr>");
	document.write("<td class=\"font3\" nowrap>" + liveDate[i] + "</td>");
	document.write("<td class=\"font3\"><a href=\"" + liveUrl[i] + "\"><font color=\"#0000ee\">" + livePlace[i] + "</font></a></td>");
	document.write("</tr>");
}

document.write("<tr>");
document.write("<td class=\"font5\" colspan=\"2\" ><a href=\"http://kajiku.com/live/album/sm_albums.cgi\" target=\"_blank\"><font color=\"#0000ee\">ライブ写真アルバム</font></a></td>");
document.write("</tr>");
document.write("</table>");
