lettuce 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/lettuce.rb +29 -12
- data/lib/lettuce/hrecipe/all_recipes.rb +14 -0
- data/lib/lettuce/hrecipe/hrecipe.rb +78 -0
- data/lib/lettuce/version.rb +1 -1
- data/spec/all_recipes_spec.rb +30 -0
- data/{test → spec}/fixtures/asparagus.html +49 -47
- data/spec/fixtures/default.html +54 -0
- data/spec/fixtures/pineapple_rolls.html +2282 -0
- data/spec/hrecipe_spec.rb +30 -0
- data/spec/lettuce_spec.rb +44 -0
- metadata +18 -12
- data/lib/lettuce/hingredient.rb +0 -3
- data/lib/lettuce/hrecipe.rb +0 -55
- data/test/helper.rb +0 -3
- data/test/test_lettuce.rb +0 -27
data/lib/lettuce.rb
CHANGED
@@ -1,24 +1,41 @@
|
|
1
1
|
require "lettuce/version"
|
2
|
-
require 'lettuce/hrecipe'
|
2
|
+
require 'lettuce/hrecipe/hrecipe'
|
3
|
+
require 'lettuce/hrecipe/all_recipes'
|
3
4
|
require 'open-uri'
|
4
5
|
require 'nokogiri'
|
5
6
|
|
6
7
|
module Lettuce
|
7
|
-
|
8
|
+
|
9
|
+
def self.parsers
|
10
|
+
{ :all_recipes => Lettuce::AllRecipes,
|
11
|
+
:hrecipe_generic => Lettuce::HRecipe }
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.parse(url)
|
8
15
|
begin
|
9
|
-
doc =
|
10
|
-
rescue
|
11
|
-
return []
|
12
|
-
end
|
16
|
+
doc = get_document url
|
13
17
|
|
14
|
-
|
18
|
+
recipe = nil
|
19
|
+
for parser in parsers.values
|
20
|
+
if parser.can_parse?(doc, url)
|
21
|
+
recipe = parser.parse(doc, url)
|
22
|
+
break
|
23
|
+
end
|
24
|
+
end
|
15
25
|
|
16
|
-
|
17
|
-
recipe = HRecipe.new(hrecipe, url)
|
18
|
-
results.push(recipe) if recipe.is_valid?
|
19
|
-
end
|
26
|
+
recipe
|
20
27
|
|
21
|
-
|
28
|
+
rescue
|
29
|
+
nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.get_document(url)
|
34
|
+
html = ''
|
35
|
+
open url do |http|
|
36
|
+
html = http.read
|
37
|
+
end
|
38
|
+
Nokogiri::HTML(html)
|
22
39
|
end
|
23
40
|
end
|
24
41
|
|
@@ -0,0 +1,78 @@
|
|
1
|
+
module Lettuce
|
2
|
+
class HRecipe
|
3
|
+
class << self
|
4
|
+
def can_parse?(doc, url)
|
5
|
+
doc.css('.hrecipe').size > 0
|
6
|
+
end
|
7
|
+
|
8
|
+
def get_root(doc)
|
9
|
+
doc.css('.hrecipe')
|
10
|
+
end
|
11
|
+
|
12
|
+
def parse(doc, url)
|
13
|
+
root = get_root(doc)
|
14
|
+
if root.size > 0
|
15
|
+
self.new(root[0], url)
|
16
|
+
else
|
17
|
+
nil
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_all(doc, url)
|
22
|
+
root = get_root(doc)
|
23
|
+
root.collect { |node| self.new(node, url) }
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
attr_reader :url
|
28
|
+
|
29
|
+
def initialize(root, url)
|
30
|
+
@root = root
|
31
|
+
@url = url
|
32
|
+
end
|
33
|
+
|
34
|
+
def title
|
35
|
+
@root.css('.fn')[0].content.strip
|
36
|
+
end
|
37
|
+
|
38
|
+
def ingredients
|
39
|
+
@root.css('.ingredient').collect { |ingredient| ingredient.content.strip }
|
40
|
+
end
|
41
|
+
|
42
|
+
def photo
|
43
|
+
@root.css('.photo')[0]['src']
|
44
|
+
end
|
45
|
+
|
46
|
+
def yield
|
47
|
+
@root.css('.yield')[0].content.strip
|
48
|
+
end
|
49
|
+
|
50
|
+
def instructions
|
51
|
+
@root.css('.instructions')[0].content.strip
|
52
|
+
end
|
53
|
+
|
54
|
+
def duration
|
55
|
+
@root.css('.duration').collect { |duration| duration.content.strip }
|
56
|
+
end
|
57
|
+
|
58
|
+
def summary
|
59
|
+
@root.css('.summary').content.strip
|
60
|
+
end
|
61
|
+
|
62
|
+
def author
|
63
|
+
@root.css('.author').collect { |author| author.content.strip }
|
64
|
+
end
|
65
|
+
|
66
|
+
def published
|
67
|
+
@root.css('.published')
|
68
|
+
end
|
69
|
+
|
70
|
+
def nutrition
|
71
|
+
@root.css('.nutrition').collect { |nutrition| nutrition.content.strip }
|
72
|
+
end
|
73
|
+
|
74
|
+
def tags
|
75
|
+
@root.css('.tag').collect { |tag| tag.content.strip }
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
data/lib/lettuce/version.rb
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'lettuce'
|
2
|
+
|
3
|
+
describe Lettuce::AllRecipes do
|
4
|
+
before(:all) do
|
5
|
+
@file = open(File.join(File.dirname(__FILE__), "fixtures/pineapple_rolls.html"))
|
6
|
+
@document = Nokogiri::HTML(@file)
|
7
|
+
|
8
|
+
@url = "http://allrecipes.com/Recipe/Pineapple-Sweet-Rolls/Detail.aspx"
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'should be able to parse this recipe' do
|
12
|
+
Lettuce::AllRecipes.can_parse?(@document, @url)
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'should be called Pineapple Sweet Rolls' do
|
16
|
+
recipe = Lettuce::AllRecipes.new(@document, @url)
|
17
|
+
|
18
|
+
recipe.title.should == "Pineapple Sweet Rolls"
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'should return 15 ingredients' do
|
22
|
+
recipe = Lettuce::AllRecipes.new(@document, @url)
|
23
|
+
recipe.ingredients.size.should == 15
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'should have a valid photo url' do
|
27
|
+
recipe = Lettuce::AllRecipes.new(@document, @url)
|
28
|
+
recipe.photo.should == "http://images.media-allrecipes.com/site/allrecipes/area/community/userphoto/small/789751.jpg"
|
29
|
+
end
|
30
|
+
end
|
@@ -650,7 +650,7 @@ mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/v
|
|
650
650
|
<div class="bc-links">
|
651
651
|
<a href="/">Home</a>
|
652
652
|
<span>></span>
|
653
|
-
|
653
|
+
<a href="/recipes/index.html">Recipes</a>
|
654
654
|
<span>></span>
|
655
655
|
<a href="/recipe-collections/healthy/index.html">Healthy</a>
|
656
656
|
<span>></span>
|
@@ -759,7 +759,7 @@ mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/v
|
|
759
759
|
<!--[if IE]>
|
760
760
|
<span class="mask4-tl"></span><span class="mask4-tr"></span><span class="mask4-bl"></span><span class="mask4-br"></span>
|
761
761
|
<![endif]-->
|
762
|
-
|
762
|
+
|
763
763
|
<ul>
|
764
764
|
<li class="tb-print clrfix"><a rel="rt-1 nofollow" target="_blank" href="/food/cda/recipe_print/0,1946,FOOD_9936_30733_RECIPE-PRINT-FULL-PAGE-FORMATTER,00.html">Print Recipe</a></li>
|
765
765
|
<li class="kitchen clrfix"><a rel="rt-2" href="#dialog" name="modal">Full-Page View</a></li>
|
@@ -768,7 +768,8 @@ mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/v
|
|
768
768
|
<li id="tb-email" class="email clrfix"></li>
|
769
769
|
<li id="tb-share" class="share clrfix"></li>
|
770
770
|
</ul>
|
771
|
-
|
771
|
+
|
772
|
+
|
772
773
|
<ul class="plain">
|
773
774
|
<li id="tb-tweet" class="tweet"></li>
|
774
775
|
<li class="social fb-like" id="tb-facebook"></li>
|
@@ -828,14 +829,15 @@ mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/v
|
|
828
829
|
<div id="email-a-friend"></div>
|
829
830
|
|
830
831
|
<script type="text/javascript">
|
832
|
+
SNI.Food.Omniture.ClickTrack(".rcp-tools", "FOOD : Recipe Tools");
|
833
|
+
SNI.Food.Omniture.ClickTrack("#tb-email", "FOOD : Recipe Tools");
|
834
|
+
SNI.Food.Omniture.ClickTrack(".kitchen", "FOOD : Recipe Tools");
|
831
835
|
SNI.Util.Toolbar();
|
832
836
|
SNI.Food.RecipeTools.init();
|
833
837
|
</script>
|
834
838
|
|
835
839
|
</div> <!-- /recipe-tools -->
|
836
|
-
|
837
|
-
SNI.Food.Omniture.ClickTrack(".rcp-tools", "FOOD : Recipe Tools");
|
838
|
-
</script><!-- Endeca request http://searchServices.scrippsnetworks.com/food/service/guideModuleAggregator/xml/RECIPE-30733-4,0.xml -->
|
840
|
+
<!-- Endeca request http://searchServices.scrippsnetworks.com/food/service/guideModuleAggregator/xml/RECIPE-30733-4,0.xml -->
|
839
841
|
<div class="mod-wrap">
|
840
842
|
<div class="mod">
|
841
843
|
<h4 class="graphic"><a href="/valentines-day/package/index.html " title="Romantic"><img src="http://img.foodnetwork.com/FOOD/2010/02/03/valentines_banner_s186x60.jpg" alt="Romantic" width="186" height="60"><span class="mask4-tl"></span><span class="mask4-tr"></span></a></h4>
|
@@ -1012,9 +1014,9 @@ mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/v
|
|
1012
1014
|
<h2>Browse Similar Recipes</h2>
|
1013
1015
|
<ul class="browse-similar">
|
1014
1016
|
<li><a rel="bmr-1" href="/recipes/emeril-lagasse/garlic-roasted-asparagus-recipe/index.html" title="Garlic-Roasted Asparagus"><img width="92" height="69" alt="Garlic-Roasted Asparagus" src="http://img.foodnetwork.com/FOOD/2009/04/14/EM1G78_25447_s4x3_sm.jpg"><p>Garlic-Roasted Asparagus</p></a><cite>By: <a href="/emeril-lagasse/index.html">Emeril Lagasse</a></cite></li>
|
1015
|
-
<li><a rel="bmr-2" href="/recipes/
|
1016
|
-
<li><a rel="bmr-3" href="/recipes/
|
1017
|
-
<li class="last"><a rel="bmr-4" href="/recipes/
|
1017
|
+
<li><a rel="bmr-2" href="/recipes/giada-de-laurentiis/roasted-asparagus-wrapped-in-prosciutto-recipe/index.html" title="Roasted Asparagus Wrapped in Prosciutto"><img width="92" height="69" alt="Roasted Asparagus Wrapped in Prosciutto" src="http://img.foodnetwork.com/FOOD/2004/03/15/ei1c04_prosciutto_asparagus_sm.jpg"><p>Roasted Asparagus Wrapped in...</p></a><cite>By: <a href="/giada-de-laurentiis/index.html">Giada De Laurentiis</a></cite></li>
|
1018
|
+
<li><a rel="bmr-3" href="/recipes/robin-miller/roasted-asparagus-bundles-recipe/index.html" title="Roasted Asparagus Bundles"><img width="92" height="69" alt="Roasted Asparagus Bundles" src="http://img.foodnetwork.com/FOOD/2007/04/30/MD_Asparagus_sm.jpg"><p>Roasted Asparagus Bundles</p></a><cite>By: <a href="/robin-miller/index.html">Robin Miller</a></cite></li>
|
1019
|
+
<li class="last"><a rel="bmr-4" href="/recipes/alton-brown/roasted-asparagus-recipe/index.html" title="Roasted Asparagus"><img width="92" height="69" alt="Roasted Asparagus" src="http://img.foodnetwork.com/FOOD/2011/08/04/EA1405_roasted-asparagus_s4x3_sm.jpg"><p>Roasted Asparagus</p></a><cite>By: <a href="/alton-brown/index.html">Alton Brown</a></cite></li>
|
1018
1020
|
</ul>
|
1019
1021
|
<div class="three-col-list">
|
1020
1022
|
<p><a rel="rc-0" href="/recipe-collections/side-dish/index.html">View All 38 Side Dish Collections</a></p>
|
@@ -1856,55 +1858,55 @@ document.getElementById("com-signin").style.display="none";
|
|
1856
1858
|
</div><div class="mod">
|
1857
1859
|
<h4>Recipes</h4>
|
1858
1860
|
<p class="jump"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html" rel="mpr-1">See More Recipes »</a></p><div class="bd clrfix">
|
1859
|
-
<a rel="mpr-2" title="
|
1860
|
-
<img width="92" height="69" alt="
|
1861
|
-
<p><a rel="mpr-2" href="/recipes/
|
1862
|
-
<div class="rating-box rating sm value-title
|
1863
|
-
<cite class="rev">
|
1861
|
+
<a rel="mpr-2" title="Red Velvet Cupcakes with Cream Cheese Frosting" href="/recipes/paula-deen/red-velvet-cupcakes-with-cream-cheese-frosting-recipe/index.html">
|
1862
|
+
<img width="92" height="69" alt="Red Velvet Cupcakes with Cream Cheese Frosting" src="http://img.foodnetwork.com/FOOD/2011/04/07/PA1008_red-velvet-cupcakes_s4x3_sm.jpg"></a>
|
1863
|
+
<p><a rel="mpr-2" href="/recipes/paula-deen/red-velvet-cupcakes-with-cream-cheese-frosting-recipe/index.html">Red Velvet Cupcakes with Cream Cheese Frosting</a></p>
|
1864
|
+
<div class="rating-box rating sm value-title stars4" title="4 Stars"><span>Rated 4 stars out of 5</span></div>
|
1865
|
+
<cite class="rev">922 Reviews</cite>
|
1864
1866
|
<cite>
|
1865
|
-
<fb:like href="http://foodnetwork.com/recipes/
|
1867
|
+
<fb:like href="http://foodnetwork.com/recipes/paula-deen/red-velvet-cupcakes-with-cream-cheese-frosting-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1866
1868
|
</cite>
|
1867
1869
|
</div><div class="bd clrfix">
|
1868
|
-
<a rel="mpr-3" title="
|
1869
|
-
<img width="92" height="69" alt="
|
1870
|
-
<p><a rel="mpr-3" href="/recipes/
|
1870
|
+
<a rel="mpr-3" title="Shrimp Scampi with Linguini" href="/recipes/tyler-florence/shrimp-scampi-with-linguini-recipe/index.html">
|
1871
|
+
<img width="92" height="69" alt="Shrimp Scampi with Linguini" src="http://img.foodnetwork.com/FOOD/2009/01/13/vday_shrimpscampi_4493_s4x3_sm.jpg"></a>
|
1872
|
+
<p><a rel="mpr-3" href="/recipes/tyler-florence/shrimp-scampi-with-linguini-recipe/index.html">Shrimp Scampi with Linguini</a></p>
|
1871
1873
|
<div class="rating-box rating sm value-title stars5" title="5 Stars"><span>Rated 5 stars out of 5</span></div>
|
1872
|
-
<cite class="rev">
|
1874
|
+
<cite class="rev">349 Reviews</cite>
|
1873
1875
|
<cite>
|
1874
|
-
<fb:like href="http://foodnetwork.com/recipes/
|
1876
|
+
<fb:like href="http://foodnetwork.com/recipes/tyler-florence/shrimp-scampi-with-linguini-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1875
1877
|
</cite>
|
1876
1878
|
</div><div class="bd clrfix">
|
1877
|
-
<a rel="mpr-4" title="
|
1878
|
-
<img width="92" height="69" alt="
|
1879
|
-
<p><a rel="mpr-4" href="/recipes/
|
1879
|
+
<a rel="mpr-4" title="Chocolate Covered Strawberries" href="/recipes/food-network-kitchens/chocolate-covered-strawberries-recipe/index.html">
|
1880
|
+
<img width="92" height="69" alt="Chocolate Covered Strawberries" src="http://img.foodnetwork.com/FOOD/2009/01/13/vday_chocolatestraw_4697_s4x3_sm.jpg"></a>
|
1881
|
+
<p><a rel="mpr-4" href="/recipes/food-network-kitchens/chocolate-covered-strawberries-recipe/index.html">Chocolate Covered Strawberries</a></p>
|
1880
1882
|
<div class="rating-box rating sm value-title stars5" title="5 Stars"><span>Rated 5 stars out of 5</span></div>
|
1881
|
-
<cite class="rev">
|
1883
|
+
<cite class="rev">76 Reviews</cite>
|
1882
1884
|
<cite>
|
1883
|
-
<fb:like href="http://foodnetwork.com/recipes/
|
1885
|
+
<fb:like href="http://foodnetwork.com/recipes/food-network-kitchens/chocolate-covered-strawberries-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1884
1886
|
</cite>
|
1885
1887
|
</div></div> <!-- div class mod --><div class="mod gallery clrfix">
|
1886
1888
|
<h4>Photo Galleries</h4><div class="bd">
|
1887
|
-
<a rel="mpgi-1" title="
|
1888
|
-
<img alt="
|
1889
|
-
<p><a rel="mpg-1" href="/holidays-and-parties/
|
1889
|
+
<a rel="mpgi-1" title="Red Velvet Valentine's Day Desserts" href="/holidays-and-parties/red-velvet-valentines-day-desserts/pictures/index.html">
|
1890
|
+
<img alt="Red Velvet Valentine's Day Desserts" src="http://img.foodnetwork.com/FOOD/2011/12/07/FNM_010112-Red-Velvet-Desserts-004_s4x3_tz.jpg"></a>
|
1891
|
+
<p><a rel="mpg-1" href="/holidays-and-parties/red-velvet-valentines-day-desserts/pictures/index.html">Red Velvet Valentine's Day Desserts</a></p>
|
1890
1892
|
</div><div class="bd last">
|
1891
|
-
<a rel="mpgi-2" title="
|
1892
|
-
<img alt="
|
1893
|
-
<p><a rel="mpg-2" href="/
|
1893
|
+
<a rel="mpgi-2" title="Easy Slow-Cooker Recipes" href="/quick-and-easy/easy-slow-cooker-recipes/pictures/index.html">
|
1894
|
+
<img alt="Easy Slow-Cooker Recipes" src="http://img.foodnetwork.com/FOOD/2012/01/26/SLC_Short-Ribs_s4x3_tz.jpg"></a>
|
1895
|
+
<p><a rel="mpg-2" href="/quick-and-easy/easy-slow-cooker-recipes/pictures/index.html">Easy Slow-Cooker Recipes</a></p>
|
1894
1896
|
</div></div> <!-- end of gallery mod --><div class="mod">
|
1895
1897
|
<h4>Videos</h4>
|
1896
1898
|
<p class="jump"><a rel="mpv-1" href="http://www.foodnetwork.com/food-network-full-episodes/videos/index.html">Watch More Videos »</a></p><div class="bd clrfix">
|
1897
|
-
<a class="ico-video sm" rel="mpvi-1" title="
|
1899
|
+
<a class="ico-video sm" rel="mpvi-1" title="Yummy Bacon Wrapped Appetizers" href="/videos/yummy-bacon-wrapped-appetizers/837.html">
|
1900
|
+
<img alt="Yummy Bacon Wrapped Appetizers" src="http://images.scrippsnetworks.com/up/images/6097/60974_92x69.jpg"><span class="play-button"></span></a>
|
1901
|
+
<p><a rel="mpv-2" href="/videos/yummy-bacon-wrapped-appetizers/837.html">Yummy Bacon Wrapped Appetizers</a></p>
|
1902
|
+
<cite>13953 views</cite>
|
1903
|
+
<cite>04:27</cite>
|
1904
|
+
</div><div class="bd clrfix">
|
1905
|
+
<a class="ico-video sm" rel="mpvi-2" title="Mac and Cheese Throwdown" href="/videos/mac-and-cheese-throwdown/28309.html">
|
1898
1906
|
<img alt="Mac and Cheese Throwdown" src="http://images.scrippsnetworks.com/up/images/0122/0122888_92x69.jpg"><span class="play-button"></span></a>
|
1899
|
-
<p><a rel="mpv-
|
1900
|
-
<cite>
|
1907
|
+
<p><a rel="mpv-3" href="/videos/mac-and-cheese-throwdown/28309.html">Mac and Cheese Throwdown</a></p>
|
1908
|
+
<cite>11330 views</cite>
|
1901
1909
|
<cite>03:01</cite>
|
1902
|
-
</div><div class="bd clrfix">
|
1903
|
-
<a class="ico-video sm" rel="mpvi-2" title="Baked Mac and Cheese" href="/videos/baked-mac-and-cheese/32452.html">
|
1904
|
-
<img alt="Baked Mac and Cheese" src="http://images.scrippsnetworks.com/up/images/0124/0124787_92x69.jpg"><span class="play-button"></span></a>
|
1905
|
-
<p><a rel="mpv-3" href="/videos/baked-mac-and-cheese/32452.html">Baked Mac and Cheese</a></p>
|
1906
|
-
<cite>2101 views</cite>
|
1907
|
-
<cite>04:22</cite>
|
1908
1910
|
</div></div> <!-- end of video mod --><!-- Endeca request http://searchServices.scrippsnetworks.com/food/service/inOurStore/foodNetworkStore/RECIPE-30733-2,0.xml -->
|
1909
1911
|
<div class="mod">
|
1910
1912
|
<h4>Today's Deal</h4>
|
@@ -1947,7 +1949,7 @@ document.getElementById("com-signin").style.display="none";
|
|
1947
1949
|
</h4>
|
1948
1950
|
</div>
|
1949
1951
|
<div class="bd clrfix">
|
1950
|
-
<a rel="sm1-img" href="http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp"><img src="http://img.foodnetwork.com/FOOD/2010/10/
|
1952
|
+
<a rel="sm1-img" href="http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp"><img src="http://img.foodnetwork.com/FOOD/2010/10/26/Mobi-ITK_module-thumb1_s92x69.jpg" alt="Take Food Network on Your Next Grocery Trip"></a>
|
1951
1953
|
<p>Access Food Network anywhere, anytime, including all your favorite recipes from star chefs. <a href=http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp target=”_blank”> Check It Out </a></p>
|
1952
1954
|
</div>
|
1953
1955
|
<div class="ft"></div>
|
@@ -2026,7 +2028,7 @@ document.getElementById("com-signin").style.display="none";
|
|
2026
2028
|
|
2027
2029
|
<div id="sponsor-links"><div class="wrap"><div class="bd clrfix">
|
2028
2030
|
<h4>Ideas From FoodNetwork.com</h4><ul>
|
2029
|
-
<li><a rel="sl-1" title="Weeknight Stir-Fries" href="/winter-produce-guide/package/index.html">Weeknight Stir-Fries</a></li><li><a rel="sl-2" title="
|
2031
|
+
<li><a rel="sl-1" title="Weeknight Stir-Fries" href="/winter-produce-guide/package/index.html">Weeknight Stir-Fries</a></li><li><a rel="sl-2" title="Main Dish Sandwiches" href="/sandwich-central/package/index.html">Main Dish Sandwiches</a></li><li><a rel="sl-3" title="Award-Worthy Eats" href="/dinner-and-a-movie/package/index.html">Award-Worthy Eats</a></li>
|
2030
2032
|
</ul><ul>
|
2031
2033
|
<li><a rel="sl-4" title="Giada's Pasta Picks" href="/italian-cooking-basics/package/index.html">Giada’s Pasta Picks</a></li><li><a rel="sl-5" title="Cold-Weather Weeknight Dinners" href="/recipes-and-cooking/5-cold-weather-weeknight-dinners/pictures/index.html">Cold-Weather Weeknight Dinners</a></li><li><a rel="sl-6" title="Everyday Sausage Recipes" href="/make-it-5-ways-sausage/package/index.html">Everyday Sausage Recipes</a></li>
|
2032
2034
|
</ul><ul>
|
@@ -2048,7 +2050,7 @@ document.getElementById("com-signin").style.display="none";
|
|
2048
2050
|
<div class="hd"><h3>Food Network Family</h3></div><div class="bd"><div class="crsl-wrap"><ul>
|
2049
2051
|
<li><div class="item-wrap">
|
2050
2052
|
<h4><a rel="ss-p1-t" target="_blank" title="Cooking Channel" href="http://www.cookingchanneltv.com/?xp=food_footer">Cooking Channel</a></h4><div class="bd"><ul>
|
2051
|
-
<li><a rel="ss-p1-l1" target="_blank" title="
|
2053
|
+
<li><a rel="ss-p1-l1" target="_blank" title="One-Pot Meals" href="http://www.cookingchanneltv.com/recipes/our-best-one-pot-meals/pictures/index.html?xp=food_footer">One-Pot Meals</a></li><li><a rel="ss-p1-l2" target="_blank" title="Chocolate Desserts" href="http://www.cookingchanneltv.com/recipes/chocolate-desserts/pictures/index.html?xp=food_footer">Chocolate Desserts</a></li><li><a rel="ss-p1-l3" target="_blank" title="Cheese Lovers' Recipes" href="http://www.cookingchanneltv.com/recipes/cheese-lovers-comfort-foods/pictures/index.html?xp=food_footer">Cheese Lovers' Recipes</a></li>
|
2052
2054
|
</ul></div>
|
2053
2055
|
</div></li><li class="mid"><div class="item-wrap">
|
2054
2056
|
<h4><a rel="ss-p2-t" target="_blank" title="Travel Channel" href="http://www.travelchannel.com/?xp=food_footer">Travel Channel</a></h4><div class="bd"><p>
|
@@ -2060,19 +2062,19 @@ document.getElementById("com-signin").style.display="none";
|
|
2060
2062
|
</ul></div>
|
2061
2063
|
</div></li><li><div class="item-wrap">
|
2062
2064
|
<h4><a rel="ss-p4-t" target="_blank" title="DIY Network" href="http://www.food.com/?xp=food_footer">Food.com</a></h4><div class="bd"><ul>
|
2063
|
-
<li><a rel="ss-p4-l1" target="_blank" title="
|
2065
|
+
<li><a rel="ss-p4-l1" target="_blank" title="Comfort Food Faves" href="http://www.food.com/comfort-food/home/package?xp=food_footer">Comfort Food Faves</a></li><li><a rel="ss-p4-l2" target="_blank" title="Easy Entertaining Ideas" href="http://www.food.com/easy-entertaining/home/package?xp=food_footer">Easy Entertaining Ideas</a></li><li><a rel="ss-p4-l3" target="_blank" title="Kid-Friendly Cooking" href="http://www.food.com/kid-friendly-cooking/healthy/package?xp=food_footer">Kid-Friendly Cooking</a></li>
|
2064
2066
|
</ul></div>
|
2065
2067
|
</div></li><li class="mid"><div class="item-wrap">
|
2066
2068
|
<h4><a rel="ss-p5-t" target="_blank" title="HGTV" href="http://www.hgtv.com/?xp=food_footer">HGTV</a></h4><div class="bd"><p>
|
2067
|
-
<a rel="ss-p5-i" href="http://
|
2069
|
+
<a rel="ss-p5-i" href="http://pinterest.com/hgtv/?xp=hgtvpint" title="Follow Us on Pinterest" target="_blank"><img data-src="http://hgtv.sndimg.com/HGTV/2012/02/06/Logo_pinterest-logo_s92x69.jpg" alt="Follow Us on Pinterest" height="69" width="92"></a><a rel="ss-p5-l" target="_blank" title="Follow Us on Pinterest" href="http://pinterest.com/hgtv/?xp=hgtvpint">Follow Us on Pinterest</a>
|
2068
2070
|
</p></div>
|
2069
2071
|
</div></li><li><div class="item-wrap last">
|
2070
2072
|
<h4><a rel="ss-p6-t" target="_blank" title="DIY Network" href="http://www.diynetwork.com/?xp=food_footer">DIY Network</a></h4><div class="bd"><ul>
|
2071
|
-
<li><a rel="ss-p6-l1" target="_blank" title="Blog Cabin 2012: Vote
|
2073
|
+
<li><a rel="ss-p6-l1" target="_blank" title="Blog Cabin 2012: New Vote!" href="http://www.diynetwork.com/blog-cabin/index.html?xp=blog">Blog Cabin 2012: New Vote!</a></li><li><a rel="ss-p6-l2" target="_blank" title="Pegboard Tip: All About Grout" href="http://blog.diynetwork.com/tool-tips/2012/02/02/emily-winters-bathroom-renovation-day-9/?xp=food_footer">Pegboard Tip: All About Grout</a></li><li><a rel="ss-p6-l3" target="_blank" title="Easy As 1-2-3 Backsplash Kit" href="http://marketplace.diynetwork.com/shopdiy?xp=food_footer">Easy As 1-2-3 Backsplash Kit</a></li>
|
2072
2074
|
</ul></div>
|
2073
2075
|
</div></li><li><div class="item-wrap">
|
2074
2076
|
<h4><a rel="ss-p7-t" target="_blank" title="FrontDoor" href="http://www.frontdoor.com/?xp=food_footer">FrontDoor</a></h4><div class="bd"><ul>
|
2075
|
-
<li><a rel="ss-p7-l1" target="_blank" title="Dream Home
|
2077
|
+
<li><a rel="ss-p7-l1" target="_blank" title="Dream Home Neighbors" href="http://www.frontdoor.com/buy/celebrity-homes-near-park-city-utah/pictures/pg265?xp=food_footer">Dream Home Neighbors</a></li><li><a rel="ss-p7-l2" target="_blank" title="Life in Park City" href="http://www.frontdoor.com/city-guide/park-city-ut-usa/what-its-like-to-live-in-park-city-utah/56304?xp=dh_utah">Life in Park City</a></li><li><a rel="ss-p7-l3" target="_blank" title="All About Park City" href="http://www.frontdoor.com/city-guide/park-city-ut-usa/park-city-ut-city-guide-neighborhoods-attractions-real-estate-events/48636?xp=dh_utah">All About Park City</a></li>
|
2076
2078
|
</ul></div>
|
2077
2079
|
</div></li><li class="mid"><div class="item-wrap">
|
2078
2080
|
<h4><a rel="ss-p8-t" target="_blank" title="HGTVRemodels" href="http://www.hgtvremodels.com/?xp=food_footer">HGTVRemodels</a></h4><div class="bd"><p>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
6
|
+
<title>tomrudick.com</title>
|
7
|
+
|
8
|
+
<link rel="stylesheet" type="text/css" href="css/layout.css" />
|
9
|
+
<link rel="openid.server" href="http://www.myopenid.com/server" />
|
10
|
+
<link rel="openid.delegate" href="http://paco36.myopenid.com/" />
|
11
|
+
<link rel="profile" href="http://microformats.org/profile/hcard" />
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
<div id="wrapper">
|
15
|
+
<div id="card">
|
16
|
+
<div id="address" class="vcard">
|
17
|
+
<h1 class="fn n"><span class="given-name">Tom</span> <span class="family-name">Rudick</span></h1>
|
18
|
+
<p>Program Manager</p>
|
19
|
+
<p>Microsoft</p>
|
20
|
+
<p class="email">tom@tomrudick.com</p>
|
21
|
+
<p class="tel">570.483.8667</p>
|
22
|
+
<ul>
|
23
|
+
<li><a href="aim:paco36"><img src="images/social/aim_32.png" alt="AOL Instant Messenger" /></a></li>
|
24
|
+
<li><a href="http://www.facebook.com/tmrudick"><img src="images/social/facebook_32.png" alt="Facebook" /></a></li>
|
25
|
+
<li><a href="http://www.linkedin.com/in/tomrudick"><img src="images/social/linkedin_32.png" alt="Linked In"/></a></li>
|
26
|
+
<li><a href="http://www.twitter.com/paco36"><img src="images/social/twitter_32.png" alt="Twitter" /></a></li>
|
27
|
+
<li><a href="http://tmrudick.yelp.com"><img src="images/social/yelp_32.png" alt="Yelp!" /></a></li>
|
28
|
+
<li><a href="http://www.rudickulous.com"><img src="images/social/tumblr_32.png" alt="Tumblr" /></a></li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
<img id="me" src="images/me.jpg" alt="Tom Rudick with a goofy smile." />
|
32
|
+
<div style="clear:both;"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="footer">
|
36
|
+
<ul>
|
37
|
+
<li><a href="http://github.com/tmrudick">Projects</a></li>
|
38
|
+
<li><a href="/TomRudick_Resume_2012.pdf">Resume</a></li>
|
39
|
+
</ul>
|
40
|
+
<p>Copyright © 2012 Tom Rudick</p>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
<script type="text/javascript">
|
44
|
+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
45
|
+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
46
|
+
</script>
|
47
|
+
<script type="text/javascript">
|
48
|
+
try {
|
49
|
+
var pageTracker = _gat._getTracker("UA-5618496-1");
|
50
|
+
pageTracker._trackPageview();
|
51
|
+
} catch(err) {}</script>
|
52
|
+
</body>
|
53
|
+
|
54
|
+
</html>
|
@@ -0,0 +1,2282 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
|
+
<!--[if lt IE 7 ]> <html class="ie6" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
|
5
|
+
<!--[if IE 7 ]> <html class="ie7" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
|
6
|
+
<!--[if IE 8 ]> <html class="ie8" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
|
7
|
+
<!--[if IE 9 ]> <html class="ie9" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
|
8
|
+
<!--[if (gt IE 9)|!(IE)]><!--> <html xmlns="http://www.w3.org/1999/xhtml"> <!--<![endif]-->
|
9
|
+
<!-- ARLOG SERVER:WEB306 LOCAL_IP: 192.168.5.146 REMOTE_IP:98.232.94.141 TYPESPECIFICID: 120802 MERCH_KEY: MerchData_4_1_22_0_***_10_16_18_34_35_36_38_43_47_48_49_50_51_59 -->
|
10
|
+
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="expires" content="Tue, 23 Jun 1998 01:46:05 GMT" /><meta http-equiv="pics-Label" content="(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://allrecipes.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "http://www.allrecipes.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))" /><meta id="ctl00_metaRobots" name="ROBOTS" content="noodp" /><meta http-equiv="Window-target" content="_top" /><link rel="meta" href="http://allrecipes.com/labels.xml" type="application/rdf+xml" title="ICRA labels" /><link rel="search" type="application/opensearchdescription+xml" title="Allrecipes" href="http://images.media-allrecipes.com/opensearch.xml" /><link id="ctl00_canonicalUrl" rel="canonical" href="http://allrecipes.com/recipe/pineapple-sweet-rolls/" /><meta id="ctl00_metaDescription" name="description" content="These sweet rolls are very similar to the kind found in bakeries...only better! Pineapple adds just the right amount of sweetness. My husband can't eat just one." /><meta id="ctl00_metaKeywords" name="keywords" /><meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphTitle" property="og:title" content="Pineapple Sweet Rolls"></meta>
|
11
|
+
<meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphType" property="og:type" content="food"></meta>
|
12
|
+
<meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphURL" property="og:url" content="http://allrecipes.com/Recipe/Pineapple-Sweet-Rolls/Detail.aspx"></meta>
|
13
|
+
<meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphImage" property="og:image" content="http://images.media-allrecipes.com/site/allrecipes/area/community/userphoto/small/789751.jpg"></meta>
|
14
|
+
<meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphSiteName" property="og:site_name" content="Allrecipes.com"></meta>
|
15
|
+
<meta id="ctl00_ucOpenGraphMetadata_metaOpenGraphPageID" property="fb:page_id" content="71158748377"></meta><style id="ctl00_HeadStyle" type="text/css">
|
16
|
+
|
17
|
+
/* Layout CSS MUST load locally on all pages*/
|
18
|
+
body {text-align: center; background-color:#F8F8F8; background-repeat: repeat-y; background-position: center top; background-attachment:fixed; margin: 0;padding: 0; background-image:url(http://images.media-allrecipes.com/global/nav/topnav2/backgrounds/global-wallpaper-2011.gif);}
|
19
|
+
|
20
|
+
#wrap {width: 998px;margin: 0 auto;text-align: left;border:1px solid #ffffff;}
|
21
|
+
|
22
|
+
#main {float: left;width: 675px;}
|
23
|
+
|
24
|
+
#farright {float: right;width: 310px;}
|
25
|
+
#left {float: left;width: 170px;}
|
26
|
+
#center {float: right;width: 505px;}
|
27
|
+
#copyright {width: 998px; margin: 0 auto; padding: 6px 0px; color: #666666; font-family: Verdana, San-Serif; font-size: 9px;}
|
28
|
+
|
29
|
+
.right {float: right;}
|
30
|
+
.left {float: left;}
|
31
|
+
|
32
|
+
.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
|
33
|
+
|
34
|
+
.clearfix {display:inline-block;}
|
35
|
+
/* Hide from IE Mac */
|
36
|
+
.clearfix {display:block;}
|
37
|
+
/* End hide from IE Mac */
|
38
|
+
|
39
|
+
.navlist {list-style-type: none; padding: 0 0 1px 0;}
|
40
|
+
ul.navlist li {display: inline;}
|
41
|
+
|
42
|
+
/* end layout styles */
|
43
|
+
|
44
|
+
.truncate-inline {text-overflow:ellipsis;-o-text-overflow:ellipsis;-moz-binding:url(http://allrecipes.com/xbl/ellipsis.xml#ellipsis);white-space:nowrap;overflow:hidden;display:inline-block;max-width:100%;}
|
45
|
+
.truncate-block {text-overflow:ellipsis;-o-text-overflow:ellipsis;-moz-binding:url(http://allrecipes.com/xbl/ellipsis.xml#ellipsis);white-space:nowrap;overflow:hidden;display:block;max-width:100%;}
|
46
|
+
.ellipsis2 {-moz-binding: url('/xbl/ellipsis.xml#ellipsis');}</style>
|
47
|
+
<style type="text/css" media="print">
|
48
|
+
#pr\intdiv {
|
49
|
+
display: list-item;
|
50
|
+
list-style-image: url(http://metric.allrecipes.com/b/ss/rdirdallrecipes/1/H.9--NS/0?pev1=%2fRecipe%2fPineapple-Sweet-Rolls%2f&pev2=Print+RecipeDetailPage&pe=lnk_o&c32=120802&t=48);
|
51
|
+
list-style-position: inside;
|
52
|
+
word-spacing: -5000em;
|
53
|
+
overflow: hidden;
|
54
|
+
font-size: 1pt;
|
55
|
+
color: #fff;
|
56
|
+
}</style>
|
57
|
+
<title>
|
58
|
+
Pineapple Sweet Rolls Recipe - Allrecipes.com
|
59
|
+
</title><link href="http://images.media-allrecipes.com/css2009/Core.css?v=224" rel="Stylesheet" type="text/css" media="all" /><link href="http://images.media-allrecipes.com/css2009/Recipe-SharedLayout_Final.css?v=224" rel="Stylesheet" type="text/css" media="all" /><meta name="msapplication-starturl" content="http://allrecipes.com/" /><meta name="application-name" content="Allrecipes.com" /><meta name="msapplication-task" content="name=Home;action-uri=http://allrecipes.com/;icon-uri=http://allrecipes.com/favicon.ico" /><meta name="msapplication-task" content="name=Browse Recipes;action-uri=http://allrecipes.com/recipes/;icon-uri=http://allrecipes.com/favicon.ico" /><meta name="msapplication-task" content="name=Menus;action-uri=http://allrecipes.com/menus/;icon-uri=http://allrecipes.com/favicon.ico" /><meta name="msapplication-task" content="name=Recipe Buzz;action-uri=http://allrecipes.com/recipe-exchange/recipe-requests.aspx;icon-uri=http://allrecipes.com/favicon.ico" /><meta name="msapplication-task" content="name=Recipe Box;action-uri=http://allrecipes.com/my/recipebox/default.aspx;icon-uri=http://allrecipes.com/favicon.ico" /><script type="text/javascript" src="http://images.media-allrecipes.com/js/bundles/main-site.min.js?v=198"></script><script type="text/javascript" language="JavaScript">adid="";aradsord=Math.random()*10000000000000000;if (typeof AudienceScience == "undefined") { AudienceScience = { SegmentValues: "" }; };if (typeof AR == "undefined") { AR = { AdData: {} }; };</script><link rel="icon" href="http://allrecipes.com/favicon.ico"></link><link rel="shortcut icon" href="http://allrecipes.com/favicon.ico"></link><script>function fbs_click() {AR.Analytics.RecordExternalShare('Recipe Page', 'Share on Facebook', 'Kitchen Approved', '');u='http://allrecipes.com/Recipe/Pineapple-Sweet-Rolls/Detail.aspx?src=ShareOnFacebook&recipeID=120802';t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><meta name="title" content="Pineapple Sweet Rolls Recipe from Allrecipes.com" />
|
60
|
+
<link rel="image_src" href="http://images.media-allrecipes.com/site/allrecipes/area/community/userphoto/big/789751.jpg" /><script type="text/javascript" src="http://images.media-allrecipes.com/js/bundles/recipe-box.min.js?v=198"></script></head>
|
61
|
+
<body onunload="if(unregisterAllEvents){unregisterAllEvents();}">
|
62
|
+
<div id="fb-root"></div>
|
63
|
+
<script type="text/javascript">
|
64
|
+
//Like button
|
65
|
+
(function (d, s, id) {
|
66
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
67
|
+
if (d.getElementById(id)) { return; }
|
68
|
+
js = d.createElement(s); js.id = id;
|
69
|
+
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
|
70
|
+
fjs.parentNode.insertBefore(js, fjs);
|
71
|
+
} (document, 'script', 'facebook-jssdk'));
|
72
|
+
//+1 button
|
73
|
+
(function () {
|
74
|
+
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
|
75
|
+
po.src = 'https://apis.google.com/js/plusone.js';
|
76
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
|
77
|
+
})();
|
78
|
+
</script>
|
79
|
+
|
80
|
+
|
81
|
+
<script type="text/javascript">
|
82
|
+
AR.TypeSpecificID = 120802;
|
83
|
+
AR.FriendlyName = "pineapple-sweet-rolls";
|
84
|
+
AR.ImageServer = "http://images.media-allrecipes.com/";
|
85
|
+
AR.Config.ClientServiceUrl = "/Services/Client.svc/";
|
86
|
+
AR.Config.ApplicationPath = "";
|
87
|
+
|
88
|
+
AR.VisitorInfo._data = {"_isLoggedIn":false,"_isRecognized":false,"_isSupportingMember":false,"_ID":0};
|
89
|
+
</script>
|
90
|
+
|
91
|
+
|
92
|
+
<form name="aspnetForm" method="post" action="Detail.aspx" id="aspnetForm" style="margin: 0px; padding: 0px;">
|
93
|
+
<input type="hidden" name="__VIEWSTATEFIELDCOUNT" id="__VIEWSTATEFIELDCOUNT" value="19" />
|
94
|
+
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJNzQ1MTQ1NzM5DxYEHghMYXN0UGFnZWQeEXByZVBvc3RCYWNrU2VydmVyBQZXRUIzMDYWAmYPZBYEAgQPZBYGAh0PZBYCZg8WAh4HVmlzaWJsZWdkAh8PZBYCAgMPZBYCZg9kFhhmDw8WAh8CZ2QWCAIBDxYCHhZNb2RhbExpbmstTm9TY3JpcHRMaW5rBTAvcmVjaXBlL3BpbmVhcHBsZS1zd2VldC1yb2xscy9waG90by1nYWxsZXJ5LmFzcHgWAmYPDxYIHghDc3NDbGFzcwUPcmVjLWltYWdlIHBob3RvHg1BbHRlcm5hdGVUZXh0BRxQaW5lYXBwbGUgU3dlZXQgUm9sbHMgUmVjaXBlHghJbWFnZVVybAVcaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9zaXRlL2FsbHJlY2lwZXMvYXJlYS9jb21tdW5pdHkvdXNlcnBob3RvL3NtYWxsLzc4OTc1MS5qcGceBF8hU0ICAhYCHgV0aXRsZQUcUGluZWFwcGxlIFN3ZWV0IFJvbGxzIFJlY2lwZWQCAw8PFgIeIlBhcmFtZXRlcnNGb3JHZXRQaG90b1VwbG9hZEhhbmRsZXIFUlsxMjA4MDIsMSwiI2N0bDAwX0NlbnRlckNvbHVtblBsYWNlSG9sZGVyX3JlY2lwZV9waG90b1N0dWZmX2ltZ1Bob3RvIiwiI21zZ0xhYmVsIl1kFgJmD2QWAmYPDxYEHghJdGVtVHlwZQspbEFsbHJlY2lwZXMuQ29yZUNsYXNzZXMuUmVjaXBlQm94Lkl0ZW1UeXBlLCBBbGxyZWNpcGVzLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbAEeCFJlY2lwZUlEAuKvB2QWBGYPFgIfAwUyfi9NeS9TaGFyZWQvUGhvdG9zL1VzZXJQaG90b3MuYXNweD9SZWNpcGVJRD0xMjA4MDJkAgEP" />
|
95
|
+
<input type="hidden" name="__VIEWSTATE1" id="__VIEWSTATE1" value="ZBYCZg9kFgICAQ8WAh4FY2xhc3MFGm1vZGFsIG1vZGFsLXVwbG9hZC1hLXBob3RvFgYCAQ8WAh4EVGV4dAULQWRkIGEgUGhvdG9kAgMPZBYCAgMPZBYCAgEPFgIfDAU/YXJsYl9qcSBidG4gY2xvc2UtbW9kYWwgdW5zYXZlZEV4ZW1wdCBwaG90by11cGxvYWQtY2xvc2UtYnV0dG9uZAIFDxYCHwwFM2Nsb3NlLW1vZGFsIHVuc2F2ZWRFeGVtcHQgcGhvdG8tdXBsb2FkLWNsb3NlLWJ1dHRvbmQCBQ9kFgICAQ8WAh8DBTAvcmVjaXBlL3BpbmVhcHBsZS1zd2VldC1yb2xscy9waG90by1nYWxsZXJ5LmFzcHgWBGYPFgIeCWlubmVyaHRtbAUBMWQCAQ8WAh8OBQYgUGhvdG9kAgcPZBYCZg9kFgJmD2QWAgIBDxYCHwwFGW1vZGFsIG1vZGFsLXJlY2lwZS1waG90b3MWBgIBDxYCHw0FDVJlY2lwZSBQaG90b3NkAgMPZBYEAgEPZBYCZg9kFgICBQ8PFgIfBgVRaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9nbG9iYWwvcHJvZmlsZS9ibGluZy9zdXBwb3J0aW5nX2ljb25fMTB4MTAuZ2lmFgIfCAURU3VwcG9ydGluZyBNZW1iZXJkAgMPZBYCAgEPFgIfAmhkAgUPFgIfDAUaY2xvc2UtbW9kYWwgdW5zYXZlZEV4ZW1wdCBkAgIPFgIfDQUVUGluZWFwcGxlIFN3ZWV0IFJvbGxzZAIED2QWBgIDDw8WCB4PVXNlckhhc0hvbWVwYWdlaB4IVXNlck5hbWUFD0Jlcm5pY2UgIE1vcnJpcx4GVXNlcklkZh8CZ2QWAmYPDxYEHw0FD0Jlcm5pY2UgIE1vcnJpcx8CZ2RkAgUPDxYCHwJoZBYCZg8PFgIeC05hdmlnYXRlVXJsBSd+L1N1cHBvcnRpbmdNZW1iZXJzaGlwL0lu" />
|
96
|
+
<input type="hidden" name="__VIEWSTATE2" id="__VIEWSTATE2" value="Zm8uYXNweD9lY3Q9MjFkZAIJDxYCHw0FowEiVGhlc2Ugc3dlZXQgcm9sbHMgYXJlIHZlcnkgc2ltaWxhciB0byB0aGUga2luZCBmb3VuZCBpbiBiYWtlcmllcy4uLm9ubHkgYmV0dGVyISBQaW5lYXBwbGUgYWRkcyBqdXN0IHRoZSByaWdodCBhbW91bnQgb2Ygc3dlZXRuZXNzLiBNeSBodXNiYW5kIGNhbid0IGVhdCBqdXN0IG9uZS4iZAIFD2QWAmYPZBYEZg9kFgICAQ9kFgoCAQ8PFgQfBQU+VGhpcyBLaXRjaGVuIEFwcHJvdmVkIFJlY2lwZSBoYXMgYW4gYXZlcmFnZSBzdGFyIHJhdGluZyBvZiA0LjAfBgUzaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9pbWFnZXMvMTU4NjMuZ2lmFgIfCAU+VGhpcyBLaXRjaGVuIEFwcHJvdmVkIFJlY2lwZSBoYXMgYW4gYXZlcmFnZSBzdGFyIHJhdGluZyBvZiA0LjBkAgMPDxYMHgZJdGVtSUQC4q8HHwoLKwQBHglJdGVtVGl0bGUFFVBpbmVhcHBsZSBTd2VldCBSb2xscx4TTWVzc2FnZUJveENvbnRyb2xJRAUIbXNnTGFiZWweCE1lbnVUeXBlCyloQWxscmVjaXBlcy5Db3JlQ2xhc3Nlcy5NZW51cy5NZW51VHlwZSwgQWxscmVjaXBlcywgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGz/////Dx4MQWN0aW9uU291cmNlBQtSZWNpcGUgUGFnZWQWBGYPFgQeBGhyZWYFRmh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9teS9zaGFyZWQvcmV2aWV3cy9kZXRhaWwuYXNweD9pZD0xMjA4MDImdHlwZWlkPTEeDGNhbGx0b2FjdGlvbgUYUmVjaXBlIERldGFpbDpSYXRlUmV2" />
|
97
|
+
<input type="hidden" name="__VIEWSTATE3" id="__VIEWSTATE3" value="aWV3FgICAg8PFgIfBgUwaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9zcGFjZXIuZ2lmFgIeBXN0eWxlBQ1kaXNwbGF5Om5vbmU7ZAICDxYCHwJoZAIHDxYCHwJnFgRmDw8WAh8SBSovcmVjaXBlL3BpbmVhcHBsZS1zd2VldC1yb2xscy9yZXZpZXdzLmFzcHhkZAICDxYCHw0FATJkAg0PFgIfAmcWAmYPFgIfDgUJNDYzIFNhdmVzZAIRD2QWAmYPFgIeCWRhdGEtaHJlZgU+aHR0cDovL2FsbHJlY2lwZXMuY29tL1JlY2lwZS9QaW5lYXBwbGUtU3dlZXQtUm9sbHMvRGV0YWlsLmFzcHhkAgEPZBYCAgMPZBYCAgIPZBYEZg9kFgICAg8PFgIfBgUwaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9zcGFjZXIuZ2lmZGQCAg8WAh8CaGQCBg9kFgZmDw8WAh4MU2NyaXB0U291cmNlBUZodHRwOi8vaW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2pzL015L1Nob3BwaW5nTGlzdC9zaG9wcGluZy1saXN0LmpzZGQCAg9kFgJmD2QWBAIBD2QWAmYPZBYCAgEPFgIfDAUHa2l0Y2hlbmQCAw8WAh8CaGQCBA9kFgJmD2QWFgIBD2QWBAIBDxYCHwJoFgJmDw8WAh8CaGRkAgMPEGRkFgBkAgMPZBYCZg9kFgICAQ8WBB8MBQtSVFNMIHJlY2lwZR8CaBYCZg8PFgIfAmhkZAIFDxYCHwJoFgQCAQ8WAh8CaGQCBA8QZGQWAGQCBw8WAh8CaBYCAgIPFgYeGEFuYWx5dGljc0NvbnRyb2wtRW5hYmxlZGceGUxpbmtCZWFjb24tVGFyZ2V0Q2xpZW50SUQFRGN0bDAwX0NlbnRlckNvbHVtblBsYWNlSG9sZGVyX3JlY2lwZV9Ub29sYm94Q29udHJvbF9s" />
|
98
|
+
<input type="hidden" name="__VIEWSTATE4" id="__VIEWSTATE4" value="bmtDdXN0b21pemVNZW51HhxBbmFseXRpY3NDb250cm9sLVZpc2l0b3JUeXBlCyloQWxscmVjaXBlcy5Db3JlQ2xhc3Nlcy5CSS5WaXNpdG9yVHlwZSwgQWxscmVjaXBlcywgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwCZAIJDxYCHwJoZAILD2QWAgIBDw8WAh8SBUt+L1JlY2lwZS1Ub29scy9QcmludC9SZWNpcGUuYXNweD9SZWNpcGVJRD0xMjA4MDImb3JpZ2luPWRldGFpbCYmU2VydmluZ3M9MjRkZAIND2QWBgIBDw8WAh8GBT5odHRwOi8vaW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2FyL215YXIvaWNvbnMvaWNvbi1wbHVzLmdpZhYCHwgFC3NoYXJlL2VtYWlsZAIDD2QWAmYPZBYEAgEPDxYCHxIFE2phdmFzY3JpcHQ6dm9pZCgwKTtkFgJmDw9kFgIfCAURU2hhcmUgb24gRmFjZWJvb2tkAgMPDxYCHxIFE2phdmFzY3JpcHQ6dm9pZCgwKTtkZAIFDw8WAh8SBVNodHRwOi8vYWxscmVjaXBlcy5jb206ODAvUmVjaXBlL1BpbmVhcHBsZS1Td2VldC1Sb2xscy9EZXRhaWwuYXNweD9lMz1FbWFpbCUyMFJlY2lwZRYGHiNkYXRhLXJlY2lwZS1kZXRhaWwtc2hhcmVkLWl0ZW0tdHlwZQUGUmVjaXBlHhxkYXRhLXJlY2lwZS1kZXRhaWwtbWVyY2hkYXRlZR4cZGF0YS1yZWNpcGUtZGV0YWlsLXJlY2lwZS1pZAUGMTIwODAyZAIPDxYCHwJoZAITD2QWAmYPZBYGAgEPFgIfAmgWAmYPDxYCHwJoZGQCAw8WAh8CaGQCBQ8WBh8fCysGAh4WQW5hbHl0aWNzTGlua0N0cmwtSFJlZgVAaHR0cDovL2FsbHJlY2lwZXMu" />
|
99
|
+
<input type="hidden" name="__VIEWSTATE5" id="__VIEWSTATE5" value="Y29tL215L21lbnVzL3BsYW5uZXIuYXNweD9pdGVtdHlwZT0xJmlkPTEyMDgwMh8dZ2QCFQ9kFgICAQ8WAh8YBU1+L015L1JlY2lwZUJveC9DdXN0b21SZWNpcGVzL0FkZEVkaXQuYXNweD9yZWNpcGVJRD0xMjA4MDImbmV3PTEmb3JpZ2luPWRldGFpbGQCFw9kFgICAQ8WAh8YBS4vcmVjaXBlL3BpbmVhcHBsZS1zd2VldC1yb2xscy9raXRjaGVudmlldy5hc3B4ZAIKD2QWAmYPFgIfAmhkAgsPZBYGAgEPFgIfAmcWBAIBDxYCHwgFBVBUMzVNZAIDDxYCHw0FBjM1IE1pbmQCAg8WAh8CZxYEAgEPFgIfCAUFUFQxNU1kAgMPFgIfDQUGMTUgTWluZAIDDxYCHwJnFgQCAQ8WAh8IBQVQVDUwTWQCAw8WAh8NBQY1MCBNaW5kAg0PZBYGAgEPZBYCAgEPDxYCHxIFMmh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9oZWxwL3JlY2lwZWluZm8vc2NhbGluZy5hc3B4ZGQCAw9kFgICCA8PFgQfBAUeY2FsY3VsYXRlLXNlcnZpbmdzIGFybGJfanEgYnRuHwcCAhYEHgtvbm1vdXNlb3ZlcgUnd2luZG93LnN0YXR1cz0nQ2FsY3VsYXRlJzsgcmV0dXJuIHRydWU7Hgpvbm1vdXNlb3V0BR53aW5kb3cuc3RhdHVzPScnOyByZXR1cm4gdHJ1ZTtkAgUPZBYCAgEPFgIfDQULMjQgc2VydmluZ3NkAhIPFgIfAmhkAhQPFgIfAmhkAhYPZBYIAg0PZBYEAgEPFgIfAmcWAgIBDw8WAh8SBVNodHRwOi8vYWxscmVjaXBlcy5jb20vbXkvcmVjaXBlYm94L2N1c3RvbXJlY2lwZXMvYWRkZWRpdC5hc3B4P3JlY2lwZWlkPTEyMDgwMiZuZXc9MWRkAgMPZBYCAgEPZBYCZg8PFgIfEgUnfi9TdXBwb3J0aW5n" />
|
100
|
+
<input type="hidden" name="__VIEWSTATE6" id="__VIEWSTATE6" value="TWVtYmVyc2hpcC9JbmZvLmFzcHg/ZWN0PTIxZBYCZg8PFgIfBgVIaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9pY29ucy9zbS9zdXBwb3J0aW5nX2ljb25fMTB4MTAucG5nFgQfGmUfCAVDU3VwcG9ydGluZyBNZW1iZXIgKENsaWNrIHRvIGxlYXJuIG1vcmUgYWJvdXQgU3VwcG9ydGluZyBNZW1iZXJzaGlwKWQCDw9kFgICAQ8WAh8CZ2QCEw9kFgICAQ9kFgJmDw8WAh8SBSd+L1N1cHBvcnRpbmdNZW1iZXJzaGlwL0luZm8uYXNweD9lY3Q9MjFkFgJmDw8WAh8GBUhodHRwOi8vaW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2FyL2ljb25zL3NtL3N1cHBvcnRpbmdfaWNvbl8xMHgxMC5wbmcWBB8aZR8IBUNTdXBwb3J0aW5nIE1lbWJlciAoQ2xpY2sgdG8gbGVhcm4gbW9yZSBhYm91dCBTdXBwb3J0aW5nIE1lbWJlcnNoaXApZAIXD2QWAgIBD2QWAmYPDxYCHxIFJ34vU3VwcG9ydGluZ01lbWJlcnNoaXAvSW5mby5hc3B4P2VjdD0yMWQWAmYPDxYCHwYFSGh0dHA6Ly9pbWFnZXMubWVkaWEtYWxscmVjaXBlcy5jb20vYXIvaWNvbnMvc20vc3VwcG9ydGluZ19pY29uXzEweDEwLnBuZxYEHxplHwgFQ1N1cHBvcnRpbmcgTWVtYmVyIChDbGljayB0byBsZWFybiBtb3JlIGFib3V0IFN1cHBvcnRpbmcgTWVtYmVyc2hpcClkAhcPZBYCZg9kFgICAQ8WAh8MBRptb2RhbCBtb2RhbC1yZWNpcGUtcmV2aWV3cxYGAgEPFgIfDQUOUmVjaXBlIFJldmlld3NkAgMPZBYCAgMPZBYCAgEPFgIfAmhkAgUPFgIfDAUaY2xvc2UtbW9kYWwgdW5zYXZlZEV4" />
|
101
|
+
<input type="hidden" name="__VIEWSTATE7" id="__VIEWSTATE7" value="ZW1wdCBkAiEPZBYKAgEPZBYIAgEPZBYCZg9kFgRmD2QWBgIBDxYCHwJoZAIDD2QWBgIBDw8WAh8CaGRkAgMPDxYCHwJoZBYEAgUPDxYCHxIFSWh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9teS9tZW51cy9kZWZhdWx0LmFzcHg/cDM0PUFSJTIwVG9vbHMlM2FWaWV3JTIwTWVudXNkZAIHDw8WAh8SBUpodHRwOi8vYWxscmVjaXBlcy5jb20vbXkvbWVudXMvcGxhbm5lci5hc3B4P3AzND1BUiUyMFRvb2xzJTNhQ3JlYXRlJTIwTWVudWRkAgUPDxYCHwJoZGQCCQ8WAh8CaGQCAQ9kFgwCAQ8PFgIfBgVGaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9yaWdodGNvbC9NcFJlL3JlY2lwZWJveF9pY29uLnBuZxYCHwgFCnJlY2lwZSBib3hkAgMPFgIfDgUbU2VlIHNvbWV0aGluZyB3b3J0aCBzYXZpbmc/ZAIFDxYCHw4FO1JlZ2lzdGVyIG5vdyB0byBzYXZlIGFsbCB5b3VyIGZhdm9yaXRlcyBpbiB5b3VyIFJlY2lwZSBCb3guZAIHDw8WBB8NZR8SZWRkAgkPZBYCAgEPFgIfDgUVU2lnbiB1cCBmb3IgRlJFRSBOb3chZAILDxYGHx1nHx4FNmN0bDAwX3VjUmVjaXBlQm94TW9kdWxlX3ByZXZpZXdSZWNpcGVzX2Fub25QaXRjaEJ1dHRvbh4WQW5hbHl0aWNzQ29udHJvbC1FdmFyMwUXQVIgVG9vbHMgUmVjaXBlIEJveCBUYWJkAgMPZBYCZg9kFgRmD2QWBgIBDxYCHwJoZAIDD2QWBgIBDw8WAh8CaGRkAgMPDxYCHwJoZBYEAgUPDxYCHxIFSWh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9teS9tZW51cy9kZWZhdWx0LmFzcHg/cDM0PUFSJTIwVG9vbHMlM2FWaWV3" />
|
102
|
+
<input type="hidden" name="__VIEWSTATE8" id="__VIEWSTATE8" value="JTIwTWVudXNkZAIHDw8WAh8SBUpodHRwOi8vYWxscmVjaXBlcy5jb20vbXkvbWVudXMvcGxhbm5lci5hc3B4P3AzND1BUiUyMFRvb2xzJTNhQ3JlYXRlJTIwTWVudWRkAgUPDxYCHwJoZGQCCQ8WAh8CaGQCAg9kFg4CAQ8PFgIfBgVBaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9yaWdodGNvbC9NcFJlL21lbnVfaWNvbi5wbmdkZAIDDxYCHw4FEk1ha2UgTWVhbHRpbWUgRWFzeWQCBQ8WAh8OBS9TYXZlIG91ciBtZW51cywgdHdlYWsgdGhlbSwgb3IgY3JlYXRlIHlvdXIgb3duLmQCBw9kFgICAQ8WBB8MBTVyc3RBY3Rpb25CdG4gcnN0QWN0aW9uQnRuSnVzdGlmeUxlZnQgbGlua1ByZWZlcnNMb2dpbh8YBStodHRwOi8vYWxscmVjaXBlcy5jb20vbXkvbWVudXMvcGxhbm5lci5hc3B4FgICAQ8WAh8OBRBUcnkgTWVudSBQbGFubmVyZAIJD2QWBAIBDxYCHw0FGUNvbGxlY3QgYW5kIGNyZWF0ZSBtZW51cyFkAgMPFgQfGAU+aHR0cDovL2FsbHJlY2lwZXMuY29tL1JlY2lwZS9QaW5lYXBwbGUtU3dlZXQtUm9sbHMvRGV0YWlsLmFzcHgfDAVdbGlua1JlcXVpcmVtZW50TmV4dFN0ZXBJc1NhbWVQYWdlIGxpbmtSZXF1aXJlc1N1cHBvcnRpbmdNZW1iZXJzaGlwIGZlYXR1cmVIaW50QVJUb29sc01lbnVzVGFiFgICAQ8WAh8OBQtTdGFydCBUb2RheWQCCw8WCh8dZx8eBT5jdGwwMF91Y1JlY2lwZUJveE1vZHVsZV9wcmV2aWV3TWVudXNfcHJvZHVjdFBpdGNoQ29udGVudEJ1dHRvbh8fCysGAh4VQW5hbHl0aWNzQ29udHJvbC1wZXYyBQZUcnkg" />
|
103
|
+
<input type="hidden" name="__VIEWSTATE9" id="__VIEWSTATE9" value="TVAeF0FuYWx5dGljc0NvbnRyb2wtcHJvcDM0BQ5BUiBUb29sczpUcnlNUGQCDQ8WCB8dZx8eBTtjdGwwMF91Y1JlY2lwZUJveE1vZHVsZV9wcmV2aWV3TWVudXNfcHJvZHVjdFBpdGNoRm9vdGVyTGluax8fCysGAh8mBRJBUiBUb29scyBNZW51cyBUYWJkAgUPZBYCZg9kFgRmD2QWBgIBDxYCHwJoZAIDD2QWBgIBDw8WAh8CaGRkAgMPDxYCHwJoZBYEAgUPDxYCHxIFSWh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9teS9tZW51cy9kZWZhdWx0LmFzcHg/cDM0PUFSJTIwVG9vbHMlM2FWaWV3JTIwTWVudXNkZAIHDw8WAh8SBUpodHRwOi8vYWxscmVjaXBlcy5jb20vbXkvbWVudXMvcGxhbm5lci5hc3B4P3AzND1BUiUyMFRvb2xzJTNhQ3JlYXRlJTIwTWVudWRkAgUPDxYCHwJoZGQCCQ8WAh8CaGQCAQ9kFgwCAQ8PFgIfBgU/aHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9yaWdodGNvbC9NcFJlL3NsX2ljb24ucG5nFgIfCAUKcmVjaXBlIGJveGQCAw8WAh8OBRdHb2luZyBncm9jZXJ5IHNob3BwaW5nP2QCBQ8WAh8OBTZTdGFydCBjcmVhdGluZyBsaXN0cyBvcmdhbml6ZWQgYnkgZ3JvY2VyeSBhaXNsZSB0b2RheSFkAgcPDxYEHw1lHxJlZGQCCQ9kFgICAQ8WAh8OBRVTaWduIHVwIGZvciBGUkVFIE5vdyFkAgsPFgYfHWcfHgU8Y3RsMDBfdWNSZWNpcGVCb3hNb2R1bGVfcHJldmlld1Nob3BwaW5nTGlzdHNfYW5vblBpdGNoQnV0dG9uHyYFD0FSIFRvb2xzIFNMIFRhYmQCBw8PFgIfBgVFaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNv" />
|
104
|
+
<input type="hidden" name="__VIEWSTATE10" id="__VIEWSTATE10" value="bS9hci9yaWdodGNvbC9NcFJlL21vZHVsZV9mb290ZXIucG5nZGQCBg9kFgRmD2QWAmYPDxYCHxIFJ34vU3VwcG9ydGluZ01lbWJlcnNoaXAvSW5mby5hc3B4P2VjdD0yMWQWAmYPDxYCHwYFQmh0dHA6Ly9pbWFnZXMubWVkaWEtYWxscmVjaXBlcy5jb20vYXIvcmlnaHRjb2wvYmx1ZV9zdGFyXzEyeDEyLnBuZxYCHxplZAIBDw8WAh8SBTJodHRwOi8vYWxscmVjaXBlcy5jb20vbWVudXMvbWFpbi5hc3B4P3drbWVudWFsc3U9MWRkAgkPDxYCHwJnZBYEZg8WAh4LXyFJdGVtQ291bnQCAhYEZg9kFggCAQ8WAh8YBVdodHRwOi8vYWxscmVjaXBlcy5jb20vdmlkZW8vOTgvc3dlZXQtcGluZWFwcGxlLXNhdXRlL2RldGFpbC5hc3B4P3Byb3AyND1SUl9SZWxhdGVkVmlkZW8WAgIBDxYCHgNzcmMFhQFodHRwOi8vYnJpZ2h0Y292ZS52by5sbG53ZC5uZXQvZDIwL3Vuc2VjdXJlZC9tZWRpYS8xMDMzMjQ5MTQ0MDAxLzEwMzMyNDkxNDQwMDFfMTQxNDQ3NDk0MDAwMV90aC0xMDkyMjM0ODY5MDAxLmpwZz9wdWJJZD0xMDMzMjQ5MTQ0MDAxZAIDDxYCHxgFV2h0dHA6Ly9hbGxyZWNpcGVzLmNvbS92aWRlby85OC9zd2VldC1waW5lYXBwbGUtc2F1dGUvZGV0YWlsLmFzcHg/cHJvcDI0PVJSX1JlbGF0ZWRWaWRlb2QCBQ8WBB8YBVdodHRwOi8vYWxscmVjaXBlcy5jb20vdmlkZW8vOTgvc3dlZXQtcGluZWFwcGxlLXNhdXRlL2RldGFpbC5hc3B4P3Byb3AyND1SUl9SZWxhdGVkVmlkZW8fDgUVU3dlZXQgUGluZWFwcGxlIFNhdXRlZAIHDxYCHw4FTkxlYXJuIGhvdyB0byBt" />
|
105
|
+
<input type="hidden" name="__VIEWSTATE11" id="__VIEWSTATE11" value="YWtlIHRoaXMgZGVsaWNpb3VzLCBzd2VldCBzdW1tZXItdGltZSBkZXNzZXJ0IHRvcHBlZCB3aXRoIGNyZWFtLmQCAQ9kFggCAQ8WAh8YBVNodHRwOi8vYWxscmVjaXBlcy5jb20vdmlkZW8vMTM4L3N3ZWV0LXBvdGF0by1waWUvZGV0YWlsLmFzcHg/cHJvcDI0PVJSX1JlbGF0ZWRWaWRlbxYCAgEPFgIfKgWFAWh0dHA6Ly9icmlnaHRjb3ZlLnZvLmxsbndkLm5ldC9kMjAvdW5zZWN1cmVkL21lZGlhLzEwMzMyNDkxNDQwMDEvMTAzMzI0OTE0NDAwMV8xNDE0NDgwODk4MDAxX3RoLTEwMzk0ODA2NDkwMDEuanBnP3B1YklkPTEwMzMyNDkxNDQwMDFkAgMPFgIfGAVTaHR0cDovL2FsbHJlY2lwZXMuY29tL3ZpZGVvLzEzOC9zd2VldC1wb3RhdG8tcGllL2RldGFpbC5hc3B4P3Byb3AyND1SUl9SZWxhdGVkVmlkZW9kAgUPFgQfGAVTaHR0cDovL2FsbHJlY2lwZXMuY29tL3ZpZGVvLzEzOC9zd2VldC1wb3RhdG8tcGllL2RldGFpbC5hc3B4P3Byb3AyND1SUl9SZWxhdGVkVmlkZW8fDgUQU3dlZXQgUG90YXRvIFBpZWQCBw8WAh8OBUxXYXRjaCBob3cgdG8gbWFrZSBjbGFzc2ljIHN3ZWV0IHBvdGF0byBwaWXigJRpdOKAmXMgZmFyIGVhc2llciB0aGFuIHB1bXBraW4uZAIBDw8WAh8SBTxodHRwOi8vYWxscmVjaXBlcy5jb20vdmlkZW8vbWFpbi5hc3B4P3Byb3AyND1SUl9SZWxhdGVkVmlkZW9kZAIMD2QWBgIBDxYCHw0FGU5ldyBNZW51cyBmcm9tIEFsbHJlY2lwZXNkAgMPZBYCZg8PFgIfEgUnfi9TdXBwb3J0aW5nTWVtYmVyc2hpcC9JbmZvLmFzcHg/ZWN0PTIx" />
|
106
|
+
<input type="hidden" name="__VIEWSTATE12" id="__VIEWSTATE12" value="ZBYCZg8PFgIfBgVCaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9yaWdodGNvbC9ibHVlX3N0YXJfMTJ4MTIucG5nFgIfGmVkAgkPZBYCAgEPDxYCHxIFJ2h0dHA6Ly9hbGxyZWNpcGVzLmNvbS9tZW51cy9uZXdlc3QuYXNweGRkAg0PZBYIAgEPFgIfDQUQTmV3IE1lbWJlciBNZW51c2QCAw9kFgJmDw8WAh8SBSd+L1N1cHBvcnRpbmdNZW1iZXJzaGlwL0luZm8uYXNweD9lY3Q9MjFkFgJmDw8WAh8GBUJodHRwOi8vaW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2FyL3JpZ2h0Y29sL2JsdWVfc3Rhcl8xMngxMi5wbmcWAh8aZWQCBw9kFgICAQ9kFgICAQ8WAh8pAgQWCGYPZBYCAgEPZBYOAgEPDxYGHwQFUmltYWdlLWxpbmsgbGlua1ByZWZlcnNTdXBwb3J0aW5nTWVtYmVyc2hpcFBpdGNoRGlhbG9nIHBpdGNoRGlhbG9nSGludE1lbnVCYXJyaWNhZGUfEgVraHR0cDovL2FsbHJlY2lwZXMuY29tL21lbnUvNjMxMTEzNTUvMjE4LTIzL2RldGFpbC5hc3B4P3AzND1MYXRlc3QlMjBVc2VyJTIwTWVudXMlM2FUaHVtYiZlOT1NZW51JTIwUGVyc29uYWwfBwICZBYCZg8PFgIfBgVaaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9zaXRlL2FsbHJlY2lwZXMvYXJlYS9jb21tdW5pdHkvdXNlcnBob3RvL21pbmkvMjQ2MjMuanBnZGQCAw8PFggfBAVWdHJ1bmNhdGUtYmxvY2sgbGlua1ByZWZlcnNTdXBwb3J0aW5nTWVtYmVyc2hpcFBpdGNoRGlhbG9nIHBpdGNoRGlhbG9nSGludE1lbnVCYXJyaWNhZGUfDQUHMi8xOC0yMx8SBWto" />
|
107
|
+
<input type="hidden" name="__VIEWSTATE13" id="__VIEWSTATE13" value="dHRwOi8vYWxscmVjaXBlcy5jb20vbWVudS82MzExMTM1NS8yMTgtMjMvZGV0YWlsLmFzcHg/cDM0PUxhdGVzdCUyMFVzZXIlMjBNZW51cyUzYVRpdGxlJmU5PU1lbnUlMjBQZXJzb25hbB8HAgJkZAIFDxYCHw0FCTUgUmVjaXBlc2QCBw8WAh8NBQc1IE1lYWxzZAIJDw8WBB8NBQRKb2RpHxIFMGh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9jb29rLzE4NDM1NDUxL3Byb2ZpbGUuYXNweGRkAgsPZBYCZg8PFgIfEgUnfi9TdXBwb3J0aW5nTWVtYmVyc2hpcC9JbmZvLmFzcHg/ZWN0PTIxZBYCZg8PFgIfBgVIaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9pY29ucy9zbS9zdXBwb3J0aW5nX2ljb25fMTB4MTAucG5nFgIfGmVkAg0PFgIfDQUcRmVicnVhcnkgMTUsIDIwMTIsIDc6MTMgYS5tLmQCAQ9kFgICAQ9kFg4CAQ8PFgYfBAVSaW1hZ2UtbGluayBsaW5rUHJlZmVyc1N1cHBvcnRpbmdNZW1iZXJzaGlwUGl0Y2hEaWFsb2cgcGl0Y2hEaWFsb2dIaW50TWVudUJhcnJpY2FkZR8SBXNodHRwOi8vYWxscmVjaXBlcy5jb20vbWVudS82MzExMDgyOC9mZWJydWFyeS0xMy0xOS9kZXRhaWwuYXNweD9wMzQ9TGF0ZXN0JTIwVXNlciUyME1lbnVzJTNhVGh1bWImZTk9TWVudSUyMFBlcnNvbmFsHwcCAmQWAmYPDxYCHwYFW2h0dHA6Ly9pbWFnZXMubWVkaWEtYWxscmVjaXBlcy5jb20vc2l0ZS9hbGxyZWNpcGVzL2FyZWEvY29tbXVuaXR5L3VzZXJwaG90by9taW5pLzcyNTI5OC5qcGdkZAIDDw8WCB8EBVZ0cnVuY2F0ZS1ibG9jayBsaW5rUHJlZmVyc1N1" />
|
108
|
+
<input type="hidden" name="__VIEWSTATE14" id="__VIEWSTATE14" value="cHBvcnRpbmdNZW1iZXJzaGlwUGl0Y2hEaWFsb2cgcGl0Y2hEaWFsb2dIaW50TWVudUJhcnJpY2FkZR8NBQ5GZWJydWFyeSAxMy0xOR8SBXNodHRwOi8vYWxscmVjaXBlcy5jb20vbWVudS82MzExMDgyOC9mZWJydWFyeS0xMy0xOS9kZXRhaWwuYXNweD9wMzQ9TGF0ZXN0JTIwVXNlciUyME1lbnVzJTNhVGl0bGUmZTk9TWVudSUyMFBlcnNvbmFsHwcCAmRkAgUPFgIfDQUKMTEgUmVjaXBlc2QCBw8WAh8NBQc3IE1lYWxzZAIJDw8WBB8NBQlrZWxsaWVhbm4fEgUwaHR0cDovL2FsbHJlY2lwZXMuY29tL2Nvb2svMTM2NzA1OTMvcHJvZmlsZS5hc3B4ZGQCCw9kFgJmDw8WAh8SBSd+L1N1cHBvcnRpbmdNZW1iZXJzaGlwL0luZm8uYXNweD9lY3Q9MjFkFgJmDw8WAh8GBUhodHRwOi8vaW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2FyL2ljb25zL3NtL3N1cHBvcnRpbmdfaWNvbl8xMHgxMC5wbmcWAh8aZWQCDQ8WAh8NBRxGZWJydWFyeSAxNCwgMjAxMiwgMjo1NyBwLm0uZAICD2QWAgIBD2QWDgIBDw8WBh8EBVJpbWFnZS1saW5rIGxpbmtQcmVmZXJzU3VwcG9ydGluZ01lbWJlcnNoaXBQaXRjaERpYWxvZyBwaXRjaERpYWxvZ0hpbnRNZW51QmFycmljYWRlHxIFbmh0dHA6Ly9hbGxyZWNpcGVzLmNvbS9tZW51LzYzMTEwODQ5L3ZkYXktbWVhbC9kZXRhaWwuYXNweD9wMzQ9TGF0ZXN0JTIwVXNlciUyME1lbnVzJTNhVGh1bWImZTk9TWVudSUyMFBlcnNvbmFsHwcCAmQWAmYPDxYCHwYFW2h0dHA6Ly9pbWFnZXMubWVkaWEtYWxscmVjaXBlcy5jb20vc2l0ZS9h" />
|
109
|
+
<input type="hidden" name="__VIEWSTATE15" id="__VIEWSTATE15" value="bGxyZWNpcGVzL2FyZWEvY29tbXVuaXR5L3VzZXJwaG90by9taW5pLzMyOTk0MS5qcGdkZAIDDw8WCB8EBVZ0cnVuY2F0ZS1ibG9jayBsaW5rUHJlZmVyc1N1cHBvcnRpbmdNZW1iZXJzaGlwUGl0Y2hEaWFsb2cgcGl0Y2hEaWFsb2dIaW50TWVudUJhcnJpY2FkZR8NBQlWZGF5IE1lYWwfEgVuaHR0cDovL2FsbHJlY2lwZXMuY29tL21lbnUvNjMxMTA4NDkvdmRheS1tZWFsL2RldGFpbC5hc3B4P3AzND1MYXRlc3QlMjBVc2VyJTIwTWVudXMlM2FUaXRsZSZlOT1NZW51JTIwUGVyc29uYWwfBwICZGQCBQ8WAh8NBQkzIFJlY2lwZXNkAgcPFgIfDQUGMSBNZWFsZAIJDw8WAh8NBQZDaHJpc0JkZAILD2QWAmYPDxYCHxIFJ34vU3VwcG9ydGluZ01lbWJlcnNoaXAvSW5mby5hc3B4P2VjdD0yMWQWAmYPDxYCHwYFSGh0dHA6Ly9pbWFnZXMubWVkaWEtYWxscmVjaXBlcy5jb20vYXIvaWNvbnMvc20vc3VwcG9ydGluZ19pY29uXzEweDEwLnBuZxYCHxplZAINDxYCHw0FHEZlYnJ1YXJ5IDE0LCAyMDEyLCAyOjI0IHAubS5kAgMPZBYCAgEPZBYOAgEPDxYGHwQFUmltYWdlLWxpbmsgbGlua1ByZWZlcnNTdXBwb3J0aW5nTWVtYmVyc2hpcFBpdGNoRGlhbG9nIHBpdGNoRGlhbG9nSGludE1lbnVCYXJyaWNhZGUfEgV5aHR0cDovL2FsbHJlY2lwZXMuY29tL21lbnUvNjMxMDkzODIvdmFsZW50aW5lcy13ZWVrLW1lbnUvZGV0YWlsLmFzcHg/cDM0PUxhdGVzdCUyMFVzZXIlMjBNZW51cyUzYVRodW1iJmU5PU1lbnUlMjBQZXJzb25hbB8HAgJkFgJmDw8WAh8GBUFodHRwOi8v" />
|
110
|
+
<input type="hidden" name="__VIEWSTATE16" id="__VIEWSTATE16" value="aW1hZ2VzLm1lZGlhLWFsbHJlY2lwZXMuY29tL2dsb2JhbC9yZWNpcGVzL21pbmkvMTIwOTAxLmpwZ2RkAgMPDxYIHwQFVnRydW5jYXRlLWJsb2NrIGxpbmtQcmVmZXJzU3VwcG9ydGluZ01lbWJlcnNoaXBQaXRjaERpYWxvZyBwaXRjaERpYWxvZ0hpbnRNZW51QmFycmljYWRlHw0FFVZhbGVudGluZSdzIHdlZWsgbWVudR8SBXlodHRwOi8vYWxscmVjaXBlcy5jb20vbWVudS82MzEwOTM4Mi92YWxlbnRpbmVzLXdlZWstbWVudS9kZXRhaWwuYXNweD9wMzQ9TGF0ZXN0JTIwVXNlciUyME1lbnVzJTNhVGl0bGUmZTk9TWVudSUyMFBlcnNvbmFsHwcCAmRkAgUPFgIfDQUKMTAgUmVjaXBlc2QCBw8WAh8NBQc1IE1lYWxzZAIJDw8WAh8NBQhzdW5kYXloYmRkAgsPZBYCZg8PFgIfEgUnfi9TdXBwb3J0aW5nTWVtYmVyc2hpcC9JbmZvLmFzcHg/ZWN0PTIxZBYCZg8PFgIfBgVIaHR0cDovL2ltYWdlcy5tZWRpYS1hbGxyZWNpcGVzLmNvbS9hci9pY29ucy9zbS9zdXBwb3J0aW5nX2ljb25fMTB4MTAucG5nFgIfGmVkAg0PFgIfDQUcRmVicnVhcnkgMTQsIDIwMTIsIDE6MzcgcC5tLmQCCQ8WAh8CaBYCAgEPDxYCHxIFJ2h0dHA6Ly9hbGxyZWNpcGVzLmNvbS9tZW51cy9uZXdlc3QuYXNweGRkAh4PFh4eBlNlcnZlcgUGV0VCMzA2Hg1BZEltcHJlc3Npb25zAgUeDkludGVybmFsU291cmNlZR4GQWRLZXlzBXtyPTEyMDgwMjtrPTEzO2s9MzA7az0zOTtrPTgzO2s9OTE7az05NztrPTE1OTtrPTE4ODtrPTIwMTtrPTIwMjtrPTIyODtrPTIzOTtrPTI0NTtrPTI0ODtrPTYy" />
|
111
|
+
<input type="hidden" name="__VIEWSTATE17" id="__VIEWSTATE17" value="NDtzc25ncm91cD0wO3N0YXR1cz11bnJlY29nbml6ZWQeD0NvbnRlbnRQcm92aWRlcgUCMjIeCkFkU2l0ZVpvbmUFEmFyLnJlY2lwZXMvZGVzc2VydB4KTWFpbEZvcm1hdGUeC0NvbnRlbnRUeXBlBQZSZWNpcGUeCEJ1bGtNYWlsZR4PSXNBdXRoZW50aWNhdGVkaB4IUGFnZU5hbWUFKS9yZWNpcGUvcGluZWFwcGxlLXN3ZWV0LXJvbGxzL2RldGFpbC5hc3B4HgdDaGFubmVsBQdSZWNpcGVzHgxJc1NjYWxlRXZlbnRoHgxPbW5pTGlua05hbWVlHgpUcmFja2luZ0lEZWQYDQUbY3RsMDAkQWNjZXNzUGFuZWwkTXZ3QWNjZXNzDw9kZmQFMGN0bDAwJHVjUmVjaXBlQm94TW9kdWxlJHByZXZpZXdSZWNpcGVzJG1sdk1vZHVsZQ8PZAIBZAUaY3RsMDAkdWNQcmltYXJ5TmF2JG12d015QVIPD2RmZAUoY3RsMDAkdWNNZW51TGlzdFVzZXJNZW51cyRtdndOZXdlc3RNZW51cw8PZAIBZAVAY3RsMDAkQ2VudGVyQ29sdW1uUGxhY2VIb2xkZXIkcmVjaXBlJHJhdGluZ1N0dWZmJG12UmF0aW5nRGlzcGxheQ8PZGZkBWVjdGwwMCRDZW50ZXJDb2x1bW5QbGFjZUhvbGRlciRyZWNpcGUkZHByTGlzdFZpZXckcmx2UmV2aWV3cyRycHRSZXZpZXdMaXN0JGN0bDAxJFJldmlld0l0ZW0kbXZ3SGVscGZ1bA8PZGZkBSZjdGwwMCR1Y01lbnVMaXN0QVJNZW51cyRtdndOZXdlc3RNZW51cw8PZGZkBTVjdGwwMCRDZW50ZXJDb2x1bW5QbGFjZUhvbGRlciRyZWNpcGUkbXZOdXRyaXRpb25QYW5lbA8PZAIBZAUeX19Db250cm9sc1JlcXVpcmVQb3N0QmFja0tleV9fFgQFHWN0bDAwJEFjY2Vz" />
|
112
|
+
<input type="hidden" name="__VIEWSTATE18" id="__VIEWSTATE18" value="c1BhbmVsJGNieFJlbWVtYmVyBSpjdGwwMCRDZW50ZXJDb2x1bW5QbGFjZUhvbGRlciRyZWNpcGUkcmJsVVMFLmN0bDAwJENlbnRlckNvbHVtblBsYWNlSG9sZGVyJHJlY2lwZSRyYmxNZXRyaWMFLmN0bDAwJENlbnRlckNvbHVtblBsYWNlSG9sZGVyJHJlY2lwZSRyYmxNZXRyaWMFLmN0bDAwJHVjUmVjaXBlQm94TW9kdWxlJHByZXZpZXdNZW51cyRtbHZNb2R1bGUPD2QCAmQFPGN0bDAwJENlbnRlckNvbHVtblBsYWNlSG9sZGVyJHJlY2lwZSRUb29sYm94Q29udHJvbCRtbHZUb29scw8PZGZkBWJjdGwwMCRDZW50ZXJDb2x1bW5QbGFjZUhvbGRlciRyZWNpcGUkZHByTGlzdFZpZXckcmx2UmV2aWV3cyRycHRSZXZpZXdMaXN0JGN0bDAxJFJldmlld0l0ZW0kbXZ3RGF0ZQ8PZAIBZAU2Y3RsMDAkdWNSZWNpcGVCb3hNb2R1bGUkcHJldmlld1Nob3BwaW5nTGlzdHMkbWx2TW9kdWxlDw9kAgFk" />
|
113
|
+
|
114
|
+
|
115
|
+
<script type="text/javascript">
|
116
|
+
//<![CDATA[
|
117
|
+
function watermarkExtender(txtBox, clear)
|
118
|
+
{
|
119
|
+
var stored = txtBox.data('stored');
|
120
|
+
if (clear)
|
121
|
+
{
|
122
|
+
if (txtBox.val() == stored.defaultText)
|
123
|
+
{
|
124
|
+
if(stored.defaultClass)
|
125
|
+
txtBox[0].className=stored.defaultClass;
|
126
|
+
txtBox.val('');
|
127
|
+
}
|
128
|
+
}
|
129
|
+
else
|
130
|
+
{
|
131
|
+
if (txtBox.val() == '' || txtBox.val() == stored.defaultText)
|
132
|
+
{
|
133
|
+
if (stored.watermarkClass && stored.watermarkClass!='')
|
134
|
+
txtBox[0].className=stored.watermarkClass;
|
135
|
+
txtBox.val(stored.defaultText);
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}
|
139
|
+
function initWatermarkExtender(id, watermarkText, watermarkCssClass, bypass)
|
140
|
+
{
|
141
|
+
var txtBox = $('#' + id);
|
142
|
+
if (txtBox.length > 0)
|
143
|
+
{
|
144
|
+
txtBox.data('stored', {
|
145
|
+
defaultClass:txtBox[0].className , watermarkClass:watermarkCssClass, defaultText:watermarkText
|
146
|
+
});
|
147
|
+
watermarkExtender(txtBox, false);
|
148
|
+
}
|
149
|
+
|
150
|
+
if(bypass=='false'){
|
151
|
+
txtBox.focus(function() { watermarkExtender($(this), true); })
|
152
|
+
.blur(function() { watermarkExtender($(this), false); })
|
153
|
+
}
|
154
|
+
}//]]>
|
155
|
+
</script>
|
156
|
+
|
157
|
+
<script type="text/javascript">
|
158
|
+
//<![CDATA[
|
159
|
+
AR.ReviewCarousel.RegisterData('120802','1', 2, [{"ID":3512528,"Title":"","Date":"Nov. 2, 2011","User":{"IsSupporting":false,"ObfuscatedUserID":18606036,"PhotoCount":6,"RecipeCount":671,"CustomUrlPiece":"","ProfileImageUrl":"site/allrecipes/area/community/userphoto/small/383025.jpg","CookingLevel":"Expert","DisplayName":"SugarKitty","HomeTown":{"City":{"Text":"Minden","URI":""},"Country":{"Text":"USA","URI":"/Cooks/USA/Main.aspx"},"State":{"Text":"Nevada","URI":"/Cooks/USA/Western-USA/Mountain-West/Nevada/Main.aspx"}},"LivingIn":{"City":{"Text":"Eindhoven","URI":""},"Country":{"Text":"NETHERLANDS","URI":"/Cooks/Europe/Western-Europe/Netherlands/Main.aspx"},"State":{"Text":"Noord-Brabant","URI":""}},"HasHomePage":true,"IsBrandedProfile":false},"HelpfulCount":2,"AverageRating":4,"Rating":4,"Text":"yummy, i\u0027ve made a few times - i like them a lot."}]);AR.Ads.Site='ar.recipes';
|
160
|
+
AR.Ads.Zone='dessert';
|
161
|
+
AR.Ads.KeyValues='r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624';
|
162
|
+
AR.Ads.KeyWords='';
|
163
|
+
AR.Ads.Ord = aradsord;
|
164
|
+
AR.Ads.VisitorID = '';
|
165
|
+
AR.Ads.VisitorStatus = 'unrecognized';
|
166
|
+
AR.Ads.VisitorStatusAbbr = 'u';
|
167
|
+
AR.Ads.SessionGroup = '0';
|
168
|
+
AR.Ads.TypeSpecificID = '120802';
|
169
|
+
AR.Ads.ItemAdKey = 'r';
|
170
|
+
function getDisplayName() {return '';}AR.ServerSideData.Initialize({"ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_lnkReadReviews":{"index":0,"source":"header"},"Item_RateAndReview_Rating":"4","ctl00_CenterColumnPlaceHolder_recipe_photoStuff_lnkOpenCarousel":{"itemID":120802,"isRecipe":"True","photoGalleryUrl":"\/recipe\/pineapple-sweet-rolls\/photo-gallery.aspx"},"ctl00_CenterColumnPlaceHolder_recipe_photoStuff_lnkOpenCarousel2":{"itemID":120802,"isRecipe":"True","photoGalleryUrl":"\/recipe\/pineapple-sweet-rolls\/photo-gallery.aspx"},"currentItemTitle":"Pineapple Sweet Rolls","sharedItemType":"Kitchen Approved","ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_lnkOpenPhotoUpload":{"IframeSrc":"\/Controls\/UserPhoto2\/UserPhotoUploadIframe.aspx?recipeID=120802","ResultField":"ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink","ClientCallback":"OnPhotoUploadHandler_ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector","ItemType":1},"IsRecipe":true,"IsMenu":false,"IsWebLink":false,"IsWebReference":false,"ItemType":"1","ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_imgListIcon":{"index":0,"source":"review"},"userWhoSaved":[{"imgUrl":"http:\/\/images.media-allrecipes.com\/site\/allrecipes\/area\/community\/userphoto\/mini\/253443.jpg","userName":"FRSTLADY","userUrl":"http:\/\/allrecipes.com\/cook\/1467867\/profile.aspx","isSupporting":"true","saved":"Feb. 15\, 2012","reviews":"true","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/site\/allrecipes\/area\/community\/userphoto\/mini\/675122.jpg","userName":"jesicaJONAS","userUrl":"http:\/\/allrecipes.com\/cook\/16728899\/profile.aspx","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"false","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"Leesa","userUrl":"http:\/\/allrecipes.com\/cook\/11832103\/profile.aspx","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"true","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"Bev Frederick","userUrl":"","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"false","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"Earlybird","userUrl":"http:\/\/allrecipes.com\/cook\/13322878\/profile.aspx","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"true","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"judyj4jc","userUrl":"","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"false","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"Rita R","userUrl":"","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"false","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/features\/mini\/18.jpg","userName":"David Lockett","userUrl":"http:\/\/allrecipes.com\/cook\/18427665\/profile.aspx","isSupporting":"false","regionName":"Texas","regionUrl":"http:\/\/allrecipes.com\/cooks\/usa\/southern-usa\/western-south\/texas\/main.aspx","countryName":"USA","countryUrl":"http:\/\/allrecipes.com\/cooks\/usa\/main.aspx","saved":"Feb. 15\, 2012","reviews":"true","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"dustiellsworth","userUrl":"","isSupporting":"false","saved":"Feb. 15\, 2012","reviews":"false","isBP":false},{"imgUrl":"http:\/\/images.media-allrecipes.com\/global\/profile\/nophoto\/weebil_50.gif","userName":"Dee","userUrl":"http:\/\/allrecipes.com\/cook\/10595342\/profile.aspx","isSupporting":"true","regionName":"Iowa","regionUrl":"http:\/\/allrecipes.com\/cooks\/usa\/midwestern-usa\/plains-midwest\/iowa\/main.aspx","countryName":"USA","countryUrl":"http:\/\/allrecipes.com\/cooks\/usa\/main.aspx","saved":"Feb. 15\, 2012","reviews":"false","isBP":false}]});//]]>
|
171
|
+
</script>
|
172
|
+
|
173
|
+
<div id="wrap">
|
174
|
+
<div id="nav" class="clearfix">
|
175
|
+
<a id="ctl00_lnkMainLogo" href="http://allrecipes.com/"><img id="ctl00_imgMainLogo" class="arlogo" src="http://images.media-allrecipes.com/ar/topnav/ARlogo_topnav.gif" alt="Allrecipes home" border="0" /></a>
|
176
|
+
<div class="outernav">
|
177
|
+
<div class="searchdiv">
|
178
|
+
<div class="searchtxt">
|
179
|
+
<a id="ctl00_lnkRecipeSearch" tabindex="150" class="search_link search-link-recipes chosen" rel="nofollow" href="../../Search/Recipes.aspx" style="color:#333333;">Recipes</a> |
|
180
|
+
<a id="ctl00_lnkIngredientSearch" tabindex="160" class="search_link search-link-ingredients" rel="nofollow" href="../../Search/Ingredients.aspx">Ingredients</a> |
|
181
|
+
<a id="ctl00_lnkArticleSearch" tabindex="170" class="search_link search-link-articles" rel="nofollow" href="../../Search/Articles.aspx">Articles</a> |
|
182
|
+
|
183
|
+
<div class="topnav">
|
184
|
+
<ul class="dropdownmenu">
|
185
|
+
<li>
|
186
|
+
|
187
|
+
<dl class="droplist" >
|
188
|
+
|
189
|
+
<dt class="first">
|
190
|
+
<a id="ctl00_HyperLink1" tabindex="190" rel="nofollow" href="../../Search/moresearches.aspx">More »</a></dt>
|
191
|
+
<dd>
|
192
|
+
<a id="ctl00_HyperLink2" tabindex="200" title="Fine Tune Your Search" class="searchButton advanced search-link-advanced" rel="nofollow" href="../../Search/Recipes-Advanced.aspx">Advanced Search</a></dd>
|
193
|
+
<dd class="last">
|
194
|
+
<a id="ctl00_HyperLink4" tabindex="210" title="Search Related Collections" class="searchButton collection search-link-collection" rel="nofollow" href="../../Search/Collection.aspx">Collection Search</a></dd>
|
195
|
+
</dl>
|
196
|
+
|
197
|
+
</li>
|
198
|
+
</ul>
|
199
|
+
|
200
|
+
<p style="clear:right;"> </p>
|
201
|
+
</div>
|
202
|
+
</div>
|
203
|
+
<div id="ctl00_srchinput" class="srchinput">
|
204
|
+
<input name="ctl00$txtSearch" type="text" maxlength="150" id="ctl00_txtSearch" class="searchBox" /><script language="JavaScript" type="text/javascript">
|
205
|
+
<!--
|
206
|
+
initWatermarkExtender('ctl00_txtSearch', 'Example: cupcakes', 'searchBox watermark', 'false');
|
207
|
+
//--></script><input type="submit" name="ctl00$btnSearch" value="Search" id="ctl00_btnSearch" class="searchButton" />
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
</div>
|
212
|
+
</div>
|
213
|
+
|
214
|
+
<script type="text/javascript" language="javascript">
|
215
|
+
|
216
|
+
$(document).ready(function () {
|
217
|
+
$('#my_ar2').bind('keypress', function (e) {
|
218
|
+
if (e.keyCode == 13) { $('#ctl00_AccessPanel_btnLogIn').trigger('click'); }
|
219
|
+
});
|
220
|
+
});
|
221
|
+
|
222
|
+
</script>
|
223
|
+
<div id="my_ar2">
|
224
|
+
<div id="ctl00_AccessPanel_divMember" class="member">
|
225
|
+
|
226
|
+
<div class="divLogin">
|
227
|
+
<div class="submitButton">
|
228
|
+
<div class="emailDiv">
|
229
|
+
<label class="loginLabel">
|
230
|
+
Email or User Name</label>
|
231
|
+
<input name="ctl00$AccessPanel$txtUserName" type="text" maxlength="100" id="ctl00_AccessPanel_txtUserName" tabindex="100" class="loginUsername" />
|
232
|
+
<input name="ctl00$AccessPanel$cbxRemember" type="checkbox" id="ctl00_AccessPanel_cbxRemember" tabindex="120" checked="checked" class="loginRember" />
|
233
|
+
Remember Me
|
234
|
+
</div>
|
235
|
+
|
236
|
+
<div class="passwordDiv">
|
237
|
+
<label class="loginLabel">
|
238
|
+
Password (<a id="ctl00_AccessPanel_lnkForgotPassword" tabindex="140" rel="nofollow" href="../../Membership/ForgotPassword.aspx">forgot?</a>)</label>
|
239
|
+
<input name="ctl00$AccessPanel$txtPassword" type="password" maxlength="30" size="9" id="ctl00_AccessPanel_txtPassword" tabindex="110" class="userPasslogin" />
|
240
|
+
</div>
|
241
|
+
|
242
|
+
|
243
|
+
<input type="submit" name="ctl00$AccessPanel$btnLogIn" value="Log In" id="ctl00_AccessPanel_btnLogIn" tabindex="130" />
|
244
|
+
|
245
|
+
</div>
|
246
|
+
|
247
|
+
|
248
|
+
<div class="clearfix">
|
249
|
+
</div>
|
250
|
+
<div class="loginErrorDiv">
|
251
|
+
</div>
|
252
|
+
</div>
|
253
|
+
|
254
|
+
</div>
|
255
|
+
</div>
|
256
|
+
|
257
|
+
<!-- end search -->
|
258
|
+
|
259
|
+
<div style="clear: both; height: 1px;"> </div>
|
260
|
+
|
261
|
+
|
262
|
+
<div id="topNav">
|
263
|
+
<ul id="topNavUL">
|
264
|
+
<!-- Tab 1 [NEW AT AR] -->
|
265
|
+
<li class="tabContainer tabOne"><a href="http://allrecipes.com/default.aspx?prop24=PN_1.0.0_TN.New-At-AR" id="ctl00_ucPrimaryNav_lnkNewAtARTab" class="trigger_open"><img src="http://images.media-allrecipes.com/ar/spacer.gif" alt="New at Allrecipes" /></a>
|
266
|
+
<ul class="topNavnewatAR sub_nav_menu" style="width:166px;">
|
267
|
+
<li class="liTopLeft" style="height:8px;"> </li>
|
268
|
+
<li class="liTopMiddle" style="width:126px;height:8px;"> </li>
|
269
|
+
<li class="liTopRight" style="height:8px;"> </li>
|
270
|
+
<li class="liTopClear"> </li>
|
271
|
+
<li class="topnavliContainer" style="width:166px;">
|
272
|
+
<div class="topnavdivContainer">
|
273
|
+
<div class="topnavdivWhite"><!--[if lte IE 7]><span style='font-size:0'> </span><![endif]-->
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
</div>
|
279
|
+
<!-- end topnavdivWhite -->
|
280
|
+
</div>
|
281
|
+
<!-- end topnavdivContainer -->
|
282
|
+
|
283
|
+
</li>
|
284
|
+
|
285
|
+
<li class="liClearthis liBottomLeft"> </li>
|
286
|
+
<li class="liBottomMiddle" style="width:126px;"> </li>
|
287
|
+
<li class="liBottomRight"> </li>
|
288
|
+
|
289
|
+
</ul>
|
290
|
+
</li>
|
291
|
+
|
292
|
+
<!-- Tab 2 [RECIPES] -->
|
293
|
+
<li class="tabContainer tabTwo"><a href="http://allrecipes.com/recipes/main.aspx?prop24=PN_2.0.0_TN.Recipes" id="ctl00_ucPrimaryNav_lnkRecipesTab" class="trigger"><img src="http://images.media-allrecipes.com/ar/spacer.gif" alt="recipes" /></a>
|
294
|
+
|
295
|
+
<ul class="topNavRecipes sub_nav_menu" style="width:746px;">
|
296
|
+
<li class="liTopLeft"> </li>
|
297
|
+
<li class="liTopMiddle" style="width:704px;"> </li>
|
298
|
+
<li class="liTopRight"> </li>
|
299
|
+
<li class="liTopClear"> </li>
|
300
|
+
<li class="topnavliContainer" style="width:744px;"><!--[if IE 7]> <![endif]-->
|
301
|
+
|
302
|
+
<div class="topnavdivContainer">
|
303
|
+
<div class="topnavdivWhite"><!--[if IE 7]> <![endif]-->
|
304
|
+
|
305
|
+
<ul class="topNavFeaturedLeft">
|
306
|
+
<li class="liFeatured">
|
307
|
+
<span><ul><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/features/healthy-cooking/?prop24=PN_2.1.1_NP.Shockingly-Hea"><img data-ar-src="http://images.media-allrecipes.com/images/41875.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Healthy Dinners" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/features/healthy-cooking/?prop24=PN_2.1.1_NP.Shockingly-Hea">Shockingly Healthy Dinners</a></li><li class="liDescription">You won’t believe how good low-cal dinners can be. <a>»</a></li></ul></li><li class="liDivider"> </li><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/features/top-recipes.aspx?prop24=PN_2.1.2_NP.24-Recipes-You"><img data-ar-src="http://images.media-allrecipes.com/images/41961.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="24 Recipes You’ll Love" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/features/top-recipes.aspx?prop24=PN_2.1.2_NP.24-Recipes-You">24 Recipes You’ll Love</a></li><li class="liDescription">Five-star picks—make amazing lasagna, chicken, breakfasts, and sides. <a>»</a></li></ul></li></ul></span>
|
308
|
+
</li>
|
309
|
+
<li class="liClearthis"> </li>
|
310
|
+
</ul>
|
311
|
+
|
312
|
+
<!-- Change width depending on the number of columns -->
|
313
|
+
<ul class="topNavListsRight" style="width:420px;">
|
314
|
+
<li class="liHublist" style="width:420px;">
|
315
|
+
|
316
|
+
<ul class="ulHublistLeft">
|
317
|
+
<li class="liHeading">Dishes and Meals</li>
|
318
|
+
<li><a href="http://allrecipes.com/recipes/appetizers-and-snacks/main.aspx?prop24=PN_2.2.1_SN.Appetizers" id="ctl00_ucPrimaryNav_lnkRecipes_Appetizers">Appetizers</a></li>
|
319
|
+
<li><a href="http://allrecipes.com/recipes/breakfast-and-brunch/main.aspx?prop24=PN_2.2.2_SN.Breakfast" id="ctl00_ucPrimaryNav_lnkRecipes_Breakfast">Breakfast</a></li>
|
320
|
+
<li><a href="http://allrecipes.com/recipes/desserts/main.aspx?prop24=PN_2.2.3_SN.Dessert" id="ctl00_ucPrimaryNav_lnkRecipes_Dessert">Dessert</a></li>
|
321
|
+
<li><a href="http://allrecipes.com/recipes/drinks/main.aspx?prop24=PN_2.2.4_SN.Drinks" id="ctl00_ucPrimaryNav_lnkRecipes_Drinks">Drinks</a></li>
|
322
|
+
<li><a href="http://allrecipes.com/recipes/main-dish/main.aspx?prop24=PN_2.2.5_SN.Main-Dish" id="ctl00_ucPrimaryNav_lnkRecipes_MainDish">Main Dish</a></li>
|
323
|
+
<li><a href="http://allrecipes.com/recipes/salad/main.aspx?prop24=PN_2.2.6_SN.Salad" id="ctl00_ucPrimaryNav_lnkRecipes_Salad">Salad</a></li>
|
324
|
+
<li><a href="http://allrecipes.com/recipes/side-dish/main.aspx?prop24=PN_2.2.7_SN.Side-Dish" id="ctl00_ucPrimaryNav_lnkRecipes_SideDish">Side Dish</a></li>
|
325
|
+
<li><a href="http://allrecipes.com/recipes/soups-stews-and-chili/main.aspx?prop24=PN_2.2.8_SN.Soup" id="ctl00_ucPrimaryNav_lnkRecipes_Soup">Soup</a></li>
|
326
|
+
</ul>
|
327
|
+
|
328
|
+
<ul class="ulHublistMiddle">
|
329
|
+
<li class="liHeading">Ingredients</li>
|
330
|
+
<li><a href="http://allrecipes.com/recipes/meat-and-poultry/beef/main.aspx?prop24=PN_2.3.1_SN.Beef" id="ctl00_ucPrimaryNav_lnkRecipes_Beef">Beef</a></li>
|
331
|
+
<li><a href="http://allrecipes.com/recipes/meat-and-poultry/chicken/main.aspx?prop24=PN_2.3.2_SN.Chicken" id="ctl00_ucPrimaryNav_lnkRecipes_Chicken">Chicken</a></li>
|
332
|
+
<li><a href="http://allrecipes.com/recipes/fruits-and-vegetables/main.aspx?prop24=PN_2.3.3_SN.Fruits-and-Vege" id="ctl00_ucPrimaryNav_lnkRecipes_FruitVeg">Fruit and Vegetables</a></li>
|
333
|
+
<li><a href="http://allrecipes.com/recipes/pasta/main.aspx?prop24=PN_2.3.4_SN.Pasta" id="ctl00_ucPrimaryNav_lnkRecipes_Pasta">Pasta</a></li>
|
334
|
+
<li><a href="http://allrecipes.com/recipes/meat-and-poultry/pork/main.aspx?prop24=PN_2.3.5_SN.Pork" id="ctl00_ucPrimaryNav_lnkRecipes_Pork">Pork</a></li>
|
335
|
+
<li><a href="http://allrecipes.com/recipes/seafood/main.aspx?prop24=PN_2.3.6_SN.Seafood" id="ctl00_ucPrimaryNav_lnkRecipes_Seafood">Seafood</a></li>
|
336
|
+
<li><a href="http://allrecipes.com/recipes/everyday-cooking/vegetarian/main.aspx?prop24=PN_2.3.7_SN.Vegetarian" id="ctl00_ucPrimaryNav_lnkRecipes_Veg">Vegetarian</a></li>
|
337
|
+
</ul>
|
338
|
+
|
339
|
+
<ul class="ulHublistRight">
|
340
|
+
<li class="liHeading">Lifestyle</li>
|
341
|
+
<li><a href="http://allrecipes.com/recipes/bbq--grilling/main.aspx?prop24=PN_2.4.1_SN.BBQ-and-Grillin" id="ctl00_ucPrimaryNav_lnkRecipes_BBQ">BBQ and Grilling</a></li>
|
342
|
+
<li><a href="http://allrecipes.com/recipes/everyday-cooking/main.aspx?prop24=PN_2.4.2_SN.Everday-Cooking" id="ctl00_ucPrimaryNav_lnkRecipes_EveryDayCook">Everyday Cooking</a></li>
|
343
|
+
<li><a href="http://allrecipes.com/recipes/everyday-cooking/family-favorites/main.aspx?prop24=PN_2.4.3_SN.Family-Favorite" id="ctl00_ucPrimaryNav_lnkRecipes_KidFriendly">Kid Friendly</a></li>
|
344
|
+
<li><a href="http://allrecipes.com/recipes/healthy-cooking/main.aspx?prop24=PN_2.4.4_SN.Healthy" id="ctl00_ucPrimaryNav_lnkRecipes_Healthy">Healthy</a></li>
|
345
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/main.aspx?prop24=PN_2.4.5_SN.Holidays" id="ctl00_ucPrimaryNav_lnkRecipes_Holidays">Holidays</a></li>
|
346
|
+
<li><a href="http://allrecipes.com/recipes/world-cuisine/main.aspx?prop24=PN_2.4.6_SN.International" id="ctl00_ucPrimaryNav_lnkRecipes_International">International</a></li>
|
347
|
+
<li><a href="http://allrecipes.com/recipes/everyday-cooking/quick-and-easy/main.aspx?prop24=PN_2.4.7_SN.Quick-and-Easy" id="ctl00_ucPrimaryNav_lnkRecipes_QuickEasy">Quick and Easy</a></li>
|
348
|
+
<li><a href="http://allrecipes.com/recipes/everyday-cooking/sensational-slow-cooking/main.aspx?prop24=PN_2.4.8_SN.Slow-Cooker" id="ctl00_ucPrimaryNav_lnkRecipes_SlowCooker">Slow Cooker</a></li>
|
349
|
+
<li><a href="http://allrecipes.com/info/main.aspx?prop24=PN_2.4.9_SN.Tips-and-Advice" id="ctl00_ucPrimaryNav_lnkRecipes_TipsAdvice">Tips and Advice</a></li>
|
350
|
+
|
351
|
+
</ul>
|
352
|
+
</li>
|
353
|
+
</ul>
|
354
|
+
|
355
|
+
<!-- END topNavListsRight -->
|
356
|
+
|
357
|
+
<div class="liClearthisshort"></div>
|
358
|
+
|
359
|
+
<div class="divmoreRight">
|
360
|
+
<p><a href="http://allrecipes.com/recipes/main.aspx?prop24=PN_2.5.1_ES.More-Recipes" id="ctl00_ucPrimaryNav_lnkRecipes_MoreRecipes">More Recipes <span>»</span></a></p>
|
361
|
+
</div>
|
362
|
+
</div>
|
363
|
+
<!-- end topnavdivWhite -->
|
364
|
+
</div>
|
365
|
+
<!-- end topnavdivContainer -->
|
366
|
+
</li>
|
367
|
+
|
368
|
+
<li class="liClearthis liBottomLeft"> </li>
|
369
|
+
<li class="liBottomMiddle" style="width:704px;"> </li>
|
370
|
+
<li class="liBottomRight"> </li>
|
371
|
+
</ul>
|
372
|
+
</li>
|
373
|
+
|
374
|
+
<!-- Tab 3 [MENUS] -->
|
375
|
+
<li class="tabContainer tabThree"><a href="http://allrecipes.com/menus/main.aspx?prop24=PN_3.0.0_TN.Menus" id="ctl00_ucPrimaryNav_lnkMenusTab" class="trigger"><img src="http://images.media-allrecipes.com/ar/spacer.gif" alt="menus" /></a>
|
376
|
+
<ul class="topNavMenus sub_nav_menu" style="width:600px;">
|
377
|
+
<li class="liTopLeft"> </li>
|
378
|
+
<li class="liTopMiddle" style="width:560px;"> </li>
|
379
|
+
<li class="liTopRight"> </li>
|
380
|
+
<li class="liTopClear"> </li>
|
381
|
+
<li class="topnavliContainer" style="width:600px;"><!--[if IE 7]> <![endif]-->
|
382
|
+
<div class="topnavdivContainer" >
|
383
|
+
|
384
|
+
<div class="topnavdivWhite"><!--[if IE 7]> <![endif]-->
|
385
|
+
|
386
|
+
<ul class="topNavFeaturedLeft">
|
387
|
+
<li class="liFeatured">
|
388
|
+
<span><ul><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/menus/16296/low-calorie/viewall.aspx?lnkid=3700&prop24=PN_3.1.1_NP.Low-Calorie-Me"><img data-ar-src="http://images.media-allrecipes.com/images/41920.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Low-Calorie Menus" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/menus/16296/low-calorie/viewall.aspx?lnkid=3700&prop24=PN_3.1.1_NP.Low-Calorie-Me">Low-Calorie Menus</a></li><li class="liDescription">It’s easy to plan a 1200-calorie day. Get started with these menus. <a>»</a></li></ul></li><li class="liDivider"> </li><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/Features/Menu-Planner-1.aspx?lnkid=3699&prop24=PN_3.1.2_NP.Save-Money-wit"><img data-ar-src="http://images.media-allrecipes.com/images/13580.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Menus Make Dinner Easy!" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/Features/Menu-Planner-1.aspx?lnkid=3699&prop24=PN_3.1.2_NP.Save-Money-wit">Save Money with Menus</a></li><li class="liDescription">Plan a week of dinners and watch your food dollar go farther. <a>»</a></li></ul></li></ul></span>
|
389
|
+
</li>
|
390
|
+
<li class="liClearthis"> </li>
|
391
|
+
</ul>
|
392
|
+
<!-- Right Column -->
|
393
|
+
<ul class="topNavListsRight" style="width:284px;">
|
394
|
+
<li class="liHublist" style="width:284px;">
|
395
|
+
<ul class="ulHublistLeft">
|
396
|
+
<li class="liHeading">Menus</li>
|
397
|
+
<li><a href="http://allrecipes.com/menus/16262/quick-and-easy/viewall.aspx?prop24=PN_3.2.1_SN.Quick-and-Easy" id="ctl00_ucPrimaryNav_lnkMenus_QuickEasy">Quick & Easy</a></li>
|
398
|
+
<li><a href="http://allrecipes.com/menus/16266/weeknight/viewall.aspx?prop24=PN_3.2.2_SN.Weeknight" id="ctl00_ucPrimaryNav_lnkMenus_Weeknight">Weeknight</a></li>
|
399
|
+
<li><a href="http://allrecipes.com/menus/16258/low-budget/viewall.aspx?prop24=PN_3.2.3_SN.Budget" id="ctl00_ucPrimaryNav_lnkMenus_Budget">Budget</a></li>
|
400
|
+
<li><a href="http://allrecipes.com/menus/16259/make-ahead/viewall.aspx?prop24=PN_3.2.4_SN.Make-Ahead" id="ctl00_ucPrimaryNav_lnkMenus_MakeAhead">Make Ahead</a></li>
|
401
|
+
<li><a href="http://allrecipes.com/menus/16257/leftovers/viewall.aspx?prop24=PN_3.2.5_SN.Use-Leftovers" id="ctl00_ucPrimaryNav_lnkMenus_Leftovers">Use Leftovers</a></li>
|
402
|
+
<li><a href="http://allrecipes.com/menus/16256/kid-friendly/viewall.aspx?prop24=PN_3.2.6_SN.Kid-Friendly" id="ctl00_ucPrimaryNav_lnkMenus_KidFriendly">Kid-Friendly</a></li>
|
403
|
+
<li><a href="http://allrecipes.com/menus/16255/gourmet/viewall.aspx?prop24=PN_3.2.7_SN.Gourmet" id="ctl00_ucPrimaryNav_lnkMenus_Gourmet">Gourmet</a></li>
|
404
|
+
<li><a href="http://allrecipes.com/menus/16301/season/viewall.aspx?prop24=PN_3.2.8_SN.InSeason" id="ctl00_ucPrimaryNav_lnkMenus_InSeason">In-Season</a></li>
|
405
|
+
</ul>
|
406
|
+
<ul class="ulHublistMiddle">
|
407
|
+
<li class="liHeading">Dietary Menus</li>
|
408
|
+
<li><a href="http://allrecipes.com/menus/16298/low-fat/viewall.aspx?prop24=PN_3.3.1_SN.Low-Fat" id="ctl00_ucPrimaryNav_lnkMenus_LowFat">Low Fat</a></li>
|
409
|
+
<li><a href="http://allrecipes.com/menus/16296/low-calorie/viewall.aspx?prop24=PN_3.3.2_SN.Low-Calorie" id="ctl00_ucPrimaryNav_lnkMenus_LowCalorie">Low Calorie</a></li>
|
410
|
+
<li><a href="http://allrecipes.com/menus/16297/low-carb/viewall.aspx?prop24=PN_3.3.3_SN.Low-Carb" id="ctl00_ucPrimaryNav_lnkMenus_LowCarb">Low Carb</a></li>
|
411
|
+
<li><a href="http://allrecipes.com/menus/16299/low-sodium/viewall.aspx?prop24=PN_3.3.4_SN.Low-Sodium" id="ctl00_ucPrimaryNav_lnkMenus_LowSodium">Low Sodium</a></li>
|
412
|
+
<li> </li>
|
413
|
+
<li class="liHeading">Menu Planner</li>
|
414
|
+
<li><a href="http://allrecipes.com/my/menus/planner.aspx?prop24=PN_3.3.5_SN.Plan-a-Menu&e3=PrimaryNav%3aTry%20MP" id="ctl00_ucPrimaryNav_lnkMenus_PlanMenu" class="linkPrefersLogin">Plan a Menu</a></li>
|
415
|
+
<li><a href="http://allrecipes.com/newsletters/changenewsletters.aspx?prop24=PN_3.3.6_SN.Weekly-Menu-Sig&e3=PrimaryNav%3a%20New%20Menu%20Sign%20Up" id="ctl00_ucPrimaryNav_lnkMenus_WeeklyMenuSignUp" class="linkRequiresSupportingMembership featureHintPrimaryNavNewMenuSignUp">Weekly Menu Signup</a></li>
|
416
|
+
</ul>
|
417
|
+
</li>
|
418
|
+
</ul>
|
419
|
+
<!-- END topNavListsRight -->
|
420
|
+
|
421
|
+
<div class="liClearthisshort"></div>
|
422
|
+
|
423
|
+
<div class="divmoreRight">
|
424
|
+
|
425
|
+
<p><a href="http://allrecipes.com/menus/main.aspx?prop24=PN_3.4.1_ES.More-Menus" id="ctl00_ucPrimaryNav_lnkMenus_MoreMenus">More Menus <span>»</span></a></p>
|
426
|
+
</div>
|
427
|
+
|
428
|
+
</div>
|
429
|
+
<!-- end topnavdivWhite -->
|
430
|
+
|
431
|
+
</div>
|
432
|
+
<!-- end topnavdivContainer -->
|
433
|
+
</li>
|
434
|
+
|
435
|
+
<li class="liClearthis liBottomLeft"> </li>
|
436
|
+
<li class="liBottomMiddle" style="width:560px;"> </li>
|
437
|
+
<li class="liBottomRight"> </li>
|
438
|
+
|
439
|
+
</ul>
|
440
|
+
</li>
|
441
|
+
|
442
|
+
<!-- Tab 4 [HOLIDAYS] -->
|
443
|
+
<li class="tabContainer tabFour"><a href="http://allrecipes.com/recipes/holidays-and-events/main.aspx?prop24=PN_4.0.0_TN.Featured" id="ctl00_ucPrimaryNav_lnkHolidaysTab" class="trigger"><img src="http://images.media-allrecipes.com/ar/spacer.gif" alt="holidays" /></a>
|
444
|
+
<ul class="topNavHolidays sub_nav_menu" style="width:458px;">
|
445
|
+
<li class="liTopLeft"> </li>
|
446
|
+
<li class="liTopMiddle" style="width:418px;"> </li>
|
447
|
+
|
448
|
+
<li class="liTopRight"> </li>
|
449
|
+
<li class="liTopClear"> </li>
|
450
|
+
<li class="topnavliContainer" style="width:458px;"><!--[if IE 7]> <![endif]-->
|
451
|
+
|
452
|
+
<div class="topnavdivContainer">
|
453
|
+
<div class="topnavdivWhite"><!--[if lte IE 7]><span style='font-size:0'> </span><![endif]-->
|
454
|
+
|
455
|
+
<ul class="topNavFeaturedLeft">
|
456
|
+
<li class="liFeatured">
|
457
|
+
<span><ul><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/features/holidays/mardi-gras/?prop24=PN_4.1.1_NP.Best-Mardi-Gra"><img data-ar-src="http://images.media-allrecipes.com/images/42115.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Best Mardi Gras Recipes" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/features/holidays/mardi-gras/?prop24=PN_4.1.1_NP.Best-Mardi-Gra">Best Mardi Gras Recipes</a></li><li class="liDescription">Make Bourbon Street classics for your Tuesday, Feb. 21 party. <a>»</a></li></ul></li><li class="liDivider"> </li><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/features/top-recipes.aspx?prop24=PN_4.1.2_NP.Februarys-Bes"><img data-ar-src="http://images.media-allrecipes.com/images/41962.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="February’s Best Recipes" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/features/top-recipes.aspx?prop24=PN_4.1.2_NP.Februarys-Bes">February’s Best Recipes</a></li><li class="liDescription">24 amazing dishes to make this month. <a>»</a></li></ul></li></ul></span>
|
458
|
+
</li>
|
459
|
+
<li class="liClearthis"> </li>
|
460
|
+
</ul>
|
461
|
+
|
462
|
+
<ul class="topNavListsRight" style="width:142px;">
|
463
|
+
<li class="liHublist" style="width:142px;">
|
464
|
+
|
465
|
+
<ul class="ulHublistLeft">
|
466
|
+
<li class="liHeading">Holidays and Events</li>
|
467
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/new-year/main.aspx?prop24=PN_4.2.1_SN.New-Year" id="ctl00_ucPrimaryNav_lnkHolidays_NewYear">New Year</a></li>
|
468
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/valentines-day/main.aspx?prop24=PN_4.2.2_SN.Valentines" id="ctl00_ucPrimaryNav_lnkHolidays_Valentines">Valentine's Day</a></li>
|
469
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/st-patricks-day/main.aspx?prop24=PN_4.2.3_SN.St-Patricks-D" id="ctl00_ucPrimaryNav_lnkHolidays_StPatricksDay">St. Patrick's Day</a></li>
|
470
|
+
|
471
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/easter/main.aspx?prop24=PN_4.2.4_SN.Easter" id="ctl00_ucPrimaryNav_lnkHolidays_Easter">Easter</a></li>
|
472
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/halloween/main.aspx?prop24=PN_4.2.5_SN.Halloween" id="ctl00_ucPrimaryNav_lnkHolidays_Halloween">Halloween</a></li>
|
473
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/thanksgiving/main.aspx?prop24=PN_4.2.6_SN.Thanksgiving" id="ctl00_ucPrimaryNav_lnkHolidays_Thanksgiving">Thanksgiving</a></li>
|
474
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/christmas/main.aspx?prop24=PN_4.2.7_SN.Christmas" id="ctl00_ucPrimaryNav_lnkHolidays_Christmas">Christmas</a></li>
|
475
|
+
<li><a href="http://allrecipes.com/recipes/holidays-and-events/cinco-de-mayo/main.aspx?prop24=PN_4.2.8_SN.Cinco-de-Mayo" id="ctl00_ucPrimaryNav_lnkHolidays_CincoDeMay">Cinco de Mayo</a></li>
|
476
|
+
</ul>
|
477
|
+
|
478
|
+
</li>
|
479
|
+
</ul>
|
480
|
+
|
481
|
+
<div class="liClearthisshort"></div>
|
482
|
+
|
483
|
+
<div class="divmoreRight">
|
484
|
+
<p><a href="http://allrecipes.com/recipes/holidays-and-events/main.aspx?prop24=PN_4.3.1_ES.All-Holidays-Ev" id="ctl00_ucPrimaryNav_lnkHolidays_AllHolidays">All Holidays and Events <span>»</span></a></p>
|
485
|
+
</div>
|
486
|
+
<div class="liClearthisshort"></div>
|
487
|
+
|
488
|
+
</div>
|
489
|
+
<!-- end topnavdivWhite -->
|
490
|
+
|
491
|
+
</div>
|
492
|
+
<!-- end topnavdivContainer -->
|
493
|
+
|
494
|
+
</li>
|
495
|
+
<li class="liClearthis liBottomLeft"> </li>
|
496
|
+
<li class="liBottomMiddle" style="width:418px;"> </li>
|
497
|
+
<li class="liBottomRight"> </li>
|
498
|
+
</ul>
|
499
|
+
|
500
|
+
</li>
|
501
|
+
|
502
|
+
<!-- Tab 5 [THE BUZZ] -->
|
503
|
+
<li class="tabContainer tabFive"><a href="http://allrecipes.com/thebuzz/main.aspx?prop24=PN_5.0.0_TN.Community" id="ctl00_ucPrimaryNav_lnkTheBuzzTab" class="trigger"><img src="http://images.media-allrecipes.com/ar/spacer.gif" alt="the buzz" /></a>
|
504
|
+
<ul class="topNavtheBuzz sub_nav_menu" style="width:606px;">
|
505
|
+
|
506
|
+
<li class="liTopLeft"> </li>
|
507
|
+
<li class="liTopMiddle" style="width:566px;"> </li>
|
508
|
+
<li class="liTopRight"> </li>
|
509
|
+
<li class="liTopClear"> </li>
|
510
|
+
|
511
|
+
<li class="topnavliContainer" style="width:606px;"><!--[if IE 7]> <![endif]-->
|
512
|
+
<div class="topnavdivContainer">
|
513
|
+
<div class="topnavdivWhite"><!--[if lte IE 7]><span style='font-size:0'> </span><![endif]-->
|
514
|
+
|
515
|
+
<ul class="topNavFeaturedLeft">
|
516
|
+
<li class="liFeatured">
|
517
|
+
<span><ul><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/recipe-exchange/recipe-requests.aspx?prop24=PN_5.1.1_NP.Recipe-Buzz"><img data-ar-src="http://images.media-allrecipes.com/images/39550.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Recipe Buzz" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/recipe-exchange/recipe-requests.aspx?prop24=PN_5.1.1_NP.Recipe-Buzz">Recipe Buzz</a></li><li class="liDescription">Need cooking tips now? Ask the helpful home cooks on the Recipe Buzz. <a>»</a></li></ul></li><li class="liDivider"> </li><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/SupportingMembership/Info.aspx?lnkid=3837&prop24=PN_5.1.2_NP.Supporting-Mem"><img data-ar-src="http://images.media-allrecipes.com/images/42001.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Supporting Membership" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/SupportingMembership/Info.aspx?lnkid=3837&prop24=PN_5.1.2_NP.Supporting-Mem">Supporting Membership</a></li><li class="liDescription">Make cooking easier with Menu Planner and Nutrition Search. <a>»</a></li></ul></li></ul></span>
|
518
|
+
</li>
|
519
|
+
<li class="liClearthisshort"> </li>
|
520
|
+
</ul>
|
521
|
+
<ul class="topNavListsRight" style="width:293px;">
|
522
|
+
<li class="liHublist" style="width:293px;">
|
523
|
+
<ul class="ulHublistLeft">
|
524
|
+
<li class="liHeading">Community</li>
|
525
|
+
<li><a href="http://allrecipes.com/recipe-exchange/recipe-requests.aspx?prop24=PN_5.2.1_SN.Recipe-Buzz" id="ctl00_ucPrimaryNav_lnkTheBuzz_RecipeBuzz">Recipe Buzz</a></li>
|
526
|
+
<li><a href="http://allrecipes.com/cooks/newest-reviews.aspx?prop24=PN_5.2.2_SN.Newest-Reviews" id="ctl00_ucPrimaryNav_lnkTheBuzz_NewestReviews">Newest Reviews</a></li>
|
527
|
+
<li><a href="http://allrecipes.com/community/blogs.aspx?prop24=PN_5.2.3_SN.Member-Blogs" id="ctl00_ucPrimaryNav_lnkTheBuzz_Blogs">Member Blogs</a></li>
|
528
|
+
<li><a href="http://allrecipes.com/community/contests/default.aspx?prop24=PN_5.2.4_SN.Contestsand-Swe" id="ctl00_ucPrimaryNav_lnkTheBuzz_ContestSweepstakes">Contests and Sweepstakes</a></li>
|
529
|
+
<li> </li>
|
530
|
+
<li class="liHeading">Membership</li>
|
531
|
+
<li><a href="http://allrecipes.com/membership/signup.aspx?prop24=PN_5.2.5_SN.Free-Membership&e3=Primary%20Nav%3aFree%20Membership" id="ctl00_ucPrimaryNav_lnkTheBuzz_FreeMembership">Free Membership</a></li>
|
532
|
+
<li><a href="http://allrecipes.com/supportingmembership/info.aspx?prop24=PN_5.2.6_SN.SupportingMemb&e3=Primary%20Nav%3aSupporting%20Membership" id="ctl00_ucPrimaryNav_lnkTheBuzz_SupportingMembership">Supporting Membership</a></li>
|
533
|
+
<li><a href="https://secure.allrecipes.com/membership/signup/giftmembership.aspx?prop24=PN_5.2.7_SN.Gift-Membership&e3=Primary%20Nav%3aGift%20Membership" id="ctl00_ucPrimaryNav_lnkTheBuzz_GiftMembership">Gift Membership</a></li>
|
534
|
+
<li><a href="http://allrecipes.com/newsletters/changenewsletters.aspx?prop24=PN_5.2.8_SN.Newsletters&e3=PrimaryNav%3a%20Newsletters" id="ctl00_ucPrimaryNav_lnkTheBuzz_Newsletters" class="calltoaction_newsletters linkRequiresLogin">Newsletters</a></li>
|
535
|
+
</ul>
|
536
|
+
|
537
|
+
<ul class="ulHublistMiddle">
|
538
|
+
<li class="liHeading">Allrecipes Everywhere</li>
|
539
|
+
<li><a href="http://allrecipes.com/features/more/android.aspx?prop24=PN_5.3.1_SN.ARMobile" id="ctl00_ucPrimaryNav_lnkTheBuzz_AllrecipesMobile">Mobile Applications</a></li>
|
540
|
+
<li><a href="http://allrecipes.com/features/ecookbooks.aspx?prop24=PN_5.3.2_SN.Allrecipes-eBo" id="ctl00_ucPrimaryNav_lnkTheBuzz_eBooks">Allrecipes eBooks</a></li>
|
541
|
+
<li> </li>
|
542
|
+
<li class="liHeading">Keeping in Touch</li>
|
543
|
+
<li><a href="http://www.twitter.com/allrecipes" id="ctl00_ucPrimaryNav_lnkTheBuzz_Twitter" target="_blank" class="lnkOffSite" data-ar-prop24="PN_5.3.3_SN.Follow-Us">Follow Us <img class="imgTwitter" alt="Twitter logo" src="http://images.media-allrecipes.com/ar/topnav/twitter.png" /></a></li>
|
544
|
+
<li><a href="http://www.facebook.com/allrecipes" id="ctl00_ucPrimaryNav_lnkTheBuzz_Facebook" target="_blank" class="lnkOffSite" data-ar-prop24="PN_5.3.4_SN.Become-Fan">Become a Fan <img class="imgFB" alt="Facebook logo" src="http://images.media-allrecipes.com/ar/topnav/facebook.png" /></a></li>
|
545
|
+
<li><a href="http://allrecipes.com/help/default.aspx?prop24=PN_5.3.5_SN.Customer-Suppor" id="ctl00_ucPrimaryNav_lnkTheBuzz_CustomerSupport">Customer Support</a></li>
|
546
|
+
</ul>
|
547
|
+
</li>
|
548
|
+
</ul>
|
549
|
+
|
550
|
+
<div class="liClearthisshort"> </div>
|
551
|
+
|
552
|
+
</div>
|
553
|
+
<!-- end topnavdivWhite -->
|
554
|
+
|
555
|
+
</div>
|
556
|
+
<!-- end topnavdivContainer -->
|
557
|
+
</li>
|
558
|
+
|
559
|
+
<li class="liClearthis liBottomLeft"> </li>
|
560
|
+
<li class="liBottomMiddle" style="width:566px;"> </li>
|
561
|
+
<li class="liBottomRight"> </li>
|
562
|
+
</ul>
|
563
|
+
</li>
|
564
|
+
|
565
|
+
<!-- Tab 6 [VIDEO] -->
|
566
|
+
<li class="tabContainer tabSix"><a href="http://allrecipes.com/video/main.aspx?prop24=PN_6.0.0_TN.Video" id="ctl00_ucPrimaryNav_lnkVideoTab" class="trigger"><img src="http://images.media-allrecipes.com/ar/spacer.gif" class="tabImage" alt="video"/></a>
|
567
|
+
<ul class="topNavVideo sub_nav_menu" style="width:606px;">
|
568
|
+
|
569
|
+
<li class="liTopLeft"> </li>
|
570
|
+
<li class="liTopMiddle" style="width:566px;"> </li>
|
571
|
+
<li class="liTopRight"> </li>
|
572
|
+
<li class="liTopClear"> </li>
|
573
|
+
|
574
|
+
<li class="topnavliContainer" style="width:606px;"><!--[if IE 7]> <![endif]-->
|
575
|
+
|
576
|
+
<div class="topnavdivContainer">
|
577
|
+
<div class="topnavdivWhite"><!--[if IE 7]> <![endif]-->
|
578
|
+
|
579
|
+
<ul class="topNavFeaturedLeft">
|
580
|
+
<li class="liFeatured">
|
581
|
+
<span><ul><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/video/166/making-king-cake/?prop24=PN_7.1.1_NP.How-to-Make-Ki"><img data-ar-src="http://images.media-allrecipes.com/images/42172.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="How to Make King Cake" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/video/166/making-king-cake/?prop24=PN_7.1.1_NP.How-to-Make-Ki">How to Make King Cake</a></li><li class="liDescription">See the secret to making cake with a toy baked inside! <a>»</a></li></ul></li><li class="liDivider"> </li><li class="topnavmerch"><ul><li class="liImage"><a href="http://allrecipes.com/videos/16441/easy/main.aspx?prop24=PN_7.1.2_NP.Foolproof-Dinn"><img data-ar-src="http://images.media-allrecipes.com/images/42173.jpg" src="http://images.media-allrecipes.com/ar/spacer.gif" height="75" width="75" border="0" alt="Foolproof Dinners" class="imgTopNavFeat" /></a></li><li class="liTitle"><a href="http://allrecipes.com/videos/16441/easy/main.aspx?prop24=PN_7.1.2_NP.Foolproof-Dinn">Foolproof Dinners</a></li><li class="liDescription">See tips for easy recipes before you start cooking. <a>»</a></li></ul></li></ul></span>
|
582
|
+
</li>
|
583
|
+
<li class="liClearthisshort"> </li>
|
584
|
+
|
585
|
+
</ul>
|
586
|
+
|
587
|
+
<ul class="topNavListsRight" style="width:293px;">
|
588
|
+
<li class="liHublist" style="width:293px;">
|
589
|
+
|
590
|
+
<ul class="ulHublistLeft">
|
591
|
+
<li class="liHeading">How-to</li>
|
592
|
+
<li><a href="http://allrecipes.com/videos/16466/appetizer/main.aspx?prop24=PN_6.2.1_SN.Appetizers" id="ctl00_ucPrimaryNav_lnkVideos_Appetizers">Appetizers</a></li>
|
593
|
+
<li><a href="http://allrecipes.com/videos/16439/bbq/main.aspx?prop24=PN_6.2.2_SN.BBQ-Grilling" id="ctl00_ucPrimaryNav_lnkVideos_BBQGrilling">BBQ and Grilling</a></li>
|
594
|
+
<li><a href="http://allrecipes.com/videos/16462/breakfast-and-brunch/main.aspx?prop24=PN_6.2.3_SN.Breakfast" id="ctl00_ucPrimaryNav_lnkVideos_Breakfast">Breakfast</a></li>
|
595
|
+
<li><a href="http://allrecipes.com/videos/16455/chicken/main.aspx?prop24=PN_6.2.4_SN.Chicken" id="ctl00_ucPrimaryNav_lnkVideos_Chicken">Chicken</a></li>
|
596
|
+
<li><a href="http://allrecipes.com/videos/16468/dessert/main.aspx?prop24=PN_6.2.5_SN.Dessert" id="ctl00_ucPrimaryNav_lnkVideos_Dessert">Dessert</a></li>
|
597
|
+
<li><a href="http://allrecipes.com/videos/16464/dinner/main.aspx?prop24=PN_6.2.6_SN.Dinner" id="ctl00_ucPrimaryNav_lnkVideos_Dinner">Dinner</a></li>
|
598
|
+
<li><a href="http://allrecipes.com/videos/16474/main-dish/main.aspx?prop24=PN_6.2.7_SN.Main-Dish" id="ctl00_ucPrimaryNav_lnkVideos_MainDish">Main Dish</a></li>
|
599
|
+
<li><a href="http://allrecipes.com/videos/16457/meat/main.aspx?prop24=PN_6.2.8_SN.Meat" id="ctl00_ucPrimaryNav_lnkVideos_Meat">Meat</a></li>
|
600
|
+
</ul>
|
601
|
+
|
602
|
+
<ul class="ulHublistMiddle">
|
603
|
+
<li class="liHeading">Allrecipes Web Shows</li>
|
604
|
+
<li><a href="http://allrecipes.com/videos/16477/behind-the-recipe/main.aspx?prop24=PN_6.3.1_SN.Behind-the-Rec" id="ctl00_ucPrimaryNav_lnkVideos_BehindtheRecipe">Behind the Recipe</a></li>
|
605
|
+
<li><a href="http://allrecipes.com/videos/16478/food-wishes/main.aspx?prop24=PN_6.3.2_SN.Food-Wishes" id="ctl00_ucPrimaryNav_lnkVideos_FoodWishes">Food Wishes</a></li>
|
606
|
+
<li><a href="http://allrecipes.com/videos/16479/home-happy-hour/main.aspx?prop24=PN_6.3.3_SN.Home-Happy-Hour" id="ctl00_ucPrimaryNav_lnkVideos_HomeHappyHour">Home Happy Hour</a></li>
|
607
|
+
<li><a href="http://allrecipes.com/videos/16480/kitchen-gizmos--gadgets/main.aspx?prop24=PN_6.3.4_SN.Kitchen-Gizmos" id="ctl00_ucPrimaryNav_lnkVideos_KitchenGizmos">Kitchen Gizmos & Gadgets</a></li>
|
608
|
+
<li><a href="http://allrecipes.com/videos/16481/mastered-in-99-seconds/main.aspx?prop24=PN_6.3.5_SN.Mastered-in-99" id="ctl00_ucPrimaryNav_lnkVideos_Mastered">Mastered in 99 Seconds</a></li>
|
609
|
+
<li><a href="http://allrecipes.com/videos/16482/shortcut-cooking/main.aspx?prop24=PN_6.3.6_SN.Shortcut-Cooki" id="ctl00_ucPrimaryNav_lnkVideos_ShortcutCook">Shortcut Cooking</a></li>
|
610
|
+
<li><a href="http://allrecipes.com/videos/16483/whats-cooking/main.aspx?prop24=PN_6.3.7_SN.Whats-Cooking" id="ctl00_ucPrimaryNav_lnkVideos_WhatCook">What’s Cooking?</a></li>
|
611
|
+
</ul>
|
612
|
+
|
613
|
+
</li>
|
614
|
+
</ul>
|
615
|
+
|
616
|
+
|
617
|
+
<div class="liClearthisshort"></div>
|
618
|
+
|
619
|
+
<div class="divmoreRight">
|
620
|
+
|
621
|
+
<p><a href="http://allrecipes.com/video/main.aspx?prop24=PN_6.3.8_ES.More-Videos" id="ctl00_ucPrimaryNav_lnkVideos_MoreVideos">More Videos <span>»</span></a></p>
|
622
|
+
</div>
|
623
|
+
|
624
|
+
<div class="liClearthisshort"></div>
|
625
|
+
|
626
|
+
</div>
|
627
|
+
<!-- end topnavdivWhite -->
|
628
|
+
</div>
|
629
|
+
<!-- end topnavdivContainer -->
|
630
|
+
</li>
|
631
|
+
|
632
|
+
<li class="liClearthis liBottomLeft"> </li>
|
633
|
+
<li class="liBottomMiddle" style="width:566px;"> </li>
|
634
|
+
<li class="liBottomRight"> </li>
|
635
|
+
|
636
|
+
</ul>
|
637
|
+
</li>
|
638
|
+
|
639
|
+
<!-- Tab 7 [MY AR] -->
|
640
|
+
<li class="tabContainer tabSeven"><a href="http://allrecipes.com/my/default.aspx?prop24=PN_7.0.0_TN.Join-for-Free&e3=PrimaryNav%3aTab7" id="ctl00_ucPrimaryNav_lnkMyARTab" class="trigger linkRequiresLogin aJoinimg"><img src="http://images.media-allrecipes.com/ar/spacer.gif" id="ctl00_ucPrimaryNav_imgTab7" alt="join for FREE!" /></a>
|
641
|
+
<ul class="topNavMyAR sub_nav_menu" style="width:488px;">
|
642
|
+
<li class="liTopLeft"> </li>
|
643
|
+
<li class="liTopMiddle" style="width:448px;"> </li>
|
644
|
+
<li class="liTopRight"> </li>
|
645
|
+
<li class="liTopClear"> </li>
|
646
|
+
<li class="topnavliContainer" style="width:488px;"><!--[if lte IE 7]> <![endif]-->
|
647
|
+
<div class="topnavdivContainer">
|
648
|
+
<div class="topnavdivWhite"><!--[if lte IE 7]><span style='font-size:0'> </span><![endif]-->
|
649
|
+
|
650
|
+
|
651
|
+
<ul class="topNavFeaturedLeftAR">
|
652
|
+
<li>
|
653
|
+
<ul class="ulLeftFree">
|
654
|
+
<li class="liImageFree"><img src="http://images.media-allrecipes.com/ar/spacer.gif" id="ctl00_ucPrimaryNav_imgJoinFreeFeat" class="imgTopNavFeat" data-ar-src="http://images.media-allrecipes.com/ar/topnav/join-for-free-image_110x110.gif" alt="Join for Free" /> </li>
|
655
|
+
</ul>
|
656
|
+
<ul class="ulMiddleFree">
|
657
|
+
<li class="liMyARTitle">Do More — FREE!</li>
|
658
|
+
<li class="liBulletMyAR">SAVE favorites in your Recipe Box</li>
|
659
|
+
<li class="liBulletMyAR">CREATE and save shopping lists</li>
|
660
|
+
<li class="liBulletMyAR">GET cooking questions answered</li>
|
661
|
+
<li class="liBulletButton"><a href="http://allrecipes.com/my/default.aspx?prop24=PN_7.1.1_SN.Join-for-Free&e3=PrimaryNav%3aTab7%20Free" id="ctl00_ucPrimaryNav_lnkMyAR_JoinForFree_Anon" class="rstActionBtn linkShowsRegister"><span>Become a Member — FREE</span></a></li>
|
662
|
+
</ul>
|
663
|
+
|
664
|
+
</li>
|
665
|
+
</ul>
|
666
|
+
<ul class="topNavListsRight" style="width:124px;*width:130px;">
|
667
|
+
<li class="liHublist">
|
668
|
+
<ul class="ulHublistLeft Freeleft">
|
669
|
+
<li>Already a member?<br />
|
670
|
+
<a id="lnkMyAR_Login_Anon" class="linkShowsLogin linkRequirementNextStepIsSamePage" href="javascript:void(0);">Log in</a></li>
|
671
|
+
<li> </li>
|
672
|
+
<li>Want even more cooking power? Become a Supporting Member!<br />
|
673
|
+
<a href="http://allrecipes.com/supportingmembership/info.aspx?prop24=PN_7.2.2_SN.Find-out-how&e3=PrimaryNav%3aTab7%20Supporting" id="ctl00_ucPrimaryNav_lnkMyAR_FindOutHow_Anon">Join us today!</a></li>
|
674
|
+
<li></li>
|
675
|
+
</ul>
|
676
|
+
</li>
|
677
|
+
</ul>
|
678
|
+
|
679
|
+
|
680
|
+
<div class="liClearthisshort"></div>
|
681
|
+
<!--[if IE 7]> <![endif]-->
|
682
|
+
</div>
|
683
|
+
<!-- end topnavdivWhite -->
|
684
|
+
</div>
|
685
|
+
<!-- end topnavdivContainer -->
|
686
|
+
</li>
|
687
|
+
<li class="liClearthis liBottomLeft"> </li>
|
688
|
+
<li class="liBottomMiddle" style="width:448px;"> </li>
|
689
|
+
<li class="liBottomRight"> </li>
|
690
|
+
</ul>
|
691
|
+
</li>
|
692
|
+
</ul>
|
693
|
+
<div style="clear: left; height: 1px;"> </div>
|
694
|
+
</div>
|
695
|
+
<script type="text/javascript" language="javascript">
|
696
|
+
if (AR.PrimaryNav != null) { AR.PrimaryNav.OnInit(); }
|
697
|
+
</script>
|
698
|
+
|
699
|
+
|
700
|
+
</div>
|
701
|
+
</div>
|
702
|
+
|
703
|
+
<div id="content" class="clearfix">
|
704
|
+
<noscript>
|
705
|
+
<div id="ctl00_msgBlock">
|
706
|
+
<div class="message-box message-warning">This page requires that scripting be enabled in your browser to function properly. If you need help enabling scripting, please vist our <br/> <a href='http://allrecipes.com/help/questions/faq/technical.aspx' id='lnkFAQ'>technical FAQ page</a>.</div>
|
707
|
+
</div>
|
708
|
+
</noscript>
|
709
|
+
|
710
|
+
<div id="printdiv"></div>
|
711
|
+
<div id="main">
|
712
|
+
|
713
|
+
|
714
|
+
|
715
|
+
<div id="left" style="">
|
716
|
+
|
717
|
+
<ul class="topNavnewatAR_Vis">
|
718
|
+
<li class="liTopLeftNS"> </li>
|
719
|
+
<li class="liTopMiddleNS"> </li>
|
720
|
+
<li class="liTopRightNS"> </li>
|
721
|
+
<li class="liTopClear"> </li>
|
722
|
+
<li class="topnavliContainerNS">
|
723
|
+
<div class="topnavdivContainerNS">
|
724
|
+
<span><ul class="newatAR"><li class="topnavmerch navPromoTabOne"><ul><li><a href="http://allrecipes.com/video/545/spicy-kung-wow-chicken/detail.aspx?prop24=PN_1.1.1_TP.Spicy-Kung-Wow"><img class="imgFeature" src="http://brightcove.vo.llnwd.net/d20/unsecured/media/1033249144001/1033249144001_1430109813001_th-1398230350001.jpg?pubId=1033249144001" border="0" alt="Spicy Kung Wow Chicken" /></a><a href="http://allrecipes.com/video/545/spicy-kung-wow-chicken/detail.aspx?prop24=PN_1.1.1_TP.Spicy-Kung-Wow" class="teaserImageOverlay"><img src="http://images.media-allrecipes.com/ar/rightcol/play_button.png" border="0" alt="Spicy Kung Wow Chicken" /></a></li><li><a href="http://allrecipes.com/video/545/spicy-kung-wow-chicken/detail.aspx?prop24=PN_1.1.1_TP.Spicy-Kung-Wow">Spicy Kung Wow Chicken</a> See how to make a simple stir-fry based on spicy Kung Pao chicken. <a class="seeMoreNow">»</a></li></ul></li><li class="arDivider"><div> </div></li><li class="topnavmerch"><ul><li><a href="http://allrecipes.com/features/holidays/mardi-gras/?prop24=PN_1.1.2_NP.Mardi-Gras-Rec"><img class="imgFeature" src="http://images.media-allrecipes.com/images/42114.jpg" border="0" alt="Mardi Gras Recipes" /></a></li><li><a href="http://allrecipes.com/features/holidays/mardi-gras/?prop24=PN_1.1.2_NP.Mardi-Gras-Rec">Mardi Gras Recipes</a> Have a French Quarter feast on Tuesday, Feb. 21. <a class="seeMoreNow">»</a></li></ul></li><li class="arDivider"><div> </div></li><li class="topnavmerch"><ul><li><a href="http://allrecipes.com/features/healthy-cooking/?prop24=PN_1.1.3_TP.Top-Healthy-Re">Top Healthy Recipes</a> Keep flavor high, calories low. <a class="seeMoreNow">»</a></li></ul></li><li class="arDivider"><div> </div></li><li class="topnavmerch"><ul><li><a href="http://allrecipes.com/Features/Menu-Planner-1.aspx?lnkid=3698&prop24=PN_1.1.4_TP.Menu-Planner">Menu Planner</a> A year's worth of menus costs less than one take-out dinner. <a class="seeMoreNow">»</a></li></ul></li><li class="AR_Vislast"></li></ul></span>
|
725
|
+
</div>
|
726
|
+
</li>
|
727
|
+
<li class="liClearthis liBottomLeftNS"> </li>
|
728
|
+
<li class="liBottomMiddleNS"> </li>
|
729
|
+
<li class="liBottomRightNS"> </li>
|
730
|
+
</ul>
|
731
|
+
<div class="liClearthisshort"></div>
|
732
|
+
|
733
|
+
<ul class="leftnav-redesign">
|
734
|
+
|
735
|
+
|
736
|
+
<li class="leftnav-top-title">
|
737
|
+
<h4>More Recipes Like This</h4></li>
|
738
|
+
|
739
|
+
<li><a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl00_lnkLink" title="Jumbo Pineapple Yeast Rolls" href="/recipe/jumbo-pineapple-yeast-rolls/detail.aspx">Jumbo Pineapple Yeast Rolls</a></li>
|
740
|
+
|
741
|
+
<li><a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl01_lnkLink" title="Poppy Seed Sweet Rolls" href="/recipe/poppy-seed-sweet-rolls/detail.aspx">Poppy Seed Sweet Rolls</a></li>
|
742
|
+
|
743
|
+
<li><a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl02_lnkLink" title="Cornmeal Cinnamon Rolls" href="/recipe/cornmeal-cinnamon-rolls/detail.aspx">Cornmeal Cinnamon Rolls</a></li>
|
744
|
+
|
745
|
+
<li><a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl03_lnkLink" title="Peanut Butter Rolls" href="/recipe/peanut-butter-rolls/detail.aspx">Peanut Butter Rolls</a></li>
|
746
|
+
|
747
|
+
<li><a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl04_lnkLink" title="Grandma's Orange Rolls" href="/recipe/grandmas-orange-rolls/detail.aspx">Grandma's Orange Rolls</a></li>
|
748
|
+
|
749
|
+
|
750
|
+
<li id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl05_liMore" class="leftVidHome">
|
751
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_LinkNav_rptLink_ctl05_lnkMore" rel="nofollow" href="morerecipeslikethis.aspx">more »</a></li>
|
752
|
+
|
753
|
+
|
754
|
+
|
755
|
+
|
756
|
+
<li class="leftnav-middle-title">
|
757
|
+
<h4>Top Related Articles</h4></li>
|
758
|
+
|
759
|
+
<li>
|
760
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl00_lnkItem" href="/HowTo/Forming-and-Baking-Cinnamon-Rolls/Detail.aspx">Forming and Baking Cinnamon Rolls</a></li>
|
761
|
+
|
762
|
+
<li>
|
763
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl01_lnkItem" href="/HowTo/Dinner-Rolls/Detail.aspx">Dinner Rolls</a></li>
|
764
|
+
|
765
|
+
<li>
|
766
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl02_lnkItem" href="/HowTo/Melted-Chocolate-Is-a-Sweet-Garnish/Detail.aspx">Melted Chocolate Is a Sweet Garnish</a></li>
|
767
|
+
|
768
|
+
<li>
|
769
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl03_lnkItem" href="/HowTo/Home-Sweet-Home-Gingerbread-House/Detail.aspx">Home Sweet Home Gingerbread House</a></li>
|
770
|
+
|
771
|
+
<li>
|
772
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl04_lnkItem" href="/HowTo/Easter-Breads/Detail.aspx">Easter Breads</a></li>
|
773
|
+
|
774
|
+
<li>
|
775
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl05_lnkItem" href="/HowTo/Proofing-Yeast/Detail.aspx">Proofing Yeast</a></li>
|
776
|
+
|
777
|
+
<li>
|
778
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl06_lnkItem" href="/HowTo/Sourdough-Starters/Detail.aspx">Sourdough Starters</a></li>
|
779
|
+
|
780
|
+
<li>
|
781
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl07_lnkItem" href="/HowTo/Yeast-the-Basics/Detail.aspx">Yeast: The Basics</a></li>
|
782
|
+
|
783
|
+
<li>
|
784
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl08_lnkItem" href="/HowTo/Holiday-Baking-Mincemeat-Pies/Detail.aspx">Holiday Baking: Mincemeat Pies</a></li>
|
785
|
+
|
786
|
+
<li>
|
787
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedArticle_rptNav_ctl09_lnkItem" href="/HowTo/Kneading-Dough/Detail.aspx">Kneading Dough</a></li>
|
788
|
+
|
789
|
+
|
790
|
+
|
791
|
+
|
792
|
+
|
793
|
+
|
794
|
+
<li class="leftnav-middle-title">
|
795
|
+
<h4>Related Collections</h4></li>
|
796
|
+
|
797
|
+
<li>
|
798
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedCollections_rptNav_ctl00_lnkItem" href="/Recipes/Everyday-Cooking/Convenience-Cooking/Canned-Food-Recipes/Canned-Fruit/Canned-Pineapples/Main.aspx">Canned Pineapples</a></li>
|
799
|
+
|
800
|
+
<li>
|
801
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedCollections_rptNav_ctl01_lnkItem" href="/Recipes/Everyday-Cooking/Convenience-Cooking/Canned-Food-Recipes/Main.aspx">Canned Food Recipes</a></li>
|
802
|
+
|
803
|
+
<li>
|
804
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedCollections_rptNav_ctl02_lnkItem" href="/Recipes/Bread/Non-Bread-Machine/Buns-and-Rolls/Main.aspx">Non-Bread Machine Recipes - Buns and Rolls</a></li>
|
805
|
+
|
806
|
+
<li>
|
807
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedCollections_rptNav_ctl03_lnkItem" href="/Recipes/Bread/Non-Bread-Machine/Main.aspx">Non-Bread Machine Recipes</a></li>
|
808
|
+
|
809
|
+
<li>
|
810
|
+
<a id="ctl00_LeftColumnTopPlaceHolder_lftRelatedCollections_rptNav_ctl04_lnkItem" href="/Recipes/Bread/Rolls-and-Buns/Main.aspx">Rolls and Buns</a></li>
|
811
|
+
|
812
|
+
|
813
|
+
|
814
|
+
|
815
|
+
|
816
|
+
|
817
|
+
|
818
|
+
</ul>
|
819
|
+
|
820
|
+
</div>
|
821
|
+
<!-- end left -->
|
822
|
+
|
823
|
+
<div id="center">
|
824
|
+
|
825
|
+
<div id="content-wrapper" class="hRecipe">
|
826
|
+
<div id="msgClientPage" ></div>
|
827
|
+
|
828
|
+
|
829
|
+
|
830
|
+
<div id="recipemasthead" class="review hReview-aggregate">
|
831
|
+
<div id="msgLabel">
|
832
|
+
</div>
|
833
|
+
<div class="image-title-submit">
|
834
|
+
|
835
|
+
<div class="rec-imagediv">
|
836
|
+
<a href="/recipe/pineapple-sweet-rolls/photo-gallery.aspx" id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_lnkOpenCarousel" class="modal-link unsavedExempt open_modal-recipe-photos" rel="modal-recipe-photos" style=""><img id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_imgPhoto" class="rec-image photo" title="Pineapple Sweet Rolls Recipe" src="http://images.media-allrecipes.com/site/allrecipes/area/community/userphoto/small/789751.jpg" alt="Pineapple Sweet Rolls Recipe" height="140" width="140" border="0" /></a>
|
837
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_defaultPanel">
|
838
|
+
|
839
|
+
<a href="/My/Shared/Photos/UserPhotos.aspx?RecipeID=120802" id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_lnkOpenPhotoUpload" class="modal-link unsavedExempt open-photo-upload-link linkRequiresLogin linkRequirementNextStepIsSamePage" rel="modal-upload-a-photo" style="">
|
840
|
+
<span class="preview-add-photo-link" style="clear: both">Add a photo </span>
|
841
|
+
</a>
|
842
|
+
|
843
|
+
<input id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink" name="ctl00$CenterColumnPlaceHolder$recipe$photoStuff$PhotoSelector$uploadLink" type="hidden" value="" />
|
844
|
+
|
845
|
+
|
846
|
+
|
847
|
+
<div style="height:0px;width:0px;overflow:hidden">
|
848
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_ctl00_lyrAdd_divModal" class="modal modal-upload-a-photo">
|
849
|
+
<h1 class="modal-header">
|
850
|
+
Add a Photo</h1>
|
851
|
+
|
852
|
+
<div class="modal-content modal-dialog-v1">
|
853
|
+
<!--Error msg goes here -->
|
854
|
+
<div style="position: relative;">
|
855
|
+
|
856
|
+
<iframe style="width:98%" frameborder="0"></iframe>
|
857
|
+
<!-- <div class='rule'></div> -->
|
858
|
+
|
859
|
+
</div>
|
860
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_ctl00_lyrAdd_buttonContainerDiv" class="modal-textbuttons">
|
861
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_ctl00_lyrAdd_btnCancel" class="arlb_jq btn close-modal unsavedExempt photo-upload-close-button" onmouseover="window.status='Cancel'; return true;" onmouseout="window.status=''; return true;"><span>Cancel</span></a>
|
862
|
+
|
863
|
+
<a class="btn pref modal-upload-a-photo-continue-button unsavedExempt" href="#"><span class="modal-upload-a-photo-continue-button-text unsavedExempt"></span></a>
|
864
|
+
|
865
|
+
</div>
|
866
|
+
<div class="modal-buttons-clear">
|
867
|
+
</div>
|
868
|
+
</div>
|
869
|
+
|
870
|
+
<div class="modal-foot">
|
871
|
+
</div>
|
872
|
+
<div class="modal-close-button">
|
873
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector_uploadLink_ctl00_lyrAdd_btnClose" class="close-modal unsavedExempt photo-upload-close-button" onmouseover="window.status='Close'; return true;" onmouseout="window.status=''; return true;">
|
874
|
+
<!--#-->
|
875
|
+
</a>
|
876
|
+
</div>
|
877
|
+
</div>
|
878
|
+
</div>
|
879
|
+
|
880
|
+
<script>
|
881
|
+
|
882
|
+
OnPhotoUploadHandler_ctl00_CenterColumnPlaceHolder_recipe_photoStuff_PhotoSelector = AR.DetailPage.GetPhotoUploadHandler.apply(null,
|
883
|
+
[120802,1,"#ctl00_CenterColumnPlaceHolder_recipe_photoStuff_imgPhoto","#msgLabel"]);
|
884
|
+
|
885
|
+
</script>
|
886
|
+
|
887
|
+
</div>
|
888
|
+
|
889
|
+
|
890
|
+
|
891
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_divPhotoCount" class="recipe-photos">
|
892
|
+
1 of
|
893
|
+
<a href="/recipe/pineapple-sweet-rolls/photo-gallery.aspx" id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_lnkOpenCarousel2" class="modal-link unsavedExempt open_modal-recipe-photos" rel="modal-recipe-photos" style=""><span id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_spanPhotoCount" class="userphotocount">1</span><span id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_spanPhotoWord"> Photo</span></a>
|
894
|
+
</div>
|
895
|
+
</div>
|
896
|
+
|
897
|
+
|
898
|
+
<div style="height:0px;width:0px;overflow:hidden">
|
899
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_ucPhotoCarousel_lyrRecipePhotos_divModal" class="modal modal-recipe-photos">
|
900
|
+
<h1 class="modal-header">
|
901
|
+
Recipe Photos</h1>
|
902
|
+
|
903
|
+
<div class="modal-content modal-dialog-v1">
|
904
|
+
<!--Error msg goes here -->
|
905
|
+
<div style="position: relative;">
|
906
|
+
|
907
|
+
<div>
|
908
|
+
<!-- recipe photo -->
|
909
|
+
<img width="250" height="250" class="recipe-photo" id="imgPhotoImage" alt="" />
|
910
|
+
<div class="ad">
|
911
|
+
<iframe id="jqAdIframe" width="300" height="250" frameborder="0" scrolling="no"></iframe>
|
912
|
+
<div class="advertise_txt">
|
913
|
+
<a href="/features/more/aradvertisingsolutions.aspx">ADVERTISE WITH US</A>
|
914
|
+
</div>
|
915
|
+
<div class="ad-text">
|
916
|
+
ADVERTISEMENT
|
917
|
+
</div>
|
918
|
+
</div>
|
919
|
+
<div class="right-column">
|
920
|
+
<!-- TOM! -->
|
921
|
+
<!-- Add a div here so that long titles/information gets a scroll bar? -->
|
922
|
+
<div id="jqDescription" style="overflow: auto; width: 225px; margin-left: 7px; margin-right: 7px">
|
923
|
+
<p>
|
924
|
+
<b><span id="jqPhotoTitleSpan">
|
925
|
+
<!-- Title -->
|
926
|
+
</span></b>
|
927
|
+
</p>
|
928
|
+
<p>
|
929
|
+
<span id="jqPhotoCaptionSpan">
|
930
|
+
<!-- Caption -->
|
931
|
+
</span>
|
932
|
+
</p>
|
933
|
+
<p>
|
934
|
+
Posted: <span id="jqPhotoDateSpan">
|
935
|
+
<!-- Date -->
|
936
|
+
</span>
|
937
|
+
</p>
|
938
|
+
</div>
|
939
|
+
<div class="rounded-box" id="jqPhotographerBadgeDiv" style="position: absolute; bottom: 0px;">
|
940
|
+
<div class="top-left">
|
941
|
+
</div>
|
942
|
+
<div class="top-right">
|
943
|
+
</div>
|
944
|
+
<div class="bot-left">
|
945
|
+
</div>
|
946
|
+
<div class="bot-right">
|
947
|
+
</div>
|
948
|
+
<div class="photographer-info">
|
949
|
+
<img alt="" id="jqPhotographerThumbnailImage" width="50" height="50" class="userphoto" />
|
950
|
+
<p class="phototitle-modal" style="padding-top: 0" id="jqPhotographerLabel">
|
951
|
+
Photographer:</p>
|
952
|
+
<!-- all of the following lines cannot wrap, need to stay on one line -->
|
953
|
+
<p class="characterwrap photographer-modal">
|
954
|
+
<b style="white-space: nowrap;" id="jqPhotographerDisplayName"></b>
|
955
|
+
<span class="photo-level-modal" id="jqSupportingMemberIconSpan">
|
956
|
+
<a href="http://allrecipes.com/SupportingMembership/Info.aspx?ect=21" id="jqPhotographerStarLink"><img class="jqPhotographerStarSMIconImage" title="Supporting Member" src="http://images.media-allrecipes.com/global/profile/bling/supporting_icon_10x10.gif" alt="Supporting Member" height="10" width="10" border="0" /></a>
|
957
|
+
</span>
|
958
|
+
</p>
|
959
|
+
<p class="photo-links-modal" id="jqPhotoLinks">
|
960
|
+
<span id="jqPhotographerProfileSpan">Profile</span><a href="#" id="jqPhotographerProfileLink">Profile</a>
|
961
|
+
| <span id="jqPhotographerNoRecipesSpan">Recipes</span><a href="#" id="jqPhotographerRecipesLink">Recipes</a>
|
962
|
+
| <a href="#" id="jqPhotographerPhotosLink">Photos</a></p>
|
963
|
+
<p class="photo-level-modal" style="white-space: normal" id="jqCookingLevel">
|
964
|
+
<b>Cooking Level:</b> Intermediate</p>
|
965
|
+
<p class="home-town-modal" style="white-space: normal">
|
966
|
+
<b id="jqHomeTownLabel">Home Town:</b> <span id="jqPhotographerHomeTownCitySpan">City</span><a href="#"
|
967
|
+
id="jqPhotographerHomeTownCityLink">City</a>, <span id="jqPhotographerHomeTownStateSpan">
|
968
|
+
State</span><a href="#" id="jqPhotographerHomeTownStateLink">State</a>,
|
969
|
+
<span id="jqPhotographerHomeTownCountrySpan">Country</span><a href="#" id="jqPhotographerHomeTownCountryLink">
|
970
|
+
Country</a>
|
971
|
+
</p>
|
972
|
+
<p class="living-in-modal" style="white-space: normal" id="jqLivingIn">
|
973
|
+
<b>Living In:</b> <span id="jqPhotographerLivingInCitySpan">City</span><a href="#"
|
974
|
+
id="jqPhotographerLivingInCityLink">City</a>, <span id="jqPhotographerLivingInStateSpan">
|
975
|
+
State</span><a href="#" id="jqPhotographerLivingInStateLink">State</a>,
|
976
|
+
<span id="jqPhotographerLivingInCountrySpan">Country</span><a href="#" id="jqPhotographerLivingInCountryLink">
|
977
|
+
Country</a>
|
978
|
+
</p>
|
979
|
+
</div>
|
980
|
+
</div>
|
981
|
+
</div>
|
982
|
+
</div>
|
983
|
+
<div class="viewall" id="jqViewAllDiv">
|
984
|
+
| <a href="#" id="jqViewAllLink">View All »</a></div>
|
985
|
+
<div class="photo-scroll-buttons">
|
986
|
+
<a href="#" class="exempt left-arrow" id="lnkPreviousPhoto">left</a>
|
987
|
+
<div class="photo-count">
|
988
|
+
<span id="spnPageNumber">1</span> of <span id="spnPageCount">15</span></div>
|
989
|
+
<a href="#" class="exempt right-arrow" id="lnkNextPhoto">right</a>
|
990
|
+
</div>
|
991
|
+
<script>
|
992
|
+
$(document).ready(function() { AR.PhotoCarousel.Initialize(); });
|
993
|
+
</script>
|
994
|
+
|
995
|
+
</div>
|
996
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_ucPhotoCarousel_lyrRecipePhotos_buttonContainerDiv" class="modal-textbuttons">
|
997
|
+
|
998
|
+
|
999
|
+
|
1000
|
+
</div>
|
1001
|
+
<div class="modal-buttons-clear">
|
1002
|
+
</div>
|
1003
|
+
</div>
|
1004
|
+
|
1005
|
+
<div class="modal-foot">
|
1006
|
+
</div>
|
1007
|
+
<div class="modal-close-button">
|
1008
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_photoStuff_ucPhotoCarousel_lyrRecipePhotos_btnClose" class="close-modal unsavedExempt " onmouseover="window.status='Close'; return true;" onmouseout="window.status=''; return true;">
|
1009
|
+
<!--#-->
|
1010
|
+
</a>
|
1011
|
+
</div>
|
1012
|
+
</div>
|
1013
|
+
</div>
|
1014
|
+
|
1015
|
+
|
1016
|
+
<div class="rec-title_submitterdiv">
|
1017
|
+
<!-- SPONSOR IMAGE -->
|
1018
|
+
|
1019
|
+
<h1 id="itemTitle" class="plaincharacterwrap fn">
|
1020
|
+
<span class="itemreviewed">Pineapple Sweet Rolls</span>
|
1021
|
+
</h1>
|
1022
|
+
|
1023
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_divSubmitter" class="author-info rounded-box">
|
1024
|
+
<div class="top-left">
|
1025
|
+
</div>
|
1026
|
+
<div class="top-right">
|
1027
|
+
</div>
|
1028
|
+
<div class="bot-left">
|
1029
|
+
</div>
|
1030
|
+
<div class="bot-right">
|
1031
|
+
</div>
|
1032
|
+
<div>
|
1033
|
+
|
1034
|
+
|
1035
|
+
<div class="author-name">
|
1036
|
+
By:
|
1037
|
+
<span id="ctl00_CenterColumnPlaceHolder_recipe_lblSubmitter" class="author" rel="nofollow" id="ctl00_CenterColumnPlaceHolder_recipe_lblSubmitter" class="author" rel="nofollow"><span id="ctl00_CenterColumnPlaceHolder_recipe_lblSubmitter_lblUser0">Bernice Morris</span></span>
|
1038
|
+
</div>
|
1039
|
+
|
1040
|
+
<div class="plaincharacterwrap" style="clear:right;">
|
1041
|
+
"These sweet rolls are very similar to the kind found in bakeries...only better! Pineapple adds just the right amount of sweetness. My husband can't eat just one."</div>
|
1042
|
+
</div>
|
1043
|
+
</div>
|
1044
|
+
|
1045
|
+
<div class="rate-and-review">
|
1046
|
+
<p class="reviewP">
|
1047
|
+
<img id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_imgRating" class="rating" title="This Kitchen Approved Recipe has an average star rating of 4.0" src="http://images.media-allrecipes.com/images/15863.gif" alt="This Kitchen Approved Recipe has an average star rating of 4.0" height="22" width="121" border="0" />
|
1048
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_rateAndReviewLink_lnkReview" class="linkRequiresLogin linkRequirementNextStepIsSamePage" calltoaction="Recipe Detail:RateReview" href="javascript:__doPostBack('ctl00$CenterColumnPlaceHolder$recipe$ratingStuff$rateAndReviewLink$lnkReview','')">
|
1049
|
+
<span id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_rateAndReviewLink_lblRateAndReview">Rate/Review</span><img id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_rateAndReviewLink_imgOverallRating" src="http://images.media-allrecipes.com/ar/spacer.gif" height="12" width="70" border="0" style="display:none;" /></a>
|
1050
|
+
|
1051
|
+
|
1052
|
+
|
|
1053
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_lnkReadReviews" class="open_modal-recipe-reviews" rel="nofollow" href="/recipe/pineapple-sweet-rolls/reviews.aspx">Read Reviews</a>
|
1054
|
+
(<span class="count">2</span>)
|
1055
|
+
|
1056
|
+
|
1057
|
+
|
1058
|
+
</p>
|
1059
|
+
|
1060
|
+
|
1061
|
+
|
1062
|
+
<div class="savesCustom">
|
1063
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_lnkSavedCount" class="unsavedExempt userSaved">463 Saves</a>
|
1064
|
+
|
1065
|
+
</div>
|
1066
|
+
|
1067
|
+
<div class="socialDiv">
|
1068
|
+
|
1069
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_ratingStuff_ucBeSocial_divButtonContainer" class="fb-like" data-send="false" data-layout="button_count" data-width="1" data-show-faces="false" data-font="verdana" data-href="http://allrecipes.com/Recipe/Pineapple-Sweet-Rolls/Detail.aspx">
|
1070
|
+
</div>
|
1071
|
+
<div class="g-plusone" data-size="medium">
|
1072
|
+
</div>
|
1073
|
+
|
1074
|
+
|
1075
|
+
</div>
|
1076
|
+
|
1077
|
+
|
1078
|
+
</div>
|
1079
|
+
|
1080
|
+
|
1081
|
+
</div>
|
1082
|
+
</div>
|
1083
|
+
</div>
|
1084
|
+
<div style="clear: both">
|
1085
|
+
</div>
|
1086
|
+
<div class="recipe-details-content clearfix" style="margin-top:10px">
|
1087
|
+
<div class="rightcoltoolsdiv" style="margin-left: 10px;">
|
1088
|
+
<span id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_HeadScript1"></span>
|
1089
|
+
|
1090
|
+
<div class="recipe-module" style="float: none;">
|
1091
|
+
<div class="top">
|
1092
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ucToolBoxHeaderLink_link" class="unsavedExempt">
|
1093
|
+
|
1094
|
+
<h1 id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ucToolBoxHeaderLink_ctl00_h1ToolBoxTitle" class="kitchen">
|
1095
|
+
|
1096
|
+
</h1>
|
1097
|
+
|
1098
|
+
|
1099
|
+
</a>
|
1100
|
+
|
1101
|
+
<script type="text/javascript">
|
1102
|
+
$("#ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ucToolBoxHeaderLink_link").click(function(e) {
|
1103
|
+
AR.CreateAspxDialog("http://allrecipes.com/controls/dialogs/typesdlg.aspx?itemtype=recipe");
|
1104
|
+
e.preventDefault();
|
1105
|
+
});
|
1106
|
+
</script>
|
1107
|
+
</div>
|
1108
|
+
<div class="mid">
|
1109
|
+
<ul>
|
1110
|
+
|
1111
|
+
|
1112
|
+
<li class="bordbot recipe-add-to-box" id="liAddToRB">
|
1113
|
+
<a href="javascript:void(0);" class="linkRequiresLogin linkRequirementNextStepIsSamePage" id="addToRB">Add to Recipe Box</a>
|
1114
|
+
</li>
|
1115
|
+
<li class="bordbot recipe-box-form" style="display: none; height: 58px;">
|
1116
|
+
<select name="ctl00$CenterColumnPlaceHolder$recipe$ToolboxControl$ddlRecipeBoxFolder" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ddlRecipeBoxFolder" class="fold-list" style="width: 140px; margin-top: 4px; margin-bottom: 5px; font-size: 11px;">
|
1117
|
+
|
1118
|
+
</select>
|
1119
|
+
<div class="clear"></div>
|
1120
|
+
<a class="add-item-to-recipe-box btn_small" href="javascript:void(0);" style="float: right;"><span>Add</span></a>
|
1121
|
+
</li>
|
1122
|
+
|
1123
|
+
<li id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_liAddToSL" class="bordbot shopping-add-to-list">
|
1124
|
+
|
1125
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_addToSL" class="linkRequiresLogin linkRequirementNextStepIsSamePage add-item-to-default-shopping-list" style="position: relative; z-index: 2;">Add to Shopping List</a>
|
1126
|
+
</li>
|
1127
|
+
<li class="bordbot shopping-list-form" style="display: none; height: 58px;">
|
1128
|
+
<select name="ctl00$CenterColumnPlaceHolder$recipe$ToolboxControl$ddlShoppingLists" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ddlShoppingLists" class="shopping-list ddlSelectedShoppingListItem" style="z-index: 0; margin-bottom: 5px;">
|
1129
|
+
|
1130
|
+
</select>
|
1131
|
+
<div class="clear"></div>
|
1132
|
+
<a class="add-item-to-shopping-list btn_small" href="javascript:void(0);" style="float: right;"><span>Add</span></a>
|
1133
|
+
<a class="create-shopping-list-from-detail-page btn_small" href="javascript:void(0);" style="float: right; margin-right:4px;"><span>New List</span></a>
|
1134
|
+
</li>
|
1135
|
+
|
1136
|
+
|
1137
|
+
|
1138
|
+
|
1139
|
+
|
1140
|
+
<li class="bordbot recipe-print">
|
1141
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_lnkPrintMenu" href="../../Recipe-Tools/Print/Recipe.aspx?RecipeID=120802&origin=detail&&Servings=24">Print this Recipe</a>
|
1142
|
+
</li>
|
1143
|
+
|
1144
|
+
|
1145
|
+
<li class="recipe-share" id="liEmail">
|
1146
|
+
<a href="javascript:void(0);" class="RTSE"><img id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_imgShareIcon" Border="0" title="share/email" src="http://images.media-allrecipes.com/ar/myar/icons/icon-plus.gif" alt="share/email" height="16" width="16" border="0" /></a> <a href="javascript:void(0);" class="share-email">Share/Email</a>
|
1147
|
+
</li>
|
1148
|
+
<li class="share-email-form" style="display: none; height: 52px">
|
1149
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_stShareRecipe_share" class="ShareThis">
|
1150
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_stShareRecipe_lnkShareOuter" onclick="return fbs_click()" href="javascript:void(0);" target="_blank" style="border-width: 0px"><img id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_stShareRecipe_imgShareLogo" title="Share on Facebook" src="http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981" alt="Share on Facebook" border="0" style="vertical-align: middle;" /></a>
|
1151
|
+
<span class="ShareTxt" style="vertical-align: middle;"><a id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_stShareRecipe_lnkShareInner" onclick="return fbs_click()" rel="nofollow" href="javascript:void(0);" target="_blank">Share on Facebook</a></span>
|
1152
|
+
</div>
|
1153
|
+
<div class="clear"></div>
|
1154
|
+
<img src="http://images.media-allrecipes.com/ar/myar/icons/icon-email.gif" style="margin-left: -7px; margin-right: 5px;" /><a id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_lnkEmail" class="linkRequiresLogin linkRequirementNextStepIsSamePage RT-recipe-send-to-a-friend" data-recipe-detail-shared-item-type="Recipe" data-recipe-detail-merchdate="" data-recipe-detail-recipe-id="120802" href="http://allrecipes.com:80/Recipe/Pineapple-Sweet-Rolls/Detail.aspx?e3=Email%20Recipe">Email this recipe</a>
|
1155
|
+
</li>
|
1156
|
+
|
1157
|
+
|
1158
|
+
|
1159
|
+
<li class="SupportingMembership">
|
1160
|
+
<a href="../../SupportingMembership/Info.aspx?ect=21" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_A1"><img alt="Supporting Members" src="http://images.media-allrecipes.com/ar/myar/icons/Supporting_mem_trans.gif" /></a>
|
1161
|
+
<div class="clear"></div>
|
1162
|
+
</li>
|
1163
|
+
|
1164
|
+
<li id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_liAddToMenu" class="bordbot menu-add-to-box">
|
1165
|
+
|
1166
|
+
|
1167
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_createMenu" href="http://allrecipes.com/my/menus/planner.aspx?itemtype=1&id=120802" style="position: relative; z-index: 2;">Create Menu</a>
|
1168
|
+
</li><li id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_liAddToMenuForm" class="bordbot menu-box-form" style="display: none; height: 58px;">
|
1169
|
+
<select name="ctl00$CenterColumnPlaceHolder$recipe$ToolboxControl$ddlMenus" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_ddlMenus" class="menu-list ddlSelectedMenuItem" style="z-index: 0; margin-bottom: 5px; float: right;">
|
1170
|
+
|
1171
|
+
</select>
|
1172
|
+
<div class="clear"></div>
|
1173
|
+
<a class="btn_small menu-add-item-button" href="javascript:void(0);" style="float: right;"><span>Add</span></a>
|
1174
|
+
<a class="btn_small create-new-menu" href="javascript:void(0);" style="float: right; margin-right:4px;"><span>New Menu</span></a>
|
1175
|
+
</li>
|
1176
|
+
|
1177
|
+
<li class="bordbot recipe-customize">
|
1178
|
+
<div>
|
1179
|
+
<a href="../../My/RecipeBox/CustomRecipes/AddEdit.aspx?recipeID=120802&new=1&origin=detail" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_lnkCustomize" class="customize linkRequiresSupportingMembership linkRequirementNextStepIsSamePage featureHintCustomRecipe" style="position: relative; z-index: 2;">Customize Recipe</a>
|
1180
|
+
</div>
|
1181
|
+
</li>
|
1182
|
+
|
1183
|
+
|
1184
|
+
<li class="recipe-kitchenview">
|
1185
|
+
<div>
|
1186
|
+
<a href="/recipe/pineapple-sweet-rolls/kitchenview.aspx" id="ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_lnkKitchenView" class="linkPrefersSupportingMembership" style="position: relative; z-index: 2;">Kitchen-friendly View </a>
|
1187
|
+
</div>
|
1188
|
+
</li>
|
1189
|
+
|
1190
|
+
|
1191
|
+
</ul>
|
1192
|
+
</div>
|
1193
|
+
<div class="bot"></div>
|
1194
|
+
</div>
|
1195
|
+
|
1196
|
+
|
1197
|
+
|
1198
|
+
|
1199
|
+
<!-- new partner toolbox -->
|
1200
|
+
|
1201
|
+
|
1202
|
+
<!-- end new partner toolbox -->
|
1203
|
+
|
1204
|
+
<!-- Beverage Pairing Module -->
|
1205
|
+
|
1206
|
+
|
1207
|
+
<!-- Watch this Recipe Module -->
|
1208
|
+
|
1209
|
+
|
1210
|
+
</div>
|
1211
|
+
|
1212
|
+
<div class="times">
|
1213
|
+
<h5 id="ctl00_CenterColumnPlaceHolder_recipe_h5Prep">
|
1214
|
+
Prep Time:<br />
|
1215
|
+
<span class="prepTime"><span id="ctl00_CenterColumnPlaceHolder_recipe_spnPrepTime" class="value-title" title="PT35M"></span></span>
|
1216
|
+
<span>35 Min</span></h5><h5 id="ctl00_CenterColumnPlaceHolder_recipe_h5Cook" class="lastline">
|
1217
|
+
Cook Time:<br />
|
1218
|
+
<span class="cookTime"><span id="ctl00_CenterColumnPlaceHolder_recipe_spnCookTime" class="value-title" title="PT15M"></span></span>
|
1219
|
+
<span>15 Min</span></h5><h5 id="ctl00_CenterColumnPlaceHolder_recipe_h5Ready" class="lastline">
|
1220
|
+
Ready In:<br />
|
1221
|
+
<span class="totalTime"><span id="ctl00_CenterColumnPlaceHolder_recipe_spnTotalTime" class="value-title" title="PT50M"></span></span>
|
1222
|
+
<span>50 Min</span></h5>
|
1223
|
+
<p>
|
1224
|
+
</p>
|
1225
|
+
</div>
|
1226
|
+
|
1227
|
+
|
1228
|
+
|
1229
|
+
<div class="servings-form" style="width: 300px; height: 62px;">
|
1230
|
+
<h3>
|
1231
|
+
Servings <span id="ctl00_CenterColumnPlaceHolder_recipe_helpSpan" style="font-size: 11px;">(<a id="ctl00_CenterColumnPlaceHolder_recipe_lnkServingsHelp" href="http://allrecipes.com/help/recipeinfo/scaling.aspx" style="float: none; margin-left: 0px;">Help</a>)</span>
|
1232
|
+
</h3>
|
1233
|
+
<input name="ctl00$CenterColumnPlaceHolder$recipe$txtConversion" type="text" value="24" maxlength="5" id="ctl00_CenterColumnPlaceHolder_recipe_txtConversion" class="servings-amount" style="float: left;" /><input name="ctl00$CenterColumnPlaceHolder$recipe$hdnScaledServings" type="hidden" id="ctl00_CenterColumnPlaceHolder_recipe_hdnScaledServings" class="servings-hdnservings" value="24" /><input name="ctl00$CenterColumnPlaceHolder$recipe$hdnIsMetric" type="hidden" id="ctl00_CenterColumnPlaceHolder_recipe_hdnIsMetric" value="0" class="servings-hdnIsMetric" />
|
1234
|
+
<label>
|
1235
|
+
<span class="servings-rbUS"><input id="ctl00_CenterColumnPlaceHolder_recipe_rblUS" type="radio" name="ctl00$CenterColumnPlaceHolder$recipe$servings" value="rblUS" checked="checked" /></span>US</label>
|
1236
|
+
<label>
|
1237
|
+
<span class="servings-rbMetric"><input id="ctl00_CenterColumnPlaceHolder_recipe_rblMetric" type="radio" name="ctl00$CenterColumnPlaceHolder$recipe$servings" value="rblMetric" /></span>Metric</label>
|
1238
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_lnkCalculate" class="calculate-servings arlb_jq btn" onmouseover="window.status='Calculate'; return true;" onmouseout="window.status=''; return true;" href="javascript:__doPostBack('ctl00$CenterColumnPlaceHolder$recipe$lnkCalculate','')"><span>Calculate</span></a>
|
1239
|
+
|
1240
|
+
<p>
|
1241
|
+
|
1242
|
+
</p>
|
1243
|
+
|
1244
|
+
<span class="yieldform">Original Recipe Yield</span>
|
1245
|
+
<span class="yield yieldform">24 servings</span>
|
1246
|
+
<div style="clear: left;">
|
1247
|
+
</div>
|
1248
|
+
|
1249
|
+
</div>
|
1250
|
+
<div style="border-top: 1px #ccc dotted; width: 300px; margin-top: 20px;">
|
1251
|
+
</div>
|
1252
|
+
|
1253
|
+
|
1254
|
+
<div class="ingredients" style="margin-top: 10px;">
|
1255
|
+
<h3>
|
1256
|
+
Ingredients</h3>
|
1257
|
+
|
1258
|
+
<ul>
|
1259
|
+
|
1260
|
+
<li class="plaincharacterwrap ingredient">
|
1261
|
+
1 (.25 ounce) package active dry yeast</li>
|
1262
|
+
|
1263
|
+
<li class="plaincharacterwrap ingredient">
|
1264
|
+
1/4 cup warm water (105 degrees to 115 degrees)</li>
|
1265
|
+
|
1266
|
+
<li class="plaincharacterwrap ingredient">
|
1267
|
+
5 tablespoons sugar, divided</li>
|
1268
|
+
|
1269
|
+
<li class="plaincharacterwrap ingredient">
|
1270
|
+
1 cup warm milk (110 to 115 degrees F)</li>
|
1271
|
+
|
1272
|
+
<li class="plaincharacterwrap ingredient">
|
1273
|
+
5 cups all-purpose flour</li>
|
1274
|
+
|
1275
|
+
<li class="plaincharacterwrap ingredient">
|
1276
|
+
2 eggs, beaten</li>
|
1277
|
+
|
1278
|
+
<li class="plaincharacterwrap ingredient">
|
1279
|
+
1/2 cup butter or margarine, melted, divided</li>
|
1280
|
+
|
1281
|
+
<li class="plaincharacterwrap ingredient">
|
1282
|
+
1 teaspoon salt</li>
|
1283
|
+
|
1284
|
+
<li class="plaincharacterwrap ingredient">
|
1285
|
+
TOPPING:</li>
|
1286
|
+
|
1287
|
+
<li class="plaincharacterwrap ingredient">
|
1288
|
+
1 1/2 teaspoons cornstarch</li>
|
1289
|
+
|
1290
|
+
<li class="plaincharacterwrap ingredient">
|
1291
|
+
1 (8 ounce) can crushed pineapple, undrained</li>
|
1292
|
+
|
1293
|
+
<li class="plaincharacterwrap ingredient">
|
1294
|
+
GLAZE:</li>
|
1295
|
+
|
1296
|
+
<li class="plaincharacterwrap ingredient">
|
1297
|
+
1 1/2 cups confectioners' sugar</li>
|
1298
|
+
|
1299
|
+
<li class="plaincharacterwrap ingredient">
|
1300
|
+
1 teaspoon vanilla extract</li>
|
1301
|
+
|
1302
|
+
<li class="plaincharacterwrap ingredient">
|
1303
|
+
1 tablespoon milk</li>
|
1304
|
+
|
1305
|
+
</ul>
|
1306
|
+
|
1307
|
+
</div>
|
1308
|
+
<div style="border-top: 1px #ccc dotted; width: 300px; margin-top: 20px;">
|
1309
|
+
</div>
|
1310
|
+
<div class="directions" style="margin-top: 10px;">
|
1311
|
+
<h3>
|
1312
|
+
Directions</h3>
|
1313
|
+
|
1314
|
+
|
1315
|
+
<ol>
|
1316
|
+
|
1317
|
+
<li><span class="plaincharacterwrap break">
|
1318
|
+
In a mixing bowl, dissolve yeast in warm water. Add 1 tablespoon sugar; let stand for 5 minutes. Add milk and 1-1/2 cups flour. Beat until smooth. Cover and let rise in a warm place until doubled, about 45 minutes. Add the eggs, 1/4 cup butter, salt, remaining sugar and enough remaining flour to form a soft dough. Turn onto a floured surface; knead until smooth and elastic, about 6-8 minutes. Place in a greased bowl, turning once to grease top. Cover and let rise until doubled, about 45 minutes. Punch dough down. Turn onto a floured surface; divide in half. Roll each into a 12-in. x 8-in. rectangle. Brush with some of the remaining butter. Roll up, jelly-roll style, starting with a long side. Pinch seam to seal. Cut each into 12 slices. Place, cut side down, 2 in. apart on greased baking sheets. Brush with remaining butter. Cover and let rise until doubled, about 30 minutes.
|
1319
|
+
</span></li>
|
1320
|
+
|
1321
|
+
<li><span class="plaincharacterwrap break">
|
1322
|
+
Meanwhile, in a small saucepan, combine cornstarch and pineapple until blended. Bring to a boil over medium heat; cook and stir for 2 minutes. Remove from the heat. Place a teaspoonful of filling in the center of each roll. Bake at 425 degrees F for 12-16 minutes or until golden brown. Remove from pans to wire racks.
|
1323
|
+
</span></li>
|
1324
|
+
|
1325
|
+
<li><span class="plaincharacterwrap break">
|
1326
|
+
For glaze, combine sugar, vanilla and enough milk to achieve desired consistency. Drizzle over warm rolls.
|
1327
|
+
</span></li>
|
1328
|
+
|
1329
|
+
</ol>
|
1330
|
+
|
1331
|
+
</div>
|
1332
|
+
<div class="recipe-details-lg">
|
1333
|
+
|
1334
|
+
|
1335
|
+
|
1336
|
+
<a name="nutritionpanel" class="nutritionanchor"></a>
|
1337
|
+
|
1338
|
+
|
1339
|
+
|
1340
|
+
</div>
|
1341
|
+
</div>
|
1342
|
+
<div class="bottom-ad2">
|
1343
|
+
<div class="ad-div2">
|
1344
|
+
<div class="bottom-ad2"><div class="ad-div2"><script language="JavaScript" type="text/javascript">document.write('<scr' + 'ipt language="JavaScript" src="http://ad.doubleclick.net/adj/ar.recipes/dessert;' + AudienceScience.SegmentValues + 'dcopt=ist;r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=' + AudienceScience.EncodeRSI(AudienceScience.SegmentValues) + '||R120802|1|||0|u|;tile=1;sz=468x60;pos=1;ord=' + aradsord + '?" type="text/javascript"><\/script>');</script><noscript><a href="http://ad.doubleclick.net/jump/ar.recipes/dessert;r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=||R120802|1|||0|u|;tile=1;sz=468x60;pos=1;ord=624055986?" target="_blank"><img src="http://ad.doubleclick.net/ad/ar.recipes/dessert;r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;tile=1;sz=468x60;pos=1;ord=624055986?" width="468" height="60" border="0" alt='' /></a></noscript></div><div id="ctl00_CenterColumnPlaceHolder_recipe_advertiseWithUs" class="advertise_txt" rel="nofollow" style="float: left;">
|
1345
|
+
<a href="/features/more/aradvertisingsolutions.aspx">ADVERTISE WITH US</A>
|
1346
|
+
</div><div id="ctl00_CenterColumnPlaceHolder_recipe_adText" class="ad-text">
|
1347
|
+
ADVERTISEMENT
|
1348
|
+
</div></div>
|
1349
|
+
</div>
|
1350
|
+
</div>
|
1351
|
+
|
1352
|
+
|
1353
|
+
<div class="contenttabs detailpagemidpagetabs">
|
1354
|
+
<a href="#" class="review-link on">reviews</a>
|
1355
|
+
<a href="#" class="custom-link">custom versions</a>
|
1356
|
+
<a href="#" class="menus-link">menus</a>
|
1357
|
+
<a href="#" class="saved-link">people who saved this</a>
|
1358
|
+
<div style="clear:left;height:1px"> </div>
|
1359
|
+
</div>
|
1360
|
+
<p class="viewall">
|
1361
|
+
|
1362
|
+
|
1363
|
+
</p>
|
1364
|
+
|
1365
|
+
<div class="review-block">
|
1366
|
+
|
1367
|
+
<div class="reviews reviews_compact plaincharacterwrap">
|
1368
|
+
|
1369
|
+
<a name="Review3512528" id="Review3512528"></a>
|
1370
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
1371
|
+
<tr>
|
1372
|
+
<td class="lfttd">
|
1373
|
+
<div class="stars">
|
1374
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_lnkAnchor" rel="nofollow" name="3512528"></a><img src="http://images.media-allrecipes.com/images/15833.gif" id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_imgStars" border="0" width="82" height="16" alt="The reviewer gave this recipe 4 stars. This recipe averages a 4.0 star rating." title="The reviewer gave this recipe 4 stars. This recipe averages a 4.0 star rating." />
|
1375
|
+
</div>
|
1376
|
+
<div class="recimage">
|
1377
|
+
|
1378
|
+
</div>
|
1379
|
+
</td>
|
1380
|
+
<td class="midtd">
|
1381
|
+
<div class="recreview">
|
1382
|
+
|
1383
|
+
|
1384
|
+
<div class="review">
|
1385
|
+
Reviewed on
|
1386
|
+
Nov. 2, 2011
|
1387
|
+
by
|
1388
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_lolReviewerWithLink" rel="nofollow" href="http://allrecipes.com/cook/18606036/profile.aspx">SugarKitty</a>
|
1389
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_slAdd" class="listItemReview"><img id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_imgListIcon" class="open_modal-recipe-reviews" class="listItemReviewImage" Border="0" title="view full review" src="http://images.media-allrecipes.com/ar/myar/icons/icon-plus.gif" alt="view full review" height="16" width="16" border="0" /></a>
|
1390
|
+
</div>
|
1391
|
+
|
1392
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_divReviewText" class="review2" style="padding-bottom:1px;width:370px;">
|
1393
|
+
|
1394
|
+
|
1395
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_rlvReviews_rptReviewList_ctl01_ReviewItem_divReviewMini" class="listItemReviewMini">
|
1396
|
+
yummy, i've made a few times - i like them a lot.
|
1397
|
+
</div>
|
1398
|
+
</div>
|
1399
|
+
</div>
|
1400
|
+
</td>
|
1401
|
+
|
1402
|
+
</tr>
|
1403
|
+
</table>
|
1404
|
+
|
1405
|
+
|
1406
|
+
|
1407
|
+
<br />
|
1408
|
+
|
1409
|
+
</div>
|
1410
|
+
|
1411
|
+
|
1412
|
+
</div>
|
1413
|
+
|
1414
|
+
|
1415
|
+
<div class="custom-block" style="display:none;">
|
1416
|
+
|
1417
|
+
Uh-oh, looks like no one has created a custom version of this recipe yet. Be the first to do it - make changes to this recipe <a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_customVersionsList_lnkNow" href="http://allrecipes.com/my/recipebox/customrecipes/addedit.aspx?recipeid=120802&new=1">now</a>!
|
1418
|
+
|
1419
|
+
</div>
|
1420
|
+
|
1421
|
+
|
1422
|
+
<div class="modal customVersion">
|
1423
|
+
<div class="custom">
|
1424
|
+
<div class="author-info rounded-box blinged authorlistview" id="container" style="clear:left; min-height:60px;">
|
1425
|
+
<div class="top-left">
|
1426
|
+
</div>
|
1427
|
+
<div class="top-right">
|
1428
|
+
</div>
|
1429
|
+
<div class="bot-left">
|
1430
|
+
</div>
|
1431
|
+
<div class="bot-right">
|
1432
|
+
</div>
|
1433
|
+
<img alt="profile image" style="border: 0;" height="50" width="50" id="profileImage" class="author-photo"/>
|
1434
|
+
<div class="customrec-right-wrap">
|
1435
|
+
<div id="customrec-tags">
|
1436
|
+
<div class="customrec-title plaincharacterwrap">
|
1437
|
+
<a id="title"></a>
|
1438
|
+
</div>
|
1439
|
+
<div class="author-name">
|
1440
|
+
By:
|
1441
|
+
<a href="" id="profileURL"></a>
|
1442
|
+
<span id="submitterName"></span> <span id="iconSpan"><a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_customVersionsList_customVersion_icon_lnkPitch" href="../../SupportingMembership/Info.aspx?ect=21" style="border-bottom:0px; text-decoration:none;"><img id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_customVersionsList_customVersion_icon_imgBling" class="starImage" title="Supporting Member (Click to learn more about Supporting Membership)" src="http://images.media-allrecipes.com/ar/icons/sm/supporting_icon_10x10.png" alt="Supporting Member (Click to learn more about Supporting Membership)" border="0" style="" /></a>
|
1443
|
+
</span>
|
1444
|
+
</div>
|
1445
|
+
<div>
|
1446
|
+
<span id="description"></span>
|
1447
|
+
</div>
|
1448
|
+
<div class="customchanges">
|
1449
|
+
<strong>What’s Changed:</strong> <span id="whatChanged" class="customWhatChanged"></span>
|
1450
|
+
</div>
|
1451
|
+
</div>
|
1452
|
+
</div>
|
1453
|
+
</div>
|
1454
|
+
</div>
|
1455
|
+
</div>
|
1456
|
+
|
1457
|
+
|
1458
|
+
|
1459
|
+
|
1460
|
+
<div class="menus-block" style="display:none;">
|
1461
|
+
|
1462
|
+
Sorry, there are no related menus here yet. To build your own menu using this recipe, click <b>Add to Menu</b>.
|
1463
|
+
|
1464
|
+
</div>
|
1465
|
+
|
1466
|
+
<div class="saved-block" style="display:none;">
|
1467
|
+
<p></p>
|
1468
|
+
|
1469
|
+
</div>
|
1470
|
+
|
1471
|
+
|
1472
|
+
|
1473
|
+
|
1474
|
+
<div class="modal customVersion">
|
1475
|
+
<div class="custom">
|
1476
|
+
<div class="author-info rounded-box blinged authorlistview" id="container" style="clear:left; min-height:60px;">
|
1477
|
+
<div class="top-left">
|
1478
|
+
</div>
|
1479
|
+
<div class="top-right">
|
1480
|
+
</div>
|
1481
|
+
<div class="bot-left">
|
1482
|
+
</div>
|
1483
|
+
<div class="bot-right">
|
1484
|
+
</div>
|
1485
|
+
<img alt="profile image" style="border: 0;" height="50" width="50" id="profileImage" class="author-photo"/>
|
1486
|
+
<div class="customrec-right-wrap">
|
1487
|
+
<div id="customrec-tags">
|
1488
|
+
<div class="customrec-title plaincharacterwrap">
|
1489
|
+
<a id="title"></a>
|
1490
|
+
</div>
|
1491
|
+
<div class="author-name">
|
1492
|
+
By:
|
1493
|
+
<a href="" id="profileURL"></a>
|
1494
|
+
<span id="submitterName"></span> <span id="iconSpan"><a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_customVersion_icon_lnkPitch" href="../../SupportingMembership/Info.aspx?ect=21" style="border-bottom:0px; text-decoration:none;"><img id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_customVersion_icon_imgBling" class="starImage" title="Supporting Member (Click to learn more about Supporting Membership)" src="http://images.media-allrecipes.com/ar/icons/sm/supporting_icon_10x10.png" alt="Supporting Member (Click to learn more about Supporting Membership)" border="0" style="" /></a>
|
1495
|
+
</span>
|
1496
|
+
</div>
|
1497
|
+
<div>
|
1498
|
+
<span id="description"></span>
|
1499
|
+
</div>
|
1500
|
+
<div class="customchanges">
|
1501
|
+
<strong>What’s Changed:</strong> <span id="whatChanged" class="customWhatChanged"></span>
|
1502
|
+
</div>
|
1503
|
+
</div>
|
1504
|
+
</div>
|
1505
|
+
</div>
|
1506
|
+
</div>
|
1507
|
+
</div>
|
1508
|
+
|
1509
|
+
|
1510
|
+
|
1511
|
+
<div class="modal menu">
|
1512
|
+
<div class="menu custom">
|
1513
|
+
<div class="menuListRow">
|
1514
|
+
<div class="menuListImage">
|
1515
|
+
<div class="orangebar-50x50"></div>
|
1516
|
+
<a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_menus_lnkImage" class="image-link">
|
1517
|
+
<img id="previewImage" />
|
1518
|
+
</a>
|
1519
|
+
</div>
|
1520
|
+
<div class="menuListRight">
|
1521
|
+
<a id="title" class="titleLink" href=""></a> <img id="isSample" class="sample" width="38" height="13" alt="Sample" src="http://images.media-allrecipes.com/ar/rightcol/MpRe/sample_rail.png" />
|
1522
|
+
<div class="menuListContent">
|
1523
|
+
<div class="menuListDescription">
|
1524
|
+
<a id="creatorLink"></a><span id="creatorName"></span>: <span id="description"></span>
|
1525
|
+
</div>
|
1526
|
+
<div class="menuListLeft">
|
1527
|
+
<ul class="menubitsList">
|
1528
|
+
<li class="meals first">Meals</li>
|
1529
|
+
<li id="mealCount" class="number first"></li>
|
1530
|
+
</ul>
|
1531
|
+
<div class="clearDiv"></div>
|
1532
|
+
<ul class="menubitsList">
|
1533
|
+
<li class="recipes">Recipes</li>
|
1534
|
+
<li id="recipeCount" class="number"></li>
|
1535
|
+
</ul>
|
1536
|
+
<div class="clearDiv"></div>
|
1537
|
+
<ul class="tagList">
|
1538
|
+
<li class="tagsImage">Tags <img alt="Menu Tags" src="http://images.media-allrecipes.com/ar/myar/menuplanner/canvas/tags.png" /></li>
|
1539
|
+
<li id="tags" class="menuTags"></li>
|
1540
|
+
</ul>
|
1541
|
+
</div>
|
1542
|
+
</div>
|
1543
|
+
</div>
|
1544
|
+
</div>
|
1545
|
+
|
1546
|
+
</div>
|
1547
|
+
</div>
|
1548
|
+
|
1549
|
+
<div class="modal userWhoSaved">
|
1550
|
+
<div class="saved custom">
|
1551
|
+
<div class="author-info rounded-box blinged authorlistview" id="container" style="clear:left; min-height:60px;">
|
1552
|
+
<div class="top-left">
|
1553
|
+
</div>
|
1554
|
+
<div class="top-right">
|
1555
|
+
</div>
|
1556
|
+
<div class="bot-left">
|
1557
|
+
</div>
|
1558
|
+
<div class="bot-right">
|
1559
|
+
</div>
|
1560
|
+
<img alt="profile image" id="profileImage" height="50" width="50" style="border: 0" class="author-photo" />
|
1561
|
+
<div>
|
1562
|
+
<div class="customrec-title">
|
1563
|
+
<a href="" id="profileURL"></a><span id="submitterName"></span>
|
1564
|
+
<span id="iconSpan"><a id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_userWhoSaved_icon_lnkPitch" href="../../SupportingMembership/Info.aspx?ect=21" style="border-bottom:0px; text-decoration:none;"><img id="ctl00_CenterColumnPlaceHolder_recipe_dprListView_userWhoSaved_icon_imgBling" class="starImage" title="Supporting Member (Click to learn more about Supporting Membership)" src="http://images.media-allrecipes.com/ar/icons/sm/supporting_icon_10x10.png" alt="Supporting Member (Click to learn more about Supporting Membership)" border="0" style="" /></a></span>
|
1565
|
+
<span id="savedLocation"> | <a id="region"></a>, <a id="country"></a></span>
|
1566
|
+
<br />
|
1567
|
+
Saved on <span id="savedOn"></span>
|
1568
|
+
</div>
|
1569
|
+
<div>
|
1570
|
+
<a id="rb">Recipe Box</a><span id="rbText">Recipe Box</span> | <a id="prof">Profile</a><span
|
1571
|
+
id="profText">Profile</span><span id="spanReviewContainer"> | <a id="review">Reviews</a><span id="revText">Reviews</span></span>
|
1572
|
+
</div>
|
1573
|
+
</div>
|
1574
|
+
</div>
|
1575
|
+
|
1576
|
+
</div>
|
1577
|
+
</div>
|
1578
|
+
|
1579
|
+
|
1580
|
+
|
1581
|
+
|
1582
|
+
<div style="height:0px;width:0px;overflow:hidden">
|
1583
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_reviewCarousel_lyrRecipePhotos_divModal" class="modal modal-recipe-reviews">
|
1584
|
+
<h1 class="modal-header">
|
1585
|
+
Recipe Reviews</h1>
|
1586
|
+
|
1587
|
+
<div class="modal-content modal-dialog-v1">
|
1588
|
+
<!--Error msg goes here -->
|
1589
|
+
<div style="position: relative;">
|
1590
|
+
|
1591
|
+
<div>
|
1592
|
+
<!-- recipe photo -->
|
1593
|
+
<div class="review-body">
|
1594
|
+
<div id="jqReviewHelpfulMessage" class="message-box message-success">
|
1595
|
+
Thank you for your valuable feedback to other Allrecipes home cooks. Your vote will be added in a few hours.
|
1596
|
+
</div>
|
1597
|
+
<div class="review-title"><span id="jqReviewTitleSpan">Title</span></div>
|
1598
|
+
<div class="review-rating-info">
|
1599
|
+
<img id="jqReviewRating" />
|
1600
|
+
Reviewed on
|
1601
|
+
<span id="jqReviewDate"></span>
|
1602
|
+
by
|
1603
|
+
<span id="jqReviewerProfileSpan"></span><a href="#" id="jqReviewerProfileLink"></a>
|
1604
|
+
</div>
|
1605
|
+
<div class="review-text"><span id="jqReviewText"></span></div>
|
1606
|
+
<div id="jqReviewHelpfulContainer">
|
1607
|
+
<div>Was this review helpful? [ <a href="javascript:void(0)" id="jqReviewHelpfulLink">YES</a> ]</div>
|
1608
|
+
<span id="jqReviewHelpfulCount"></span>
|
1609
|
+
users found this review helpful
|
1610
|
+
</div>
|
1611
|
+
</div>
|
1612
|
+
<div class="ad">
|
1613
|
+
<iframe id="jqAdIframeReview" width="300" height="250" frameborder="0" scrolling="no"></iframe>
|
1614
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_reviewCarousel_lyrRecipePhotos_ctl00_AdvertiseWithUsLink1" class="advertise_txt">
|
1615
|
+
<a href="/features/more/aradvertisingsolutions.aspx">ADVERTISE WITH US</A>
|
1616
|
+
</div>
|
1617
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_reviewCarousel_lyrRecipePhotos_ctl00_AdText1" class="ad-text">
|
1618
|
+
ADVERTISEMENT
|
1619
|
+
</div>
|
1620
|
+
</div>
|
1621
|
+
</div>
|
1622
|
+
<div id="review-loading" style="display:none"></div>
|
1623
|
+
<div class="viewall" id="jqViewAllDivReview">
|
1624
|
+
| <a href="reviews.aspx" id="jqViewAllLinkReview">View All »</a></div>
|
1625
|
+
<div class="review-scroll-buttons">
|
1626
|
+
<a href="#" class="exempt left-arrow" id="lnkPreviousReview">left</a>
|
1627
|
+
<div class="review-count">
|
1628
|
+
<span id="spnPageNumberReview">1</span> of <span id="spnPageCountReview">15</span></div>
|
1629
|
+
<a href="#" class="exempt right-arrow" id="lnkNextReview">right</a>
|
1630
|
+
</div>
|
1631
|
+
<script>
|
1632
|
+
$(document).ready(function () { AR.ReviewCarousel.Initialize(); });
|
1633
|
+
</script>
|
1634
|
+
|
1635
|
+
</div>
|
1636
|
+
<div id="ctl00_CenterColumnPlaceHolder_recipe_reviewCarousel_lyrRecipePhotos_buttonContainerDiv" class="modal-textbuttons">
|
1637
|
+
|
1638
|
+
|
1639
|
+
|
1640
|
+
</div>
|
1641
|
+
<div class="modal-buttons-clear">
|
1642
|
+
</div>
|
1643
|
+
</div>
|
1644
|
+
|
1645
|
+
<div class="modal-foot">
|
1646
|
+
</div>
|
1647
|
+
<div class="modal-close-button">
|
1648
|
+
<a href="javascript:void(0);" id="ctl00_CenterColumnPlaceHolder_recipe_reviewCarousel_lyrRecipePhotos_btnClose" class="close-modal unsavedExempt " onmouseover="window.status='Close'; return true;" onmouseout="window.status=''; return true;">
|
1649
|
+
<!--#-->
|
1650
|
+
</a>
|
1651
|
+
</div>
|
1652
|
+
</div>
|
1653
|
+
</div>
|
1654
|
+
|
1655
|
+
|
1656
|
+
|
1657
|
+
|
1658
|
+
<script type="text/javascript" language="javascript">
|
1659
|
+
$(document).ready(
|
1660
|
+
function() {
|
1661
|
+
var isMetric = ($('#ctl00_CenterColumnPlaceHolder_recipe_hdnIsMetric').val() == '1');
|
1662
|
+
$('#ctl00_CenterColumnPlaceHolder_recipe_rblMetric').attr('checked', isMetric);
|
1663
|
+
$('#ctl00_CenterColumnPlaceHolder_recipe_rblUS').attr('checked', !isMetric);
|
1664
|
+
});
|
1665
|
+
</script>
|
1666
|
+
|
1667
|
+
</div>
|
1668
|
+
|
1669
|
+
</div>
|
1670
|
+
<!-- end center -->
|
1671
|
+
<!-- added for guil bug in hubs -->
|
1672
|
+
<div style="clear: both; font-size: 1px;">
|
1673
|
+
</div>
|
1674
|
+
</div>
|
1675
|
+
<!-- end main -->
|
1676
|
+
|
1677
|
+
<div id="farright">
|
1678
|
+
|
1679
|
+
|
1680
|
+
<div id="divMyARTools">
|
1681
|
+
<div class="rb-grey">
|
1682
|
+
<div class="mytoolsTabs">
|
1683
|
+
<div class="recipeboxTab on">
|
1684
|
+
<a href="#" id="tabRecipe" class="myar-tab">Recipe Box</a>
|
1685
|
+
</div>
|
1686
|
+
<div class="menusTab">
|
1687
|
+
<a href="#" id="tabMenu" class="myar-tab">Menus</a>
|
1688
|
+
</div>
|
1689
|
+
<div class="shoplistTab">
|
1690
|
+
<a href="#" id="tabShoppingList" class="myar-tab">Shopping Lists</a>
|
1691
|
+
</div>
|
1692
|
+
<hr class="clear-both" />
|
1693
|
+
</div>
|
1694
|
+
<div id="myarRecipe" class="myar-wrap" style="display: block;">
|
1695
|
+
|
1696
|
+
<div id="divAnonymous" class="rb-wrap">
|
1697
|
+
<div class="upsellDiv">
|
1698
|
+
<p class="pitchP">
|
1699
|
+
<img id="ctl00_ucRecipeBoxModule_previewRecipes_anonDefaultImage" title="recipe box" src="http://images.media-allrecipes.com/ar/rightcol/MpRe/recipebox_icon.png" alt="recipe box" border="0" />
|
1700
|
+
<strong><span id="ctl00_ucRecipeBoxModule_previewRecipes_anonPitchHeaderText">See something worth saving?</span></strong>
|
1701
|
+
<br />
|
1702
|
+
<span id="ctl00_ucRecipeBoxModule_previewRecipes_anonPitchText" style="font-weight: normal;">Register now to save all your favorites in your Recipe Box.</span>
|
1703
|
+
|
1704
|
+
</p>
|
1705
|
+
<p class="buttonP">
|
1706
|
+
<a href="../../Controls/RecipeBox/#" id="ctl00_ucRecipeBoxModule_previewRecipes_anonPitchButton" class="rstActionBtn linkRequirementNextStepIsSamePage linkRequiresLogin">
|
1707
|
+
<span id="ctl00_ucRecipeBoxModule_previewRecipes_anonSignUpButtonText">Sign up for FREE Now!</span>
|
1708
|
+
</a>
|
1709
|
+
</p>
|
1710
|
+
</div>
|
1711
|
+
</div>
|
1712
|
+
|
1713
|
+
|
1714
|
+
|
1715
|
+
|
1716
|
+
|
1717
|
+
|
1718
|
+
</div>
|
1719
|
+
<div id="myarMenu" class="myar-wrap" style="display: none;" >
|
1720
|
+
|
1721
|
+
<div id="divProductPitch" class="rb-wrap">
|
1722
|
+
<div class="upsellDiv">
|
1723
|
+
<p class="pitchP">
|
1724
|
+
<img id="ctl00_ucRecipeBoxModule_previewMenus_productPitchDefaultImage" src="http://images.media-allrecipes.com/ar/rightcol/MpRe/menu_icon.png" border="0" />
|
1725
|
+
<strong><span id="ctl00_ucRecipeBoxModule_previewMenus_productPitchHeaderText">Make Mealtime Easy</span></strong>
|
1726
|
+
<br />
|
1727
|
+
<span id="ctl00_ucRecipeBoxModule_previewMenus_productPitchContentText" style="font-weight: normal;">Save our menus, tweak them, or create your own.</span>
|
1728
|
+
</p>
|
1729
|
+
<p class="dottedBottomP">
|
1730
|
+
<a href="http://allrecipes.com/my/menus/planner.aspx" id="ctl00_ucRecipeBoxModule_previewMenus_productPitchContentButton" class="rstActionBtn rstActionBtnJustifyLeft linkPrefersLogin">
|
1731
|
+
<span id="ctl00_ucRecipeBoxModule_previewMenus_productPitchContentButtonText">Try Menu Planner</span>
|
1732
|
+
</a>
|
1733
|
+
</p>
|
1734
|
+
<p class="ctaP">
|
1735
|
+
Collect and create menus!
|
1736
|
+
<a href="http://allrecipes.com/Recipe/Pineapple-Sweet-Rolls/Detail.aspx" id="ctl00_ucRecipeBoxModule_previewMenus_productPitchFooterLink" class="linkRequirementNextStepIsSamePage linkRequiresSupportingMembership featureHintARToolsMenusTab">
|
1737
|
+
<span id="ctl00_ucRecipeBoxModule_previewMenus_productPitchFooterLinkText">Start Today</span>
|
1738
|
+
</a>
|
1739
|
+
</p>
|
1740
|
+
</div>
|
1741
|
+
</div>
|
1742
|
+
|
1743
|
+
|
1744
|
+
|
1745
|
+
|
1746
|
+
|
1747
|
+
|
1748
|
+
|
1749
|
+
</div>
|
1750
|
+
<div id="myarShoppingList" class="myar-wrap" style="display: none;" >
|
1751
|
+
|
1752
|
+
<div id="divAnonymous" class="rb-wrap">
|
1753
|
+
<div class="upsellDiv">
|
1754
|
+
<p class="pitchP">
|
1755
|
+
<img id="ctl00_ucRecipeBoxModule_previewShoppingLists_anonDefaultImage" title="recipe box" src="http://images.media-allrecipes.com/ar/rightcol/MpRe/sl_icon.png" alt="recipe box" border="0" />
|
1756
|
+
<strong><span id="ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchHeaderText">Going grocery shopping?</span></strong>
|
1757
|
+
<br />
|
1758
|
+
<span id="ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchText" style="font-weight: normal;">Start creating lists organized by grocery aisle today!</span>
|
1759
|
+
|
1760
|
+
</p>
|
1761
|
+
<p class="buttonP">
|
1762
|
+
<a href="../../Controls/RecipeBox/#" id="ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchButton" class="rstActionBtn linkRequirementNextStepIsSamePage linkRequiresLogin">
|
1763
|
+
<span id="ctl00_ucRecipeBoxModule_previewShoppingLists_anonSignUpButtonText">Sign up for FREE Now!</span>
|
1764
|
+
</a>
|
1765
|
+
</p>
|
1766
|
+
</div>
|
1767
|
+
</div>
|
1768
|
+
|
1769
|
+
|
1770
|
+
|
1771
|
+
|
1772
|
+
|
1773
|
+
|
1774
|
+
</div>
|
1775
|
+
<div>
|
1776
|
+
<img id="ctl00_ucRecipeBoxModule_imgBottom" class="myToolsbottom" src="http://images.media-allrecipes.com/ar/rightcol/MpRe/module_footer.png" border="0" /></div>
|
1777
|
+
</div>
|
1778
|
+
</div>
|
1779
|
+
<script type="text/javascript">
|
1780
|
+
AR.RBM.SetInitial();
|
1781
|
+
</script><span><div class="toprightmerch"><a href="http://allrecipes.com/SupportingMembership/Info.aspx?index=1&linkid=1129&ect=7"><img src="http://images.media-allrecipes.com/images/40252.png" width="300" height="35" alt="" border="0"></a></div></span>
|
1782
|
+
|
1783
|
+
<!-- end top-right -->
|
1784
|
+
|
1785
|
+
<div id="ads-right"><div><script language="JavaScript" type="text/javascript">document.write('<scr' + 'ipt language="JavaScript" src="http://ad.doubleclick.net/adj/ar.recipes/dessert;' + AudienceScience.SegmentValues + 'comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=' + AudienceScience.EncodeRSI(AudienceScience.SegmentValues) + '||R120802||||0|u|;tile=2;sz=160x600,300x250,300x600,1x12;ord=' + aradsord + '?" type="text/javascript"><\/script>');</script><noscript><a href="http://ad.doubleclick.net/jump/ar.recipes/dessert;comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=||R120802||||0|u|;tile=2;sz=160x600,300x250,300x600,1x12;ord=624055986?" target="_blank"><img src="http://ad.doubleclick.net/ad/ar.recipes/dessert;comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;tile=2;sz=160x600,300x250,300x600,1x12;ord=624055986?" border="0" alt='' /></a></noscript></div><div id="ctl00_advertiseWithUs" class="advertise_txt" style="float: left;">
|
1786
|
+
<a href="/features/more/aradvertisingsolutions.aspx" rel="nofollow">ADVERTISE WITH US</A>
|
1787
|
+
</div><div id="ctl00_adText" class="ad-text" style="margin-top: 4px; margin-right: 6px;">
|
1788
|
+
ADVERTISEMENT
|
1789
|
+
</div></div>
|
1790
|
+
<div style="clear: left">
|
1791
|
+
</div>
|
1792
|
+
|
1793
|
+
|
1794
|
+
<div class="rightModule">
|
1795
|
+
<div class="orangeTop">
|
1796
|
+
<h4>Related Videos</h4>
|
1797
|
+
|
1798
|
+
</div>
|
1799
|
+
|
1800
|
+
<div class="rightcolcontainerDiv">
|
1801
|
+
|
1802
|
+
<div class="videoItemWrap">
|
1803
|
+
<div class="teaserImg">
|
1804
|
+
<a href="http://allrecipes.com/video/98/sweet-pineapple-saute/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl00_anchorImage">
|
1805
|
+
<img src="http://brightcove.vo.llnwd.net/d20/unsecured/media/1033249144001/1033249144001_1414474940001_th-1092234869001.jpg?pubId=1033249144001" id="ctl00_ucRelatedVideos_rptVideos_ctl00_imageThumbnail" title="Play Video" alt="Play Video" style="border-width:1px;border-style:solid;height:66px;width:118px;" target="_blank" />
|
1806
|
+
</a>
|
1807
|
+
<a href="http://allrecipes.com/video/98/sweet-pineapple-saute/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl00_anchorOverlay" class="teaserImgOverlay">
|
1808
|
+
<img src="http://images.media-allrecipes.com/ar/recipe/play_button_sm.png" style="border:0;" alt="Play Video" title="Play Video" />
|
1809
|
+
</a>
|
1810
|
+
</div>
|
1811
|
+
|
1812
|
+
<div class="teaserImgDesc">
|
1813
|
+
<!-- Increasing to accommodate 48 characters-->
|
1814
|
+
<a href="http://allrecipes.com/video/98/sweet-pineapple-saute/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl00_anchorLink">Sweet Pineapple Saute</a>
|
1815
|
+
<p id="ctl00_ucRelatedVideos_rptVideos_ctl00_paraDetail">Learn how to make this delicious, sweet summer-time dessert topped with cream.</p>
|
1816
|
+
</div>
|
1817
|
+
</div>
|
1818
|
+
<div class="clearDiv"></div>
|
1819
|
+
|
1820
|
+
|
1821
|
+
<div class="videoItemWrap">
|
1822
|
+
<div class="teaserImg">
|
1823
|
+
<a href="http://allrecipes.com/video/138/sweet-potato-pie/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl01_anchorImage">
|
1824
|
+
<img src="http://brightcove.vo.llnwd.net/d20/unsecured/media/1033249144001/1033249144001_1414480898001_th-1039480649001.jpg?pubId=1033249144001" id="ctl00_ucRelatedVideos_rptVideos_ctl01_imageThumbnail" title="Play Video" alt="Play Video" style="border-width:1px;border-style:solid;height:66px;width:118px;" target="_blank" />
|
1825
|
+
</a>
|
1826
|
+
<a href="http://allrecipes.com/video/138/sweet-potato-pie/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl01_anchorOverlay" class="teaserImgOverlay">
|
1827
|
+
<img src="http://images.media-allrecipes.com/ar/recipe/play_button_sm.png" style="border:0;" alt="Play Video" title="Play Video" />
|
1828
|
+
</a>
|
1829
|
+
</div>
|
1830
|
+
|
1831
|
+
<div class="teaserImgDesc">
|
1832
|
+
<!-- Increasing to accommodate 48 characters-->
|
1833
|
+
<a href="http://allrecipes.com/video/138/sweet-potato-pie/detail.aspx?prop24=RR_RelatedVideo" id="ctl00_ucRelatedVideos_rptVideos_ctl01_anchorLink">Sweet Potato Pie</a>
|
1834
|
+
<p id="ctl00_ucRelatedVideos_rptVideos_ctl01_paraDetail">Watch how to make classic sweet potato pie—it’s far easier than pumpkin.</p>
|
1835
|
+
</div>
|
1836
|
+
</div>
|
1837
|
+
<div class="clearDiv"></div>
|
1838
|
+
|
1839
|
+
|
1840
|
+
<div class="rightcolLinkdiv"><a id="ctl00_ucRelatedVideos_lnkMoreVideos" href="http://allrecipes.com/video/main.aspx?prop24=RR_RelatedVideo">More How-To and Recipe Videos »</a></div>
|
1841
|
+
|
1842
|
+
</div>
|
1843
|
+
|
1844
|
+
<script type="text/javascript">
|
1845
|
+
$('.rr-featured-videos div.teaserImgDesc a').textTruncate({ multiline: true, height: 30 });
|
1846
|
+
$('.rr-featured-videos div.teaserImgDesc p').textTruncate({ multiline: true, height: 50 });
|
1847
|
+
</script>
|
1848
|
+
<div class="rightcolBottomCorners"></div>
|
1849
|
+
|
1850
|
+
</div>
|
1851
|
+
|
1852
|
+
|
1853
|
+
<div class="rightModule">
|
1854
|
+
<div class="topCorners">
|
1855
|
+
<h4>Related Menus</h4> <a id="ctl00_rmRelatedMenus_ucSupportingMemberIcon_lnkPitch" href="../../SupportingMembership/Info.aspx?ect=21" style="border-bottom:0px; text-decoration:none;"><img id="ctl00_rmRelatedMenus_ucSupportingMemberIcon_imgBling" class="starImage" title="Supporting Member (Click to learn more about Supporting Membership)" src="http://images.media-allrecipes.com/ar/icons/sm/supporting_icon_10x10.png" alt="Supporting Member (Click to learn more about Supporting Membership)" border="0" style="" /></a>
|
1856
|
+
|
1857
|
+
</div>
|
1858
|
+
<div class="rightcolcontainerDiv">
|
1859
|
+
|
1860
|
+
<ul class="rmList">
|
1861
|
+
|
1862
|
+
<li id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl01_li" class="ellip-container">
|
1863
|
+
<a id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl01_lnkRelatedMenu" class="truncate-block linkPrefersSupportingMembershipPitchDialog pitchDialogHintMenuBarricade" href="http://allrecipes.com/menu/62617450/maryland-crab-cakes-and-spicy-sweet-potatoes/detail.aspx?p34=Related%20Menus%3aTitle&e9=Menu%20AR">Maryland Crab Cakes and Spicy Sweet Potatoes</a>
|
1864
|
+
</li>
|
1865
|
+
|
1866
|
+
<li id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl02_li" class="ellip-container">
|
1867
|
+
<a id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl02_lnkRelatedMenu" class="truncate-block linkPrefersSupportingMembershipPitchDialog pitchDialogHintMenuBarricade" href="http://allrecipes.com/menu/62618118/independence-day-breakfast/detail.aspx?p34=Related%20Menus%3aTitle&e9=Menu%20AR">Independence Day Breakfast</a>
|
1868
|
+
</li>
|
1869
|
+
|
1870
|
+
<li id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl03_li" class="ellip-container">
|
1871
|
+
<a id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl03_lnkRelatedMenu" class="truncate-block linkPrefersSupportingMembershipPitchDialog pitchDialogHintMenuBarricade" href="http://allrecipes.com/menu/62617168/vegetarian-burger-night-and-a-side-of-fries/detail.aspx?p34=Related%20Menus%3aTitle&e9=Menu%20AR">Vegetarian Burger Night (and a Side of Fries)</a>
|
1872
|
+
</li>
|
1873
|
+
|
1874
|
+
<li id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl04_li" class="ellip-container">
|
1875
|
+
<a id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl04_lnkRelatedMenu" class="truncate-block linkPrefersSupportingMembershipPitchDialog pitchDialogHintMenuBarricade" href="http://allrecipes.com/menu/62618291/bayou-favorite-blackened-catfish/detail.aspx?p34=Related%20Menus%3aTitle&e9=Menu%20AR">Bayou Favorite Blackened Catfish</a>
|
1876
|
+
</li>
|
1877
|
+
|
1878
|
+
<li id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl05_li" class="ellip-container">
|
1879
|
+
<a id="ctl00_rmRelatedMenus_rptRelatedMenus_ctl05_lnkRelatedMenu" class="truncate-block linkPrefersSupportingMembershipPitchDialog pitchDialogHintMenuBarricade" href="http://allrecipes.com/menu/62617620/comfort-food-classics-chicken-noodle-casserole/detail.aspx?p34=Related%20Menus%3aTitle&e9=Menu%20AR">Comfort Food Classics: Chicken Noodle Casserole</a>
|
1880
|
+
</li>
|
1881
|
+
|
1882
|
+
</ul>
|
1883
|
+
|
1884
|
+
|
1885
|
+
|
1886
|
+
|
1887
|
+
<div class="clearDiv"></div>
|
1888
|
+
|
1889
|
+
<div class="rightcolLinkdiv">
|
1890
|
+
<a id="ctl00_rmRelatedMenus_linkTryMenuPlanner" class="linkPrefersLogin" href="../../My/Menus/Planner.aspx">Try Menu Planner</a>
|
1891
|
+
|
1892
|
+
|
1893
|
+
|
|
1894
|
+
<a id="ctl00_rmRelatedMenus_linkViewAllMenus" href="../../Menus/Main.aspx?p34=Related%20Menus%3aView%20Menus">View Sample Menus »</a>
|
1895
|
+
<div class="clearDiv"></div>
|
1896
|
+
</div>
|
1897
|
+
</div>
|
1898
|
+
<div class="rightcolBottomCorners"></div>
|
1899
|
+
</div>
|
1900
|
+
|
1901
|
+
|
1902
|
+
<div class="rightModule">
|
1903
|
+
<div class="topCorners">
|
1904
|
+
<h4>Recently Viewed Recipes</h4>
|
1905
|
+
</div>
|
1906
|
+
<div class="rightcolcontainerDiv">
|
1907
|
+
|
1908
|
+
|
1909
|
+
<ul class="rvrList">
|
1910
|
+
|
1911
|
+
<li><a id="ctl00_rvrRecentlyViewedRecipes_rptRecentlyViewedRecipes_ctl01_lnkRecentlyViewedRecipeBody" title="Pineapple Sweet Rolls" rel="nofollow" href="Detail.aspx?prop31=1">Pineapple Sweet Rolls</a></li>
|
1912
|
+
|
1913
|
+
</ul><div class="clearDiv"></div>
|
1914
|
+
|
1915
|
+
<div class="rightcolLinkdiv">
|
1916
|
+
Quick Links:
|
1917
|
+
<a id="ctl00_rvrRecentlyViewedRecipes_lnkRVRRecipeBox" class="linkRequiresLogin" rel="nofollow" href="../../My/RecipeBox/Default.aspx">Recipe Box</a>
|
1918
|
+
|
|
1919
|
+
<a id="ctl00_rvrRecentlyViewedRecipes_lnkRVRShoppingList" class="linkRequiresLogin" rel="nofollow" href="../../My/ShoppingList/Default.aspx">Shopping List</a>
|
1920
|
+
|
|
1921
|
+
<a id="ctl00_rvrRecentlyViewedRecipes_HyperLink1" href="../../Recipe-Tools/Clipboard/Recent.aspx">More »</a>
|
1922
|
+
<div class="clearDiv"></div>
|
1923
|
+
</div>
|
1924
|
+
</div>
|
1925
|
+
<div class="rightcolBottomCorners"></div>
|
1926
|
+
</div>
|
1927
|
+
|
1928
|
+
<div class="rightModule">
|
1929
|
+
|
1930
|
+
<div class="topCorners">
|
1931
|
+
<h4>Top Searches</h4>
|
1932
|
+
</div>
|
1933
|
+
|
1934
|
+
<div class="rightcolcontainerDiv">
|
1935
|
+
|
1936
|
+
|
1937
|
+
<ul class="tsList">
|
1938
|
+
|
1939
|
+
<li>
|
1940
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl01_lnkTopSearchesBody" title="chicken" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=chicken&prop30=1">chicken</a></li>
|
1941
|
+
|
1942
|
+
<li>
|
1943
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl02_lnkTopSearchesBody" title="sugar cookies" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=sugar%20cookies&prop30=2">sugar cookies</a></li>
|
1944
|
+
|
1945
|
+
<li>
|
1946
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl03_lnkTopSearchesBody" title="salmon" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=salmon&prop30=3">salmon</a></li>
|
1947
|
+
|
1948
|
+
<li>
|
1949
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl04_lnkTopSearchesBody" title="meatloaf" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=meatloaf&prop30=4">meatloaf</a></li>
|
1950
|
+
|
1951
|
+
<li>
|
1952
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl05_lnkTopSearchesBody" title="pork chops" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=pork%20chops&prop30=5">pork chops</a></li>
|
1953
|
+
|
1954
|
+
<li>
|
1955
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl06_lnkTopSearchesBody" title="cupcakes" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=cupcakes&prop30=6">cupcakes</a></li>
|
1956
|
+
|
1957
|
+
<li>
|
1958
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl07_lnkTopSearchesBody" title="brownies" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=brownies&prop30=7">brownies</a></li>
|
1959
|
+
|
1960
|
+
<li>
|
1961
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl08_lnkTopSearchesBody" title="shrimp" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=shrimp&prop30=8">shrimp</a></li>
|
1962
|
+
|
1963
|
+
<li>
|
1964
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl09_lnkTopSearchesBody" title="lasagna" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=lasagna&prop30=9">lasagna</a></li>
|
1965
|
+
|
1966
|
+
<li>
|
1967
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl10_lnkTopSearchesBody" title="chili" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=chili&prop30=10">chili</a></li>
|
1968
|
+
|
1969
|
+
<li>
|
1970
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl11_lnkTopSearchesBody" title="banana bread" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=banana%20bread&prop30=11">banana bread</a></li>
|
1971
|
+
|
1972
|
+
<li>
|
1973
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl12_lnkTopSearchesBody" title="cheesecake" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=cheesecake&prop30=12">cheesecake</a></li>
|
1974
|
+
|
1975
|
+
<li>
|
1976
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl13_lnkTopSearchesBody" title="asparagus" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=asparagus&prop30=13">asparagus</a></li>
|
1977
|
+
|
1978
|
+
<li>
|
1979
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl14_lnkTopSearchesBody" title="Chocolate chip cookies" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=Chocolate%20chip%20cookies&prop30=14">Chocolate chip cookies</a></li>
|
1980
|
+
|
1981
|
+
<li>
|
1982
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl15_lnkTopSearchesBody" title="cookies" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=cookies&prop30=15">cookies</a></li>
|
1983
|
+
|
1984
|
+
<li>
|
1985
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl16_lnkTopSearchesBody" title="steak" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=steak&prop30=16">steak</a></li>
|
1986
|
+
|
1987
|
+
<li>
|
1988
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl17_lnkTopSearchesBody" title="pancakes" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=pancakes&prop30=17">pancakes</a></li>
|
1989
|
+
|
1990
|
+
<li>
|
1991
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl18_lnkTopSearchesBody" title="pasta" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=pasta&prop30=18">pasta</a></li>
|
1992
|
+
|
1993
|
+
<li>
|
1994
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl19_lnkTopSearchesBody" title="beef stew" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=beef%20stew&prop30=19">beef stew</a></li>
|
1995
|
+
|
1996
|
+
<li>
|
1997
|
+
<a id="ctl00_tsTopSearches_rptTopSearches_ctl20_lnkTopSearchesBody" title="chocolate cake" rel="nofollow" href="../../Search/Recipes.aspx?WithTerm=chocolate%20cake&prop30=20">chocolate cake</a></li>
|
1998
|
+
|
1999
|
+
</ul>
|
2000
|
+
|
2001
|
+
<div class="clearDiv"></div>
|
2002
|
+
|
2003
|
+
</div>
|
2004
|
+
|
2005
|
+
<div class="rightcolBottomCorners"></div>
|
2006
|
+
</div>
|
2007
|
+
<div id="ads-right-twobottom"><script language="JavaScript" type="text/javascript">document.write('<scr' + 'ipt language="JavaScript" src="http://ad.doubleclick.net/adj/ar.recipes/dessert;' + AudienceScience.SegmentValues + 'comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=' + AudienceScience.EncodeRSI(AudienceScience.SegmentValues) + '||R120802||||0|u|;tile=3;sz=301x251;ord=' + aradsord + '?" type="text/javascript"><\/script>');</script><noscript><a href="http://ad.doubleclick.net/jump/ar.recipes/dessert;comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;u=||R120802||||0|u|;tile=3;sz=301x251;ord=624055986?" target="_blank"><img src="http://ad.doubleclick.net/ad/ar.recipes/dessert;comp=' + adid + ';r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized;tile=3;sz=301x251;ord=624055986?" width="301" height="251" border="0" alt='' /></a></noscript></div>
|
2008
|
+
|
2009
|
+
<!-- end ads_right -->
|
2010
|
+
<div style="height: 12px;">
|
2011
|
+
</div>
|
2012
|
+
</div>
|
2013
|
+
|
2014
|
+
<!-- end farright -->
|
2015
|
+
</div>
|
2016
|
+
<!-- end content -->
|
2017
|
+
|
2018
|
+
|
2019
|
+
|
2020
|
+
<div id="footer">
|
2021
|
+
<ul id="footernav" class="navlist">
|
2022
|
+
<li class="first"><a id="ctl00_lnkFootHome" href="http://allrecipes.com/">Allrecipes.com</a></li>
|
2023
|
+
<li><a id="ctl00_lnkFootContact" href="http://allrecipes.com/help/contactus.aspx">Contact Us</a></li>
|
2024
|
+
<li><a id="ctl00_lnkFootAdvertising" href="http://allrecipes.com/features/more/aradvertisingsolutions.aspx">Advertising</a></li>
|
2025
|
+
<li><a id="ctl00_lnkFootNewsroom" href="http://allrecipes.com/help/aboutus/newsroom.aspx">Newsroom</a></li>
|
2026
|
+
<li><a id="ctl00_lnkFootJobs" href="https://readersdigest.silkroad.com/epostings/submit.cfm?version=3&company_id=15964">Jobs</a></li>
|
2027
|
+
<li><a id="ctl00_lnkFootLegal" href="http://allrecipes.com/help/aboutus/legal.aspx">Legal</a></li>
|
2028
|
+
<li><a id="ctl00_lnkFootPrivacy" href="http://allrecipes.com/help/aboutus/privacy.aspx">Privacy</a></li>
|
2029
|
+
<li><a id="ctl00_lnkFootMap" href="http://allrecipes.com/help/sitemap.aspx">Site Map</a></li>
|
2030
|
+
<li><a id="ctl00_lnkFootRSS" href="http://allrecipes.com/help/aboutus/rss.aspx">RSS Feeds</a></li>
|
2031
|
+
<li><a id="ctl00_lnkFootCustomer" href="http://allrecipes.com/help/default.aspx">Customer Support</a></li>
|
2032
|
+
<li><a id="ctl00_lnkFootAdChoices" href="http://allrecipes.com/help/aboutus/privacy.aspx#third">Ad Choices</a></li>
|
2033
|
+
</ul>
|
2034
|
+
<ul id="footernav3" class="navlist">
|
2035
|
+
|
2036
|
+
|
2037
|
+
<li class="first"><a id="ctl00_lnkAllrecipesYouTube" href="http://youtube.com/allrecipes">Allrecipes - YouTube</a></li>
|
2038
|
+
<li><a id="ctl00_lnFoodWishesYouTube" href="http://youtube.com/foodwishes">Food Wishes - YouTube</a></li>
|
2039
|
+
<li><a id="ctl00_lnkAllrecipesTV" href="http://allrecipes.tv/">Allrecipes.tv</a></li>
|
2040
|
+
<li><a id="ctl00_lnkMTR" href="http://mantestedrecipes.com/">Man Tested Recipes</a></li>
|
2041
|
+
<li><a id="ctl00_lnkFBB" href="http://freshbitesblog.com/">Fresh Bites Blog</a></li>
|
2042
|
+
</ul>
|
2043
|
+
</div>
|
2044
|
+
<!-- end footer -->
|
2045
|
+
</div>
|
2046
|
+
|
2047
|
+
|
2048
|
+
<script type="text/javascript">
|
2049
|
+
//<![CDATA[
|
2050
|
+
AR.Extenders.BindEnterToButton('ctl00_txtSearch','ctl00_btnSearch');if($('#ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_createMenu') == null && console != null){
|
2051
|
+
console.log('warning: ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_createMenu is null');
|
2052
|
+
}
|
2053
|
+
else{
|
2054
|
+
$('#ctl00_CenterColumnPlaceHolder_recipe_ToolboxControl_createMenu').click(function (e) {
|
2055
|
+
AR.Analytics.SendBeacon({linkTrackVars:'prop34',linkTrackEvents:'None',usePageContentTypeAsSource:false,disableDelay:false,prop34:'Create Menu',pe:'lnk_o',pev2:'Create Menu'}, $(this)); });
|
2056
|
+
}
|
2057
|
+
$(document).ready(function() {
|
2058
|
+
$(".arlb_jq").bind("mousedown", function(e) {
|
2059
|
+
$(".arlb_jq").removeClass("active");
|
2060
|
+
$(this).addClass("active");
|
2061
|
+
}).bind("mouseup", function(e) {
|
2062
|
+
$(this).removeClass("active");
|
2063
|
+
})
|
2064
|
+
});if($('#ctl00_ucRecipeBoxModule_previewRecipes_anonPitchButton') == null && console != null){
|
2065
|
+
console.log('warning: ctl00_ucRecipeBoxModule_previewRecipes_anonPitchButton is null');
|
2066
|
+
}
|
2067
|
+
else{
|
2068
|
+
$('#ctl00_ucRecipeBoxModule_previewRecipes_anonPitchButton').click(function (e) {
|
2069
|
+
AR.Analytics.SendBeacon({linkTrackVars:'eVar3',linkTrackEvents:'None',usePageContentTypeAsSource:false,disableDelay:false,eVar3:'AR Tools Recipe Box Tab',pe:'lnk_o',pev2:'None'}, $(this)); });
|
2070
|
+
}
|
2071
|
+
if($('#ctl00_ucRecipeBoxModule_previewMenus_productPitchContentButton') == null && console != null){
|
2072
|
+
console.log('warning: ctl00_ucRecipeBoxModule_previewMenus_productPitchContentButton is null');
|
2073
|
+
}
|
2074
|
+
else{
|
2075
|
+
$('#ctl00_ucRecipeBoxModule_previewMenus_productPitchContentButton').click(function (e) {
|
2076
|
+
AR.Analytics.SendBeacon({linkTrackVars:'prop34',linkTrackEvents:'None',usePageContentTypeAsSource:false,disableDelay:false,prop34:'AR Tools:TryMP',pe:'lnk_o',pev2:'Try MP'}, $(this)); });
|
2077
|
+
}
|
2078
|
+
if($('#ctl00_ucRecipeBoxModule_previewMenus_productPitchFooterLink') == null && console != null){
|
2079
|
+
console.log('warning: ctl00_ucRecipeBoxModule_previewMenus_productPitchFooterLink is null');
|
2080
|
+
}
|
2081
|
+
else{
|
2082
|
+
$('#ctl00_ucRecipeBoxModule_previewMenus_productPitchFooterLink').click(function (e) {
|
2083
|
+
AR.Analytics.SendBeacon({linkTrackVars:'eVar3',linkTrackEvents:'None',usePageContentTypeAsSource:false,disableDelay:false,eVar3:'AR Tools Menus Tab',pe:'lnk_o',pev2:'None'}, $(this)); });
|
2084
|
+
}
|
2085
|
+
if($('#ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchButton') == null && console != null){
|
2086
|
+
console.log('warning: ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchButton is null');
|
2087
|
+
}
|
2088
|
+
else{
|
2089
|
+
$('#ctl00_ucRecipeBoxModule_previewShoppingLists_anonPitchButton').click(function (e) {
|
2090
|
+
AR.Analytics.SendBeacon({linkTrackVars:'eVar3',linkTrackEvents:'None',usePageContentTypeAsSource:false,disableDelay:false,eVar3:'AR Tools SL Tab',pe:'lnk_o',pev2:'None'}, $(this)); });
|
2091
|
+
}
|
2092
|
+
//]]>
|
2093
|
+
</script>
|
2094
|
+
</form>
|
2095
|
+
<!-- end wrap -->
|
2096
|
+
<div style="padding: 10px 0;" id="countries">
|
2097
|
+
<span>Select Your Version: </span>
|
2098
|
+
<a id="ctl00_HyperLink16" href="http://allrecipes.com.ar">Argentina</a>
|
2099
|
+
<span> | </span>
|
2100
|
+
<a id="ctl00_lolCountryANZ" href="http://allrecipes.com.au">Australia & New Zealand</a>
|
2101
|
+
<span> | </span>
|
2102
|
+
<a id="ctl00_HyperLink5" href="http://allrecipes.com.br/">Brazil</a>
|
2103
|
+
<span> | </span>
|
2104
|
+
|
2105
|
+
<a id="ctl00_lolCountryCanada" href="../../Handlers/SetLocalSite.ashx?country=CAN">Canada</a>
|
2106
|
+
<span> | </span>
|
2107
|
+
|
2108
|
+
<a id="ctl00_HyperLink8" href="http://allrecipes.cn/">China</a>
|
2109
|
+
<span> | </span>
|
2110
|
+
<a id="ctl00_HyperLink9" href="http://allrecipes.fr/">France</a>
|
2111
|
+
<span> | </span>
|
2112
|
+
<a id="ctl00_HyperLink10" href="http://allrecipes.de/">Germany</a>
|
2113
|
+
<span> | </span>
|
2114
|
+
|
2115
|
+
<a id="ctl00_HyperLink14" href="http://allrecipes.co.in/">India</a>
|
2116
|
+
<span> | </span>
|
2117
|
+
|
2118
|
+
<a id="ctl00_HyperLink11" href="http://allrecipes.jp/">Japan</a>
|
2119
|
+
<span> | </span>
|
2120
|
+
|
2121
|
+
<a id="ctl00_HyperLink18" href="http://allrecipes.kr/">Korea</a>
|
2122
|
+
<span> | </span>
|
2123
|
+
|
2124
|
+
<a id="ctl00_HyperLink6" href="http://allrecipes.com.mx/">Mexico</a>
|
2125
|
+
<span> | </span>
|
2126
|
+
|
2127
|
+
<a id="ctl00_HyperLink12" href="http://allrecipes.nl/">Netherlands</a>
|
2128
|
+
<span> | </span>
|
2129
|
+
|
2130
|
+
<a id="ctl00_HyperLink17" href="http://allrecipes.pl/">Poland</a>
|
2131
|
+
|
2132
|
+
|
2133
|
+
|
2134
|
+
|
2135
|
+
<br />
|
2136
|
+
<br />
|
2137
|
+
|
2138
|
+
|
2139
|
+
|
2140
|
+
|
2141
|
+
<a id="ctl00_HyperLink3" href="http://qc.allrecipes.ca/">Quebec</a>
|
2142
|
+
<span> | </span>
|
2143
|
+
|
2144
|
+
<a id="ctl00_HyperLink7" href="http://allrecipes.ru/">Russia</a>
|
2145
|
+
<span> | </span>
|
2146
|
+
|
2147
|
+
|
2148
|
+
<a id="ctl00_HyperLink15" href="http://allrecipes.asia/">SE Asia</a>
|
2149
|
+
<span> | </span>
|
2150
|
+
|
2151
|
+
<a id="ctl00_lolCountryUK" href="http://allrecipes.co.uk">United Kingdom & Ireland</a>
|
2152
|
+
<span> | </span>
|
2153
|
+
|
2154
|
+
|
2155
|
+
United States
|
2156
|
+
|
2157
|
+
</div>
|
2158
|
+
<div id="copyright">
|
2159
|
+
ALL RIGHTS RESERVED Copyright
|
2160
|
+
2012
|
2161
|
+
Allrecipes.com
|
2162
|
+
</div>
|
2163
|
+
|
2164
|
+
<div class="modal-overlay"></div>
|
2165
|
+
|
2166
|
+
|
2167
|
+
|
2168
|
+
|
2169
|
+
<div class="modal rsz-container modal-dialog-template">
|
2170
|
+
<div class="rsz-header">
|
2171
|
+
<div class="ulcorner"></div>
|
2172
|
+
<div class="rsz-header-content">
|
2173
|
+
|
2174
|
+
<div class="aspxdialog-title"></div>
|
2175
|
+
|
2176
|
+
|
2177
|
+
<div class="modal-close-button">
|
2178
|
+
<a href="javascript:void(0);" class="close-modal unsavedExempt"
|
2179
|
+
onmouseover="window.status='Close'; return true;"
|
2180
|
+
onmouseout="window.status=''; return true;">
|
2181
|
+
<!--#-->
|
2182
|
+
</a>
|
2183
|
+
</div>
|
2184
|
+
</div>
|
2185
|
+
<div class="urcorner"></div>
|
2186
|
+
</div>
|
2187
|
+
<div class="rsz-left-border"></div>
|
2188
|
+
<div class="rsz-content">
|
2189
|
+
|
2190
|
+
|
2191
|
+
</div>
|
2192
|
+
<div class="rsz-right-border"></div>
|
2193
|
+
<div class="rsz-footer">
|
2194
|
+
<div class="llcorner"></div>
|
2195
|
+
<div class="rsz-footer-content"></div>
|
2196
|
+
<div class="lrcorner"></div>
|
2197
|
+
</div>
|
2198
|
+
</div>
|
2199
|
+
|
2200
|
+
|
2201
|
+
|
2202
|
+
|
2203
|
+
|
2204
|
+
<script language="Javascript" type="text/javascript"><!--
|
2205
|
+
var omnitureAccount="rdirdallrecipes";
|
2206
|
+
// --></script><script type="text/javascript" src="http://images.media-allrecipes.com/js/omni/ar_s_code.js?v=198"></script><script language="Javascript" type="text/javascript"><!--
|
2207
|
+
function getHourOfDay(){
|
2208
|
+
var hourOfDay;
|
2209
|
+
var date=new Date();
|
2210
|
+
var hours=date.getHours();
|
2211
|
+
if (hours==12) {hourOfDay=hours + ' PM';}
|
2212
|
+
else if (hours>12) {hourOfDay=( hours-12 )+ ' PM';}
|
2213
|
+
else {hourOfDay=hours+ ' AM';}
|
2214
|
+
return hourOfDay;
|
2215
|
+
}
|
2216
|
+
|
2217
|
+
function getDayOfWeek(){
|
2218
|
+
var retVal = '';
|
2219
|
+
switch (new Date().getDay()){
|
2220
|
+
case 0:retVal = 'Sun';break;
|
2221
|
+
case 1:retVal = 'Mon';break;
|
2222
|
+
case 2:retVal = 'Tue';break;
|
2223
|
+
case 3:retVal = 'Wed';break;
|
2224
|
+
case 4:retVal = 'Thu';break;
|
2225
|
+
case 5:retVal = 'Fri';break;
|
2226
|
+
case 6:retVal = 'Sat';break;
|
2227
|
+
}
|
2228
|
+
return retVal;
|
2229
|
+
}s.pageName="/recipe/pineapple-sweet-rolls/detail.aspx";s.server="WEB306";s.channel="Recipes";s.events="event1";s.eVar1=s.pageName;s.eVar10="Anonymous Visitor";s.prop5="ar.recipes/dessert";s.prop6="Recipe";s.prop8="r=120802;k=13;k=30;k=39;k=83;k=91;k=97;k=159;k=188;k=201;k=202;k=228;k=239;k=245;k=248;k=624;ssngroup=0;status=unrecognized";s.prop9="5";s.prop20="22";s.prop22=getHourOfDay();s.prop23=getDayOfWeek();s.hier="AR|Recipes";s.eVar6="NON MEMBER"; if (s.getQueryParam("prop30") != "" && !isNaN(s.getQueryParam("prop30"))) s.prop30 = s.getQueryParam("prop30"); else s.prop30 = "blank"; if (s.getQueryParam("prop31") != "" && !isNaN(s.getQueryParam("prop31"))) s.prop31 = s.getQueryParam("prop31"); else s.prop31 = "blank";
|
2230
|
+
function querySt(ji) {
|
2231
|
+
hu = window.location.search.substring(1).toLowerCase();
|
2232
|
+
ji = ji.toLowerCase();
|
2233
|
+
gy = hu.split("&");
|
2234
|
+
rt = '';
|
2235
|
+
cm = '';
|
2236
|
+
for (i=0;i<gy.length;i++) {
|
2237
|
+
ft = gy[i].split("=");
|
2238
|
+
if (ft[0] == ji) {
|
2239
|
+
rt += cm + ft[1];
|
2240
|
+
cm = ',';
|
2241
|
+
}
|
2242
|
+
}
|
2243
|
+
return rt;
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
if (s.getQueryParam("RecipeID") != "" && !isNaN(s.getQueryParam("RecipeID")))
|
2247
|
+
s.prop32 = querySt("RecipeID"); else s.prop32 = "blank";
|
2248
|
+
var s_code=s.t();if(s_code)document.write(s_code);
|
2249
|
+
// --></script><script language="Javascript"><!--
|
2250
|
+
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
|
2251
|
+
//--></script><noscript>
|
2252
|
+
<img src="http://metric.allrecipes.com/b/ss/rdirdallrecipes/1/H.9--NS/0" height="1" width="1" border="0" alt="" />
|
2253
|
+
</noscript><!--/DO NOT REMOVE/-->
|
2254
|
+
<!-- Tacoda -->
|
2255
|
+
<iframe src="http://an.tacoda.net/an/slf.htm?siteid=17294&dt" marginheight="0" marginwidth="0" frameborder="0" height="0" scrolling="no" width="0"></iframe>
|
2256
|
+
|
2257
|
+
|
2258
|
+
|
2259
|
+
|
2260
|
+
|
2261
|
+
|
2262
|
+
|
2263
|
+
<script type="text/javascript" language="javascript">
|
2264
|
+
function nielsen_sitecensus() {
|
2265
|
+
var d = new Image(1, 1);
|
2266
|
+
d.onerror = d.onload = function () {
|
2267
|
+
d.onerror = d.onload = null;
|
2268
|
+
};
|
2269
|
+
d.src = ["//secure-us.imrworldwide.com/cgi-bin/m?ci=us-104143h&cg=0&cc=1&si=", escape(window.location.href), "&rp=", escape(document.referrer), "&ts=compact&rnd=", (new Date()).getTime()].join('');
|
2270
|
+
}
|
2271
|
+
$(document).ready(function () {
|
2272
|
+
var t = setTimeout("nielsen_sitecensus()", 15);
|
2273
|
+
});
|
2274
|
+
</script>
|
2275
|
+
<noscript>
|
2276
|
+
<div>
|
2277
|
+
<img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-readersdigest&cg=0&cc=1&ts=noscript" width="1" height="1" alt="" />
|
2278
|
+
</div>
|
2279
|
+
</noscript>
|
2280
|
+
<script src="http://js.revsci.net/gateway/gw.js?csid=D11170&auto=t" type="text/javascript"></script>
|
2281
|
+
</body>
|
2282
|
+
</html>
|