
function RandomMisoImage() {
  m = 0;
  data = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする


	data[0] = '<a href="http://www.momo-miso.com/recipe/tsuna_pasta/index.html"><img src="http://www.momo-miso.com/recipe/tsuna_pasta/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/yukkepasta/index.html"><img src="http://www.momo-miso.com/recipe/yukkepasta/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/miso_ketchup/index.html"><img src="http://www.momo-miso.com/recipe/miso_ketchup/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/misoudon/index.html"><img src="http://www.momo-miso.com/recipe/misoudon/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/houtou/index.html"><img src="http://www.momo-miso.com/recipe/houtou/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/misoudon2/index.html"><img src="http://www.momo-miso.com/recipe/misoudon2/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/kamaagesoumen/index.html"><img src="http://www.momo-miso.com/recipe/kamaagesoumen/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/nikumisosoba/index.html"><img src="http://www.momo-miso.com/recipe/nikumisosoba/img1_mm.jpg" border="0" width="180" alt="肉みそそば"><img src="pointer3.png" border="0">レシピ 【肉みそそば】</a><br><br>';

	data[8] = '<a href="http://www.momo-miso.com/recipe/hiyajirusoumen/index.html"><img src="http://www.momo-miso.com/recipe/hiyajirusoumen/img1_mm.jpg" border="0" width="180" alt="冷汁ソーメン"><img src="pointer3.png" border="0">レシピ 【冷汁ソーメン】</a><br><br>';


	m = 9;

	n = Math.floor(Math.random() * m);

	document.write(data[n]);
}

