hangry 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/README.md +1 -0
  2. data/lib/hangry.rb +1 -0
  3. data/lib/hangry/data_vocabulary_recipe_parser.rb +4 -0
  4. data/lib/hangry/hrecipe_parser.rb +20 -6
  5. data/lib/hangry/recipe_parser.rb +3 -1
  6. data/lib/hangry/schema_org_recipe_parser.rb +4 -0
  7. data/lib/hangry/version.rb +1 -1
  8. data/spec/fixtures/{bbc.co.uk.html → hrecipe/bbc.co.uk.html} +0 -0
  9. data/spec/fixtures/{bigoven.html → hrecipe/bigoven.html} +0 -0
  10. data/spec/fixtures/hrecipe/campbellskitchen.com.html +1970 -0
  11. data/spec/fixtures/{cooking.com.html → hrecipe/cooking.com.html} +0 -0
  12. data/spec/fixtures/{cooks.com.html → hrecipe/cooks.com.html} +0 -0
  13. data/spec/fixtures/hrecipe/drinksmixer.com.html +604 -0
  14. data/spec/fixtures/{epicurious.html → hrecipe/epicurious.html} +0 -0
  15. data/spec/fixtures/hrecipe/grouprecipes.com.html +982 -0
  16. data/spec/fixtures/hrecipe/homecooking.about.com.html +326 -0
  17. data/spec/fixtures/hrecipe/jamieoliver.com.html +868 -0
  18. data/spec/fixtures/hrecipe/mrfood.com.html +4642 -0
  19. data/spec/fixtures/hrecipe/southernfood.about.com.html +328 -0
  20. data/spec/fixtures/{tasteofhome.com.html → hrecipe/tasteofhome.com.html} +0 -0
  21. data/spec/fixtures/{allrecipes.html → schema_org/allrecipes.html} +0 -0
  22. data/spec/fixtures/{betty_crocker.html → schema_org/betty_crocker.html} +0 -0
  23. data/spec/fixtures/{copykat.com.html → schema_org/copykat.com.html} +0 -0
  24. data/spec/fixtures/{chow.com.html → schema_org/data-vocabulary_org/chow.com.html} +0 -0
  25. data/spec/fixtures/{myrecipes.com.html → schema_org/data-vocabulary_org/myrecipes.com.html} +0 -0
  26. data/spec/fixtures/{saveur.com.html → schema_org/data-vocabulary_org/saveur.com.html} +0 -0
  27. data/spec/fixtures/{tarladalal.com.html → schema_org/data-vocabulary_org/tarladalal.com.html} +0 -0
  28. data/spec/fixtures/{taste.com.au.html → schema_org/data-vocabulary_org/taste.com.au.html} +0 -0
  29. data/spec/fixtures/{eatingwell.com.html → schema_org/eatingwell.com.html} +0 -0
  30. data/spec/fixtures/{food.com.html → schema_org/food.com.html} +0 -0
  31. data/spec/fixtures/{food_network_schema_org.html → schema_org/food_network_schema_org.html} +0 -0
  32. data/spec/fixtures/{food_network_with_blank_ingredients.html → schema_org/food_network_with_blank_ingredients.html} +0 -0
  33. data/spec/fixtures/{foodandwine.com.html → schema_org/foodandwine.com.html} +0 -0
  34. data/spec/fixtures/{heart.org.html → schema_org/heart.org.html} +0 -0
  35. data/spec/fixtures/{pillsbury.com.html → schema_org/pillsbury.com.html} +0 -0
  36. data/spec/hangry_spec.rb +1 -0
  37. data/spec/real_examples/{bbc_co_uk_spec.rb → hrecipe/bbc_co_uk_spec.rb} +2 -1
  38. data/spec/real_examples/{big_oven_spec.rb → hrecipe/big_oven_spec.rb} +2 -1
  39. data/spec/real_examples/hrecipe/campbells_kitchen_com_spec.rb +63 -0
  40. data/spec/real_examples/{cooking_com_spec.rb → hrecipe/cooking_com_spec.rb} +3 -2
  41. data/spec/real_examples/{cooks_com_spec.rb → hrecipe/cooks_com_spec.rb} +2 -1
  42. data/spec/real_examples/hrecipe/drinks_mixer_com_spec.rb +57 -0
  43. data/spec/real_examples/{epicurious_spec.rb → hrecipe/epicurious_spec.rb} +2 -1
  44. data/spec/real_examples/hrecipe/group_recipes_com_spec.rb +65 -0
  45. data/spec/real_examples/hrecipe/home_cooking_food_com_spec.rb +79 -0
  46. data/spec/real_examples/hrecipe/jamie_oliver_com_spec.rb +61 -0
  47. data/spec/real_examples/hrecipe/mr_food_com_spec.rb +55 -0
  48. data/spec/real_examples/hrecipe/southern_food_about_com_spec.rb +64 -0
  49. data/spec/real_examples/{taste_of_home_spec.rb → hrecipe/taste_of_home_spec.rb} +4 -3
  50. data/spec/real_examples/{all_recipes_spec.rb → schema_org/all_recipes_spec.rb} +2 -1
  51. data/spec/real_examples/{betty_crocker_spec.rb → schema_org/betty_crocker_spec.rb} +2 -1
  52. data/spec/real_examples/{copykat_spec.rb → schema_org/copykat_spec.rb} +2 -1
  53. data/spec/real_examples/{chow_com_spec.rb → schema_org/data-vocabulary_org/chow_com_spec.rb} +2 -1
  54. data/spec/real_examples/{myrecipes_com_spec.rb → schema_org/data-vocabulary_org/myrecipes_com_spec.rb} +2 -1
  55. data/spec/real_examples/{saveur_com_spec.rb → schema_org/data-vocabulary_org/saveur_com_spec.rb} +2 -1
  56. data/spec/real_examples/{tarladalal_com_spec.rb → schema_org/data-vocabulary_org/tarladalal_com_spec.rb} +2 -1
  57. data/spec/real_examples/{taste_com_au_spec.rb → schema_org/data-vocabulary_org/taste_com_au_spec.rb} +2 -1
  58. data/spec/real_examples/{eating_well_spec.rb → schema_org/eating_well_spec.rb} +3 -2
  59. data/spec/real_examples/{food_and_wine_spec.rb → schema_org/food_and_wine_spec.rb} +2 -1
  60. data/spec/real_examples/{food_com_spec.rb → schema_org/food_com_spec.rb} +2 -1
  61. data/spec/real_examples/{food_network_spec.rb → schema_org/food_network_spec.rb} +4 -2
  62. data/spec/real_examples/{heart_org_spec.rb → schema_org/heart_org_spec.rb} +2 -1
  63. data/spec/real_examples/{pillsbury_spec.rb → schema_org/pillsbury_spec.rb} +2 -1
  64. metadata +124 -96
data/README.md CHANGED
@@ -37,6 +37,7 @@ recipe = Hangry.parse(recipe_html_string)
37
37
  recipe.author # "Rachel Ray"
38
38
  recipe.cook_time # 20
39
39
  recipe.description # nil
40
+ recipe.image_url # "http://img.foodnetwork.com/FOOD/2008/08/13/av-rachael-ray.jpg"
40
41
  recipe.ingredients # ["4 boneless, skinless chicken breasts, 6 ounces", "Large plastic food storage bags or waxed paper", "1 package, 10 ounces, frozen chopped spinach", "2 tablespoons butter", "12 small mushroom caps, crimini or button", "2 cloves garlic, cracked", "1 small shallot, quartered", "Salt and freshly ground black pepper", "1 cup part skim ricotta cheese", "1/2 cup grated Parmigiano or Romano, a couple of handfuls", "1/2 teaspoon fresh grated or ground nutmeg", "Toothpicks", "2 tablespoons extra-virgin olive oil", "2 tablespoons butter", "2 tablespoons flour", "1/2 cup white wine", "1 cup chicken broth"]
41
42
  recipe.instructions # "Place breasts in the center of a plastic food storage..."
42
43
  recipe.name # "Spinach and Mushroom Stuffed Chicken Breasts"
@@ -12,6 +12,7 @@ module Hangry
12
12
  :canonical_url,
13
13
  :cook_time,
14
14
  :description,
15
+ :image_url,
15
16
  :ingredients,
16
17
  :instructions,
17
18
  :name,
@@ -19,6 +19,10 @@ module Hangry
19
19
  node_with_itemprop(:summary).content
20
20
  end
21
21
 
22
+ def parse_image_url
23
+ node_with_itemprop(:photo)['src']
24
+ end
25
+
22
26
  def parse_instructions
23
27
  node_with_itemprop(:instructions).content
24
28
  end
@@ -19,18 +19,30 @@ module Hangry
19
19
  recipe_ast.css(".#{klass}")
20
20
  end
21
21
 
22
+ def title_value_for_css_class(klass)
23
+ node = maybe(node_with_class(klass).css('.value-title').first)
24
+ node['title']
25
+ end
26
+
22
27
  def parse_author
23
28
  node_with_class(:author).content
24
29
  end
25
30
 
26
31
  def parse_cook_time
27
- parse_duration node_with_class(:cookTime).css('.value-title').first['title']
32
+ parse_duration(
33
+ value(title_value_for_css_class(:cookTime)) ||
34
+ value(title_value_for_css_class(:cooktime))
35
+ )
28
36
  end
29
37
 
30
38
  def parse_description
31
39
  node_with_class(:summary).content
32
40
  end
33
41
 
42
+ def parse_image_url
43
+ node_with_class(:photo)['src']
44
+ end
45
+
34
46
  def parse_ingredients
