// babyFoodRecipe
(function($, undefined) {
    var babyFoodRecipes = [
        {
            'name':      'スープがゆ(コーンクリーム)',
            'url':       '/kosodate/recipe/maker/mogu2/wa1202.html',
            'thumbnail': '/images/index/baby_food_recipe/001.jpg'
            },


        {
            'name':      'スイートパングラタン',
            'url':       '/kosodate/recipe/maker/kami2/wa1202.html',
            'thumbnail': '/images/index/baby_food_recipe/002.jpg' 
            },


        {
            'name':      '簡単やさいスープ',
            'url':       '/kosodate/recipe/maker/kami2/be1202.html',
            'thumbnail': '/images/index/baby_food_recipe/003.jpg' 
            },


        {
            'name':      'お好み焼き',
            'url':       '/kosodate/recipe/maker/paku2/be1202.html',
            'thumbnail': '/images/index/baby_food_recipe/004.jpg' 
            },


        {
            'name':      'はじめてのベビーおぞう煮',
            'url':       '/kosodate/recipe/maker/mogu2/wa1201.html',
            'thumbnail': '/images/index/baby_food_recipe/005.jpg' 
            },


        {
            'name':      '豆腐とほうれん草のチーズ風味',
            'url':       '/kosodate/recipe/maker/mogu2/be1201.html',
            'thumbnail': '/images/index/baby_food_recipe/006.jpg' 
            }


        ];




















    //
    $(function() {
        var $babyFoodRecipeBody = $('div.baby_food tr');
        $.each(babyFoodRecipes, function(index, value) {
            $babyFoodRecipeBody.append('<td class="menu"><a href="' + value.url + '"><img src="' + value.thumbnail + '" alt="" width="104" height="104"><br><span>' + value.name + '</span></a></td>');
        });
    });
})(jQuery);
