/* 画像ランダム表示 -麺家くさび- */

function random_bn(){

url = new Array(1); 
img = new Array(url.length); 
msg = new Array(url.length);

i = Math.floor(Math.random() * url.length);

url[0]="http://www.jin-foods.net/kusabi/kodawari/index.html";
img[0]="../../images/sb_kusabi.jpg";
msg[0]="麺家くさび";

/*

url[1]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[1]="../../images/sb_jin_1.jpg";
msg[1]="そのやる気、採用！";

url[2]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[2]="../../images/sb_jin_2.jpg";
msg[2]="その笑顔、採用！";

url[3]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[3]="../../images/sb_jin_3.jpg";
msg[3]="その元気、採用！";

url[4]="http://www.jin-foods.net/news/2008/11/post_17.html";
img[4]="../../images/sb_jin_4.jpg";
msg[4]="麺物語モバイル！";

url[5]="http://www.jin-foods.net/news/2009/03/post_26.html";
img[5]="../../images/sb_kusabi3.jpg";
msg[5]="魚節系旨コク麺";

url[6]="http://www.jin-foods.net/news/2009/06/post_28.html";
img[6]="http://www.jin-foods.net/images/sb_kusabi4.jpg";
msg[6]="辛みそジャジャ麺！";

*/

document.write('<a href="'+url[i]+'" >'); 
document.write('<img src="'+img[i]+'" border="0" width="230" height="539" alt="'+msg[i]+'"></a>');

}