link = new Array();
img = new Array();
txt = new Array();

// ジャンプ先のURL
link[0] = "/goods/index.html";
//link[1] = "http://bb.yahoo.co.jp/";
//link[2] = "http://www.yahoo.co.jp/";
//link[3] = "http://auctions.yahoo.co.jp/";
//link[4] = "http://aeu.jp/cs/";

// 画像のURL
img[0] = "/goods/img_000000.jpg";
//img[1] = "../../images/img_000000.jpg";
//img[2] = "../../images/img_000000.jpg";
//img[3] = "../../images/img_000000.jpg";
//img[4] = "../../images/img_000000.jpg";

// 商品名
txt[0] = "消臭にもFUN LUV";
//txt[1] = "消臭にもFUN LUV2";
//txt[2] = "消臭にもFUN LUV3";
//txt[3] = "消臭にもFUN LUV4";
//txt[4] = "消臭にもFUN LUV5";

n = Math.floor(Math.random()*link.length);

document.write("<table class='pat2'>");
document.write("<tr>");
document.write("<th><a href='"+link[n]+"'><img src='"+img[n]+"' width='77' height='77' border='0' /></a></th>");
document.write("<td><ul><li class='guideLink1n'><a href='"+link[n]+"'>"+txt[n]+"</a></li></ul></td>");
document.write("</tr>");
document.write("</table>");
