function random02(){
	// ランダムにタイトルとテキストと飛び先と画像を表示する
	text = new Array();
	url = new Array();
	img = new Array();
	
	
	
	// テキスト
	text[0] = "Marukan Seasoned Organic Rice Vinegar Dressing is brewed slowly and meticulously, using traditional techniques developed and perfected over more than 300 years. Ours is an ancient process that uses only the highest grade organic rice, the finest organic sugar and premium natural sea salt to create a vinegar with rich substance and body. Can be found at your local Whole Foods store!";
	text[1] = "Marukan Organic Rice Vinegar is brewed slowly and meticulously, using traditional techniques developed and perfected over more than 300 years. Ours is an ancient process that uses only the highest grade organic rice to create a vinegar with rich substance and body. Can be found at your local Whole Foods stores!";
	text[2] = "Oregon Tilth Certified Organic (OTCO). Meets standards of USDA's National Organic Program. Certified Kosher by Kosher Overseers of America (KOAOA).";
	text[3] = "Oregon Tilth Certified Organic (OTCO). Meets standards of USDA's National Organic Program. Certified Kosher by Kosher Overseers of America (KOAOA).";


	
	
	// サイト
	url[0] = "Product_New_Detail.html";
	url[1] = "Product_New_Detail.html";
	url[2] = "Product_New_Detail.html";
	url[3] = "Product_New_Detail.html";


	
	
	// 画像のアドレス(数字はジャンプ先のアドレスと対応)
	img[0] = "OrganicSGDetail.jpg";
	img[1] = "OrganicGreen.detail.jpg";
	img[2] = "1GalORGRVDetail.jpg";
	img[3] = "1GalORGSGDetail.jpg";


	
	n = Math.floor(Math.random()*img.length);

	document.write("<table width='500' cellspacing='5' class='tableFaq' border='0'>");
	document.write("<tr>");
	document.write("<td class='text13' align='left' colspan='3'><font color='green'><b>NEW ITEM !!</b></font></td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td width='10'><img src='images/1p.gif' WIDTH='10' HEIGHT='5'></td>");
	document.write("<td class='text13' align='left'>"+text[n]+"</td>");
	document.write("<td><a href='"+url[n]+"'>");
	document.write("<img src='RecipeP/"+img[n]+"' border='0' height='160'></a></td>");
	document.write("</tr>");
	document.write("</table>");
}


