
al = new Array();
img = new Array();

// レシピ名

al[0] = "十六穀であさりごはん";
al[1] = "十六穀の巻き寿司";
al[2] = "雑穀でメンチボール";
al[3] = "雑穀ごはんで作る手羽先ごはんの照り焼き";
al[4] = "やわらか鶏ささみのスープごはん";
al[5] = "麦と根菜のあったかミルクスープ";
al[6] = "雑穀のカレースティック春巻き";
al[7] = "地粉で焼きりんごのスウィートピザ";
/*al[8] = "十六穀の香ばしタルト";*/
al[8] = "お豆と雑穀のサクッとクッキー";

// 画像名

img[0] = "221";
img[1] = "31";
img[2] = "186";
img[3] = "173";
img[4] = "82";
img[5] = "20";
img[6] = "178";
img[7] = "126";
/*img[8] = "265";*/
img[8] = "222";


n = Math.floor(Math.random()*al.length);
if(n>8){
document.write("<img src='ajiwairecipe/image_recipe/image/"+img[n]+"_recipe_thumb_2.jpg' alt='"+al[n]+"' width='80' height='80' border='0'><br />");
document.write("<p>"+al[n]+"</p>");
}
else{
document.write("<a href='ajiwairecipe/productRecipe/recipe_detail/"+img[n]+"/1'><img src='ajiwairecipe/image_recipe/image/"+img[n]+"_recipe_thumb_2.jpg' alt='"+al[n]+"' width='80' height='80' border='0'></a><br />");
document.write("<p><a href='ajiwairecipe/productRecipe/recipe_detail/"+img[n]+"/1'>"+al[n]+"</a></p>");
}
