<!--
function rmdfighters_r()
{
//タグクラウドの単語とURLリスト
//単語とURLの関係は維持したいので多次元配列にする
//とりあえず13個
//※単語とURLはそれぞれシングルクォーテーションで囲み、※
//※間にカンマを忘れないように！※
wordlist_r=
[
['大谷晋二郎','otanishinjiro'] ,
['佐藤耕平','satokohei'] ,
['植田使徒','uedasito'] ,
['斎藤謙','saitoyuzuru'] ,
['F.O.S スタッフ','fos-staff'] ,
['柿沼謙太','kakinumakenta']
];

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

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

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

}//end for wordlist_r

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_r[c][1]+".blog.players.tv/\" target=\"_blank\"><img src=\"images/rssphoto/"+wordlist_r[c][1]+".jpg\" width=\"100\" height=\"80\"></a><br></td>	");
document.write("<td>	");
document.write("<div class=\"fightername\"><a href=\"http://"+wordlist_r[c][1]+".blog.players.tv/\" target=\"_blank\">"+wordlist_r[c][0]+"\</a></div>	");
document.write("<div class=\"mrgn-t2\" align=\"right\"><a href=\"http://"+wordlist_r[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
// -->
