function random(){
	// ランダムにタイトルとテキストと飛び先と画像を表示する
	title = new Array();
	text = new Array();
	url = new Array();
	img = new Array();
	
	
	// タイトル(数字は画像と対応)
	title[0] = "Sesame Beef Skewers";
	title[1] = "Seafood Ponzu Splash";
	title[2] = "Pacific Rim Ceviche";
	title[3] = "Marinated Poached Salmon";
	title[4] = "Grilled Marinated Portabello Mushrooms on Focaccia";
	title[5] = "Sicilian Pasta Salad";
	title[6] = "Crab Salad with Avocado";
	title[7] = "Easy Ponzu Stir-Fry Supper";
	title[8] = "Thai Chicken Stir-Fry";
	title[9] = "Easy Oven Roasted Ponzu Chicken Supper";
	title[10] = "Mandarin Orange Salad";
	title[11] = "California Sushi Salad";
	title[12] = "Sudachi Ponzu Salad Dressing";


	
	
	// テキスト
	text[0] = "Great appetizer dish. Sprinkle additional ponzu for more tang.";
	text[1] = "Tip: Salmon can also be grilled or broiled. Side dishes: Wild Rice or Grilled scallions. Ponzu (green label) is a delicious accent to seafood as a marinade or a last minute splash just before serving. ";
	text[2] = "Raw fish marinated with Marukan Ponzu Natural Citrus Marinade";
	text[3] = "Light and healthy";
	text[4] = "Tip: Splash additional Ponzu on to taste. Ponzu enhances the fresh flavors of vegetables.";
	text[5] = "Great for the summer season";
	text[6] = "Delicious as an appetizer";
	text[7] = "Simple to make and delicious";
	text[8] = "Great with rice or noodles.";
	text[9] = "Tip: Splash additional Ponzu (Brown Label) on to taste. Ponzu enhances the succulent flavor of chicken.";
	text[10] = "Lite and refreshing. Easy to make.";
	text[11] = "Delicious and easy to make. ";
	text[12] = "Ponzu (green label) keeps avocados bright green color and fabulous flavor.";


	
	
	// サイト
	url[0] = "01-01.html";
	url[1] = "02-01.html";
	url[2] = "02-02.html";
	url[3] = "02-03.html";
	url[4] = "03-01.html";
	url[5] = "03-02.html";
	url[6] = "03-03.html";
	url[7] = "03-04.html";
	url[8] = "04-01.html";
	url[9] = "04-02.html";
	url[10] = "05-01.html";
	url[11] = "05-02.html";
	url[12] = "05-03.html";


	
	
	// 画像のアドレス(数字はジャンプ先のアドレスと対応)
	img[0] = "SesameBeefSkewers.jpg";
	img[1] = "SCAN_6_1.jpg";
	img[2] = "PacificRimCevichexx.jpg";
	img[3] = "MarinatedPoachedSalmon.jpg";
	img[4] = "SCAN_5_1.jpg";
	img[5] = "SicilianPastaSalad.jpg";
	img[6] = "CrabSaladwithAvocado.jpg";
	img[7] = "EasyPonzuStir-FrySupper.jpg";
	img[8] = "recipe_07.jpg";
	img[9] = "SCAN_2_1.jpg";
	img[10] = "MandarinOrangeSalad.jpg";
	img[11] = "CaliforniaSushiSalad.jpg";
	img[12] = "SALADTIF.jpg";


	
	n = Math.floor(Math.random()*img.length);

	document.write("<table width='100%' border='0' cellspacing='0' cellpadding='5'>");
	document.write("<tr><td align='left'>");
	document.write("<table width='360' border='0' cellspacing='0' cellpadding='5' class='tablePD'>");
	document.write("<tr>");
	document.write("<td valign='top' height='27' class='text13'>");
	document.write("<img src='images/todays.gif' border='0' alt='Today's Special!' WIDTH='152' HEIGHT='27'><br>");
	document.write("<font color='#183881'><b>"+title[n]+"</b></font></td>");
	document.write("<td rowspan='2'><a href='"+url[n]+"'>");
	document.write("<img src='RecipeP/"+img[n]+"' border='0' height='228'></a></td>");
	document.write("</tr>");
	document.write("<tr><td valign='top' class='text10'>"+text[n]+"</td></tr>");
	document.write("</table>");
	document.write("</td></tr>");
	document.write("</table>");
}

