
function RandomMisoImage() {
  m = 0;
  data = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする


	data[0] = '<a href="http://www.momo-miso.com/recipe/tamari/katsuobushi.html"><img src="http://www.momo-miso.com/recipe/tamari/katsuobushi_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/misomushipan/index.html"><img src="http://www.momo-miso.com/recipe/misomushipan/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/mochi_misoni/index.html"><img src="http://www.momo-miso.com/recipe/mochi_misoni/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/parittona/index.html"><img src="http://www.momo-miso.com/recipe/parittona/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/yakinikudon/index.html"><img src="http://www.momo-miso.com/recipe/yakinikudon/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/hiyajiru/index.html"><img src="http://www.momo-miso.com/recipe/hiyajiru/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/fukimiso/index.html"><img src="http://www.momo-miso.com/recipe/fukimiso/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/katsuo_yakionigiri/index.html"><img src="http://www.momo-miso.com/recipe/katsuo_yakionigiri/img1_mm.jpg" border="0" width="180" alt="カツオの味噌入り焼きおにぎり"><br><img src="pointer3.png" border="0">レシピ 【カツオの味噌入り焼きおにぎり】</a><br><br>';

	m = 9;

	n = Math.floor(Math.random() * m);

	document.write(data[n]);
}

