
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[9] = "雑穀とさつまいものスクエアケーキ";

// 画像名
img[0] = "1";
img[1] = "2";
img[2] = "4";
img[3] = "5";
img[4] = "14";
img[5] = "15";
img[6] = "16";
img[7] = "21";
img[8] = "48";
img[9] = "49";


n = Math.floor(Math.random()*al.length);
if(n>10){
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>");
}