• Coupons

    Coupons

  • Crafts

    Crafts

  • Do it Yourself

    Do it Yourself

  • Gardening and Landscaping

    Gardening

  • Frugal Living Articles

    Frugal Living

  • Gift Ideas

    Gift Ideas

  • Frugal Holidays & Decor

    Holidays

  • Make your own Mixes

    Mixes

  • Money Matters

    Money Matters

  • Recipes

    Recipes

  • Tips and Tricks for Frugal Living

    Tips-n-Tricks

  • Contact Us

    Contact Us

    • Almond Paste

      1 lb Blanched almonds
      3 tb Fresh lemon juice
      1 c Water
      2 c Sugar


      Force blanched almonds through fine blade of food chopper 4 times, or whirl in electric blender. Add lemon juice. Cook water and sugar until candy
      thermometer registers 240F or until it forms the soft ball stage. Add to ground
      almonds. Mix well. When cool enough to handle, knead until smooth.
      Cool. Pack in jar; cover, and store in refrigerator for at least 1 week to ripen.
      Makes about 2 pounds.


      **NOTE** If almond paste is too stiff to handle after storage, place in top part of double boiler and heat over hot, not boiling, water until sufficiently soft to handle. Use in cookies, coffee cakes or in other pastries and desserts.


      *~*~*~*~*~*~*~*ARTICLE META-DATA*~*~*~*~*~*~*

      HTML Tag:</b><br /> Almond Paste<br /> <br /> <b>Meta Description:</b><br /> <br /> Easy Homemade Almond Paste Recipe & tons of other MYO recipes<br /> <br /> <b>Meta Keywords:</b><br /> Almond Paste Recipe, Make your own groceries, homemade paste, homemade almond paste, MYO</div> <script type="text/javascript" src="http://www.budget101.com/clientscript/vbulletin_lightbox.js?v=406"></script> <script type="text/javascript"> <!-- vBulletin.register_control("vB_Lightbox_Container", "article_content", 1); //--> </script> <div class="cmslinks"> </div> <p class="copyright" style="display:none;">(C)1995-2012 Budget101.com, Melissa "Liss" Burnell & Budget101.com The information on this site may be used for personal use only and you may not republish or distribute this information without written consent.</p> <div id="comments" class="cms_comments_page"><a name="comments_start"></a> <div id="node_comments_hide"></div> <script type="text/javascript" src="http://www.budget101.com/clientscript/vbulletin_textedit.js?v=406"></script> <script type="text/javascript"> //<![CDATA[ comment_postid = 0; function do_widget_paging(direction) { if (direction == 'back') { new_page = parseInt(document.getElementById('current_page').value) - 1; } else if (direction == 'first') { new_page = 1; } else if (direction == 'last') { new_page = parseInt(document.getElementById('last_page').value) ; } else { new_page = parseInt(document.getElementById('current_page').value) + 1; } per_page = 5; if (document.getElementById('per_page').value != undefined) { per_page = parseInt(document.getElementById('per_page').value); } load_html('node_comments_block', 'ajax.php?do=get_comments&nodeid=' + document.getElementById('nodeid').value + '&page=' + new_page + '&per_page=' + per_page + '&this_url=' + document.getElementById('this_url').value , '', null, alert('')); return false; } function refreshPage() { document.location = 'http://www.budget101.com/content.php?r=1500-Almond-Paste&nocache=1'; } function clearDiv(divName) { if (document.getElementById(divName) != undefined ) { document.getElementById(divName).innerHTML = ''; } } var ajax_req = false; function sendForm(title_name, editor_name, user_name, captcha_text, post_hash, on_completion) { // first we verify the message length var check = vB_Editor[editor_name].prepare_submit(0, 20); if (!check) return false; // now we check if there is a current ajax request, // if not, we verify username and captcha with ajax if (!ajax_req) { // grab all the form variables ajax_req = true; postvars = 'do=postreply&ajax=1&threadid=79469&wysiwyg=' + '&wysiwyg=' + (vB_Editor[editor_name].wysiwyg_mode ? 1 : 0) + '&quickreply=1&parseurl=1'; if (comment_postid > 0) { postvars += '&postid=' + comment_postid; } if (document.getElementById(title_name) != undefined && document.getElementById(title_name).value != '') { postvars += '&title=' + PHP.urlencode(document.getElementById(title_name).value); } if (document.getElementById(user_name) != undefined && document.getElementById(user_name).value != '') { postvars += '&username=' + PHP.urlencode(document.getElementById(user_name).value); } if (document.getElementById(captcha_text) != undefined && document.getElementById(captcha_text).value != '' && document.getElementById(post_hash) != undefined && document.getElementById(post_hash).value != '') { postvars += '&humanverify[input]=' + PHP.urlencode(document.getElementById(captcha_text).value); postvars += '&humanverify[hash]=' + PHP.urlencode(document.getElementById(post_hash).value); // add check for re-captcha in case board is set up for that if (document.getElementById('recaptcha_challenge_field') != undefined && document.getElementById('recaptcha_challenge_field').value != '') { postvars += '&recaptcha_challenge_field=' + PHP.urlencode(document.getElementById('recaptcha_challenge_field').value); } if (document.getElementById('recaptcha_response_field') != undefined && document.getElementById('recaptcha_response_field').value != '') { postvars += '&recaptcha_response_field=' + PHP.urlencode(document.getElementById('recaptcha_response_field').value); } } if (vB_Editor[editor_name] != undefined) { postvars += '&message=' + PHP.urlencode(vB_Editor[editor_name].get_editor_contents()); } // make an ajax request for a new reply YAHOO.util.Connect.asyncRequest("POST", "newreply.php?do=postreply", { success: function(ajax) { ajax_req = false; if (ajax.responseXML) { // check if there were errors in the ajax response var errorsText = ""; // get the errors XML element var errorsXML = ajax.responseXML.getElementsByTagName("errors"); // get the errors DOM element var errorsDOM = (errorsXML && errorsXML.length > 0) ? errorsXML[0] : null; if (errorsDOM) { // loop through each error, and append it to error text while(errorsDOM.hasChildNodes() == true) { // make sure it is an error node before we append the it to error text if (errorsDOM.firstChild.nodeName == "error") { // FF and IE handle DOM differently, make sure we grab the error text for either case errorsText += (errorsDOM.firstChild.firstChild.nodeValue?errorsDOM.firstChild.firstChild.nodeValue:errorsDOM.firstChild.firstChild.nodeTypedValue) + "\n\n"; } errorsDOM.removeChild(errorsDOM.firstChild); } } // if there were errors, alert the user // otherwise refresh the page to show new comment if (errorsText != "") { alert(errorsText); } else { refreshPage(); } } }, failure: vBulletin_AJAX_Error_Handler, timeout: vB_Default_Timeout, scope: this }, SESSIONURL + "securitytoken=" + SECURITYTOKEN + "&" + postvars); } return false; } //]]> </script> <!-- EDITOR IS BREAKING THE PAGE --> <hr><p align="left"><img border="0" src="http://www.budget101.com/siteimg/j0424828.gif" width="133" height="128" align="left"><font size="3">Have something you'd like to add? <b> <a href="http://www.budget101.com/register.php">Register</a></b> & <b> <a href="http://www.budget101.com/login.php">Login</a></b> to add your own comments, thoughts, questions or suggestions.<br><br>As always, Registration is Free!</font> </div> </div> <!-- google_ad_section_end --> </li><li><div class="cms_widget_header"> <h3>Keep Reading . . .</h3> </div> <table><tr><td><img src='http://www.budget101.com/content/attachments/3988-mexicana-cass1.jpg/?cid=18' width='{vb:stylevar vbcms_article_image_medium_maxSize}px' align='left' height='75' HSPACE='5' VSPACE='3'/></td><td><b><a rel='nofollow' href='/forum/content.php?3679-Make-it-Mexicana!' align='top'>Mexicana- Enchilada Casserole Bake</a><p> </b></p></br><p>Delicious blend of ground beef, onions, peppers and garlic in a mildly spicy cream sauce with a crunchy layer of crushed tortillas and cheddar cheese</p><br/></td></tr><tr><td><img src='http://www.budget101.com/content/attachments/4457-rosemeringue.jpg/?cid=18' width='{vb:stylevar vbcms_article_image_medium_maxSize}px' align='left' height='75' HSPACE='5' VSPACE='3'/></td><td><b><a rel='nofollow' href='/forum/content.php?3814-Cardamom-Rose-Meringues' align='top'>Cardamom Rose Meringues</a><p> </b></p></br><p>Give your mom bites of love with these delicately flavored fluffy meringue cookies that are ever so lightly enhanced with a touch of cardamom.</p><br/></td></tr><tr><td><img src='http://www.budget101.com/content/attachments/4454-pineapplepops.jpg/?cid=18' width='{vb:stylevar vbcms_article_image_medium_maxSize}px' align='left' height='75' HSPACE='5' VSPACE='3'/></td><td><b><a rel='nofollow' href='/forum/content.php?3813-Pina-Colada-Popsicles' align='top'>Pina Colada Popsicles</a><p> </b></p></br><p>It's Pina Colada Time, on a stick! These delicious tropical frozen treats are non-alcoholic and the whole family will adore them</p><br/></td></tr></table> </li> </ul> </div> <div class="yui-u yui-panel"> <ul class="list_no_decoration widget_list" id="widgetlist_column2"> <li><center> <script type="text/javascript"><!-- google_ad_client = "pub-8028157821255897"; /* 300x250, created 11/1/10 CMS Pink Top Right All pages */ google_ad_slot = "6210955178"; google_ad_width = 300; google_ad_height = 250; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </center> </li><li><div class="cms_widget"> <div class="block"> <div class="cms_widget_header"> <h3><img alt="" src="http://www.budget101.com/images/styles/b101pink/cms/widget-forum.png" /> Recipes- MYO</h3> </div> <div class="cms_widget_content"> <div class="cms_widget_post_bit"> <div class="cms_widget_post_userinfo"> <div class="cms_widget_post_useravatar"> <a class="comments_member_avatar_link" href="http://www.budget101.com/members/freebiequeen.html"> <img src="http://www.budget101.com/avatars/freebiequeen.gif?dateline=1336951533" alt="FreebieQueen" /> </a> </div> </div> <div class="cms_widget_post_comment"> <h4 class="cms_widget_post_header"> <a href="http://www.budget101.com/mixes-myo-copycat-etc/165584-texas-roadhouse-cinnamon-butter.html">Texas Roadhouse Cinnamon Butter</a> </h4> Thread Starter: <a href="http://www.budget101.com/members/freebiequeen.html">FreebieQueen</a> <p class="cms_widget_post_content">Texas Roadhouse Cinnamon Butter <br /> <br /> * 1 cup butter, room temp<br /> * 1 teaspoon cinnamon<br /> * 1/3 cup sweetened condensed milk</p> 05-13-2012 <span class="time">06:25 PM</span> by <a href="http://www.budget101.com/members/freebiequeen.html">FreebieQueen</a> <a href="http://www.budget101.com/mixes-myo-copycat-etc/165584-texas-roadhouse-cinnamon-butter.html#post229520"><img class="inlineimg" src="http://www.budget101.com/images/styles/b101pink/buttons/lastpost-right.png" alt="Go to last post" border="0" /></a> </div> </div> <div class="cms_widget_post_bit"> <div class="cms_widget_post_userinfo"> <div class="cms_widget_post_useravatar"> <a class="comments_member_avatar_link" href="http://www.budget101.com/members/mrspaws.html"> <img width="60" height="60" src="images/styles/b101pink/misc/unknown.gif" alt="MrsPaws" /> </a> </div> </div> <div class="cms_widget_post_comment"> <h4 class="cms_widget_post_header"> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162866-sugar-free-freezer-strawberry-jam-i.html">Sugar Free Freezer Strawberry Jam I</a> </h4> Thread Starter: <a href="http://www.budget101.com/members/mrspaws.html">MrsPaws</a> <p class="cms_widget_post_content">Sugar Free Freezer Strawberry Jam I<br /> <br /> Ingredients:<br /> 2 cups prepared sliced fresh strawberries<br /> 1 cup cold water<br /> 1 pkg</p> 05-12-2012 <span class="time">11:43 AM</span> by <a href="http://www.budget101.com/members/brenda-jean.html">brenda jean</a> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162866-sugar-free-freezer-strawberry-jam-i.html#post229407"><img class="inlineimg" src="http://www.budget101.com/images/styles/b101pink/buttons/lastpost-right.png" alt="Go to last post" border="0" /></a> </div> </div> <div class="cms_widget_post_bit"> <div class="cms_widget_post_userinfo"> <div class="cms_widget_post_useravatar"> <a class="comments_member_avatar_link" href="http://www.budget101.com/members/mos.html"> <img src="http://www.budget101.com/avatars/mos.gif?dateline=1336606848" alt="mos" /> </a> </div> </div> <div class="cms_widget_post_comment"> <h4 class="cms_widget_post_header"> <a href="http://www.budget101.com/mixes-myo-copycat-etc/165118-fake-shake-bake-coating.html">Fake Shake and Bake Coating</a> </h4> Thread Starter: <a href="http://www.budget101.com/members/mos.html">mos</a> <p class="cms_widget_post_content">After many years of working at it -- not consistently, only when I thought about it every nine or ten months...giggle... I think I found it! Somebody</p> 05-09-2012 <span class="time">06:40 PM</span> by <a href="http://www.budget101.com/members/mos.html">mos</a> <a href="http://www.budget101.com/mixes-myo-copycat-etc/165118-fake-shake-bake-coating.html#post229035"><img class="inlineimg" src="http://www.budget101.com/images/styles/b101pink/buttons/lastpost-right.png" alt="Go to last post" border="0" /></a> </div> </div> <div class="cms_widget_post_bit"> <div class="cms_widget_post_userinfo"> <div class="cms_widget_post_useravatar"> <a class="comments_member_avatar_link" href="http://www.budget101.com/members/mrspaws.html"> <img width="60" height="60" src="images/styles/b101pink/misc/unknown.gif" alt="MrsPaws" /> </a> </div> </div> <div class="cms_widget_post_comment"> <h4 class="cms_widget_post_header"> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162867-honey-strawberry-jam-sugar-free.html">Honey Strawberry Jam-Sugar Free</a> </h4> Thread Starter: <a href="http://www.budget101.com/members/mrspaws.html">MrsPaws</a> <p class="cms_widget_post_content">Honey Strawberry Jam-Sugar Free<br /> <br /> Ingredients:<br /> 6 cups chopped strawberries<br /> 2 boxes low/no sugar sure jell fruit pectin<br /></p> 04-22-2012 <span class="time">05:38 PM</span> by <a href="http://www.budget101.com/members/mrspaws.html">MrsPaws</a> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162867-honey-strawberry-jam-sugar-free.html#post226728"><img class="inlineimg" src="http://www.budget101.com/images/styles/b101pink/buttons/lastpost-right.png" alt="Go to last post" border="0" /></a> </div> </div> <div class="cms_widget_post_bit"> <div class="cms_widget_post_userinfo"> <div class="cms_widget_post_useravatar"> <a class="comments_member_avatar_link" href="http://www.budget101.com/members/armymomof2.html"> <img src="http://www.budget101.com/avatars/armymomof2.gif?dateline=1334976392" alt="Armymomof2" /> </a> </div> </div> <div class="cms_widget_post_comment"> <h4 class="cms_widget_post_header"> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162714-eggnog-latte.html">Eggnog Latte</a> </h4> Thread Starter: <a href="http://www.budget101.com/members/armymomof2.html">Armymomof2</a> <p class="cms_widget_post_content">Espresso Roast 1 shot 2 shots 2 shots<br /> Steamed Milk and Eggnog (1/2 of each) 11 fl oz 14 fl oz 18 fl oz<br /> Preparation<br /> <br /> </p> 04-20-2012 <span class="time">09:46 PM</span> by <a href="http://www.budget101.com/members/armymomof2.html">Armymomof2</a> <a href="http://www.budget101.com/mixes-myo-copycat-etc/162714-eggnog-latte.html#post226567"><img class="inlineimg" src="http://www.budget101.com/images/styles/b101pink/buttons/lastpost-right.png" alt="Go to last post" border="0" /></a> </div> </div> </div> </div> </div> </li><li><center> <table border="0" width="100%" style="border none 0px"> <tr> <td><script type="text/javascript"><!-- google_ad_client = "pub-8028157821255897"; /* 160x600, CMS widget */ google_ad_slot = "1129445280"; google_ad_width = 160; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></td><td> </td> </tr> </table> </center> </li> </ul> </div> </div> </div> </div> <div class="yui-b yui-sidebar"> <ul class="list_no_decoration widget_list" id="widgetlist_column3"> <li><center> <script type="text/javascript"><!-- google_ad_client = "pub-8028157821255897"; /* 180x90, Thanks Widget */ google_ad_slot = "1023509664"; google_ad_width = 180; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </center> </li><li><script type="text/javascript"> <!-- var IMGDIR_MISC = "images/styles/b101pink/misc"; var vb_disable_ajax = parseInt("0", 10); /* Start Sections Widget Configuration */ vbGlobal_SHOW_ALL_TREE_ELEMENTS_THRESHOLD = parseInt("5"); /* End Seections Widget Configuration */ // --> </script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/yui/2.9.0/build/treeview/treeview-min.js"></script> <!-- start treeview css --> <script type="text/javascript"> if (window.loadVbCss) { loadVbCss("http://ajax.googleapis.com/ajax/libs/yui/2.9.0/build/treeview/assets/skins/sam/treeview.css",true); } </script> <!-- end treeview css --> <!-- custom treeview styles defined at template: headinclude --> <!-- END VB Tree-Menu Implementation of YUI TreeView --> <div class="vb-tree-menu"> <ul > <li><a href="http://www.budget101.com/frugal/about-budget101-45/">About Us</a> </li> <li><a href="http://www.budget101.com/frugal/contact-us-11/">Contact Us</a> </li> <li><a href="http://www.budget101.com/frugal/coupon-deals-printables-5/">Coupons</a> </li> <li><a href="http://www.budget101.com/frugal/crafts-scrapbooking-ideas-2/">Crafts ~Scrapbooking</a> <ul > <li><a href="http://www.budget101.com/frugal/craft-week-119/">Craft of the Week</a> </li> <li><a href="http://www.budget101.com/frugal/glue-paste-recipes-120/">MYO Glues ~ Pastes</a> </li> <li><a href="http://www.budget101.com/frugal/myo-misc-crafts-121/">MYO Misc Craft</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/do-yourself-113/">Do It Yourself</a> <ul > <li><a href="http://www.budget101.com/frugal/myo-household-items-122/">MYO Household Items</a> </li> <li><a href="http://www.budget101.com/frugal/myo-pesticides-123/">MYO Pesticides</a> </li> <li><a href="http://www.budget101.com/frugal/home-organizing-124/">Organizing</a> </li> <li><a href="http://www.budget101.com/frugal/diy-decorating-125/">DIY Decorating</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/frugal-living-articles-3/">Frugal Living Articles</a> <ul > <li><a href="http://www.budget101.com/frugal/automobiles-126/">Automobiles</a> </li> <li><a href="http://www.budget101.com/frugal/family-finances-127/">Family Finances</a> </li> <li><a href="http://www.budget101.com/frugal/family-fun-128/">Family Fun</a> </li> <li><a href="http://www.budget101.com/frugal/household-129/">Household</a> </li> <li><a href="http://www.budget101.com/frugal/budget101-free-ebook-130/">Groceries Under $200 Month</a> <ul > <li><a href="http://www.budget101.com/frugal/50-weekly-menu-3388/">$50 Weekly Menu</a> </li> </ul> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/gardening-landscaping-208/">Gardening ~ Landscaping</a> </li> <li><a href="http://www.budget101.com/frugal/gift-ideas-114/">Gift Ideas</a> <ul > <li><a href="http://www.budget101.com/frugal/anniversary-131/">Anniversary</a> </li> <li><a href="http://www.budget101.com/frugal/baby-shower-132/">Baby Shower</a> </li> <li><a href="http://www.budget101.com/frugal/bridal_shower-133/">Bridal Shower</a> </li> <li><a href="http://www.budget101.com/frugal/cone-mix-gifts-135/">Cone Mix Gifts</a> </li> <li><a href="http://www.budget101.com/frugal/gag-gifts-137/">Gag Gifts</a> </li> <li><a href="http://www.budget101.com/frugal/gift-basket-meals-138/">Gift Basket Meals</a> </li> <li><a href="http://www.budget101.com/frugal/homemade-gift-coupons-139/">Gift Coupons</a> </li> <li><a href="http://www.budget101.com/frugal/gift-ideas-hobby-146/">Hobby</a> </li> <li><a href="http://www.budget101.com/frugal/housewarming-gift-ideas-147/">Housewarming</a> </li> <li><a href="http://www.budget101.com/frugal/jar-gifts-ideas-148/">Jar Gifts Ideas</a> <ul > <li><a href="http://www.budget101.com/frugal/jar-gift-mixes-190/">Jar Gift Mixes</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/gift-ideas-kids-all-ages-149/">Kids of all Ages</a> </li> <li><a href="http://www.budget101.com/frugal/miscellaneous-homemade-gift-ideas-150/">Miscellaneous</a> </li> <li><a href="http://www.budget101.com/frugal/occupational-gift-ideas-152/">Occupation</a> </li> <li><a href="http://www.budget101.com/frugal/gift-ideas-pet-owners-153/">Pet Owners</a> </li> <li><a href="http://www.budget101.com/frugal/single-mix-packets-154/">Single Mix Packets</a> </li> <li><a href="http://www.budget101.com/frugal/fun-thoughtful-survival-kit-156/">Survival Kits</a> </li> <li><a href="http://www.budget101.com/frugal/toppers-158/">Toppers</a> </li> <li><a href="http://www.budget101.com/frugal/frugal-weddings-160/">Weddings</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/grocery-guide-printable-lists-506/">Grocery Guide</a> </li> <li><a href="http://www.budget101.com/frugal/harry-potter-816/">Harry Potter</a> </li> <li><a href="http://www.budget101.com/frugal/holiday-decor-recipes-2703/">Holidays</a> <ul > <li><a href="http://www.budget101.com/frugal/christmas-winter-solstice-yule-134/">Christmas, Winter Solstice, Yule</a> </li> <li><a href="http://www.budget101.com/frugal/easter-ostara-136/">Easter, Ostara</a> </li> <li><a href="http://www.budget101.com/frugal/awesome-halloween-ideas-140/">Halloween</a> <ul > <li><a href="http://www.budget101.com/frugal/homemade-halloween-costume-ideas-141/">Halloween Costumes</a> <ul > <li><a href="http://www.budget101.com/frugal/costume-submission-2965/">Costume Submission</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/halloween-food-143/">Halloween Food</a> </li> <li><a href="http://www.budget101.com/frugal/frugal-halloween-party-games-144/">Halloween Party Games</a> </li> <li><a href="http://www.budget101.com/frugal/special-effects-halloween-145/">Special Effects</a> </li> <li><a href="http://www.budget101.com/frugal/pumpkin-carving-fun-2992/">Pumpkin Carving Fun</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/mothers-day-gift-ideas-2743/">Mothers Day</a> </li> <li><a href="http://www.budget101.com/frugal/st-patricks-day-155/">St. Patricks Day</a> </li> <li><a href="http://www.budget101.com/frugal/frugal-thanksgiving-day-celebrations-157/">Thanksgiving Day</a> </li> <li><a href="http://www.budget101.com/frugal/valentines-day-159/">Valentines Day</a> </li> <li><a href="http://www.budget101.com/frugal/4th-july-161/">4th of July</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/mix-amp-jar-gift-recipes-2874/">Mix ~ Jar Gift Recipes</a> </li> <li><a href="http://www.budget101.com/frugal/money-financial-matters-116/">Money Matters</a> <ul > <li><a href="http://www.budget101.com/frugal/budgets-162/">Budgets</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/prepared-living-3761/">Prepared Living</a> </li> <li><a href="http://www.budget101.com/frugal/recipes-117/">Recipes</a> <ul > <li><a href="http://www.budget101.com/frugal/canning-preserving-257/">Canning ~ Preserving</a> </li> <li><a href="http://www.budget101.com/frugal/condiments-recipes-179/">Condiments</a> </li> <li><a href="http://www.budget101.com/frugal/copycat-clone-recipes-163/">Copycat ~ Clone</a> </li> <li><a href="http://www.budget101.com/frugal/dirt-cheap-recipes-815/">Dirt Cheap Recipes</a> </li> <li><a href="http://www.budget101.com/frugal/dehydrated-dried-food-mixes-186/">Dehydrated- Dried Foods</a> </li> <li><a href="http://www.budget101.com/frugal/dump-recipes-164/">Dump Recipes</a> </li> <li><a href="http://www.budget101.com/frugal/dirt-cheap-ethnic-recipes-852/">Ethnic Inexpensively</a> </li> <li><a href="http://www.budget101.com/frugal/lots-kids-3671/">Lots of Kids- Big Families</a> </li> <li><a href="http://www.budget101.com/frugal/scratch-recipes-storebought-items-165/">Make Your Own</a> </li> <li><a href="http://www.budget101.com/frugal/mix-recipes-166/">Mix Recipes</a> <ul > <li><a href="http://www.budget101.com/frugal/beverage-mixes-167/">Beverages</a> <ul > <li><a href="http://www.budget101.com/frugal/assorted-drink-mixes-168/">Assorted Drink Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/coffee-cappuccino-mixes-169/">Coffee ~ Cappuccino Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/cocoa-hot-chocolate-mixes-170/">Cocoa ~ Hot Chocolate Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/creamer-mixes-171/">Creamer Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/tea-mixes-172/">Tea Mixes</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/bread-mixes-173/">Bread Mixes</a> <ul > <li><a href="http://www.budget101.com/frugal/quick-bread-mix-174/">Quick Bread Mix</a> </li> <li><a href="http://www.budget101.com/frugal/yeast-bread-mix-175/">Yeast Bread Mix</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/breakfast-mixes-recipes-176/">Breakfast Mixes Recipes</a> </li> <li><a href="http://www.budget101.com/frugal/cake-mug-177/">Cake in a Mug</a> </li> <li><a href="http://www.budget101.com/frugal/cake-mix-recipes-178/">Cake Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/cone-mixes-180/">Cone Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/convenience-mixes-181/">Convenience Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/cookie-bar-mixes-182/">Cookie ~ Bar Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/dip-mixes-183/">Dip Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/dressing-mixes-184/">Dressing Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/diabetic-mixes-185/">Diabetic Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/easy-bake-oven-mixes-187/">Easy Bake Oven Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/gift-basket-meal-mixes-188/">Gift Basket Meal Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/homemade-gluten-free-mixes-189/">Gluten Free Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/myo-muffin-mixes-192/">Muffin Mix Recipes</a> </li> <li><a href="http://www.budget101.com/frugal/mug-cup-mixes-193/">Mug ~ Cup Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/gourmet-popcorn-mixes-195/">Popcorn Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/pudding-mixes-196/">Pudding Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/homemade-sauce-mixes-197/">Sauce Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/seasoning-mix-recipes-198/">Seasoning Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/side-dish-mixes-199/">Side Dish Mixes</a> </li> <li><a href="http://www.budget101.com/frugal/soup-mixes-200/">Soup Mixes</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/oamc-fill-freezer-201/">OAMC -Fill Freezer</a> </li> <li><a href="http://www.budget101.com/frugal/ramen-noodle-recipes-1548/">Ramen Noodle Recipes</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/search-budget101-2550/">Search</a> </li> <li><a href="http://www.budget101.com/frugal/tips-tricks-118/">Tips ~n~ Tricks</a> <ul > <li><a href="http://www.budget101.com/frugal/ladies-202/">For the Ladies</a> </li> <li><a href="http://www.budget101.com/frugal/guys-203/">For the Guys</a> </li> <li><a href="http://www.budget101.com/frugal/household-tips-n-tricks-204/">Household</a> </li> <li><a href="http://www.budget101.com/frugal/garage-205/">In the Garage</a> </li> <li><a href="http://www.budget101.com/frugal/kids-babies-206/">Kids ~n~ Babies</a> </li> <li><a href="http://www.budget101.com/frugal/pet-care-recipes-207/">Pet Care</a> </li> </ul> </li> <li><a href="http://www.budget101.com/frugal/budget101-video-webisodes-3376/">Webisodes</a> </li> <li><a href="http://www.budget101.com/frugal/budget101-contests-2939/">Contests</a> </li></ul> <noscript> <div class="cms_widget_sectionnav"> <div class="cms_widget_sectionnav_page"> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/about-budget101-45/">About Us</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/contact-us-11/">Contact Us</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/coupon-deals-printables-5/">Coupons</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/crafts-scrapbooking-ideas-2/">Crafts ~Scrapbooking</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/craft-week-119/">Craft of the Week</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/glue-paste-recipes-120/">MYO Glues ~ Pastes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/myo-misc-crafts-121/">MYO Misc Craft</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/do-yourself-113/">Do It Yourself</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/myo-household-items-122/">MYO Household Items</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/myo-pesticides-123/">MYO Pesticides</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/home-organizing-124/">Organizing</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/diy-decorating-125/">DIY Decorating</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/frugal-living-articles-3/">Frugal Living Articles</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/automobiles-126/">Automobiles</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/family-finances-127/">Family Finances</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/family-fun-128/">Family Fun</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/household-129/">Household</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/budget101-free-ebook-130/">Groceries Under $200 Month</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/50-weekly-menu-3388/">$50 Weekly Menu</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/gardening-landscaping-208/">Gardening ~ Landscaping</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/gift-ideas-114/">Gift Ideas</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/anniversary-131/">Anniversary</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/baby-shower-132/">Baby Shower</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/bridal_shower-133/">Bridal Shower</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/cone-mix-gifts-135/">Cone Mix Gifts</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/gag-gifts-137/">Gag Gifts</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/gift-basket-meals-138/">Gift Basket Meals</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/homemade-gift-coupons-139/">Gift Coupons</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/gift-ideas-hobby-146/">Hobby</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/housewarming-gift-ideas-147/">Housewarming</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/jar-gifts-ideas-148/">Jar Gifts Ideas</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/jar-gift-mixes-190/">Jar Gift Mixes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/gift-ideas-kids-all-ages-149/">Kids of all Ages</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/miscellaneous-homemade-gift-ideas-150/">Miscellaneous</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/occupational-gift-ideas-152/">Occupation</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/gift-ideas-pet-owners-153/">Pet Owners</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/single-mix-packets-154/">Single Mix Packets</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/fun-thoughtful-survival-kit-156/">Survival Kits</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/toppers-158/">Toppers</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/frugal-weddings-160/">Weddings</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/grocery-guide-printable-lists-506/">Grocery Guide</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/harry-potter-816/">Harry Potter</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/holiday-decor-recipes-2703/">Holidays</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/christmas-winter-solstice-yule-134/">Christmas, Winter Solstice, Yule</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/easter-ostara-136/">Easter, Ostara</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/awesome-halloween-ideas-140/">Halloween</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/homemade-halloween-costume-ideas-141/">Halloween Costumes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/costume-submission-2965/">Costume Submission</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/halloween-food-143/">Halloween Food</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/frugal-halloween-party-games-144/">Halloween Party Games</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/special-effects-halloween-145/">Special Effects</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/pumpkin-carving-fun-2992/">Pumpkin Carving Fun</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/mothers-day-gift-ideas-2743/">Mothers Day</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/st-patricks-day-155/">St. Patricks Day</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/frugal-thanksgiving-day-celebrations-157/">Thanksgiving Day</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/valentines-day-159/">Valentines Day</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/4th-july-161/">4th of July</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/mix-amp-jar-gift-recipes-2874/">Mix ~ Jar Gift Recipes</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/money-financial-matters-116/">Money Matters</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/budgets-162/">Budgets</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/prepared-living-3761/">Prepared Living</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/recipes-117/">Recipes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/canning-preserving-257/">Canning ~ Preserving</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/condiments-recipes-179/">Condiments</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/copycat-clone-recipes-163/">Copycat ~ Clone</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/dirt-cheap-recipes-815/">Dirt Cheap Recipes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/dehydrated-dried-food-mixes-186/">Dehydrated- Dried Foods</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/dump-recipes-164/">Dump Recipes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/dirt-cheap-ethnic-recipes-852/">Ethnic Inexpensively</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/lots-kids-3671/">Lots of Kids- Big Families</a></div> <div class="active_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/scratch-recipes-storebought-items-165/">Make Your Own</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/mix-recipes-166/">Mix Recipes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/beverage-mixes-167/">Beverages</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/assorted-drink-mixes-168/">Assorted Drink Mixes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/coffee-cappuccino-mixes-169/">Coffee ~ Cappuccino Mixes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/cocoa-hot-chocolate-mixes-170/">Cocoa ~ Hot Chocolate Mixes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/creamer-mixes-171/">Creamer Mixes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/tea-mixes-172/">Tea Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/bread-mixes-173/">Bread Mixes</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/quick-bread-mix-174/">Quick Bread Mix</a></div> <div class="main_menuitem" style="text-indent:80px"> <a href="http://www.budget101.com/frugal/yeast-bread-mix-175/">Yeast Bread Mix</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/breakfast-mixes-recipes-176/">Breakfast Mixes Recipes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/cake-mug-177/">Cake in a Mug</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/cake-mix-recipes-178/">Cake Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/cone-mixes-180/">Cone Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/convenience-mixes-181/">Convenience Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/cookie-bar-mixes-182/">Cookie ~ Bar Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/dip-mixes-183/">Dip Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/dressing-mixes-184/">Dressing Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/diabetic-mixes-185/">Diabetic Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/easy-bake-oven-mixes-187/">Easy Bake Oven Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/gift-basket-meal-mixes-188/">Gift Basket Meal Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/homemade-gluten-free-mixes-189/">Gluten Free Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/myo-muffin-mixes-192/">Muffin Mix Recipes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/mug-cup-mixes-193/">Mug ~ Cup Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/gourmet-popcorn-mixes-195/">Popcorn Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/pudding-mixes-196/">Pudding Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/homemade-sauce-mixes-197/">Sauce Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/seasoning-mix-recipes-198/">Seasoning Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/side-dish-mixes-199/">Side Dish Mixes</a></div> <div class="main_menuitem" style="text-indent:60px"> <a href="http://www.budget101.com/frugal/soup-mixes-200/">Soup Mixes</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/oamc-fill-freezer-201/">OAMC -Fill Freezer</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/ramen-noodle-recipes-1548/">Ramen Noodle Recipes</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/search-budget101-2550/">Search</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/tips-tricks-118/">Tips ~n~ Tricks</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/ladies-202/">For the Ladies</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/guys-203/">For the Guys</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/household-tips-n-tricks-204/">Household</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/garage-205/">In the Garage</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/kids-babies-206/">Kids ~n~ Babies</a></div> <div class="main_menuitem" style="text-indent:40px"> <a href="http://www.budget101.com/frugal/pet-care-recipes-207/">Pet Care</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/budget101-video-webisodes-3376/">Webisodes</a></div> <div class="main_menuitem" style="text-indent:20px"> <a href="http://www.budget101.com/frugal/budget101-contests-2939/">Contests</a></div> </div> </noscript> </div> <script type="text/javascript"> initVbTreeMenus(false); </script> </li><li><center> <a rel="nofollow" href="http://pinterest.com/budget101/"><img src="http://passets-cdn.pinterest.com/images/follow-on-pinterest-button.png" width="156" height="26" alt="Follow Me on Pinterest" /></a><br/><vb:literal><!-- B101_Recipes_Sidebar --> <script type='text/javascript'> GA_googleFillSlot("B101_Recipes_Sidebar"); </script></vb:literal> </center> </li> </ul> </div> </div> </div> </div> <div id="ad_global_above_footer"><center> <script type="text/javascript"><!-- google_ad_client = "pub-8028157821255897"; /* 728x15, global below navbar */ google_ad_slot = "4567814346"; google_ad_width = 728; google_ad_height = 15; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <!-- B101_Footer_Sitewide --> <script type='text/javascript'> GA_googleFillSlot("B101_Footer_Sitewide"); </script></center><center><b><a href="http://www.budget101.com/register.php"><font size="4">Register</font></a><font size="4"> AND Login to Remove these Ads!</font></b><br> <table border="0" width="40%"> <tr> <td> <align="right"><!-- B101_Footer_pos1 --> <script type='text/javascript'> GA_googleFillSlot("B101_Footer_pos1"); </script> </td> <td><align="left"><!-- B101_Foot_pos2 --> <script type='text/javascript'> GA_googleFillSlot("B101_Foot_pos2"); </script> </td> </tr> </table></center></div> <div id="footer" class="floatcontainer footer"> <form action="http://www.budget101.com/forum.php" method="get" id="footer_select" class="footer_select"> </form> <ul id="footer_links" class="footer_links"> <li><a href="http://www.budget101.com/advertise/advertising-rates-18.html">Advertise</a></li> <li><a href="http://www.budget101.com/frugal/contact-us-11/" rel="nofollow" accesskey="9">Contact Us</a></li> <li><a href="http://www.budget101.com">Budget101.com</a></li> <li><a href="http://www.budget101.com/contact-us/privacy-2697.html">Privacy Statement</a></li> <li><a href="http://www.budget101.com/scratch-recipes-storebought-items/almond-paste-1500.html#top" onclick="document.location.hash='top'; return false;">Top</a></li> </ul> <script type="text/javascript"> <!-- // Main vBulletin Javascript Initialization vBulletin_init(); //--> </script> </div> </div> <!-- closing div for body_wrapper --> <div class="below_body"> <div id="footer_time" class="shade footer_time">All times are GMT -5. The time now is <span class="time">02:33 PM</span>.</div> <!-- Kontera_B101 --> <script type='text/javascript'> GA_googleFillSlot("Kontera_B101"); </script> <div id="footer_copyright" class="shade footer_copyright"> <!-- Do not remove this copyright notice --> Your Complete Frugal Living Resource <!-- Do not remove this copyright notice --> </div> <div id="footer_morecopyright" class="shade footer_morecopyright"> <!-- Do not remove cronimage or your scheduled tasks will cease to function --> <!-- Do not remove cronimage or your scheduled tasks will cease to function --> <center>Site Design is Created from a Modified Style Originally Created by Miner Skinz</center> </div> <script type="text/javascript" src="http://www.budget101.com/clientscript/vbulletin_facebook.js?v=406"></script> <script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script> <script type="text/javascript"> <!-- YAHOO.util.Event.onDOMReady( function() { vBfb = new vB_Facebook({ appid : "110752178964907", connected : 0, active : 0, autoreg : 1, feed_newthread : 1, feed_postreply : 1, feed_blogentry : 1, feed_blogcomment : 1, feed_newarticle : 1, feed_articlecomment : 1 }); } ); --> </script> <div id="fb-root"></div> </div> <!-- Quantcast Tag --> <script type="text/javascript"> var _qevents = _qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); _qevents.push({ qacct:"p--Qg_qdUEya_7g" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p--Qg_qdUEya_7g.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <br /><div style="z-index:3" class="shade" align="center">SEO by vBSEO ©2010, Crawlability, Inc.</div> <script type="text/javascript"> //<![CDATA[ var vbseo_jshtml = new Array(); vbseo_jshtml[0] = "<ol> <li class=\"restore\" id=\"navbar_notice_50\"> <font size=\"2\"><img src=\"http://www.Budget101.com/images/smilies/Note.gif\" align=\"left\">Welcome to Budget101.com! If this is your first visit, be sure to check out the <a href=\"http://www.budget101.com/faq.php\" target=\"_blank\"><b>FAQ</b></a> section to learn about all of our features. You may need to <a href=\"http://www.budget101.com/register.php\" target=\"_blank\"><b>register</b></a> before you can post in the forums or submit comments on articles/recipes. Registration is simple and completely free.</font></li> </ol>"; for(var vi=0;vi<vbseo_jshtml.length;vi++) if(fetch_object("vbseo_vhtml_"+vi))fetch_object("vbseo_vhtml_"+vi).innerHTML = vbseo_jshtml[vi]; //]]> </script> </body> </html>