<!--
function rmdfighters_l()
{
//タグクラウドの単語とURLリスト
//単語とURLの関係は維持したいので多次元配列にする
//とりあえず13個
//※単語とURLはそれぞれシングルクォーテーションで囲み、※
//※間にカンマを忘れないように！※
wordlist=
[
['田中将斗','tanakamasato'] ,
['崔領二','sairyoji'] ,
['KAMIKAZE','kamikaze'] ,
['日高郁人','hidakaikuto'] ,
['藤田ミノル','fujitaminoru'] ,
['中村祥之','nakamurayosiyuki'] ,
['高西翔太','takanishisyota']
];

//サイズのバリエーション
//単語リストの数とあわせる
//数字はピクセル
sizelist=new Array(
'12' ,
'12' ,
'12' ,
'12' ,
'12' ,
'12' ,
'14' ,
'14' ,
'14' ,
'18' ,
'18' ,
'24' ,
'24'
);

for (i=0 ; i<wordlist.length; i++)
{
var tmpA, tmpB, rnd;
rnd=Math.floor(Math.random() * wordlist.length);
tmpA=wordlist[i];
tmpB=wordlist[rnd];

wordlist[i]=tmpB;
wordlist[rnd]=tmpA;

}//end for wordlist

for (i=0 ; i<sizelist.length; i++)
{
var tmpA, tmpB, rnd;
rnd=Math.floor(Math.random() * sizelist.length);
tmpA=sizelist[i];
tmpB=sizelist[rnd];

sizelist[i]=tmpB;
sizelist[rnd]=tmpA;

}//end for sizelist

c=0;
while (c<4)
{
document.write("<div class=\"rssone\">	");
document.write("<table cellpadding=\"0\" cellspacing=\"0\">	");
document.write("<tr>	");
document.write("<td valign=\"top\"><a href=\"http://"+wordlist[c][1]+".blog.players.tv/\" target=\"_blank\"><img src=\"images/rssphoto/"+wordlist[c][1]+".jpg\" width=\"100\" height=\"80\"></a><br></td>	");
document.write("<td>	");
document.write("<div class=\"fightername\"><a href=\"http://"+wordlist[c][1]+".blog.players.tv/\" target=\"_blank\">"+wordlist[c][0]+"\</a></div>	");
document.write("<div class=\"mrgn-t2\" align=\"right\"><a href=\"http://"+wordlist[c][1]+".blog.players.tv/\" target=\"_blank\" class=\"red\">プロフィールはこちら</a></div>	");
document.write("</td>	");
document.write("</tr>	");
document.write("</table>	");
document.write("</div>	");
c++;
}//end while


}//end of function
// -->