35
47
  nodes_with_class(:ingredient).map { |ingredient_node|
36
48
  # Instead of calling content on the node itself,
@@ -68,7 +80,10 @@ module Hangry
68
80
  end
69
81
 
70
82
  def parse_prep_time
71
- parse_duration node_with_class(:prepTime).css('.value-title').first['title']
83
+ parse_duration(
84
+ value(title_value_for_css_class(:prepTime)) ||
85
+ value(title_value_for_css_class(:preptime))
86
+ )
72
87
  end
73
88
 
74
89
  def parse_published_date
@@ -76,11 +91,10 @@ module Hangry
76
91
  end
77
92
 
78
93
  def parse_total_time
79
- node = maybe(
80
- value(node_with_class(:duration)) ||
81
- value(node_with_class(:totalTime))
94
+ parse_duration(
95
+ value(title_value_for_css_class(:duration)) ||
96
+ value(title_value_for_css_class(:totalTime))
82
97
  )
83
- parse_duration node.css('.value-title').first['title']
84
98
  end
85
99
 
86
100
  def parse_yield
@@ -75,10 +75,12 @@ module Hangry
75
75
  end
76
76
 
77
77
  def parse_duration(iso8601_string)
78
+ return nil unless iso8601_string.present?
78
79
  duration = ISO8601::Duration.new(iso8601_string)
79
80
  duration.hours.to_i * 60 + duration.minutes.to_i
80
81
  rescue ISO8601::Errors::UnknownPattern
81
- nil
82
+ # Try to just convert to an integer.. Assuming minutes?
83
+ iso8601_string.to_i
82
84
  end
83
85
 
84
86
  end
@@ -45,6 +45,10 @@ module Hangry
45
45
  def parse_description
46
46
  node_with_itemprop(:description).content
47
47
  end
48
+ def parse_image_url
49
+ node = node_with_itemprop(:image)
50
+ value(node['src']) || value(node['content'])
51
+ end
48
52
  def parse_ingredients
49
53
  nodes_with_itemprop(self.class.ingredient_itemprop).map(&:content).map { |ingredient|
50
54
  # remove newlines and excess whitespace from ingredients
@@ -1,3 +1,3 @@
1
1
  module Hangry
2
- VERSION = "0.0.12"
2
+ VERSION = "0.0.13"
3
3
  end
@@ -0,0 +1,1970 @@
1
+ <!DOCTYPE html>
2
+ <!--[if lt IE 7]>
3
+ <html class="no-js ie6 ie oldie">
4
+ <![endif]-->
5
+ <!--[if IE 7]>
6
+ <html class="no-js ie7 ie oldie" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
7
+ <![endif]-->
8
+ <!--[if IE 8]>
9
+ <html class="no-js ie8 ie oldie" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
10
+ <![endif]-->
11
+ <!--[if IE 9]>
12
+ <html class="no-js ie9 ie" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
13
+ <![endif]-->
14
+ <!--[if gt IE 9]><!-->
15
+ <html class="no-js" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema" />
16
+ <!--<![endif]-->
17
+ <head id="Head1" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
18
+ <title>
19
+ Campbell's Kitchen: Savory White Beans & Spinach
20
+ </title>
21
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
22
+ <meta name="CODE_LANGUAGE" content="C#" />
23
+ <meta name="vs_defaultClientScript" content="JavaScript" />
24
+ <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
25
+ <meta name="keywords" content="Savory White Beans &amp; Spinach" />
26
+ <meta name="description" content="The beans are white, the greens are spinach...and the dish is delicious (and ready in 30 minutes)!" />
27
+ <meta property="fb:admins" content="4,20,60,11017165,72403180,100001636337624,733459830,5726909,9388698,100002077794897,1235521303,36500385,1607500,10016837,15803601,1249308252,5604609,72400389,100780" />
28
+ <meta id="ogTitle" property="og:title" content="Campbell&#39;s Kitchen: Savory White Beans &amp; Spinach" />
29
+ <meta id="ogUrl" property="og:url" content="http://www.campbellskitchen.com/recipes/recipedetails?recipeid=60821" />
30
+ <meta id="ogDescription" property="og:description" content="The beans are white, the greens are spinach...and the dish is delicious (and ready in 30 minutes)!" />
31
+ <meta property="og:type" content="food" />
32
+ <meta id="ogImage" property="og:image" content="http://www.cscassets.com/recipes/large_cknew/large_60821.jpg" />
33
+ <link rel="stylesheet" type="text/css" href="/css/style.css" />
34
+ <link rel="stylesheet" type="text/css" href="/css/basic.css" />
35
+ <link rel="stylesheet" type="text/css" href="/css/jquery.fancybox.css" />
36
+ <link rel="stylesheet" type="text/css" href="/css/jqtransform.css" />
37
+ <link href="/layouts/System/VisitorIdentification.aspx" rel="stylesheet" type="text/css" />
38
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
39
+ <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
40
+ <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
41
+ <script type="text/javascript" src="//campbellskitchen.ugc.bazaarvoice.com/static/4686-en_us/bvapi.js"></script>
42
+ <script type="text/javascript">
43
+ var _gaq = _gaq || [];
44
+ _gaq.push(['_setAccount', 'UA-22127999-1']);
45
+ _gaq.push(['_trackPageview']);
46
+
47
+ (function () {
48
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
49
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
50
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
51
+ })();
52
+
53
+ </script>
54
+ </head>
55
+ <body>
56
+ <div id="fb-root">
57
+ </div>
58
+ <script type="text/javascript">
59
+ window.fbAsyncInit = function () {
60
+ FB.init({
61
+ appId: '408604639194980', // App ID
62
+ status: true, // check login status
63
+ cookie: true, // enable cookies to allow the server to access the session
64
+ oauth: true, // enable OAuth 2.0
65
+ xfbml: true // parse XFBML
66
+ });
67
+
68
+ fbApiInit = true;
69
+ };
70
+
71
+ (function (d, s, id) {
72
+ var js, fjs = d.getElementsByTagName(s)[0];
73
+ if (d.getElementById(id)) return;
74
+ js = d.createElement(s); js.id = id;
75
+ js.src = "//connect.facebook.net/en_US/all.js";
76
+ fjs.parentNode.insertBefore(js, fjs);
77
+ } (document, 'script', 'facebook-jssdk'));
78
+ </script>
79
+ <form method="post" action="/recipes/recipedetails?recipeid=60821" id="mainform">
80
+ <div class="aspNetHidden">
81
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTcxMTMxMzI0NGQYAgUeX19Db250cm9sc1JlcXVpcmVQb3N0QmFja0tleV9fFgEFHWN0bDE1JGx2TG9naW4kY2hrS2VlcFNpZ25lZEluBRdjdGwxNSRsdkxvZ2luJG11bHRpVmlldw8PZGZkwRenxTBifb1blKlXat8mjLcm0pc=" />
82
+ </div>
83
+ <script type="text/javascript">
84
+ //<![CDATA[
85
+
86
+ function facebookLogin() {
87
+ FB.getLoginStatus(function (response) {
88
+
89
+ if (response.status === 'connected') {
90
+ FB.Canvas.setAutoGrow();
91
+ if (response.authResponse) {
92
+ var memactatt = $('#ctl15_hfMAA');
93
+ if(memactatt != null)
94
+ {
95
+ window.location.href = 'http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821&cwfb=1&memactatt=' +memactatt.val();
96
+ }
97
+ else
98
+ {
99
+ window.location.href = 'http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821&cwfb=1';
100
+ }
101
+ }
102
+ else {
103
+ }
104
+ }
105
+ else {
106
+ FB.login(function (response) {
107
+ if (response.authResponse) {
108
+ var memactatt = $('#ctl15_hfMAA');
109
+ if(memactatt != null)
110
+ {
111
+ window.location.href = 'http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821&cwfb=1&memactatt=' + memactatt.val();
112
+ }
113
+ else
114
+ {
115
+ window.location.href = 'http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821&cwfb=1';
116
+ }
117
+ }
118
+ else {
119
+ }
120
+ }, { scope: 'user_about_me,email' });
121
+ }
122
+ }, true);
123
+ }
124
+ //]]>
125
+ </script>
126
+ <script src="/ScriptResource.axd?d=bAbBwvr0bZC3MfsKpA_ztUAv_3DJXYdIF8vscg9VfnJus8ksUbjWgGcx_IhwkmTuR7a0_sxApg8JhQlTCObV9B9eYF-sG8DBz7RblEhLNFD8Ue1xkeH-ynv5w_QRcuHcfTiSs1s8OQu5IP0PD0q-fsx-_1lDhWShGY6VNiCNijcfB-oL0&amp;t=ffffffff940d030f" type="text/javascript"></script>
127
+ <div id="wrapper" class="limitWidth">
128
+ <script type="text/javascript">
129
+ <!--
130
+ var s_account = '';
131
+ function initializeOmniture() {
132
+ s.pageName="Savory White Beans & Spinach";
133
+ s.channel="Recipes";
134
+ s.server="AMAWSPWS03";
135
+ s.prop19="regular";
136
+ s.prop18="60821";
137
+ s.prop31="Unknown";
138
+ s.prop2="Recipe Details";
139
+ s.prop7="Campbell&#39;s Kitchen";
140
+ s.prop12="http://www.campbellskitchen.com/Recipes/RecipeDetails.aspx";
141
+ s.prop10="";
142
+ s.prop11="";
143
+ s.prop6="Recipe Detail.";
144
+ s.eVar51="60821";
145
+ s.eVar61="site";
146
+ s.eVar1="Recipe Detail.";
147
+ s.eVar9="";
148
+ s.eVar46="Unknown";
149
+ s.eVar2="Recipes";
150
+ s.eVar3="Recipe Detail.";
151
+ s.eVar10="Campbell&#39;s Kitchen";
152
+ s.eVar11="Kitchen";
153
+ s.eVar12="Kitchen";
154
+ s.eVar23="http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821";
155
+
156
+ }
157
+
158
+ //-->
159
+ </script>
160
+ <script type="text/javascript" src="/js/s-code.js"></script>
161
+ <script type="text/javascript" src="/js/traffic-variables.js"></script>
162
+ <div id="mediaItemsDiv" style="display:none">
163
+ <script type='text/javascript'>
164
+ var ebRand = Math.random()+'';
165
+ ebRand = ebRand * 1000000;
166
+ //<![CDATA[
167
+ document.write('<scr'+'ipt src="HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&amp;ActivityID=73271&amp;rnd=' + ebRand + '"></scr' + 'ipt>');
168
+ //]]>
169
+ </script>
170
+ <noscript>
171
+ <img width="1" height="1" style="border:0" src="HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&amp;ActivityID=73271&amp;ns=1"/>
172
+ </noscript>
173
+ </div>
174
+ <script type="text/javascript">
175
+ function callMediaItems(activityID) {
176
+
177
+ var ebRand = Math.random() + '';
178
+ ebRand = ebRand * 1000000;
179
+ var jsUrl = 'HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&ActivityID=' + activityID + '&rnd=' + ebRand;
180
+ var imgUrl = 'HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&ActivityID=' + activityID + '&ns=1';
181
+ document.getElementById('mediaItemsDiv').innerHTML = '';
182
+
183
+ var oImg = document.createElement("img");
184
+ oImg.setAttribute('src', imgUrl);
185
+ oImg.setAttribute('height', '1px');
186
+ oImg.setAttribute('width', '1px');
187
+ document.getElementById("mediaItemsDiv").appendChild(oImg);
188
+
189
+ var fileref = document.createElement('script');
190
+ fileref.setAttribute("type", "text/javascript");
191
+ fileref.setAttribute("src", jsUrl);
192
+ document.getElementById("mediaItemsDiv").appendChild(fileref);
193
+ }
194
+ </script>
195
+ <div id="siteHeader" class="limitWidth" role="banner">
196
+ <script type="text/javascript" language="javascript">
197
+ function setActionAttemptCookie(c_name, value, exdays) {
198
+ var exdate = new Date();
199
+ exdate.setDate(exdate.getDate() + exdays);
200
+ var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
201
+ document.cookie = c_name + "=" + c_value;
202
+
203
+ //
204
+ $('#ctl15_hfMAA').val(value);
205
+ }
206
+ </script>
207
+ <div class="container_12" id="ctl1">
208
+ <div class="clearfix" id="ctl2">
209
+ <h1 class="headerLogo">
210
+ <a href="/" title="Campbell's Kitchen" tabindex="1">
211
+ <img id="plhheader_0_imgLogo" src="../media/~/media/Images/campbells_kitchen_logo.ashx" /></a>
212
+ </h1>
213
+ <div class="headerRight clearfix" id="ctl3">
214
+ <div class="headerRightBox" id="ctl4">
215
+ <div id="plhheader_0_pnlAnonymous">
216
+ <a class="myKitchen" href="javascript:Popin.getInstance().show('#logInForm');setActionAttemptCookie('MemberActionAttempt', 'my_kitchen', 1);"
217
+ title="My Kitchen" role="link" tabindex="2" accesskey="k" enabled="disabled">My
218
+ Kitchen</a>
219
+ <div class="headerRegisterLogin">
220
+ <a href="javascript:Popin.getInstance().show('#registerForm');setActionAttemptCookie('MemberActionAttempt', 'login_header', 1);" id="lbtnRegister"
221
+ tabindex="3" role="link" accesskey="g">Register</a> | <a href="javascript:Popin.getInstance().show('#logInForm');setActionAttemptCookie('MemberActionAttempt', 'login_header', 1);"
222
+ title="Log In" id="lbtnLogin" tabindex="4" role="link" accesskey="l">Log In</a>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ <!-- .headerRightBox -->
227
+ <!-- Facebook Like plugin -->
228
+ <div class="fb-like" data-href="http://www.facebook.com/campbellskitchen" data-send="false"
229
+ data-width="200" data-show-faces="false" id="ctl7">
230
+ </div>
231
+ </div>
232
+ <!-- .headerRight -->
233
+ </div>
234
+ <div id="headerNavigation" class="clearfix" role="navigation">
235
+ <ul class="menu clearfix" role="menu">
236
+ <li role="menuitem" class="parent">
237
+ <a href="/RecipeCollections?fm=link_navigated"
238
+ title="RECIPES" role="link" tabindex="9" accesskey="r">RECIPES</a>
239
+ <div class="subnavi dropdown_3columns">
240
+ <!-- Begin 3 columns container -->
241
+ <div class="ddHeader">
242
+ <div class="leftCorner">
243
+ <div class="rightCorner">
244
+ &nbsp;
245
+ </div>
246
+ </div>
247
+ </div>
248
+ <div class="leftShadow">
249
+ <div class="rightShadow">
250
+ <div class="ddContent clearfix">
251
+ <div class="col_1">
252
+ <h3>
253
+ CATEGORIES
254
+ </h3>
255
+ <ul>
256
+ <li>
257
+ <a id="plhheader_0_rptCategories_lnkItem_0" title="Best of the Season" href="/RecipeCollections/RecipeCategory/Best%20of%20the%20Season%20April?fm=link_navigated">Best of the Season</a>
258
+ </li>
259
+ <li>
260
+ <a id="plhheader_0_rptCategories_lnkItem_1" title="Quick &amp; Easy" href="/RecipeCollections/RecipeCategory/QuickAndEasy?fm=link_navigated">Quick & Easy</a>
261
+ </li>
262
+ <li>
263
+ <a id="plhheader_0_rptCategories_lnkItem_2" title="Budget-Friendly" href="/RecipeCollections/RecipeCategory/Budget-Friendly?fm=link_navigated">Budget-Friendly</a>
264
+ </li>
265
+ <li>
266
+ <a id="plhheader_0_rptCategories_lnkItem_3" title="Family Favorites" href="/RecipeCollections/RecipeCategory/Family%20Favorites?fm=link_navigated">Family Favorites</a>
267
+ </li>
268
+ <li>
269
+ <a id="plhheader_0_rptCategories_lnkItem_4" title="Comfort Classics" href="/RecipeCollections/RecipeCategory/Comfort%20Classics?fm=link_navigated">Comfort Classics</a>
270
+ </li>
271
+ <li>
272
+ <a id="plhheader_0_rptCategories_lnkItem_5" title="Nutritious &amp; Delicious" href="/RecipeCollections/RecipeCategory/Nutritious%20and%20Delicious?fm=link_navigated">Nutritious & Delicious</a>
273
+ </li>
274
+ <li>
275
+ <a id="plhheader_0_rptCategories_lnkItem_6" title="Creative &amp; Different" href="/RecipeCollections/RecipeCategory/Creative%20and%20Different?fm=link_navigated">Creative & Different</a>
276
+ </li>
277
+ <li>
278
+ <a id="plhheader_0_rptCategories_lnkItem_7" title="Top 10 Collections" href="/RecipeCollections/RecipeCategory/Top%2010%20Collections?fm=link_navigated">Top 10 Collections</a>
279
+ </li>
280
+ </ul>
281
+ </div>
282
+ <div class="col_1">
283
+ <h3>
284
+ BY TYPE
285
+ </h3>
286
+ <ul>
287
+ <li>
288
+ <a id="plhheader_0_rptTypes_lnkItem_0" title="Breakfast" href="/RecipeCollections/RecipeType/Breakfast?fm=link_navigated">Breakfast</a>
289
+ </li>
290
+ <li>
291
+ <a id="plhheader_0_rptTypes_lnkItem_1" title="Lunch" href="/RecipeCollections/RecipeType/Lunch?fm=link_navigated">Lunch</a>
292
+ </li>
293
+ <li>
294
+ <a id="plhheader_0_rptTypes_lnkItem_2" title="Dinner" href="/RecipeCollections/RecipeType/Dinner?fm=link_navigated">Dinner</a>
295
+ </li>
296
+ <li>
297
+ <a id="plhheader_0_rptTypes_lnkItem_3" title="Appetizers &amp; Drinks" href="/RecipeCollections/RecipeType/Appetizers%20and%20Drinks?fm=link_navigated">Appetizers & Drinks</a>
298
+ </li>
299
+ <li>
300
+ <a id="plhheader_0_rptTypes_lnkItem_4" title="Soups" href="/RecipeCollections/RecipeType/Soups?fm=link_navigated">Soups</a>
301
+ </li>
302
+ <li>
303
+ <a id="plhheader_0_rptTypes_lnkItem_5" title="Salads" href="/RecipeCollections/RecipeType/Salads?fm=link_navigated">Salads</a>
304
+ </li>
305
+ <li>
306
+ <a id="plhheader_0_rptTypes_lnkItem_6" title="Side Dishes" href="/RecipeCollections/RecipeType/Side%20Dishes?fm=link_navigated">Side Dishes</a>
307
+ </li>
308
+ <li>
309
+ <a id="plhheader_0_rptTypes_lnkItem_7" title="Desserts" href="/RecipeCollections/RecipeType/Desserts?fm=link_navigated">Desserts</a>
310
+ </li>
311
+ </ul>
312
+ </div>
313
+ <div class="col_1">
314
+ <h3>
315
+ FEATURED RECIPES
316
+ </h3>
317
+ <ul>
318
+ <li>
319
+ <a id="plhheader_0_rptPopular_lnkItem_0" title="Fantastic Fajitas" href="/RecipeCollections/Featured%20Recipes/Fantastic%20Fajitas?fm=link_navigated">Fantastic Fajitas</a>
320
+ </li>
321
+ <li>
322
+ <a id="plhheader_0_rptPopular_lnkItem_1" title="Have You Tried Mango?" href="/RecipeCollections/Featured%20Recipes/Have%20You%20Tried%20Mango?fm=link_navigated">Have You Tried Mango?</a>
323
+ </li>
324
+ <li>
325
+ <a id="plhheader_0_rptPopular_lnkItem_2" title="Kick It Up" href="/RecipeCollections/Featured%20Recipes/Kick%20It%20Up?fm=link_navigated">Kick It Up</a>
326
+ </li>
327
+ </ul>
328
+ </div>
329
+ </div>
330
+ <!-- ddContent -->
331
+ </div>
332
+ </div>
333
+ <div class="ddFooter">
334
+ <div class="leftCorner">
335
+ <div class="rightCorner">
336
+ &nbsp;
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ <!-- End 3 columns container -->
342
+ </li>
343
+ <li role="menuitem" class="parent">
344
+ <a href="/Brands?fm=link_navigated" title="BRANDS"
345
+ role="link" tabindex="10" accesskey="b">BRANDS</a>
346
+ <div class="subnavi dropdown_5columns">
347
+ <!-- Begin 5 columns container -->
348
+ <div class="ddHeader">
349
+ <div class="leftCorner">
350
+ <div class="rightCorner">
351
+ &nbsp;
352
+ </div>
353
+ </div>
354
+ </div>
355
+ <div class="leftShadow">
356
+ <div class="rightShadow">
357
+ <div class="ddContent clearfix">
358
+ <div class="col_1_logo">
359
+ <a id="plhheader_0_rptBrands_lnkBrand_0" title="Campbell’s® Condensed soup" href="/Brands/Campbells%20Condensed%20soup?fm=link_navigated"><img src="~/media/OurBrands/Logos/campbells.ashx?mh=38&amp;mw=65" alt="Campbells" width="65" height="27" /></a>
360
+ </div>
361
+ <div class="col_1_logo">
362
+ <a id="plhheader_0_rptBrands_lnkBrand_1" title="Campbell&#39;s® Gravies" href="/Brands/Campbells%20Gravies?fm=link_navigated"><img src="~/media/OurBrands/Logos/campbells_gravy.ashx?mh=38&amp;mw=65" alt="Campbells Gravy" width="57" height="38" /></a>
363
+ </div>
364
+ <div class="col_1_logo">
365
+ <a id="plhheader_0_rptBrands_lnkBrand_2" title="Swanson® Broth and Stock" href="/Brands/Swanson%20Broth%20and%20Stock?fm=link_navigated"><img src="~/media/OurBrands/Logos/SwansonFB_llogo.ashx?mh=38&amp;mw=65" alt="Swanson" width="65" height="36" /></a>
366
+ </div>
367
+ <div class="col_1_logo">
368
+ <a id="plhheader_0_rptBrands_lnkBrand_3" title="Swanson® Flavor Boost®" href="/Brands/Swanson%20Flavor%20Boost?fm=link_navigated"><img src="~/media/OurBrands/Logos/swanson-flavor-boost.ashx?mh=38&amp;mw=65" alt="Swanson Flavour Boost" width="65" height="36" /></a>
369
+ </div>
370
+ <div class="col_1_logo">
371
+ <a id="plhheader_0_rptBrands_lnkBrand_4" title="Pace® Sauces" href="/Brands/Pace%20Sauces?fm=link_navigated"><img src="~/media/OurBrands/Logos/pace.ashx?mh=38&amp;mw=65" alt="Pace" width="60" height="38" /></a>
372
+ </div>
373
+ <div class="col_1_logo">
374
+ <a id="plhheader_0_rptBrands_lnkBrand_5" title="Prego® Sauce" href="/Brands/Prego%20Sauce?fm=link_navigated"><img src="~/media/OurBrands/Logos/prego.ashx?mh=38&amp;mw=65" alt="Prego" width="65" height="25" /></a>
375
+ </div>
376
+ <div class="col_1_logo">
377
+ <a id="plhheader_0_rptBrands_lnkBrand_6" title="Pepperidge Farm®" href="/Brands/Pepperidge%20Farm?fm=link_navigated"><img src="~/media/OurBrands/Logos/pepperidge_farm.ashx?mh=38&amp;mw=65" alt="Pepperidge Farms" width="65" height="22" /></a>
378
+ </div>
379
+ <div class="col_1_logo">
380
+ <a id="plhheader_0_rptBrands_lnkBrand_7" title="Soup Plus" href="/Brands/Soup%20Plus?fm=link_navigated"></a>
381
+ </div>
382
+ <div class="col_3">
383
+ <a href="/Brands?fm=link_navigated" title="See All Our Brands">See All Our Brands</a>
384
+ </div>
385
+ </div>
386
+ <!-- ddContent -->
387
+ </div>
388
+ </div>
389
+ <div class="ddFooter">
390
+ <div class="leftCorner">
391
+ <div class="rightCorner">
392
+ &nbsp;
393
+ </div>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ <!-- End 5 columns container -->
398
+ </li>
399
+ <li role="menuitem" class="parent">
400
+ <a href="/cooking%20tips?fm=link_navigated"
401
+ title="COOKING TIPS" role="link" tabindex="11" accesskey="t">COOKING TIPS</a>
402
+ <div class="subnavi dropdown_1column">
403
+ <!-- Begin 1 column container -->
404
+ <div class="ddHeader">
405
+ <div class="leftCorner">
406
+ <div class="rightCorner">
407
+ &nbsp;
408
+ </div>
409
+ </div>
410
+ </div>
411
+ <div class="leftShadow">
412
+ <div class="rightShadow">
413
+ <div class="ddContent clearfix">
414
+ <div class="col_1">
415
+ <ul>
416
+ <li>
417
+ <a id="plhheader_0_rptTips_lnkItem_0" title="Cooking Basics" href="/CookingTips/CookingBasics?fm=link_navigated">Cooking Basics</a>
418
+ </li>
419
+ <li>
420
+ <a id="plhheader_0_rptTips_lnkItem_1" title="Getting Creative" href="/CookingTips/GettingCreative?fm=link_navigated">Getting Creative</a>
421
+ </li>
422
+ <li>
423
+ <a id="plhheader_0_rptTips_lnkItem_2" title="Kid-Friendly Ideas" href="/CookingTips/Kid-FriendlyIdeas?fm=link_navigated">Kid-Friendly Ideas</a>
424
+ </li>
425
+ <li>
426
+ <a id="plhheader_0_rptTips_lnkItem_3" title="Green Kitchen" href="/CookingTips/Green%20Kitchen?fm=link_navigated">Green Kitchen</a>
427
+ </li>
428
+ <li>
429
+ <a id="plhheader_0_rptTips_lnkItem_4" title="Tips for Busy Cooks" href="/CookingTips/Tips%20for%20Busy%20Cooks?fm=link_navigated">Tips for Busy Cooks</a>
430
+ </li>
431
+ <li>
432
+ <a id="plhheader_0_rptTips_lnkItem_5" title="Smart Substitutions" href="/CookingTips/Smart%20Substitutions?fm=link_navigated">Smart Substitutions</a>
433
+ </li>
434
+ <li>
435
+ <a id="plhheader_0_rptTips_lnkItem_6" title="Quick Tips" href="/CookingTips/QuickTips?fm=link_navigated">Quick Tips</a>
436
+ </li>
437
+ </ul>
438
+ </div>
439
+ </div>
440
+ <!-- ddContent -->
441
+ </div>
442
+ </div>
443
+ <div class="ddFooter">
444
+ <div class="leftCorner">
445
+ <div class="rightCorner">
446
+ &nbsp;
447
+ </div>
448
+ </div>
449
+ </div>
450
+ </div>
451
+ <!-- End 1 column container -->
452
+ </li>
453
+ <li role="menuitem"><a href="/Entertaining?fm=link_navigated"
454
+ title="ENTERTAINING" role="link" tabindex="12" accesskey="n">ENTERTAINING</a></li>
455
+ <li role="menuitem" class="parent">
456
+ <a href="/Healthy%20Eating?fm=link_navigated"
457
+ title="HEALTHY EATING" role="link" tabindex="13" accesskey="h">HEALTHY EATING</a>
458
+ <div class="subnavi dropdown_1column">
459
+ <!-- Begin 1 column container -->
460
+ <div class="ddHeader">
461
+ <div class="leftCorner">
462
+ <div class="rightCorner">
463
+ &nbsp;
464
+ </div>
465
+ </div>
466
+ </div>
467
+ <div class="leftShadow">
468
+ <div class="rightShadow">
469
+ <div class="ddContent clearfix">
470
+ <div class="col_1">
471
+ <ul>
472
+ <li>
473
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_0" title="12 Superfoods" href="/Healthy%20Eating/12%20Superfoods?fm=link_navigated">12 Superfoods</a>
474
+ </li>
475
+ <li>
476
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_1" title="Cooking Tips" href="/Healthy%20Eating/Cooking%20Tips?fm=link_navigated">Cooking Tips</a>
477
+ </li>
478
+ <li>
479
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_2" title="Dietary Guidelines in Action " href="/Healthy%20Eating/Dietary%20Guidelines%20in%20Action?fm=link_navigated">Dietary Guidelines in Action </a>
480
+ </li>
481
+ <li>
482
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_3" title="Eat More Color!" href="/Healthy%20Eating/Eat%20More%20Color?fm=link_navigated">Eat More Color!</a>
483
+ </li>
484
+ <li>
485
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_4" title="Portion Control" href="/Healthy%20Eating/Portion%20Control?fm=link_navigated">Portion Control</a>
486
+ </li>
487
+ <li>
488
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_5" title="Recipes for Healthy Eating" href="/Healthy%20Eating/Recipes%20for%20Healthy%20Eating?fm=link_navigated">Recipes for Healthy Eating</a>
489
+ </li>
490
+ <li>
491
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_6" title="Smart Shopping" href="/Healthy%20Eating/Smart%20Shopping?fm=link_navigated">Smart Shopping</a>
492
+ </li>
493
+ <li>
494
+ <a id="plhheader_0_rptHealthyEatings_lnkItem_7" title="Healthy Cooking Tips" href="/Healthy%20Eating/Healthy%20Cooking%20Tips?fm=link_navigated">Healthy Cooking Tips</a>
495
+ </li>
496
+ </ul>
497
+ </div>
498
+ </div>
499
+ <!-- ddContent -->
500
+ </div>
501
+ </div>
502
+ <div class="ddFooter">
503
+ <div class="leftCorner">
504
+ <div class="rightCorner">
505
+ &nbsp;
506
+ </div>
507
+ </div>
508
+ </div>
509
+ </div>
510
+ <!-- End 1 column container -->
511
+ </li>
512
+ <li role="menuitem"><a href="/SavingsCenterLandingPage?fm=link_navigated" title="SAVINGS CENTER"
513
+ role="link" tabindex="14" accesskey="c">SAVINGS CENTER</a></li>
514
+ </ul>
515
+ <script type="text/javascript">
516
+ function ClickRecipeSearchButton() {
517
+ document.getElementById('plhheader_0_ctl00_btnSearchRecipe').click();
518
+ }
519
+ </script>
520
+ <div class="headerSearch clearfix" role="search">
521
+ <span class="searchField">
522
+ <input name="plhheader_0$ctl00$tbSearchRecipe" type="text" value="Search Recipes" maxlength="60" id="plhheader_0_ctl00_tbSearchRecipe" accesskey="s" tabindex="11" role="textbox" onfocus="if(this.value==&#39;Search Recipes&#39;) this.value=&#39;&#39;" onblur="if(this.value==&#39;&#39;) this.value=&#39;Search Recipes&#39;" onkeydown="if (event.keyCode == 13) ClickRecipeSearchButton();" />
523
+ </span><span class="searchButton">
524
+ <input onclick="__doPostBack('plhheader_0$ctl00$btnSearchRecipe','')" name="plhheader_0$ctl00$btnSearchRecipe" type="button" id="plhheader_0_ctl00_btnSearchRecipe" />
525
+ </span>
526
+ </div>
527
+ </div>
528
+ <!-- #headerNavigation -->
529
+ </div>
530
+ <!-- .container_12 -->
531
+ <script type="text/javascript">
532
+ $(document).ready(function () {
533
+ function fbEnsureInit() {
534
+ if (!window.fbApiInit) {
535
+ setTimeout(function () { fbEnsureInit(); }, 50);
536
+ } else {
537
+ FB.Event.subscribe('edge.create',
538
+ function (response) {
539
+ if (response.toLowerCase().indexOf('facebook.com/campbellskitchen') > 0) {
540
+ callOmnitureMainPageLiked();
541
+ }
542
+ else {
543
+ callOmnitureSocial('facebook');
544
+ }
545
+ });
546
+ }
547
+ }
548
+
549
+ fbEnsureInit();
550
+ });
551
+
552
+ function callOmnitureSocial(socialNetwork,isRecipePage) {
553
+ s.prop20 = socialNetwork;
554
+ s.prop24 = document.title;
555
+
556
+ s.eVar33 = document.title;
557
+
558
+ if (document.location.href.toLowerCase().indexOf('recipedetails') > 0) {
559
+ s.prop20 = socialNetwork;
560
+ s.events = 'event76';
561
+ s.prop24 = s.prop10;
562
+ s.eVar33 = s.prop10;
563
+ }
564
+ else {
565
+ s.events = 'event17';
566
+ }
567
+
568
+ if (document.location.href.toLowerCase().indexOf('savingscenterlandingpage') > 0) {
569
+ s.prop24 = 'COUPONS';
570
+ s.eVar33 = 'COUPONS';
571
+ }
572
+
573
+ s.eVar15 = socialNetwork;
574
+ // s.events = document.location.href.toLowerCase().indexOf('recipedetails') > 0 ? 'event76' : 'event17';
575
+ writeOmniture(s);
576
+ }
577
+
578
+ function callOmnitureMainPageLiked() {
579
+
580
+ s.prop20 = 'facebook';
581
+ s.prop24 = 'Campbell\'s Kitchen Fan';
582
+ s.eVar15 = 'facebook';
583
+ s.eVar33 = 'Campbell\'s Kitchen Fan';
584
+
585
+ //set events_original to undefined
586
+ //otherwise it will be replaced with the previous exit link event (e.g. 'pin' it link)
587
+ s.events_original = undefined;
588
+ s.events = 'event18';
589
+ writeOmniture(s);
590
+ }
591
+ </script>
592
+ </div>
593
+ <div id="siteMainWrapper">
594
+ <script type="text/javascript">
595
+ function callSubmissionOmniture() {
596
+ s.events = "event57, event75";
597
+ s.prop18 = 60821;
598
+ s.eVar51 = 60821;
599
+ writeOmniture(s);
600
+ }
601
+ function ShowLoginPopup() {
602
+ $('html, body').scrollTop(0);
603
+ Popin.getInstance().show('#logInForm');
604
+ }
605
+
606
+ //Page is viewed for more than 20 minutes
607
+ setTimeout(function(){
608
+ s.events = 'event71';
609
+ writeOmniture(s);
610
+ }, 20*60*1000);
611
+ </script>
612
+ <script type="text/javascript">
613
+ $BV.configure("global", {
614
+ allowSamePageSubmission: true,
615
+ userToken: "",
616
+ doLogin: function (successCallback, successUrl) {
617
+ setCookie("bvSubmission", successUrl, 365);
618
+ ShowLoginPopup();
619
+ setActionAttemptCookie('MemberActionAttempt', 'write_a_review', 1);
620
+ },
621
+ doShowSubmission: function () {
622
+ $("#reviewsContainer").css("display", "none");
623
+ $("#submissionContainer").css("display", "block");
624
+ },
625
+ onSubmissionReturn: function () {
626
+ $("#reviewsContainer").css("display", "block");
627
+ $("#submissionContainer").css("display", "none");
628
+
629
+ $(document).ready(function () {
630
+ callSubmissionOmniture();
631
+
632
+ });
633
+
634
+ },
635
+ doScrollSubmission: function () {
636
+ $('html, body').animate({
637
+ scrollTop: $("#BVSubmissionContainer").offset().top
638
+ }, 2000);
639
+
640
+ //console.log('scrollsubmision');
641
+
642
+
643
+ }
644
+ });
645
+
646
+ </script>
647
+ <script type="text/javascript">
648
+ $BV.ui("rr", "show_reviews", {
649
+ productId: "60821"
650
+ });
651
+ </script>
652
+ <div id="mediaItemsDiv" style="display:none"></div>
653
+ <script type="text/javascript">
654
+ function callMediaItems(activityID) {
655
+
656
+ var ebRand = Math.random() + '';
657
+ ebRand = ebRand * 1000000;
658
+ var jsUrl = 'HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&ActivityID=' + activityID + '&rnd=' + ebRand;
659
+ var imgUrl = 'HTTP://bs.serving-sys.com/BurstingPipe/ActivityServer.bs?cn=as&ActivityID=' + activityID + '&ns=1';
660
+ document.getElementById('mediaItemsDiv').innerHTML = '';
661
+
662
+ var oImg = document.createElement("img");
663
+ oImg.setAttribute('src', imgUrl);
664
+ oImg.setAttribute('height', '1px');
665
+ oImg.setAttribute('width', '1px');
666
+ document.getElementById("mediaItemsDiv").appendChild(oImg);
667
+
668
+ var fileref = document.createElement('script');
669
+ fileref.setAttribute("type", "text/javascript");
670
+ fileref.setAttribute("src", jsUrl);
671
+ document.getElementById("mediaItemsDiv").appendChild(fileref);
672
+ }
673
+ </script>
674
+ <div style="display:none"></div>
675
+ <div id="siteMainInner">
676
+ <div id="siteMain" role="main">
677
+ <div class="container_12 clearfix breadCrumb">
678
+ <ol>
679
+ <li><a href="/CKHome" title="Campbell's Kitchen Home">Campbell's Kitchen Home</a><span class="orangeArrow">&nbsp;</span></li>
680
+ <li><a href="/RecipeCollections" title="Recipes">Recipes</a><span class="orangeArrow">&nbsp;</span></li>
681
+ <li>Savory White Beans & Spinach</li>
682
+ </ol>
683
+ </div>
684
+ <div class="hrecipe">
685
+ <div class="productInfo container_12 clearfix">
686
+ <div class="socialBlock">
687
+ <div class="moreAction">
688
+ </div>
689
+ <div class="social facebook">
690
+ <fb:like href="http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821" layout="button_count" show_faces="False" font="verdana" width="100"></fb:like>
691
+ </div>
692
+ <div class="social googlePlus">
693
+ <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
694
+ <g:plusone size="medium" callback="plusClick" annotation="none" href="http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821"></g:plusone>
695
+ </div>
696
+ <div class="social twitter">
697
+ <a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-url="http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821" data-count="none">Tweet</a>
698
+ </div>
699
+ <div class="social pinterest">
700
+ <a href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fwww.campbellskitchen.com%2fRecipes%2fRecipeDetails%3frecipeid%3d60821&media=http://www.cscassets.com/recipes/large_cknew/large_60821.jpg&description=The+beans+are+white%2c+the+greens+are+spinach...and+the+dish+is+delicious+(and+ready+in+30+minutes)!"
701
+ onclick="callOmnitureSocial('pinterest'); window.open(this.href, 'signin', 'height=300,width=665'); return false"
702
+ class="pin-it-button" count-layout="none">
703
+ <img border="0" src="/images/pinIt.png" title="Pin It" /></a>
704
+ </div>
705
+ </div>
706
+ <script type="text/javascript" charset="utf-8">
707
+ window.twttr = (function (d, s, id) {
708
+ var t, js, fjs = d.getElementsByTagName(s)[0];
709
+ if (d.getElementById(id)) return; js = d.createElement(s); js.id = id;
710
+ js.src = "//platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs);
711
+ return window.twttr || (t = { _e: [], ready: function (f) { t._e.push(f) } });
712
+ } (document, "script", "twitter-wjs"));
713
+ </script>
714
+ <script type="text/javascript">
715
+ function plusClick(jsonParam) {
716
+ if (jsonParam.state == "on") {
717
+ callOmnitureSocial('googleplus');
718
+ }
719
+ }
720
+
721
+ $(document).ready(function () {
722
+
723
+ twttr.ready(function (twttr) {
724
+ twttr.events.bind('tweet', function (event) {
725
+ callOmnitureSocial('twitter');
726
+ });
727
+ });
728
+ });
729
+ </script>
730
+ <span class="item">
731
+ <h1 class="fn">
732
+ Savory White Beans & Spinach
733
+ </h1>
734
+ </span>
735
+ <div class="review hreview-aggregate">
736
+ <div class="rating">
737
+ <span class="best"><span class="value-title" title="5" /></span><span class="worst">
738
+ <span class="value-title" title="0" /></span>
739
+ <div id="BVRRSummaryContainer">
740
+ </div>
741
+ </div>
742
+ </div>
743
+ </div>
744
+ <div class="container_12 clearfix productInfoDetails">
745
+ <div class="grid_6">
746
+ <div class="productImgContainer">
747
+ <div class="stageItemRight">
748
+ <div class="photoWrapper">
749
+ <div class="photoContainer">
750
+ <a id="plhcontent_0_campaignPopUpLink" class="aspNetDisabled" href="javascript:Popin.getInstance().show(&#39;#cmsContnetWindow&#39;);callCampaingOpenModule();" role="link"><img id="plhcontent_0_imgMain" title="Savory White Beans &amp; Spinach" class="photo" src="http://www.cscassets.com/recipes/large_cknew/large_60821.jpg" style="height:316px;width:460px;" /></a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
751
+ </div>
752
+ </div>
753
+ </div>
754
+ <p>
755
+ <span class="summary">
756
+ The beans are white, the greens are spinach...and the dish is delicious (and ready in 30 minutes)!<br /></span>
757
+ </p>
758
+ </div>
759
+ </div>
760
+ <div class="grid_6">
761
+ <div class="recipeProperty clearfix">
762
+ <div class="shortLegend">
763
+ <p class="shortLegendTitle">
764
+ At a glance
765
+ </p>
766
+ <div class="propItemsWrapper clearfix">
767
+ <div class="propItem">
768
+ <div class="iconItem">
769
+ <img src="/images/icons/prep.gif" width="54" height="46" alt="" />
770
+ </div>
771
+ <div class="iconDesc">
772
+ <p>
773
+ <strong>Prep</strong>
774
+ </p>
775
+ <p>
776
+ 20 min.
777
+ </p>
778
+ </div>
779
+ </div>
780
+ <!-- .propItem -->
781
+ <div class="propItem">
782
+ <div class="iconItem">
783
+ <img src="/images/icons/total.gif" width="43" height="46" alt="" />
784
+ </div>
785
+ <div class="iconDesc">
786
+ <p>
787
+ <strong>Total</strong>
788
+ </p>
789
+ <p>
790
+ 30 min.
791
+ </p>
792
+ </div>
793
+ </div>
794
+ <!-- .propItem -->
795
+ <div class="propItem">
796
+ <div class="iconItem">
797
+ <img src="/images/icons/serves.gif" width="45" height="46" alt="" />
798
+ </div>
799
+ <div class="iconDesc">
800
+ <p>
801
+ <strong>Serves</strong>
802
+ </p>
803
+ <p>
804
+ <span class="yield">
805
+ 4</span>
806
+ </p>
807
+ </div>
808
+ </div>
809
+ <!-- .propItem -->
810
+ </div>
811
+ <!-- .propItemsWrapper -->
812
+ <span class="corner topLeft"></span><span class="corner topRight"></span><span class="corner bottomLeft">
813
+ </span><span class="corner bottomRight"></span>
814
+ </div>
815
+ <span class="preptime"><span class="value-title" title="20 min.">
816
+ </span></span>
817
+ <span class="duration"><span class="value-title" title="30 min.">
818
+ </span></span>
819
+ <span class="cooktime"><span class="value-title" title="10 min.">
820
+ </span></span>
821
+ <!-- .shortLegend -->
822
+ <div class="largeLegend">
823
+ <p><strong>Servings: </strong>about 1 1/4 cups each</p>
824
+ <p>
825
+ <strong>
826
+ Cook:</strong>
827
+ 10 min.
828
+ </p>
829
+ </div>
830
+ <!-- .largeLegend -->
831
+ </div>
832
+ <!-- recipeProperty -->
833
+ <div class="materialWrapper">
834
+ <p class="areaTitle">
835
+ Made With
836
+ </p>
837
+ <div class="smallControls clearfix">
838
+ </div>
839
+ <ul id="usedProductsCarousel" class="clearfix">
840
+ <li>
841
+ <div class="madeWithProdImg">
842
+ <img height="110" width="" alt="Swanson&#174; Flavor Boost&#8482; Concentrated Vegetable Broth" src="http://www.cscassets.com/madewith/20124.jpg"" />
843
+ </div>
844
+ <div class="madeWithDesc">
845
+ <div class="imgDescWrapper">
846
+ <div class="imgDescContent">
847
+ <p>
848
+ Swanson&#174; Flavor Boost&#8482; Concentrated Vegetable Broth
849
+ </p>
850
+ </div>
851
+ </div>
852
+ </div>
853
+ </li>
854
+ </ul>
855
+ </div>
856
+ <!-- .materialCarousel -->
857
+ <div class="moreAction">
858
+ <ul>
859
+ <li>
860
+ <p>
861
+ </p>
862
+ <a onclick="javascript:Popin.getInstance().show(&#39;#ErrorMessagePanel&#39;); return false;" id="plhcontent_0_lbtnAddToRecipeBox" title="Add to Recipe Box" class="icon heart" href="javascript:__doPostBack(&#39;plhcontent_0$lbtnAddToRecipeBox&#39;,&#39;&#39;)">Add to Recipe Box</a>
863
+ </li>
864
+ <li><a href="/recipes/printrecipe.aspx?recipeid=60821" title="Print &amp; Save"
865
+ class="icon print" target="_blank">Print &amp; Save</a> </li>
866
+ <li class="last">
867
+ <a href="#" title="Send by Email" class="icon mail">Send by Email</a>
868
+ <div id="modalSendMail" class="popIn">
869
+ <div class="modalTopcorner">
870
+ &nbsp;
871
+ </div>
872
+ <div class="modalFormContent clearfix">
873
+ <p class="sentTitle">
874
+ Email this recipe
875
+ </p>
876
+ <div class="modalDesc">
877
+ <p>
878
+ Share your find! Send this recipe to a friend. And don’t worry, we won’t use your
879
+ friend’s email address for anything other than sending this recipe.
880
+ </p>
881
+ </div>
882
+ <!-- modalDesc -->
883
+ <div class="sendViaFB">
884
+ <fb:send class="fb-send" href="http://www.campbellskitchen.com/Recipes/RecipeDetails?recipeid=60821"></fb:send>
885
+ Send your email through Facebook:
886
+ </div>
887
+ <!-- sendViaFB -->
888
+ <div class="sepContent clearfix">
889
+ <span>Or</span>
890
+ </div>
891
+ <div class="formContent">
892
+ <div class="clearfix">
893
+ <label>
894
+ Your email:<span class="red">*</span></label>
895
+ <div class="inputWrapper">
896
+ <input name="plhcontent_0$ctl00$tbMailSender" type="text" id="plhcontent_0_ctl00_tbMailSender" onblur="ValidationCheck(&#39;plhcontent_0_ctl00_tbMailSender&#39;,&#39;&#39;, &#39;&#39;);" />
897
+ </div>
898
+ </div>
899
+ <div class="clearfix">
900
+ <label>
901
+ Your friend's email:<span class="red">*</span></label>
902
+ <div class="inputWrapper">
903
+ <input name="plhcontent_0$ctl00$tbMailReceiver" type="text" id="plhcontent_0_ctl00_tbMailReceiver" onblur="ValidationCheck(&#39;&#39;,&#39;plhcontent_0_ctl00_tbMailReceiver&#39;, &#39;&#39;);" />
904
+ </div>
905
+ </div>
906
+ <div class="clearfix">
907
+ <label>
908
+ Type your message:<span class="red">*</span></label>
909
+ <div class="textAreaWrapper">
910
+ <textarea name="plhcontent_0$ctl00$tbMessage" rows="2" cols="20" id="plhcontent_0_ctl00_tbMessage" class="textAreaWrapper" onblur="ValidationCheck(&#39;&#39;,&#39;&#39;, &#39;plhcontent_0_ctl00_tbMessage&#39;);">
911
+ I thought you might be interested in this recipe from Campbell’s Kitchen.</textarea>
912
+ </div>
913
+ </div>
914
+ </div>
915
+ <div class="buttonsWrapper">
916
+ <p class="requiredFieldLabel">
917
+ * Required fields
918
+ </p>
919
+ <a onclick="javascript:return ValidationCheck(&#39;plhcontent_0_ctl00_tbMailSender&#39;,&#39;plhcontent_0_ctl00_tbMailReceiver&#39;, &#39;plhcontent_0_ctl00_tbMessage&#39;);" id="plhcontent_0_ctl00_btnSend" role="button" title="Send" class="button btnStandard w62" href="javascript:__doPostBack(&#39;plhcontent_0$ctl00$btnSend&#39;,&#39;&#39;)">
920
+ <span class="btnRight"></span>
921
+ <span class="btnLabel">Send</span>
922
+ </a>
923
+ <a href="#" id="btnCancelRecipeSend" title="Cancel">Cancel</a>
924
+ </div>
925
+ </div>
926
+ <!-- modalFormContent -->
927
+ <div class="modalBottomcorner">
928
+ &nbsp;
929
+ </div>
930
+ </div>
931
+ <script type="text/javascript">
932
+ $(document).ready(function () {
933
+
934
+ function fbEnsureInit() {
935
+ if (!window.fbApiInit) {
936
+ setTimeout(function () { fbEnsureInit(); }, 50);
937
+ } else {
938
+ FB.Event.subscribe('message.send',
939
+ function (response) {
940
+ callOmnitureSocialFbSend();
941
+ //Recipe Share, Save, E-mail
942
+ callMediaItems(241911);
943
+ });
944
+ }
945
+ }
946
+ fbEnsureInit();
947
+ });
948
+ </script>
949
+ </li>
950
+ </ul>
951
+ </div>
952
+ </div>
953
+ </div>
954
+ <!-- .container_12 -->
955
+ <div class="tabsNavi clearfix">
956
+ <ul>
957
+ <li class="active"><a href="#" title="Ingredients &amp; Instructions"><span class="rightCorner">
958
+ </span>Ingredients &amp; Instructions </a>
959
+ </li>
960
+ <li><a href="#" title="Nutritional Info" id="nut"><span class="rightCorner"></span>Nutritional
961
+ Info </a>
962
+ </li>
963
+ <li> <a href="#" title="Notes"><span class="rightCorner"></span>Notes </a></li>
964
+ </ul>
965
+ </div>
966
+ <div class="container_12 clearfix recipeDetailsPage">
967
+ <div class="mainContent">
968
+ <div id="tabsWrapper" class="tabIngredients">
969
+ <div class="tabInner" id="ingredients">
970
+ <h2>
971
+ What You'll Need
972
+ </h2>
973
+ <div class="par ingredients">
974
+ <span class="ingredient">
975
+ <span class="amount">1 </span> tablespoon <span class="name">olive oil</span>
976
+ </span>
977
+ <br />
978
+ <span class="ingredient">
979
+ <span class="amount">1 </span> medium <span class="name">onion</span>, minced (about 1 cup)
980
+ </span>
981
+ <br />
982
+ <span class="ingredient">
983
+ <span class="amount">1/4</span> teaspoon <span class="name">crushed red pepper</span>
984
+ </span>
985
+ <br />
986
+ <span class="ingredient">
987
+ <span class="amount">1 </span> packet <span class="name">Swanson&#174; Flavor Boost&#8482; Concentrated Vegetable Broth</span>
988
+ </span>
989
+ <br />
990
+ <span class="ingredient">
991
+ <span class="amount">1 </span> package (about 6 ounces) <span class="name">fresh baby spinach</span> (about 8 cups)
992
+ </span>
993
+ <br />
994
+ <span class="ingredient">
995
+ <span class="amount">1 </span> can (about 15 ounces) <span class="name">white kidney beans (cannellini)</span>, rinsed and drained
996
+ </span>
997
+ <br />
998
+ <span class="ingredient">
999
+ <span class="amount">1/4</span> cup <span class="name">grated Parmesan cheese</span>
1000
+ </span>
1001
+ <br />
1002
+ <span class="ingredient">
1003
+ <span class="amount">1 </span> cup <span class="name">ditalini pasta</span>, cooked and drained (about 2 cups)
1004
+ </span>
1005
+ <br />
1006
+ </div>
1007
+ <h2 id="plhcontent_0_howToMakeItHeader">
1008
+ How to Make It
1009
+ </h2>
1010
+ <div class="listview">
1011
+ <div class="instructions">
1012
+ <ul>
1013
+ <li>
1014
+ <span>
1015
+ 1</span>
1016
+ <p>
1017
+ Heat the oil in a 12-inch skillet over medium heat.&#160; Add the onion and cook until tender, stirring occasionally.&#160; Stir in the red pepper, concentrated broth and spinach.&#160; Cover and cook until the spinach is wilted.<br />
1018
+ </p>
1019
+ </li>
1020
+ <li>
1021
+ <span>
1022
+ 2</span>
1023
+ <p>
1024
+ Add the beans, cheese and pasta and toss to coat.<br />
1025
+ </p>
1026
+ </li>
1027
+ </ul>
1028
+ </div>
1029
+ </div>
1030
+ <!-- listview -->
1031
+ <a href="/recipes/recipedetailsfullscreenview.aspx?recipeid=60821" title="Full Screen View"
1032
+ class="fullScreeen">Full Screen View</a>
1033
+ </div>
1034
+ <!-- #ingredients -->
1035
+ <div class="tabInner" id="nutritionalInfo">
1036
+ <h2>
1037
+ Recipe Nutritional Information
1038
+ </h2>
1039
+ <div class="nutriInfoWrapper">
1040
+ <table border="1">
1041
+ <tr class="odd">
1042
+ <td class="rowTitle">
1043
+ <p>
1044
+ Made With
1045
+ </p>
1046
+ </td>
1047
+ <td>
1048
+ Swanson Concentrated Vegetable Broth
1049
+ </td>
1050
+ </tr>
1051
+ <tr class="even">
1052
+ <td class="rowTitle">
1053
+ <p>
1054
+ Calories
1055
+ </p>
1056
+ </td>
1057
+ <td>
1058
+ 292
1059
+ </td>
1060
+ </tr>
1061
+ <tr class="odd">
1062
+ <td class="rowTitle">
1063
+ <p>
1064
+ Total Fat
1065
+ </p>
1066
+ </td>
1067
+ <td>
1068
+ 6g
1069
+ </td>
1070
+ </tr>
1071
+ <tr class="even">
1072
+ <td class="rowTitle">
1073
+ <p>
1074
+ Saturated Fat
1075
+ </p>
1076
+ </td>
1077
+ <td>
1078
+ 2g
1079
+ </td>
1080
+ </tr>
1081
+ <tr class="odd">
1082
+ <td class="rowTitle">
1083
+ <p>
1084
+ Cholesterol
1085
+ </p>
1086
+ </td>
1087
+ <td>
1088
+ 6mg
1089
+ </td>
1090
+ </tr>
1091
+ <tr class="even">
1092
+ <td class="rowTitle">
1093
+ <p>
1094
+ Sodium
1095
+ </p>
1096
+ </td>
1097
+ <td>
1098
+ 524mg
1099
+ </td>
1100
+ </tr>
1101
+ <tr class="odd">
1102
+ <td class="rowTitle">
1103
+ <p>
1104
+ Total Carbohydrate
1105
+ </p>
1106
+ </td>
1107
+ <td>
1108
+ 45g
1109
+ </td>
1110
+ </tr>
1111
+ <tr class="even">
1112
+ <td class="rowTitle">
1113
+ <p>
1114
+ Dietary Fiber
1115
+ </p>
1116
+ </td>
1117
+ <td>
1118
+ 8g
1119
+ </td>
1120
+ </tr>
1121
+ <tr class="odd">
1122
+ <td class="rowTitle">
1123
+ <p>
1124
+ Protein
1125
+ </p>
1126
+ </td>
1127
+ <td>
1128
+ 15g
1129
+ </td>
1130
+ </tr>
1131
+ <tr class="even">
1132
+ <td class="rowTitle">
1133
+ <p>
1134
+ Vitamin A
1135
+ </p>
1136
+ </td>
1137
+ <td>
1138
+ 81%DV
1139
+ </td>
1140
+ </tr>
1141
+ <tr class="odd">
1142
+ <td class="rowTitle">
1143
+ <p>
1144
+ Vitamin C
1145
+ </p>
1146
+ </td>
1147
+ <td>
1148
+ 12%DV
1149
+ </td>
1150
+ </tr>
1151
+ <tr class="even">
1152
+ <td class="rowTitle">
1153
+ <p>
1154
+ Calcium
1155
+ </p>
1156
+ </td>
1157
+ <td>
1158
+ 19%DV
1159
+ </td>
1160
+ </tr>
1161
+ <tr class="odd">
1162
+ <td class="rowTitle">
1163
+ <p>
1164
+ Iron
1165
+ </p>
1166
+ </td>
1167
+ <td>
1168
+ 28%DV
1169
+ </td>
1170
+ </tr>
1171
+ </table>
1172
+ <span class="corner topLeft"></span><span class="corner topRight"></span>
1173
+ <span class="corner bottomLeft"></span><span class="corner bottomRight"></span>
1174
+ </div>
1175
+ <!-- <p class="infoText">This nutritional information refers to each serving of the entire recipe and not just the products used as ingredients.</p>-->
1176
+ </div>
1177
+ <!-- #nutritionalInfo -->
1178
+ <div class="tabInner" id="notes">
1179
+ <div id="plhcontent_0_upnlNotes">
1180
+ <div id="plhcontent_0_pnlAnonymous">
1181
+ You need to be signed in to add a note to this recipe.<br/>
1182
+ Please <a href="javascript:setActionAttemptCookie('MemberActionAttempt', 'Add_a_note', 1);Popin.getInstance().show('#logInForm');" title="Log In">Log In</a> or <a href="javascript:Popin.getInstance().show('#registerForm');setActionAttemptCookie('MemberActionAttempt', 'Add_a_note', 1);" title="Register">Register</a>.
1183
+ </div>
1184
+ </div>
1185
+ </div>
1186
+ <!-- #notes -->
1187
+ </div>
1188
+ <div class="col560" id="reviewsContainer">
1189
+ <div id="BVRRContainer">
1190
+ </div>
1191
+ </div>
1192
+ <div class="col560" id="submissionContainer">
1193
+ <div id="BVSubmissionContainer">
1194
+ </div>
1195
+ </div>
1196
+ <!-- col560 -->
1197
+ <div class="col560 recipeReference">
1198
+ RID#60821
1199
+ </div>
1200
+ </div>
1201
+ <div class="sidebar">
1202
+ <div class="sidebarBlock shadow" id="relatedRecipes">
1203
+ <p class="blockTitle">
1204
+ Related Recipes
1205
+ </p>
1206
+ <div class="clearfix" id="ctl128">
1207
+ <div class="relatedItem">
1208
+ <div class="imgHolder">
1209
+ <a href="/recipes/recipedetails?recipeid=17&fm=recipes_related"
1210
+ title="Chili & Rice">
1211
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_17.jpg "
1212
+ width="140" height="96" alt="Chili & Rice" />
1213
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1214
+ </div>
1215
+ <p class="itemTitle">
1216
+ <a href="/recipes/recipedetails?recipeid=17&fm=recipes_related"
1217
+ title="Chili & Rice">
1218
+ Chili & Rice</a>
1219
+ </p>
1220
+ </div>
1221
+ <div class="relatedItem">
1222
+ <div class="imgHolder">
1223
+ <a href="/recipes/recipedetails?recipeid=23868&fm=recipes_related"
1224
+ title="Broccoli & Garlic Penne Pasta">
1225
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_23868.jpg "
1226
+ width="140" height="96" alt="Broccoli & Garlic Penne Pasta" />
1227
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1228
+ </div>
1229
+ <p class="itemTitle">
1230
+ <a href="/recipes/recipedetails?recipeid=23868&fm=recipes_related"
1231
+ title="Broccoli & Garlic Penne Pasta">
1232
+ Broccoli & Garlic Penne Pasta</a>
1233
+ </p>
1234
+ </div>
1235
+ <div class="relatedItem">
1236
+ <div class="imgHolder">
1237
+ <a href="/recipes/recipedetails?recipeid=24877&fm=recipes_related"
1238
+ title="Hearty Vegetarian Chili">
1239
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_24877.jpg "
1240
+ width="140" height="96" alt="Hearty Vegetarian Chili" />
1241
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1242
+ </div>
1243
+ <p class="itemTitle">
1244
+ <a href="/recipes/recipedetails?recipeid=24877&fm=recipes_related"
1245
+ title="Hearty Vegetarian Chili">
1246
+ Hearty Vegetarian Chili</a>
1247
+ </p>
1248
+ </div>
1249
+ <div class="relatedItem">
1250
+ <div class="imgHolder">
1251
+ <a href="/recipes/recipedetails?recipeid=60740&fm=recipes_related"
1252
+ title="Layered Pasta, Veggie & Cheese Skillet">
1253
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_60740.jpg "
1254
+ width="140" height="96" alt="Layered Pasta, Veggie & Cheese Skillet" />
1255
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1256
+ </div>
1257
+ <p class="itemTitle">
1258
+ <a href="/recipes/recipedetails?recipeid=60740&fm=recipes_related"
1259
+ title="Layered Pasta, Veggie & Cheese Skillet">
1260
+ Layered Pasta, Veggie & Cheese Skillet</a>
1261
+ </p>
1262
+ </div>
1263
+ </div>
1264
+ </div>
1265
+ <div class="sidebarBlock" id="alsoLike">
1266
+ <p class="blockTitle">
1267
+ People that like this also like ...
1268
+ </p>
1269
+ <div class="clearfix">
1270
+ <div class="relatedItem">
1271
+ <div class="imgHolder">
1272
+ <a href="/recipes/recipedetails?recipeid=30&fm=recipes_people"
1273
+ title="Chicken Creole with Chile Cream Sauce">
1274
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_30.jpg " width="140" height="96"
1275
+ alt="Chicken Creole with Chile Cream Sauce" />
1276
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1277
+ </div>
1278
+ <p class="itemTitle">
1279
+ <a href="/recipes/recipedetails?recipeid=30&fm=recipes_people"
1280
+ title="Chicken Creole with Chile Cream Sauce">
1281
+ Chicken Creole with Chile Cream Sauce</a>
1282
+ </p>
1283
+ </div>
1284
+ <div class="relatedItem">
1285
+ <div class="imgHolder">
1286
+ <a href="/recipes/recipedetails?recipeid=32&fm=recipes_people"
1287
+ title="15-Minute Chicken & Rice Dinner">
1288
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_32.jpg " width="140" height="96"
1289
+ alt="15-Minute Chicken & Rice Dinner" />
1290
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1291
+ </div>
1292
+ <p class="itemTitle">
1293
+ <a href="/recipes/recipedetails?recipeid=32&fm=recipes_people"
1294
+ title="15-Minute Chicken & Rice Dinner">
1295
+ 15-Minute Chicken & Rice Dinner</a>
1296
+ </p>
1297
+ </div>
1298
+ <div class="relatedItem">
1299
+ <div class="imgHolder">
1300
+ <a href="/recipes/recipedetails?recipeid=33&fm=recipes_people"
1301
+ title="Sweet & Tangy Chicken">
1302
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_33.jpg " width="140" height="96"
1303
+ alt="Sweet & Tangy Chicken" />
1304
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1305
+ </div>
1306
+ <p class="itemTitle">
1307
+ <a href="/recipes/recipedetails?recipeid=33&fm=recipes_people"
1308
+ title="Sweet & Tangy Chicken">
1309
+ Sweet & Tangy Chicken</a>
1310
+ </p>
1311
+ </div>
1312
+ <div class="relatedItem">
1313
+ <div class="imgHolder">
1314
+ <a href="/recipes/recipedetails?recipeid=39&fm=recipes_people"
1315
+ title="Tasty 2-Step Chicken">
1316
+ <img src="http://www.cscassets.com/recipes/small_cknew/small_39.jpg " width="140" height="96"
1317
+ alt="Tasty 2-Step Chicken" />
1318
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1319
+ </div>
1320
+ <p class="itemTitle">
1321
+ <a href="/recipes/recipedetails?recipeid=39&fm=recipes_people"
1322
+ title="Tasty 2-Step Chicken">
1323
+ Tasty 2-Step Chicken</a>
1324
+ </p>
1325
+ </div>
1326
+ </div>
1327
+ </div>
1328
+ <div class="sidebarBlock shadow">
1329
+ <div class="promoBox newsletterBox">
1330
+ <div id="pcta">
1331
+ <a id="plhcontent_0_ctl02_hlPcta" title="Join The Kitchen" href="javascript:Popin.getInstance().show(&#39;#registerForm&#39;);"><img id="plhcontent_0_ctl02_imgPcta" title="Join The Kitchen" src="/images/PCTA/RegisterPCTA.png" alt="Join The Kitchen" /></a>
1332
+ </div>
1333
+ </div>
1334
+ <!-- .newsletterBox -->
1335
+ </div>
1336
+ <div class="promoSpace clearfix">
1337
+ </div>
1338
+ <!-- .promoSpace -->
1339
+ <div class="promoSpace clearfix">
1340
+ </div>
1341
+ <!-- .promoSpace -->
1342
+ </div>
1343
+ </div>
1344
+ <!-- .container_12 -->
1345
+ </div>
1346
+ <div class="fullPageBlock clearfix" id="recentlyViewed">
1347
+ <div id="plhcontent_0_ctl05_pnlRecently">
1348
+ <h2>
1349
+ Your Recently Viewed Recipes
1350
+ </h2>
1351
+ <div class="recentlyViewedWrapper clearfix">
1352
+ <ul id="recentlyViewedCarousel">
1353
+ <li>
1354
+ <div class="smallImgShadow">
1355
+ <div class="imgHolder">
1356
+ <a title="Savory White Beans & Spinach" href="/recipes/recipedetails?recipeid=60821&fm=recipes_recent">
1357
+ <img width="140" height="96" alt="Savory White Beans & Spinach"
1358
+ src="http://www.cscassets.com/recipes/small_cknew/small_60821.jpg" />
1359
+ </a><span class="corner topLeft"></span><span class="corner bottomRight"></span>
1360
+ </div>
1361
+ <!-- imgHolder -->
1362
+ </div>
1363
+ <!-- smallImgShadow -->
1364
+ <p>
1365
+ <a href="/recipes/recipedetails?recipeid=60821&fm=recipes_recent" title="Savory White Beans & Spinach">Savory White Beans & Spinach</a>
1366
+ </p>
1367
+ </li>
1368
+ </ul>
1369
+ </div>
1370
+ </div>
1371
+ </div>
1372
+ </div>
1373
+ <!-- #siteMain -->
1374
+ </div>
1375
+ <!-- Begin Modal Window -->
1376
+ <!-- End Modal Window -->
1377
+ <!-- #siteMainInner -->
1378
+ <div class="popin" id="ErrorMessagePanel">
1379
+ <div class="logInPopin">
1380
+ <div class="popInWrapper">
1381
+ <div class="popinHeader">
1382
+ <a href="javascript:Popin.getInstance().hide('#ErrorMessagePanel');" title="Close"
1383
+ class="popinCloseBtn">Close</a>
1384
+ </div>
1385
+ <div class="popinContent">
1386
+ <div class="sectionItem clearfix">
1387
+ <p class="confirmMsg">
1388
+ You need to be signed in to add this recipe to your recipe box. <br/>Please <a href='javascript:setActionAttemptCookie("MemberActionAttempt", "Add_to_Recipe_Box", 1);Popin.getInstance().show("#logInForm");'>Log In</a> or <a href='javascript:setActionAttemptCookie("MemberActionAttempt", "Add_to_Recipe_Box", 1);Popin.getInstance().show("#registerForm");'>Register</a>.
1389
+ </p>
1390
+ <div class="buttons">
1391
+ <a href="javascript:Popin.getInstance().hide('#ErrorMessagePanel');" tabindex="18"
1392
+ title="OK" role="button" class="button btnStandard w114"><span class="btnRight">
1393
+ </span><span class="btnLabel">OK</span> </a>
1394
+ </div>
1395
+ </div>
1396
+ <!-- sectionItem -->
1397
+ </div>
1398
+ <div class="popinFooter">
1399
+ &nbsp;
1400
+ </div>
1401
+ </div>
1402
+ </div>
1403
+ <!-- end popin -->
1404
+ </div>
1405
+ <div class="popin" id="confirmationBox">
1406
+ <div class="logInPopin">
1407
+ <div class="popInWrapper">
1408
+ <div class="popinHeader">
1409
+ <a href="javascript:Popin.getInstance().hide('#confirmationBox');" title="Close"
1410
+ class="popinCloseBtn">Close</a>
1411
+ </div>
1412
+ <div class="popinContent">
1413
+ <div class="sectionItem clearfix">
1414
+ <p class="confirmMsg">
1415
+ Are you sure you want to delete this Recipe from your Recipe Box?
1416
+ </p>
1417
+ <input type="hidden" name="plhcontent_0$ctrlRemoveFromRecipeBox$hfRecipeToDelete" id="hfRecipeToDelete" />
1418
+ <div class="buttons">
1419
+ <a id="plhcontent_0_ctrlRemoveFromRecipeBox_btnDeleteRecipe" tabindex="18" title="Yes, delete it." class="button btnStandard w114" role="button" href="javascript:__doPostBack(&#39;plhcontent_0$ctrlRemoveFromRecipeBox$btnDeleteRecipe&#39;,&#39;&#39;)">
1420
+ <span class="btnRight"></span><span class="btnLabel">Yes, delete it.</span>
1421
+ </a><a href="javascript:Popin.getInstance().hide('#confirmationBox');"
1422
+ title="Cancel">Cancel</a>
1423
+ </div>
1424
+ </div>
1425
+ <!-- sectionItem -->
1426
+ </div>
1427
+ <div class="popinFooter">
1428
+ &nbsp;
1429
+ </div>
1430
+ </div>
1431
+ </div>
1432
+ <!-- end popin -->
1433
+ </div>
1434
+ <div class="popin homepagePopin" id="videoPopin">
1435
+ <div class="middlePopInWrapper">
1436
+ <div class="middlePopinHeader">
1437
+ <a href="javascript:CloseVideoPopin();" title="Close" class="popinCloseBtn">Close</a>
1438
+ </div>
1439
+ <div class="middlePopinContent">
1440
+ <div class="headerSection clearfix">
1441
+ &nbsp;
1442
+ </div>
1443
+ <!-- headerSection -->
1444
+ <div id="videoContainer" class="videoContainer">
1445
+ <div id="player"></div>
1446
+ </div>
1447
+ <!-- videoContainer -->
1448
+ </div>
1449
+ <div class="middlePopinFooter">
1450
+ &nbsp;
1451
+ </div>
1452
+ </div>
1453
+ <!-- end popin -->
1454
+ </div>
1455
+ <script type="text/javascript">
1456
+ var isPaused = false;
1457
+ var player;
1458
+
1459
+ //init youtube player
1460
+ var tag = document.createElement('script');
1461
+
1462
+ // This is a protocol-relative URL as described here:
1463
+ // http://paulirish.com/2010/the-protocol-relative-url/
1464
+ // If you're testing a local page accessed via a file:/// URL, please set tag.src to
1465
+ // "https://www.youtube.com/iframe_api" instead.
1466
+ tag.src = "//www.youtube.com/iframe_api";
1467
+ var firstScriptTag = document.getElementsByTagName('script')[0];
1468
+ firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
1469
+
1470
+ function onYouTubeIframeAPIReady() {
1471
+
1472
+ }
1473
+
1474
+ // 5. The API calls this function when the player's state changes.
1475
+ // The function indicates that when playing a video (state=1),
1476
+ // the player should play for six seconds and then stop.
1477
+
1478
+ function onPlayerStateChange(event) {
1479
+ if (event.data == YT.PlayerState.PLAYING) {
1480
+ if (isPaused) {
1481
+ //console.log('video start from pause');
1482
+ }
1483
+ else {
1484
+ s.events = "event35";
1485
+ writeOmniture(s);
1486
+ }
1487
+ }
1488
+ if (event.data == YT.PlayerState.ENDED) {
1489
+ isPaused = false;
1490
+ s.events = "event37";
1491
+ writeOmniture(s);
1492
+ }
1493
+ if (event.data == YT.PlayerState.PAUSED) {
1494
+ isPaused = true;
1495
+ //console.log('video PAUSED');
1496
+ }
1497
+ }
1498
+
1499
+ function onPlayerReady(event) {
1500
+ event.target.playVideo();
1501
+ }
1502
+
1503
+ function stopVideo() {
1504
+ if (player.getPlayerState() == 1) {
1505
+ player.stopVideo();
1506
+ isPaused = false;
1507
+ //console.log('video stop');
1508
+ }
1509
+ player.getIframe().src = "";
1510
+ setTimeout(function () {
1511
+ player.destroy();
1512
+ }, 200);
1513
+ }
1514
+
1515
+ function OpenVideoPopin(videoId) {
1516
+ player = new YT.Player('player', {
1517
+ height: '450',
1518
+ width: '660',
1519
+ videoId: videoId,
1520
+ events: {
1521
+ 'onReady': onPlayerReady,
1522
+ 'onStateChange': onPlayerStateChange
1523
+ }
1524
+ });
1525
+ Popin.getInstance().show('#videoPopin');
1526
+ }
1527
+
1528
+ function CloseVideoPopin() {
1529
+ Popin.getInstance().hide('#videoPopin');
1530
+ stopVideo();
1531
+ }
1532
+
1533
+
1534
+ </script>
1535
+ </div>
1536
+ <div id="siteFooter" role="complementary">
1537
+ <div class="container_12 clearfix">
1538
+ <div class="grid_4">
1539
+ <a class="footerLogo" href="http://campbells.com" title="Campbell's" role="link" target="_blank" tabindex="24">
1540
+ <img id="plhfooter_0_logoImage" alt="Campbell&#39;s" role="presentation" src="../media/~/media/Images/ck_logo_exact_logo_size.ashx" /></a>
1541
+ <a class="socialIcons" href="http://www.facebook.com/campbellskitchen" target="_blank"
1542
+ role="link" title="Facebook">
1543
+ <img src="/images/facebook.png" alt="Facebook" role="presentation" /></a> <a class="socialIcons"
1544
+ href="http://twitter.com/#!/CampbellKitchen" title="Twitter" target="_blank" role="link">
1545
+ <img src="/images/twitter.png" alt="Twitter" role="presentation" /></a>
1546
+ <a class="socialIcons" href="http://pinterest.com/source/campbellskitchen.com/" title="Pinterest" target="_blank"><img src="http://passets-cdn.pinterest.com/images/about/buttons/big-p-button.png" width="30" height="30" alt="Follow Me on Pinterest" /></a>
1547
+ <p class="legal">
1548
+ <small>&copy; 2012 CSC Brands LP. All Rights Reserved</small>
1549
+ </p>
1550
+ </div>
1551
+ <div class="grid_8" role="navigation">
1552
+ <ul class="menu" role="menu">
1553
+ <li role="menuitem"><a href="http://campbells.com/" title="Campbells.com" role="link"
1554
+ tabindex="25" target="_blank">Campbells.com</a></li>
1555
+ <li role="menuitem"><a href="http://www.campbellsoupcompany.com/legal.asp" title="Legal Information"
1556
+ role="link" tabindex="26" target="_blank">Legal Information</a></li>
1557
+ <li role="menuitem"><a href="http://www.campbellsoupcompany.com/privacy_policy.asp"
1558
+ title="Privacy Policy" role="link" tabindex="27" target="_blank">Privacy Policy</a></li>
1559
+ <li role="menuitem"><a href="/Sitemap" title="Site Map" role="link" tabindex="28">Site Map</a></li>
1560
+ <li role="menuitem"><a href="http://www.campbellsoupcompany.com/AllergenLabelingCommitment.asp"
1561
+ title="Allergen Labeling" role="link" tabindex="29" target="_blank">Allergen Labeling</a></li>
1562
+ <li role="menuitem"><a href="http://www.campbellsoup.com/Search/CampbellWebsites" title="Search Campbell`s" role="link" tabindex="30" target="_blank">Search Campbell's</a></li>
1563
+ <li role="menuitem"><a href="http://www.campbellsoupcompany.com/ContactUs.aspx" title="Contact Us"
1564
+ role="link" tabindex="31" target="_blank">Contact Us</a></li>
1565
+ </ul>
1566
+ </div>
1567
+ </div>
1568
+ </div>
1569
+ </div>
1570
+ <input type="hidden" name="ctl15$hfMAA" id="ctl15_hfMAA" />
1571
+ <div id="popinOverlay">
1572
+ <!-- popin overlay -->
1573
+ </div>
1574
+ <div class="popin homepagePopin" id="logInForm">
1575
+ <div class="logInPopin">
1576
+ <div class="middlePopInWrapper">
1577
+ <div class="middlePopinHeader">
1578
+ <a href="javascript:CloseLoginPopup();" title="Close" class="popinCloseBtn">Close</a>
1579
+ </div>
1580
+ <div class="middlePopinContent">
1581
+ <div class="headerSection clearfix">
1582
+ <div class="skipRegisterBox">
1583
+ <p>
1584
+ Don't have an account?
1585
+ </p>
1586
+ <a href="javascript:Popin.getInstance().show('#registerForm');" title="Click here to register">
1587
+ Click here to register</a>
1588
+ </div>
1589
+ <h2>
1590
+ Log In
1591
+ </h2>
1592
+ <p>
1593
+ Log In to view your recipe box, write reviews, manage your email settings and more.
1594
+ </p>
1595
+ </div>
1596
+ <!-- headerSection -->
1597
+ <div class="sectionItem clearfix">
1598
+ <div id="ctl15_lvLogin_pnlLogin">
1599
+ <div class="standartLogIn">
1600
+ <label for="logInEmail">
1601
+ Email Address:</label>
1602
+ <div class="highInputWrapper">
1603
+ <input name="ctl15$lvLogin$tbUserName" type="text" id="ctl15_lvLogin_tbUserName" />
1604
+ </div>
1605
+ <input id="ctl15_lvLogin_chkKeepSignedIn" type="checkbox" name="ctl15$lvLogin$chkKeepSignedIn" /><label for="keepSignedIn"
1606
+ class="checkBoxLabel">Keep me logged in</label>
1607
+ <label for="logInPwd">
1608
+ Password:</label>
1609
+ <div class="highInputWrapper">
1610
+ <input name="ctl15$lvLogin$tbPassword" type="password" id="ctl15_lvLogin_tbPassword" />
1611
+ </div>
1612
+ <a href="javascript:Popin.getInstance().show('#forgotPwdForm');" title="Forgot your password?">
1613
+ Forgot your password?</a>
1614
+ <div class="buttons">
1615
+ <a id="ctl15_lvLogin_btnLogin" tabindex="18" class="button btnStandard w114" role="button" title="Log In" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl15$lvLogin$btnLogin&quot;, &quot;&quot;, true, &quot;login&quot;, &quot;&quot;, false, true))">
1616
+ <span class="btnRight"></span><span class="btnLabel">Log In</span> </a>
1617
+ <a href="javascript:CloseLoginPopup();" title="Cancel">Cancel</a>
1618
+ </div>
1619
+ </div>
1620
+ </div>
1621
+ <!-- to hide or not to hide FB-->
1622
+ <!-- END OF to hide or not to hide FB-->
1623
+ </div>
1624
+ <!-- sectionItem -->
1625
+ </div>
1626
+ <div class="middlePopinFooter">
1627
+ &nbsp;
1628
+ </div>
1629
+ </div>
1630
+ </div>
1631
+ <!-- end popin -->
1632
+ </div>
1633
+ <div class="popin homepagePopin" id="registerForm">
1634
+ <div class="logInPopin">
1635
+ <div id="ctl15_lvLogin_updatePanelRegister">
1636
+ <div class="bigPopInWrapper">
1637
+ <div class="bigPopinHeader">
1638
+ <a onclick="javascript:Popin.getInstance().hide(&#39;#registerForm&#39;);" id="ctl15_lvLogin_btnCloseReg1" title="Close" class="popinCloseBtn" href="javascript:__doPostBack(&#39;ctl15$lvLogin$btnCloseReg1&#39;,&#39;&#39;)">
1639
+ Close</a>
1640
+ </div>
1641
+ <div class="bigPopinContent">
1642
+ <div class="headerSection clearfix">
1643
+ <div class="skipRegisterBox">
1644
+ <p>
1645
+ Already have an account?
1646
+ </p>
1647
+ <a href="javascript:Popin.getInstance().show('#logInForm');" title="">Click here to
1648
+ log in</a>
1649
+ </div>
1650
+ <h2>
1651
+ Register <span>(1 of 2)</span>
1652
+ </h2>
1653
+ </div>
1654
+ <!-- headerSection -->
1655
+ <div class="sectionItem clearfix">
1656
+ <div class="standartLogIn">
1657
+ <div class="row clearfix">
1658
+ <div class="leftCol">
1659
+ &nbsp;
1660
+ </div>
1661
+ <div class="rightCol">
1662
+ <p class="required">
1663
+ * Required fields
1664
+ </p>
1665
+ </div>
1666
+ </div>
1667
+ <div class="row clearfix">
1668
+ <div class="leftCol">
1669
+ <label>
1670
+ Email Address<span class="required">*</span>:</label>
1671
+ </div>
1672
+ <div class="rightCol">
1673
+ <div class="inputWrapper">
1674
+ <div id="ctl15_lvLogin_updatePanelEmail">
1675
+ <input name="ctl15$lvLogin$tbRegisterEmailAddress" type="text" id="ctl15_lvLogin_tbRegisterEmailAddress" />
1676
+ </div>
1677
+ </div>
1678
+ </div>
1679
+ </div>
1680
+ <div class="row clearfix">
1681
+ <div class="leftCol">
1682
+ <label>
1683
+ Password<span class="required">*</span>:</label>
1684
+ </div>
1685
+ <div class="rightCol">
1686
+ <div class="inputWrapper">
1687
+ <input name="ctl15$lvLogin$tbRegisterPassword" type="password" id="ctl15_lvLogin_tbRegisterPassword" />
1688
+ </div>
1689
+ </div>
1690
+ </div>
1691
+ <div class="row clearfix">
1692
+ <div class="leftCol">
1693
+ <label>
1694
+ Verify Password<span class="required">*</span>:</label>
1695
+ </div>
1696
+ <div class="rightCol">
1697
+ <div class="inputWrapper">
1698
+ <input name="ctl15$lvLogin$tbRegisterVerifyPassword" type="password" id="ctl15_lvLogin_tbRegisterVerifyPassword" />
1699
+ </div>
1700
+ </div>
1701
+ </div>
1702
+ <div class="row clearfix">
1703
+ <div class="leftCol">
1704
+ &nbsp;
1705
+ </div>
1706
+ <div class="rightCol">
1707
+ <div class="buttons">
1708
+ <a onclick="callOmnitureRegistration(&#39;event15&#39;, &#39;&#39;, &#39;&#39;, $(&#39;#ctl15_hfMAA&#39;), &#39;Part one&#39;, &#39;&#39;, &#39;&#39;, &#39;site&#39;, &#39;register1&#39;);callMediaItems(106320);" id="ctl15_lvLogin_btnContinue" tabindex="18" class="button btnStandard w114" role="button" title="Continue" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl15$lvLogin$btnContinue&quot;, &quot;&quot;, true, &quot;register1&quot;, &quot;&quot;, false, true))">
1709
+ <span class="btnRight"></span><span class="btnLabel">Continue</span></a>
1710
+ <a onclick="javascript:Popin.getInstance().hide(&#39;#registerForm&#39;);" id="ctl15_lvLogin_btnCancelReg1" title="Cancel" href="javascript:__doPostBack(&#39;ctl15$lvLogin$btnCancelReg1&#39;,&#39;&#39;)">
1711
+ Cancel</a>
1712
+ </div>
1713
+ </div>
1714
+ </div>
1715
+ </div>
1716
+ <!-- to hide or not to hide FB-->
1717
+ </div>
1718
+ <!-- sectionItem -->
1719
+ <div class="sectionItem shadow">
1720
+ <h3>
1721
+ Why Register?
1722
+ </h3>
1723
+ <p>
1724
+ Becoming a part of Campbell’s Kitchen gives you a lot more tools to get the most
1725
+ out of finding the perfect recipes for you and your family. Here’s what you’ll enjoy
1726
+ once you register:
1727
+ </p>
1728
+ <ul>
1729
+ <li><strong>Recipe Recommendations Especially For You</strong> – fill out your preferences
1730
+ and Campbell’s Kitchen can start choosing recipes that best fit your lifestyle.
1731
+ </li>
1732
+ <li><strong>Meal-Mail<sup>®</sup></strong> – sign up and enjoy 7 delicious weekly recipes
1733
+ straight from our kitchen to your inbox. It’s a great way to help you plan for the
1734
+ week ahead.
1735
+ </li>
1736
+ <li><strong>Your own online Recipe Box</strong> – a place to save, sort and make notes
1737
+ on all your favorite recipes – and since it’s online you can access it from any
1738
+ computer in the world.
1739
+ </li>
1740
+ </ul>
1741
+ </div>
1742
+ <!-- sectionItem -->
1743
+ </div>
1744
+ <div class="bigPopinFooter">
1745
+ &nbsp;
1746
+ </div>
1747
+ </div>
1748
+ </div>
1749
+ </div>
1750
+ </div>
1751
+ <div class="popin homepagePopin" id="forgotPwdForm">
1752
+ <div class="logInPopin">
1753
+ <div class="middlePopInWrapper">
1754
+ <div class="middlePopinHeader">
1755
+ <a href="javascript:CloseLoginPopup();" title="Close" class="popinCloseBtn">Close</a>
1756
+ </div>
1757
+ <div class="middlePopinContent">
1758
+ <div class="headerSection clearfix">
1759
+ <div class="skipRegisterBox">
1760
+ <p>
1761
+ Don't have an account?
1762
+ </p>
1763
+ <a href="javascript:Popin.getInstance().show('#registerForm');" title="Click here to register">
1764
+ Click here to register</a>
1765
+ </div>
1766
+ <h2>
1767
+ Log In
1768
+ </h2>
1769
+ <p>
1770
+ Log In to view your recipe box, write reviews, manage your email settings and more.
1771
+ </p>
1772
+ </div>
1773
+ <!-- headerSection -->
1774
+ <div class="sectionItem clearfix disable">
1775
+ <div class="standartLogIn">
1776
+ <label for="logInEmail">
1777
+ Email Address:</label>
1778
+ <div class="highInputWrapper">
1779
+ <input type="text" value="" id="logInEmail" />
1780
+ </div>
1781
+ <input type="checkbox" id="keepSignedIn" /><label for="keepSignedIn" class="checkBoxLabel">Keep
1782
+ me logged in</label>
1783
+ <label for="logInPwd">
1784
+ Password:</label>
1785
+ <div class="highInputWrapper">
1786
+ <input type="password" value="" id="logInPwd" />
1787
+ </div>
1788
+ <a href="#" title="Forgot your password?">Forgot your password?</a>
1789
+ <div class="buttons">
1790
+ <a tabindex="18" role="button" title="Log In" href="javascript:;" class="button btnStandard w114">
1791
+ <span class="btnRight"></span><span class="btnLabel">Log In</span> </a><a href="javascript:Popin.getInstance().hide('#forgotPwdForm');"
1792
+ title="Cancel">Cancel</a>
1793
+ </div>
1794
+ </div>
1795
+ <div class="loginsSep">
1796
+ Or
1797
+ </div>
1798
+ <div class="fbLogInSmall">
1799
+ <a href="javascript:;" title="Log in with Facebook" class="fbLogInLink">Log In with Facebook</a>
1800
+ </div>
1801
+ <div class="disableOerlay">
1802
+ &nbsp;
1803
+ </div>
1804
+ </div>
1805
+ <!-- sectionItem -->
1806
+ <div class="sectionItem clearfix">
1807
+ <h3>
1808
+ Forgot your password? <a class="forgotPopinClose" href="javascript:CloseForgotPasswordPopup();"
1809
+ title="Close">[x] Close</a>
1810
+ </h3>
1811
+ <div id="ctl15_lvLogin_upForgottenPasswordMail">
1812
+ <div class="forgotPwdBlock">
1813
+ <p>
1814
+ Not a problem—just enter your email address below, and we’ll send you a reminder
1815
+ right away.
1816
+ </p>
1817
+ <label for="forgotPwdEmail">
1818
+ Your email address:</label>
1819
+ <div class="highInputWrapper">
1820
+ <input name="ctl15$lvLogin$tbForgotPwdEmail" type="text" id="ctl15_lvLogin_tbForgotPwdEmail" />
1821
+ </div>
1822
+ <div class="Error" id="msgForgottenPwd" style="color: #C12429">
1823
+ </div>
1824
+ <div class="buttons">
1825
+ <a onclick="callOmnitureIfValid(&#39;&#39;, &#39;event25&#39;, &#39;forgottenPwd&#39;);" id="ctl15_lvLogin_btnForgottenPwd" tabindex="18" title="Submit" class="button btnStandard w114" role="button" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl15$lvLogin$btnForgottenPwd&quot;, &quot;&quot;, true, &quot;forgottenPwd&quot;, &quot;&quot;, false, true))">
1826
+ <span class="btnRight"></span><span class="btnLabel">Submit</span> </a><a
1827
+ href="javascript:CloseLoginPopup();" title="Cancel">Cancel</a>
1828
+ </div>
1829
+ </div>
1830
+ </div>
1831
+ </div>
1832
+ </div>
1833
+ <div class="middlePopinFooter">&nbsp;</div>
1834
+ </div>
1835
+ </div>
1836
+ </div>
1837
+ <!-- end popin -->
1838
+ <script type="text/javascript">
1839
+ function CloseLoginPopup() {
1840
+ var inputs = $('#logInForm').find("input[type='text']");
1841
+ jQuery.each(inputs, function () {
1842
+ $(this).val('');
1843
+ });
1844
+
1845
+ var inputs = $('#logInForm').find("input[type='password']");
1846
+ jQuery.each(inputs, function () {
1847
+ $(this).val('');
1848
+ });
1849
+
1850
+ var inputs = $('#forgotPwdForm').find("input[type='text']");
1851
+ jQuery.each(inputs, function () {
1852
+ $(this).val('');
1853
+ });
1854
+
1855
+ Popin.getInstance().hide('#logInForm');
1856
+ Popin.getInstance().hide('#forgotPwdForm');
1857
+
1858
+ $get('rfvUserName').isvalid = true;
1859
+ $get('rfvUserName').hidden = true;
1860
+ $get('rfvUserName').style.display = "none";
1861
+
1862
+ $get('rfvMailReciever').isvalid = true;
1863
+ $get('rfvMailReciever').hidden = true;
1864
+ $get('rfvMailReciever').style.display = "none";
1865
+
1866
+ $get('rfvForgottenPwd').isvalid = true;
1867
+ $get('rfvForgottenPwd').hidden = true;
1868
+ $get('rfvForgottenPwd').style.display = "none";
1869
+
1870
+ $get('regexvForgottenPwd').isvalid = true;
1871
+ $get('regexvForgottenPwd').hidden = true;
1872
+ $get('regexvForgottenPwd').style.display = "none";
1873
+
1874
+ $get('cvForgottenPwd').isvalid = true;
1875
+ $get('cvForgottenPwd').hidden = true;
1876
+ $get('cvForgottenPwd').style.display = "none";
1877
+
1878
+ $get('cvPassword').isvalid = true;
1879
+ $get('cvPassword').hidden = true;
1880
+ $get('cvPassword').style.display = "none";
1881
+
1882
+ $('#msgForgottenPwd').empty();
1883
+ }
1884
+
1885
+ function CloseForgotPasswordPopup() {
1886
+ var inputs = $('#forgotPwdForm').find("input[type='text']");
1887
+ jQuery.each(inputs, function () {
1888
+ $(this).val('');
1889
+ });
1890
+
1891
+ $get('rfvForgottenPwd').isvalid = true;
1892
+ $get('rfvForgottenPwd').hidden = true;
1893
+ $get('rfvForgottenPwd').style.display = "none";
1894
+
1895
+ $get('regexvForgottenPwd').isvalid = true;
1896
+ $get('regexvForgottenPwd').hidden = true;
1897
+ $get('regexvForgottenPwd').style.display = "none";
1898
+
1899
+ $get('cvForgottenPwd').isvalid = true;
1900
+ $get('cvForgottenPwd').hidden = true;
1901
+ $get('cvForgottenPwd').style.display = "none";
1902
+
1903
+ $('#msgForgottenPwd').empty();
1904
+
1905
+ Popin.getInstance().show('#logInForm');
1906
+ }
1907
+ </script>
1908
+ <script type="text/javascript">
1909
+ //<![CDATA[
1910
+ function callOmnitureSocialFbSend(){ s.prop18="60821 ";
1911
+ s.prop19="regular ";
1912
+ s.prop20="FB email ";
1913
+ s.prop24="Savory White Beans & Spinach ";
1914
+ s.eVar15="FB email";
1915
+ s.eVar47="CampbellsKitchen.com";
1916
+ s.eVar33="Savory White Beans & Spinach";
1917
+ s.eVar51="60821";
1918
+ s.eVar61="tablet";
1919
+ callOmniture('','event76');}callOmniture('','event60, event2');//]]>
1920
+ </script>
1921
+ </form>
1922
+ <div id="overlay">
1923
+ &nbsp;
1924
+ </div>
1925
+ <div id="thankYouMsg" class="msg">
1926
+ <div class="msgHeader">
1927
+ &nbsp;
1928
+ </div>
1929
+ <div class="msgContent">
1930
+ <h1>
1931
+ Your Email is On the Way!
1932
+ </h1>
1933
+ <p class="msgDesc">
1934
+ Thanks for sharing this page with your friends — we appreciate it.
1935
+ </p>
1936
+ <a class="button btnStandard closeMsgButton" href="javascript:;" title="Close" role="button"
1937
+ tabindex="1" id="btnCloseThankYouMsg"><span class="btnRight"></span><span class="btnLabel">
1938
+ Close</span> </a>
1939
+ </div>
1940
+ </div>
1941
+ <div id="thankYouMsgRecipe" class="msg">
1942
+ <div class="msgHeader">
1943
+ &nbsp;
1944
+ </div>
1945
+ <div class="msgContent">
1946
+ <h1>
1947
+ Your Email is On the Way!
1948
+ </h1>
1949
+ <p class="msgDesc">
1950
+ Thanks for sharing this recipe with your friends — we appreciate it.
1951
+ </p>
1952
+ <a class="button btnStandard closeMsgButton" href="javascript:;" title="Close" role="button"
1953
+ tabindex="1" id="btnCloseThankYouMsgRecipe"><span class="btnRight"></span><span class="btnLabel">
1954
+ Close</span> </a>
1955
+ </div>
1956
+ </div>
1957
+ <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
1958
+ <script> window.jQuery || document.write('&lt;script src="/js/libs/jquery-1.7.1.min.js"&gt;&lt;\/script&gt;')</script>
1959
+ <script type="text/javascript" src="/js/jquery.bxSlider.min.js"></script>
1960
+ <script type="text/javascript" src="/js/jquery.rating.pack.js"></script>
1961
+ <script type="text/javascript" src="/js/jquery.selectBox.js"></script>
1962
+ <script type="text/javascript" src="/js/jquery.fancybox.js"></script>
1963
+ <script type="text/javascript" src="/js/jquery.flip.js"></script>
1964
+ <script type="text/javascript" src="/js/home.js"></script>
1965
+ <script type="text/javascript" src="/js/common.js"></script>
1966
+ <script type="text/javascript" src="/js/popin.js"></script>
1967
+ <script type="text/javascript" src="/js/jquery.jqtransform.js"></script>
1968
+ <script> !function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = "//platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); } } (document, "script", "twitter-wjs");</script>
1969
+ </body>
1970
+ </html>