
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] = "もち黒米のチキンサンド";
al[10] = "お豆と白雑穀と角切り野菜のカラフルサラダ";
al[11] = "お豆と白雑炊の中華風スープご飯";
al[12] = "お豆と赤雑穀のロコモコ丼";
al[13] = "お豆と赤雑穀のヘルシー餃子";

// 画像名
img[0] = "154";
img[1] = "155";
img[2] = "156";
img[3] = "157";
img[4] = "158";
img[5] = "159";
img[6] = "160";
img[7] = "161";
img[8] = "162";
img[9] = "163";
img[10] = "164";
img[11] = "165";
img[12] = "166";
img[13] = "167";

n = Math.floor(Math.random()*al.length);
if(n>14){
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>");
}