
function RandomMisoImage() {
  m = 0;
  data = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする




	data[0] = '<a href="http://www.momo-miso.com/recipe/sabamisoni/index.html"><img src="http://www.momo-miso.com/recipe/sabamisoni/img1_mm.jpg" border="0" width="180" alt="さばの味噌煮"><img src="pointer3.png" border="0">レシピ 【さばの味噌煮】</a><br><br>';


	data[1] = '<a href="http://www.momo-miso.com/recipe/sawara_misozukeyaki/index.html"><img src="http://www.momo-miso.com/recipe/sawara_misozukeyaki/img1_mm.jpg" border="0" width="180" alt="鰆（サワラ）の味噌漬け焼き"><img src="pointer3.png" border="0">レシピ 【鰆（サワラ）の味噌漬け焼き】</a><br><br>';

	data[2] = '<a href="http://www.momo-miso.com/recipe/chanchanyaki/index.html"><img src="http://www.momo-miso.com/recipe/chanchanyaki/img1_mm.jpg" border="0" width="180" alt="鮭のちゃんちゃん焼き"><img src="pointer3.png" border="0">レシピ 【鮭のちゃんちゃん焼き】</a><br><br>';



	data[3] = '<a href="http://www.momo-miso.com/recipe/iwashinoumemiso/index.html"><img src="http://www.momo-miso.com/recipe/iwashinoumemiso/img1_mm.jpg" border="0" width="180" alt="いわしの梅味噌はさみフライ"><img src="pointer3.png" border="0">レシピ 【いわしの梅味噌はさみフライ】</a><br><br>';


	data[4] = '<a href="http://www.momo-miso.com/recipe/sake_misomayo/index.html"><img src="http://www.momo-miso.com/recipe/sake_misomayo/img1_mm.jpg" border="0" width="180" alt="鮭の味噌マヨ焼き"><img src="pointer3.png" border="0">レシピ 【鮭の味噌マヨ焼き】</a><br><br>';



	data[5] = '<a href="http://www.momo-miso.com/recipe/yakimisoburi/index.html"><img src="http://www.momo-miso.com/recipe/yakimisoburi/img1_mm.jpg" border="0" width="180" alt="焼き味噌ブリ"><img src="pointer3.png" border="0">レシピ 【焼き味噌ブリ】</a><br><br>';

	data[6] = '<a href="http://www.momo-miso.com/recipe/sake_nira_zousui/index.html"><img src="http://www.momo-miso.com/recipe/sake_nira_zousui/img1_mm.jpg" border="0" width="180" alt="鮭とニラの味噌ぞうすい"><img src="pointer3.png" border="0">レシピ 【鮭とニラの味噌ぞうすい】</a><br><br>';

	data[7] = '<a href="http://www.momo-miso.com/recipe/honesenbei/index.html"><img src="http://www.momo-miso.com/recipe/honesenbei/img1_mm.jpg" border="0" width="180" alt="味噌で味付け骨煎餅"><img src="pointer3.png" border="0">レシピ 【味噌で味付け骨煎餅】</a><br><br>';


	m = 8;

	n = Math.floor(Math.random() * m);

	document.write(data[n]);
}

