
function RandomMisoImage() {
  m = 0;
  data = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする


	data[0] = '<a href="http://www.momo-miso.com/recipe/tori_nasu_misoitame/index.html"><img src="http://www.momo-miso.com/recipe/tori_nasu_misoitame/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/butaniku_misoitame/index.html"><img src="http://www.momo-miso.com/recipe/butaniku_misoitame/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/nirarebaitame/index.html"><img src="http://www.momo-miso.com/recipe/nirarebaitame/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/kabochanomisoitame/index.html"><img src="http://www.momo-miso.com/recipe/kabochanomisoitame/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/nasutokinoko/index.html"><img src="http://www.momo-miso.com/recipe/nasutokinoko/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/tamanegi_bacon/index.html"><img src="http://www.momo-miso.com/recipe/tamanegi_bacon/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/satoimo_harumaki/index.html"><img src="http://www.momo-miso.com/recipe/satoimo_harumaki/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/torireba_kukininniku/index.html"><img src="http://www.momo-miso.com/recipe/torireba_kukininniku/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/torireba/index.html"><img src="http://www.momo-miso.com/recipe/torireba/img1_mm.jpg" border="0" width="180" alt="鶏レバーと薬味のみそ炒め煮"><img src="pointer3.png" border="0">レシピ 【鶏レバーと薬味のみそ炒め煮】</a><br><br>';

	data[9] = '<a href="http://www.momo-miso.com/recipe/butaniku_nira/index.html"><img src="http://www.momo-miso.com/recipe/butaniku_nira/img1_mm.jpg" border="0" width="180" alt="豚肉とニラの味噌炒め"><br><img src="pointer3.png" border="0">レシピ 【豚肉とニラの味噌炒め】</a><br><br>';

	data[10] = '<a href="http://www.momo-miso.com/recipe/yasai_misoitame/index.html"><img src="http://www.momo-miso.com/recipe/yasai_misoitame/img1_mm.jpg" border="0" width="180" alt="野菜の味噌炒め"><br><img src="pointer3.png" border="0">レシピ 【野菜の味噌炒め】</a><br><br>';

	m = 11;

	n = Math.floor(Math.random() * m);

	document.write(data[n]);
}

