/* 画像ランダム表示 -一心亭- */

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/issin/kodawari/index.html";
img[0]="../../images/sb_issin.jpg";
msg[0]="一心亭分店";

/*

url[1]="http://www.jin-foods.net/news/2008/10/post_9.html";
img[1]="../../images/sb_hakata_1.jpg";
msg[1]="時間帯限定！セットメニュー";

url[2]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[2]="../../images/sb_jin_1.jpg";
msg[2]="そのやる気、採用！";

url[3]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[3]="../../images/sb_jin_2.jpg";
msg[3]="その笑顔、採用！";

url[4]="http://www.jin-foods.net/news/2008/12/post_20.html";
img[4]="../../images/sb_jin_3.jpg";
msg[4]="その元気、採用！";

url[5]="http://www.jin-foods.net/news/2008/11/post_17.html";
img[5]="../../images/sb_jin_4.jpg";
msg[5]="麺物語モバイル！";

*/

document.write('<a href="'+url[i]+'" >'); 
document.write('<img src="'+img[i]+'" border="0" width="230" height="539" alt="'+msg[i]+'"></a>');

}