/*
トップの写真を表示するプログラム
  copyright (C)立命館大学テコンドーサークル
*/
myImageCnt = 8;
myImage = new Array(

 "<param name='movie' value='http://www.youtube.com/v/sfGz35FyV0U'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/sfGz35FyV0U' type='application/x-shockwave-flash' wmode='transparent' width='361' height='297'></embed>",
 "<param name='movie' value='http://www.youtube.com/v/sfGz35FyV0U'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/sfGz35FyV0U' type='application/x-shockwave-flash' wmode='transparent' width='361' height='297'></embed>",
 "picture/top30.JPG",
 "picture/top30.JPG",
 "picture/top21.jpg",
 "picture/top21.jpg",
 "picture/top30.JPG",
 "picture/top30.JPG"
 );
myRnd = Math.floor(Math.random()*myImageCnt);  // 0〜(myImageCnt-1)の乱数を求める
if(myRnd<2)  /*0番目と1番目の場合*/
document.write("<center>",myImage[myRnd],"</center>");

else if(myRnd<4){
document.write("<a href='photo-070914gassyuku.html'><img src='",myImage[myRnd],"' border='0'></a><font size='-2'><br></font>");
}

else{
document.write("<a href='bosyuu.html'><img src='",myImage[myRnd],"' border='0'></a><font size='-2'><br></font>");
}