onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,3 @@
1
+ module Onebox
2
+ VERSION = "1.0.0"
3
+ end
data/onebox.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'onebox/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "onebox"
8
+ spec.version = Onebox::VERSION
9
+ spec.authors = ["Joanna Zeta", "Vyki Englert"]
10
+ spec.email = ["holla@jzeta.com", "vyki.englert@gmail.com"]
11
+ spec.description = %q{A gem for turning URLs into previews.}
12
+ spec.summary = spec.description
13
+ spec.homepage = "http://github.com/dysania/onebox"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "multi_json", "~> 1.7"
22
+ spec.add_runtime_dependency "mustache", "~> 0.99"
23
+ spec.add_runtime_dependency "nokogiri", "~> 1.4"
24
+ spec.add_runtime_dependency "opengraph_parser", "~> 0.2"
25
+ spec.add_runtime_dependency "verbal_expressions", "~> 0.1"
26
+ spec.add_runtime_dependency "moneta", "~> 0.7"
27
+ spec.add_development_dependency "bundler", "~> 1.3"
28
+ spec.add_development_dependency "rake", "~> 10.0"
29
+ spec.add_development_dependency "rspec", "~> 2.14"
30
+ spec.add_development_dependency "coveralls", "~> 0.6"
31
+ spec.add_development_dependency "yard", "~> 0.8"
32
+ spec.add_development_dependency "fakeweb", "~> 1.3"
33
+ spec.add_development_dependency "pry", "~> 0.9"
34
+ spec.add_development_dependency "mocha", "~> 0.14"
35
+ spec.add_development_dependency "rubocop", "~> 0.11"
36
+ end
@@ -0,0 +1,3098 @@
1
+ <html>
2
+ <head>
3
+ <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
4
+ <link rel="canonical" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/dp/193609620X" />
5
+ <meta name="description" content="Knit Noro: Accessories: 30 Colorful Little Knits [Sixth &amp; Spring Books] on Amazon.com. *FREE* super saver shipping on qualifying offers. &lt;DIV&gt;&lt;DIV&gt;Using only the finest natural materials and ecologically sound manufacturing processes, Japanese designer Eisaku Noro has been producing some of the most extraordinary and popular yarns in the world for over 30 years. Hand colored in vivid combinations of painterly hues" />
6
+ <meta name="title" content="Knit Noro: Accessories: 30 Colorful Little Knits: Sixth &amp; Spring Books: 0499991605934: Amazon.com: Books" />
7
+ <meta name="keywords" content="Sixth &amp; Spring Books,Knit Noro: Accessories: 30 Colorful Little Knits,Sixth&amp;Spring Books,193609620X,ACOUK_book_usedgood_193609620X,Hobbies/Crafts,Patterns,Yarn,Crafts / Hobbies,Eisaku Noro, Ltd,Crafts &amp; Hobbies,Crafts &amp; Hobbies / Needlework / Knitting,Knitting &amp; crochet,Needlework - Knitting,Handicrafts, Arts &amp; Crafts,Knitting" />
8
+ <title>Knit Noro: Accessories: 30 Colorful Little Knits: Sixth &amp; Spring Books: 0499991605934: Amazon.com: Books</title>
9
+ </head>
10
+ <body class="dp">
11
+ <div class="singlecolumnminwidth" id="divsinglecolumnminwidth">
12
+ <script type="text/javascript">
13
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
14
+ amznJQ.available('navbarJS-jQuery', function(){});
15
+ amznJQ.available('finderFitsJS', function(){});
16
+ amznJQ.available('twister', function(){});
17
+ amznJQ.available('swfjs', function(){});
18
+ });
19
+ </script>
20
+ <!-- BeginNav --><!-- From remote config v3-->
21
+ <script type="text/javascript"><!--
22
+ (function(d){var e=function(d){function b(f,c,b){f[b]=function(){a._replay.push(c.concat({m:b,a:[].slice.call(arguments)}))}}var a={};a._sourceName=d;a._replay=[];a.getNow=function(a,b){return b};a.when=function(){var a=[{m:"when",a:[].slice.call(arguments)}],c={};b(c,a,"run");b(c,a,"declare");b(c,a,"publish");b(c,a,"build");return c};b(a,[],"declare");b(a,[],"build");b(a,[],"publish");b(a,[],"importEvent");e._shims.push(a);return a};e._shims=[];d.$Nav||(d.$Nav=e("rcx-nav"));d.$Nav.make||(d.$Nav.make=
23
+ e)})(window);window.$Nav.when("exposeSBD.enable","img.horz","img.vert","img.spin","$popover","btf.full").run(function(d,e,j,b){function a(a){switch(typeof a){case "boolean":h=a;i=!0;break;case "function":g=a;c++;break;default:c++}i&&2<c&&g(h)}function f(a,b){var c=new Image;b&&(c.onload=b);c.src=a;return c}var c=0,g,h,i=!1;f(e,d&&a);f(j,d&&a);window.$Nav.declare("protectExposeSBD",a);window.$Nav.declare("preloadSpinner",function(){f(b)})});
24
+ window.amznJQ && amznJQ.available('navbarJS-beacon', function(){});
25
+ window._navbarSpriteUrl = 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01-plus._V381442192_.png';
26
+ $Nav.importEvent('navbarJS-beacon');
27
+ $Nav.importEvent('NavAuiJS');
28
+ $Nav.declare('exposeSBD.enable',false);
29
+ $Nav.declare('img.spin','http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/snake._V192571611_.gif');
30
+ $Nav.when('$').run(function($){
31
+ var ie6 = $.browser.msie && parseInt($.browser.version) <= 6;
32
+ $Nav.declare('img.horz', ie6 ?
33
+ 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-h._V155961234_.png' :
34
+ 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-h-v2._V137157005_.png');
35
+ $Nav.declare('img.vert', ie6 ?
36
+ 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-v._V155961234_.png' :
37
+ 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-v-v2._V137157005_.png');
38
+ });
39
+ --></script>
40
+ <img src="http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01-plus._V381442192_.png" style="display:none" alt=""/>
41
+ <img src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" style="display:none" alt="" id="nav_trans_pixel"/>
42
+ <header>
43
+ <div id='navbar' role="navigation" class='nav-beacon nav-subnav nav-prime-menu nav-logo-large'>
44
+ <div id='nav-cross-shop'>
45
+ <a href='/' id='nav-logo' class='nav_a nav-sprite' alt='Amazon'>
46
+ Amazon
47
+ <span class='nav-prime-tag nav-sprite'></span>
48
+ </a>
49
+ <a href='/gp/product/B00DBYBNEE' id='nav-prime-ttt' class='nav_a'>Try Prime</a>
50
+ <ul id='nav-cross-shop-links' >
51
+ <li class='nav-xs-link first'><a href='/gp/yourstore/home' class='nav_a' id='nav-your-amazon'>Your Amazon.com</a></li>
52
+ <li class='nav-xs-link '><a href='/gp/goldbox' class='nav_a'>Today's Deals</a></li>
53
+ <li class='nav-xs-link '><a href='/b?ie=UTF8&node=3063530011' class='nav_a'>Gift Cards</a></li>
54
+ <li class='nav-xs-link '><a href='/gp/seller-account/mm-product-page.html?ie=UTF8&ld=AZSOAUSCSNavT' class='nav_a'>Sell</a></li>
55
+ <li class='nav-xs-link '><a href='/Help/b?ie=UTF8&node=508510' class='nav_a'>Help</a></li>
56
+
57
+ </ul>
58
+
59
+ <div id='welcomeRowTable' style='height:50px'>
60
+ <!--[if IE ]><div class='nav-ie-min-width' style='width: 770px'></div><![endif]-->
61
+ <div id='nav-ad-background-style' style='background-position: -800px 0px; background-image: url(http://g-ecx.images-amazon.com/images/G/01/img13/traffic/back-to-school/bts/6-25-BTS_300x50_v2._V381660371_.jpg); height: 56px; margin-bottom: -6px; position: relative;background-repeat: no-repeat;'>
62
+ <div id='navSwmSlot'>
63
+ <div id="navSwmHoliday" style="background-image: url(http://g-ecx.images-amazon.com/images/G/01/img13/traffic/back-to-school/bts/6-25-BTS_300x50_v2._V381660371_.jpg); width: 300px; height: 50px; overflow: hidden;"><img alt='Back to School' src='http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif' border='0' width='300px' height='50px' usemap='#nav-swm-holiday-map' /></div><div style="display: none;"><map id="nav-swm-holiday-map" name="nav-swm-holiday-map"><area shape="rect" coords="1,2,300,50" href ="/Back-to-School-Supplies/b?ie=UTF8&node=1065840" alt ="Back to School" /></map></div>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ <div style='clear: both;'></div>
68
+ </div>
69
+ <div id='nav-bar-outer'>
70
+ <div id='nav-logo-borderfade'><div class='nav-fade-mask'></div><div class='nav-fade nav-sprite'></div></div>
71
+ <div id='nav-bar-inner' class='nav-sprite'>
72
+ <a id='nav-shop-all-button' href='/gp/site-directory' class='nav_a nav-button-outer nav-menu-inactive' alt='Shop By Department'>
73
+ <span class='nav-button-mid nav-sprite'>
74
+ <span class='nav-button-inner nav-sprite'>
75
+ <span class='nav-button-title nav-button-line1'>Shop by</span>
76
+ <span class='nav-button-title nav-button-line2'>Department</span>
77
+ </span>
78
+ </span>
79
+ <span class='nav-down-arrow nav-sprite'></span>
80
+ </a>
81
+ <label id='nav-search-label' for='twotabsearchtextbox'>
82
+ Search
83
+ </label>
84
+
85
+ <div>
86
+ <form
87
+ action='/s'
88
+ method='get' name='site-search'
89
+ class='nav-searchbar-inner'
90
+ role='search'
91
+ accept-charset='utf-8'
92
+ >
93
+
94
+ <span id='nav-search-in' class='nav-sprite'>
95
+ <span id='nav-search-in-content' data-value="search-alias=aps">
96
+ All
97
+ </span>
98
+ <span class='nav-down-arrow nav-sprite'></span>
99
+ <select data-nav-digest="0hnIRNWe1w1v7yzkl1voILPQhsM" data-nav-selected="0" name="url" id="searchDropdownBox" class="searchSelect" title="Search in" ><option value="search-alias=aps" selected="selected">All Departments</option><option value="search-alias=instant-video">Amazon Instant Video</option><option value="search-alias=appliances">Appliances</option><option value="search-alias=mobile-apps">Apps for Android</option><option value="search-alias=arts-crafts">Arts, Crafts & Sewing</option><option value="search-alias=automotive">Automotive</option><option value="search-alias=baby-products">Baby</option><option value="search-alias=beauty">Beauty</option><option value="search-alias=stripbooks">Books</option><option value="search-alias=mobile">Cell Phones & Accessories</option><option value="search-alias=apparel">Clothing & Accessories</option><option value="search-alias=collectibles">Collectibles</option><option value="search-alias=computers">Computers</option><option value="search-alias=financial">Credit Cards</option><option value="search-alias=electronics">Electronics</option><option value="search-alias=gift-cards">Gift Cards Store</option><option value="search-alias=grocery">Grocery & Gourmet Food</option><option value="search-alias=hpc">Health & Personal Care</option><option value="search-alias=garden">Home & Kitchen</option><option value="search-alias=industrial">Industrial & Scientific</option><option value="search-alias=jewelry">Jewelry</option><option value="search-alias=digital-text">Kindle Store</option><option value="search-alias=magazines">Magazine Subscriptions</option><option value="search-alias=movies-tv">Movies & TV</option><option value="search-alias=digital-music">MP3 Music</option><option value="search-alias=popular">Music</option><option value="search-alias=mi">Musical Instruments</option><option value="search-alias=office-products">Office Products</option><option value="search-alias=lawngarden">Patio, Lawn & Garden</option><option value="search-alias=pets">Pet Supplies</option><option value="search-alias=shoes">Shoes</option><option value="search-alias=software">Software</option><option value="search-alias=sporting">Sports & Outdoors</option><option value="search-alias=tools">Tools & Home Improvement</option><option value="search-alias=toys-and-games">Toys & Games</option><option value="search-alias=videogames">Video Games</option><option value="search-alias=watches">Watches</option></select>
100
+ </span>
101
+ <div class='nav-searchfield-outer nav-sprite'>
102
+ <div class='nav-searchfield-inner nav-sprite'>
103
+ <div class='nav-searchfield-width'>
104
+ <div id='nav-iss-attach'>
105
+ <input type='text' id='twotabsearchtextbox' title='Search For' value='' name='field-keywords' autocomplete='off'>
106
+ </div>
107
+ </div>
108
+ <!--[if IE ]><div class='nav-ie-min-width' style='width: 360px'></div><![endif]-->
109
+ </div>
110
+ </div>
111
+ <div class='nav-submit-button nav-sprite'>
112
+ <input
113
+ type='submit'
114
+ value='Go'
115
+ class='nav-submit-input'
116
+ title='Go'
117
+ >
118
+ </div>
119
+ </form>
120
+ </div>
121
+ <a id='nav-your-account' href='https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcss%2Fhomepage.html%3Fie%3DUTF8%26ref_%3Dgno_yam_ya' class='nav_a nav-button-outer nav-menu-inactive' alt='Your Account'>
122
+ <span class='nav-button-mid nav-sprite'>
123
+ <span class='nav-button-inner nav-sprite'>
124
+ <span id='nav-signin-title' class='nav-button-title nav-button-line1' >
125
+ Hello.
126
+ <span id='nav-signin-text' class='nav-button-em'>Sign in</span>
127
+ </span>
128
+ <span class='nav-button-title nav-button-line2'>Your Account</span>
129
+ </span>
130
+ </span>
131
+ <span class='nav-down-arrow nav-sprite'></span>
132
+ </a>
133
+ <span class='nav-divider nav-divider-prime'></span>
134
+ <a id='nav-your-prime' href='/gp/product/B00DBYBNEE' class='nav_a nav-button-outer nav-menu-inactive' alt='Try Prime'>
135
+ <span class='nav-button-mid nav-sprite'>
136
+ <span class='nav-button-inner nav-sprite'>
137
+ <span class='nav-button-title nav-button-line1'>Try</span>
138
+ <span class='nav-button-title nav-button-line2'>Prime</span>
139
+ </span>
140
+ </span>
141
+ <span class='nav-down-arrow nav-sprite'></span>
142
+ </a>
143
+ <span class='nav-divider nav-divider-account'></span>
144
+ <a id='nav-cart' href='/gp/cart/view.html' class='nav_a nav-button-outer nav-menu-inactive' alt='Shopping Cart'>
145
+ <span class='nav-button-mid nav-sprite'>
146
+ <span class='nav-button-inner nav-sprite'>
147
+ <span class='nav-button-title nav-button-line1'> </span>
148
+ <span class='nav-button-title nav-button-line2'>Cart</span>
149
+ <span class='nav-cart-button nav-sprite'></span>
150
+ <span id='nav-cart-count' class='nav-cart-0'>0</span>
151
+ </span>
152
+ </span>
153
+ <span class='nav-down-arrow nav-sprite'></span>
154
+ </a>
155
+ <span class='nav-divider nav-divider-cart'></span>
156
+ <a id='nav-wishlist' href='/gp/registry/wishlist' class='nav_a nav-button-outer nav-menu-inactive' alt='Wish List'>
157
+ <span class='nav-button-mid nav-sprite'>
158
+ <span class='nav-button-inner nav-sprite'>
159
+ <span class='nav-button-title nav-button-line1'>Wish</span>
160
+ <span class='nav-button-title nav-button-line2'>List</span>
161
+ </span>
162
+ </span>
163
+ <span class='nav-down-arrow nav-sprite'></span>
164
+ </a>
165
+ <!-- nav-linktree-category -->
166
+ <!-- nav-linktree-subnav -->
167
+ <ul id='nav-subnav' data-digest='8ALbNnH4PVCVubLQK1P9UVQc/iE'>
168
+ <li class='nav-subnav-item nav-category-button'>
169
+ <a href='/books-used-books-textbooks/b?ie=UTF8&node=283155' class='nav_a'>
170
+ Books
171
+ </a>
172
+ </li>
173
+ <li class="nav-subnav-item">
174
+ <a href='/Advanced-Search-Books/b?ie=UTF8&node=241582011' class='nav_a'>
175
+ Advanced Search
176
+ </a>
177
+ </li>
178
+ <li class="nav-subnav-item">
179
+ <a href='/gp/new-releases/books' class='nav_a'>
180
+ New Releases
181
+ </a>
182
+ </li>
183
+ <li class="nav-subnav-item">
184
+ <a href='/gp/bestsellers/books' class='nav_a'>
185
+ Best Sellers
186
+ </a>
187
+ </li>
188
+ <li class="nav-subnav-item">
189
+ <a href='/Books/b?ie=UTF8&node=549028' class='nav_a'>
190
+ The&nbsp;New&nbsp;York Times�&nbsp;Best&nbsp;Sellers
191
+ </a>
192
+ </li>
193
+ <li class="nav-subnav-item">
194
+ <a href='/Childrens-Books/b?ie=UTF8&node=4' class='nav_a'>
195
+ Children's Books
196
+ </a>
197
+ </li>
198
+ <li class="nav-subnav-item">
199
+ <a href='/New-Used-Textbooks-Books/b?ie=UTF8&node=465600' class='nav_a'>
200
+ Textbooks
201
+ </a>
202
+ </li>
203
+ <li class="nav-subnav-item">
204
+ <a href='/Sell-Books/b?ie=UTF8&node=2205237011' class='nav_a'>
205
+ Sell&nbsp;Your Books
206
+ </a>
207
+ </li>
208
+ <li class="nav-subnav-item">
209
+ <a href='/Best-Books-of-the-Month/b?ie=UTF8&node=390919011' class='nav_a'>
210
+ Best&nbsp;Books of&nbsp;the&nbsp;Month
211
+ </a>
212
+ </li>
213
+ </ul>
214
+ </div>
215
+ </div>
216
+
217
+ </div>
218
+ </header>
219
+ <script type="text/javascript"><!--
220
+ _navbar.dynamicMenuUrl = '/gp/navigation/ajax/dynamicmenu.html';
221
+ window.$Nav && $Nav.declare('config.dynamicMenuUrl', _navbar.dynamicMenuUrl);
222
+ _navbar.dismissNotificationUrl = '/gp/navigation/ajax/dismissnotification.html';
223
+ window.$Nav && $Nav.declare('config.dismissNotificationUrl', _navbar.dismissNotificationUrl);
224
+ _navbar.dynamicMenus = true;
225
+ window.$Nav && $Nav.declare('config.enableDynamicMenus', true);
226
+ _navbar.readyOnATF = false;
227
+ window.$Nav && $Nav.declare('config.readyOnATF', _navbar.readyOnATF);
228
+ _navbar.dynamicMenuArgs = {"isPrime":0,"primeMenuWidth":310};
229
+ window.$Nav && $Nav.declare('config.dynamicMenuArgs', _navbar.dynamicMenuArgs || {});
230
+ window.$Nav && $Nav.declare('config.signOutText', _navbar.signOutText);
231
+ window.$Nav && $Nav.declare('config.yourAccountPrimeURL', _navbar.yourAccountPrimer);
232
+ _navbar._endSpriteImage = new Image();
233
+ _navbar._endSpriteImage.onload = function() {_navbar.componentLoaded(); };
234
+ _navbar._endSpriteImage.src = window._navbarSpriteUrl;
235
+ window.$Nav && $Nav.declare('config.autoFocus', false);
236
+ window.$Nav && $Nav.declare('config.responsiveGW', !!window._navbar.responsivegw);
237
+
238
+ window.$Nav && $Nav.declare('config.browsePromos', window._navbar.browsepromos);
239
+ window.amznJQ && amznJQ.declareAvailable('navbarPromosContent');
240
+ --></script>
241
+ <div>
242
+ </div>
243
+ <div id="rwImages_hidden" style="display:none;">
244
+ <img src="http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" style="display:none;"/>
245
+ </div>
246
+ <script type="text/javascript">
247
+ (function() {
248
+ var availableWidth =
249
+ ((window.innerWidth || document.body.offsetWidth) - 1);
250
+ ;
251
+ var widths = [1280];
252
+ var imageHashMain = ["http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg","http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg"];
253
+ var imageObj = new Image();
254
+ var sz = 0;
255
+ for(; sz < widths.length && availableWidth >= widths[sz]; sz++);
256
+ imageObj.src = imageHashMain[sz];
257
+ })();
258
+ </script>
259
+ <div id="PrimeStripeContent">
260
+ </div>
261
+ <br />
262
+ <form method="post" id="handleBuy" name="handleBuy" action="http://www.amazon.com/gp/product/handle-buy-box" style="margin: 0pt;" autocomplete="off">
263
+ <input type="hidden" id="session-id" name="session-id" value="000-0000000-0000000" />
264
+ <input type="hidden" id="ASIN" name="ASIN" value="193609620X" />
265
+ <input type="hidden" id="isMerchantExclusive" name="isMerchantExclusive" value="0" />
266
+ <input type="hidden" id="merchantID" name="merchantID" value="ATVPDKIKX0DER" />
267
+ <input type="hidden" id="nodeID" name="nodeID" value="283155" />
268
+ <input type="hidden" id="offerListingID" name="offerListingID" value="7pa7Ubg44czS9xlJTHv1GwgcUWxBWIb4uSdOkIjmQ9x5hv1wYbPttPNTxrFOgkUv9exYlEwsNm8SV8k6Ywf%2FOB7tBYLQoWdX4WBrLIG1ORs3xJ7f88%2BThQ%3D%3D" />
269
+ <input type="hidden" id="sellingCustomerID" name="sellingCustomerID" value="A2R2RITDJNW1Q6" />
270
+ <input type="hidden" id="sourceCustomerOrgListID" name="sourceCustomerOrgListID" value="" />
271
+ <input type="hidden" id="sourceCustomerOrgListItemID" name="sourceCustomerOrgListItemID" value="" />
272
+ <input type="hidden" id="qid" name="qid" value="" />
273
+ <input type="hidden" id="sr" name="sr" value="" />
274
+ <input type="hidden" id="storeID" name="storeID" value="books" />
275
+ <input type="hidden" id="tagActionCode" name="tagActionCode" value="" />
276
+ <input type="hidden" id="viewID" name="viewID" value="glance" />
277
+ <input type="hidden" name="isAddon" id="isAddon" value="0" />
278
+ <table border="0" cellpadding="0" cellspacing="0" width="215" class="buyingDetailsGrid" align="right">
279
+ <tr><td valign="top" width="100%">
280
+ </td></tr><tr><td valign="top" width="100%">
281
+ </td></tr><tr><td valign="top" width="100%">
282
+ <noscript>
283
+ </noscript>
284
+ <div id="radiobuyboxDivId">
285
+ <div id="rbbContainer" class="cBox buyTopBox shadowBottom">
286
+ <span class="cBoxTL"></span>
287
+ <span class="cBoxTR"></span>
288
+ <span class="cBoxBL"></span>
289
+ <span class="cBoxBR"></span>
290
+
291
+ <div class="tab_separator"></div>
292
+ <div id="bb_section" class="rbb_section cBox buyTopBox selected">
293
+ <span class="cBoxTL"></span>
294
+ <span class="cBoxTR"></span>
295
+ <span class="cBoxBL"></span>
296
+ <span class="cBoxBR"></span>
297
+ <div id="rbb_bb_trigger" class="rbb_header">
298
+ <a href="/gp/product/193609620X?selectObb=new" class="rbbHeaderLink">
299
+ <span class="bb_title">
300
+ <input name="selectedBuyBoxHeader" type="radio" class="bb_radio" checked="checked" />
301
+ Buy New
302
+ </span>
303
+ <span class="rbb_tab_filler"> OOOOOO OOOO OOOOO
304
+ </span>
305
+ <span class="bb_price">
306
+ $18.77 </span>
307
+ </a>
308
+ </div>
309
+ <div id="rbb_bb" class="rbb_content " >
310
+ <div id="twister-atf-emwa_feature_div"></div>
311
+
312
+ <div id="buyboxDivId" class="buying" style="; width:215;">
313
+ <div id="addonBuyboxID"></div>
314
+ <div class="cBox buyTopBox">
315
+ <span class="cBoxTL"><!-- &nbsp; --></span>
316
+ <span class="cBoxTR"><!-- &nbsp; --></span>
317
+ <span class="cBoxR"><!-- &nbsp; --></span>
318
+
319
+ <div id="goldBoxBuyBoxDivId" class="cBoxInner" style="text-align: center; display: none;"></div>
320
+ <div id="buyBoxContent" class="cBoxInner" style="text-align: center; ">
321
+
322
+ <div align="center" style="margin-bottom: 4px; " id="quantityDropdownDiv">
323
+ <span style="color:#666;"><label for="quantity">Quantity:</label></span>
324
+ <select name="quantity" id="quantity" >
325
+ <option value="1" selected>1</option>
326
+ <option value="2">2</option>
327
+ <option value="3">3</option>
328
+ <option value="4">4</option>
329
+ <option value="5">5</option>
330
+ <option value="6">6</option>
331
+ <option value="7">7</option>
332
+ <option value="8">8</option>
333
+ <option value="9">9</option>
334
+ <option value="10">10</option>
335
+ <option value="11">11</option>
336
+ <option value="12">12</option>
337
+ <option value="13">13</option>
338
+ <option value="14">14</option>
339
+ <option value="15">15</option>
340
+ <option value="16">16</option>
341
+ <option value="17">17</option>
342
+ <option value="18">18</option>
343
+ <option value="19">19</option>
344
+ <option value="20">20</option>
345
+ <option value="21">21</option>
346
+ <option value="22">22</option>
347
+ <option value="23">23</option>
348
+ <option value="24">24</option>
349
+ <option value="25">25</option>
350
+ <option value="26">26</option>
351
+ <option value="27">27</option>
352
+ <option value="28">28</option>
353
+ <option value="29">29</option>
354
+ <option value="30">30</option>
355
+ </select>
356
+ </div>
357
+ <script type="text/javascript">
358
+ var legacyOnSelectedQuantityChange = function () {
359
+ if (jQuery("#pricePlusShippingQty").length > 0) {
360
+ jQuery.ajax({
361
+ url: "/gp/product/du/quantity-sip-update.html",
362
+ data: {
363
+ qt: jQuery("#quantityDropdownDiv select").val(),
364
+ a : jQuery("#ASIN").val(),
365
+ me: jQuery("#merchantID").val()
366
+ },
367
+ dataType: "html",
368
+ success: function(sipHtml){
369
+ jQuery("#pricePlusShippingQty").html(sipHtml);
370
+ }
371
+ });
372
+ }
373
+ };
374
+ amznJQ.onReady('jQuery', function() {
375
+ jQuery("#quantityDropdownDiv select").change(legacyOnSelectedQuantityChange);
376
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
377
+ amznJQ.available('quantityDropDownJS', function() {
378
+ var qdd = new jQuery.fn.quantityDropDown();
379
+ qdd.setPopoverContent("<strong>We're sorry. This item is limited to %d per customer.</strong>","<br /><br />We strive to provide customers with great prices, and sometimes that means we limit quantity to ensure that the majority of customers have an opportunity to order products that have very low prices or a limited supply.<br /><br />We may also adjust quantity in checkout if you have recently purchased this item.");
380
+ });
381
+ });
382
+ });
383
+ </script>
384
+ <div id="buyboxTwisterJS"></div>
385
+
386
+ <div align="center" style="margin-bottom: 4px; display: none;" id="buyNewDiv"><b class="small"></b></div>
387
+ <div style="padding-bottom: 8px">
388
+ <div id="BBPricePlusShipID">
389
+
390
+ </div>
391
+ <div id="BBAvailPlusMerchID">
392
+
393
+ </div>
394
+ </div>
395
+ <!-- No Scheduled Delivery for AFN non-Prime -->
396
+
397
+ <div id="prime-rcx-subs-checkbox-outer" style="display:none;">
398
+ <div class="buying" style="margin:0px 0px 12px 10px">
399
+ <input type="checkbox" id="bbop-check-box" style="float:left"/>
400
+ <label for="bbop-check-box" id="bbop-check-box-msg" style="float:left;text-align:left;margin-left:3px">
401
+ Yes, I want <b>FREE Two-Day<br />Shipping</b> with
402
+ <a name="primeLearnMorePopElem" href="#" id="primeLearnMoreLink">Amazon Prime</a>
403
+ </label>
404
+ <div style="clear:both"></div>
405
+ </div>
406
+ </div>
407
+ <div id="primeLearnMoreDiv" style="display:none">
408
+ <table width="385px">
409
+ <tr>
410
+ <td>
411
+ <table border="0" cellpadding="0" cellspacing="0" width="100%">
412
+ <tbody>
413
+ <tr>
414
+ <td align="left">
415
+ <span style="color: rgb(204, 153, 0); font-size: 14px;"><strong>Amazon Prime Free Trial</strong></span>
416
+ </td>
417
+ </tr>
418
+ </tbody>
419
+ </table>
420
+
421
+ FREE Two-Day Shipping is available to Amazon Prime members. To join, select "Yes, I want FREE Two-Day Shipping with Amazon Prime" above the Add to Cart button and confirm your Amazon Prime free trial sign-up during checkout.<br /><br />
422
+
423
+ <b>Amazon Prime members enjoy:</b><br />
424
+ <ul class="primeBuyBox">
425
+ <li> Unlimited Free Two-Day Shipping</li>
426
+ <li> One-Day Shipping for just $3.99/item</li>
427
+ <li> No Minimum Purchase for free or discounted shipping</li>
428
+ </ul>
429
+ <br />
430
+ <b>Important:</b> Your credit card will NOT be charged when you start your free trial or if you cancel during the trial period. If you're happy with Amazon Prime, do nothing. At the end of the free trial, your membership will automatically upgrade to a full year for $79.
431
+ </td>
432
+ </tr>
433
+ </table>
434
+ </div>
435
+ <script type="text/javascript">
436
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
437
+ amznJQ.available('bbopCheckBoxJS', function() {
438
+ var bbopJS = new jQuery.fn.bbopCheckBox();
439
+ bbopJS.initialize(1,0,"To get FREE Two-Day Shipping on this item, proceed to checkout using &quot;Add to Cart&quot;");
440
+ });
441
+ });
442
+ </script>
443
+
444
+ <span id="addToCartSpan">
445
+ <input type="image" title="" alt="Add to Shopping Cart" border="0" class="dpSprite s_bbAdd2Cart " id="bb_atc_button" value="" name="submit.add-to-cart" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" />
446
+ </span>
447
+ <br />
448
+ <script language="JavaScript">
449
+ var gbSecure1Click = true;
450
+ if(typeof(gbSecure1Click) != 'undefined' && gbSecure1Click){
451
+ amznJQ.onReady('jQuery',
452
+ function () {
453
+ jQuery("#oneClickBuyButton").click(
454
+ function () {
455
+ var hbbAction = jQuery('#handleBuy').attr("action").replace("http:", "https:");
456
+ jQuery('#handleBuy').attr("action", hbbAction );
457
+ return true;
458
+ }
459
+ );
460
+ }
461
+ );
462
+ }
463
+ </script><div id="oneClickDivId" class="oneClickDiv" >
464
+ <script type="text/javascript">
465
+ if(window.gbvar){
466
+ amznJQ.onReady('jQuery', function() {
467
+ jQuery("#oneClickSignInLinkID").attr("href",window.gbvar);
468
+ });
469
+ }
470
+ else{
471
+ window.gbvar = "https://www.amazon.com/gp/product/utility/edit-one-click-pref.html?ie=UTF8&query=selectObb%3Dnew&returnPath=%2Fgp%2Fproduct%2F193609620X";
472
+ }
473
+ </script>
474
+ <table width="198px" cellspacing="0" cellpadding="0" border="0" class="dividerString">
475
+ <tr align="center">
476
+ <td width="80px"><hr width="80px" noshade="noshade" size="1"></td>
477
+ <td class="tiny">or</td>
478
+ <td width="80px"><hr width="80px" noshade="noshade" size="1"></td>
479
+ </tr>
480
+ </table>
481
+ <div class=tiny>
482
+ <script type="text/javascript">
483
+ if(window.gbvar){
484
+ amznJQ.onReady('jQuery', function() {
485
+ jQuery("#oneClickSignInLinkID").attr("href",window.gbvar);
486
+ });
487
+ }
488
+ else{
489
+ window.gbvar = "https://www.amazon.com/gp/product/utility/edit-one-click-pref.html?ie=UTF8&query=selectObb%3Dnew&returnPath=%2Fgp%2Fproduct%2F193609620X";
490
+ }
491
+ </script>
492
+ <a href="https://www.amazon.com/gp/product/utility/edit-one-click-pref.html?ie=UTF8&query=selectObb%3Dnew&returnPath=%2Fgp%2Fproduct%2F193609620X" id="oneClickSignInLinkID" class="oneClickSignInLink">Sign in to turn on 1-Click ordering</a>
493
+ </div></div>
494
+
495
+ </div>
496
+ </div>
497
+
498
+ <div style="clear:both;height:1px;"></div>
499
+ </div>
500
+ </div>
501
+ </div>
502
+
503
+ <div class="tab_separator"></div>
504
+ <div class="rbb_section cBox buyTopBox unselected">
505
+ <span class="cBoxTL"></span>
506
+ <span class="cBoxTR"></span>
507
+ <span class="cBoxBL"></span>
508
+ <span class="cBoxBR"></span>
509
+ <div id="rbb_ubb_trigger" class="rbb_header">
510
+ <a href="/gp/product/193609620X?selectObb=used" class="rbbHeaderLink">
511
+ <span class="bb_title">
512
+ <input name="selectedBuyBoxHeader" type="radio" class="bb_radio" />
513
+ Buy Used
514
+ </span>
515
+ <span class="rbb_tab_filler"> OOOOOO OOOO OOOOO </span>
516
+ <span class="bb_price">
517
+ $15.37 </span>
518
+ </a>
519
+ </div>
520
+ <div id="rbb_ubb" class="rbb_content" style="display:none;">
521
+
522
+ <div id="buyboxusedDivId" style="width:215px;" class="buying" >
523
+ <table id="buyboxusedTable" border="0" cellspacing="0" cellpadding="0" class="buyBox">
524
+ <tr>
525
+ <td width="190" class="topLeft">
526
+ <input type="hidden" id="usedMerchantID" name="usedMerchantID" value="A3HS0K3UQJW2XZ" />
527
+ <input type="hidden" id="usedOfferListingID" name="usedOfferListingID" value="2TUdKOtHzAHJSNCa%2FmmcihsjXW3U5jTCYIom3DmW2LjOc%2Bo5yYlr63%2Fe3MDo%2F4VZwIDCHTegVr4Wp4gYPf18U1CMklIAifzv41fNeZ%2Bf2hNR38%2Bzb5HFOrXsjXkUefg9BR5xgoKW4%2FxcmyC%2Bl7XNyA%3D%3D" />
528
+ <input type="hidden" id="usedSellingCustomerID" name="usedSellingCustomerID" value="A3HS0K3UQJW2XZ" />
529
+ <table cellspacing="0" cellpadding="0" border="0" align="center">
530
+ <tr>
531
+ <td align="center" style="text-align: center;">
532
+
533
+ <div id="usedItemExpandBuyingInfoDiv" style="padding: 4px 0px;">
534
+ <span class="plusShippingText" style="color: #000;">
535
+
536
+ <span class="rbb_sss"><b>FREE Shipping</b> on orders over $25.</span>
537
+
538
+ </span></div>
539
+ <span id="addToCartUBBSpan">
540
+ <input type="image" title="" alt="Add to Shopping Cart" border="0" class="dpSprite s_bbAdd2Cart " id="ubb_atc_button" value="" name="submit.add-to-cart-ubb" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" />
541
+ </span>
542
+ <script type="text/javascript">
543
+ amznJQ.onReady("jQuery", function() {
544
+ jQuery("#ubb_atc_button").click(function() {
545
+ var ubbAction = jQuery('#handleBuy').attr("action").replace("ref=dp_start-bbf_1_glance", "ref=dp_start-ubbf_1_glance");
546
+ jQuery('#handleBuy').attr("action", ubbAction );
547
+ return true;
548
+ });
549
+ });
550
+ </script>
551
+ <br />
552
+ <div align="center" style="margin-bottom: 4px;" id="usedItemConditionInfoDiv" class="tiny">
553
+ <b>Used - Acceptable</b> <span class="ubbVertLine">|</span> <a href="#" id="usedItemConditionInfoLink">See details</a>
554
+ </div>
555
+ <script type="text/javascript">
556
+ amznJQ.available('popover', function() {
557
+ jQuery("#usedItemConditionInfoLink").amazonPopoverTrigger({
558
+ showCloseButton: false,
559
+ closeEventInclude: ['CLICK_TRIGGER', 'CLICK_OUTSIDE', 'MOUSE_LEAVE'],
560
+ locationElement: jQuery("#usedItemConditionInfoLink"),
561
+ location: "bottom",
562
+ width: 250,
563
+ localContent: "#usedItemConditionInfoPopover"
564
+ });
565
+ });
566
+ </script>
567
+ <div id="usedItemConditionInfoPopover" class="tiny" style="display: none;">
568
+ <div style="margin-bottom: 4px;"><b>Condition:</b> Used - Acceptable</div>
569
+ <div style="margin-bottom: 4px;"><b>Comment:</b> This book has significant wear that may include cocked board(s), bending to covers/pages, cover spotting, weak hinge(s), and/or underlining. Study copy only. Impeccable feedback rating PLUS this product ships directly to you from Amazon's warehouse - fast, secure and FREE w/AZ PRIME!</div>
570
+ </div>
571
+ <div class="tiny" style="margin-bottom: 4px;">Sold by <a href="/gp/help/seller/at-a-glance.html?ie=UTF8&amp;isAmazonFulfilled=1&amp;seller=A3HS0K3UQJW2XZ">hawthorne_academic</a>.</div>
572
+ <div style="margin: 3px 0 5px;" class="tiny"><a href="/gp/help/customer/display.html?ie=UTF8&nodeId=106096011&ref=dp_ubb_fulfillment" id="SSOFpopoverLink_ubb">Fulfilled by Amazon</a></div>
573
+ <script type="text/javascript">
574
+ amznJQ.available('popover', function() {
575
+ jQuery('#SSOFpopoverLink_ubb').amazonPopoverTrigger({
576
+ showOnHover: touchDeviceDetected,
577
+ closeText: 'Close',
578
+ title: 'What is Fulfillment by Amazon?',
579
+ locationElement: jQuery("#SSOFpopoverLink_ubb"),
580
+ location: "bottom",
581
+ width: 430,
582
+ literalContent:'<div id ="SSOFpopover_ubb">Fulfillment by Amazon (FBA) is a service we offer sellers that lets them store their products in Amazon\'s fulfillment centers, and we directly pack, ship, and provide customer service for these products. Something we hope you\'ll especially enjoy: <em>FBA items qualify for FREE Super Saver Shipping and <img src="http://g-ecx.images-amazon.com/images/G/01/sdp/popover/fba/amz-prime._V192217000_.gif" width="92" alt="Amazon Prime" height="12" border="0" />.</em><br /><br />If you\'re a seller, Fulfillment by Amazon can help you increase your sales. We invite you to <a href="/gp/seller/fba/fulfillment-by-amazon.html?ie=UTF8&ld=AZFBADP&ref=dp_fba_pop" target="_blank" style="font-weight: bold;">learn more about Fulfillment by Amazon</a>.'
583
+ });
584
+ });
585
+ </script>
586
+
587
+ <div class="oneClickDiv">
588
+ <table width="198px" cellspacing="0" cellpadding="0" border="0" class="dividerString">
589
+ <tr align="center">
590
+ <td width="80px"><hr width="80px" noshade="noshade" size="1"></td>
591
+ <td class="tiny">or</td>
592
+ <td width="80px"><hr width="80px" noshade="noshade" size="1"></td>
593
+ </tr>
594
+ </table>
595
+ <div class="tiny oneClickSignInLink" style="padding: 4px 0px;">
596
+ <a href="https://www.amazon.com/gp/product/utility/edit-one-click-pref.html?ie=UTF8&amp;query=selectObb%3Dused&amp;returnPath=%2Fgp%2Fproduct%2F193609620X">Sign in to turn on 1-Click ordering</a>
597
+ </div></div>
598
+ <script language="JavaScript">
599
+ var gbSecure1Click = true;
600
+ if(typeof(gbSecure1Click) != 'undefined' && gbSecure1Click){
601
+ amznJQ.onReady('jQuery',
602
+ function () {
603
+ jQuery("#oneClickBuyButton").click(
604
+ function () {
605
+ var hbbAction = jQuery('#handleBuy').attr("action").replace("http:", "https:");
606
+ jQuery('#handleBuy').attr("action", hbbAction );
607
+ return true;
608
+ }
609
+ );
610
+ }
611
+ );
612
+ }
613
+ </script>
614
+
615
+ </td></tr></table>
616
+ </td>
617
+ <td width="13" class="topRight">&nbsp;</td>
618
+ </tr>
619
+ <tr>
620
+ <td class="bottomLeft">&nbsp;</td>
621
+ <td class="bottomRight" height="12">&nbsp;</td>
622
+ </tr>
623
+ </table>
624
+ </div>
625
+ </div>
626
+ </div>
627
+ <div style="height:0px;font-size:1px;"></div>
628
+ </div>
629
+ <div id="rbbFooter">
630
+
631
+ <div class="cBox buyBottomBox" >
632
+
633
+ <span class="cBoxR"><!-- &nbsp; --></span>
634
+ <span class="cBoxBL"><!-- &nbsp; --></span>
635
+ <span class="cBoxBR"><!-- &nbsp; --></span>
636
+ <span class="cBoxB"><!-- &nbsp; --></span>
637
+ <div class="cBoxInner" style="text-align: center;">
638
+
639
+ </div>
640
+ </div>
641
+ </div>
642
+ </div>
643
+ <script type="text/javascript">
644
+ amznJQ.onReady("jQuery", function() {
645
+ if(typeof dpLdWidget !== 'undefined' && typeof dpLdWidget.deal !== 'undefined' && typeof dpLdWidget.deal.asins !== 'undefined' ){
646
+ var dealPriceText;
647
+ if( typeof Deal !== 'undefined' && typeof Deal.Price !== 'undefined' && typeof dpLdWidget.deal.asins[0] !== 'undefined' ){
648
+ var dp = dpLdWidget.deal.asins[0].dealPrice;
649
+ if ( dp.price > 0.0 ) {
650
+ dealPriceText = Deal.Price.format(dp);
651
+ jQuery("#rbb_bb_trigger .bb_price, #rentalPriceBlockGrid .buyNewOffers .rentPrice").html( dealPriceText );
652
+ }
653
+ }
654
+ }
655
+
656
+ jQuery("#rbbContainer .rbb_section .rbb_header").click(function(e) {
657
+ var target = jQuery(e.target);
658
+ if( !target.hasClass("rbb_header") ) target.parents(".rbbHeaderLink").attr("href", "javascript:void(0);");
659
+
660
+ var t = jQuery(this);
661
+ var header=t.hasClass("rbb_header") ? t : t.parents(".rbb_header");
662
+ if (header.parents(".rbb_section").hasClass("selected")) {
663
+ return false;
664
+ }
665
+
666
+ jQuery("#radiobuyboxDivId .bb_radio").attr("checked", false);
667
+ header.find('.bb_radio').attr("checked", "checked");
668
+ header.parents(".rbb_section").removeClass("unselected").addClass("selected");
669
+
670
+ jQuery("#radiobuyboxDivId .abbListInput").attr("checked", false);
671
+ var bbClicked = jQuery(this).attr("id");
672
+ var slideMeDown, slideMeUp;
673
+ // animate here
674
+ jQuery("#radiobuyboxDivId .rbb_section").each(function(i, bb){
675
+ if(jQuery(bb).find(".rbb_header")[0].id == bbClicked ){
676
+ slideMeDown = jQuery(bb);
677
+ } else if(jQuery(bb).hasClass("selected")) {
678
+ slideMeUp = jQuery(bb);
679
+ }
680
+ });
681
+ slideMeUp.find(".rbb_content").slideUp(500, function(){
682
+ slideMeUp.removeClass("selected").addClass("unselected");
683
+ });
684
+ slideMeDown.find(".rbb_content").slideDown(500);
685
+
686
+ location.hash = "#selectedObb=" + header.attr("id");
687
+ return true;
688
+ });
689
+
690
+ // Select correct buy box if user selects "Back" after clicking "Add to Cart"
691
+ var locationHash = location.hash;
692
+ if (locationHash.length != 0) {
693
+ var selectObb = locationHash.substring(1).split("=")[1];
694
+ if (typeof(selectObb) != "undefined") {
695
+ var target = jQuery("#" + selectObb);
696
+ if (target.length != 0) {
697
+ target.trigger('click');
698
+ }
699
+ }
700
+ }
701
+ });
702
+ </script>
703
+ </td></tr><tr><td valign="top" width="100%">
704
+ <div id="tradeInBuyboxFeatureDiv" style="padding-top: 5px; margin-bottom: 5px; display: inline-block; position: relative; width: 100%;">
705
+ <div class="cBox buyBottomBox" style="border-top: 1px solid #6daee1; z-index: 0">
706
+ <span class="cBoxTL"><!-- &nbsp; --></span>
707
+ <span class="cBoxTR"><!-- &nbsp; --></span>
708
+ <span class="cBoxR"><!-- &nbsp; --></span>
709
+ <span class="cBoxBL"><!-- &nbsp; --></span>
710
+ <span class="cBoxBR"><!-- &nbsp; --></span>
711
+ <span class="cBoxB"><!-- &nbsp; --></span>
712
+ <div class="cBoxInner">
713
+ <div style="text-align: center">
714
+ <div style="font-weight: bold; padding-bottom: 3px;" class="small">Sell Us Your Item</div>
715
+ <div style="margin-bottom: 5px; font-size: 11px;">
716
+
717
+ For a <span style="color: #990000; font-size: 1.2em; letter-spacing: -1px; font-weight: bold">$3.00</span> Gift Card
718
+ </div>
719
+ <a href="https://www.amazon.com/gp/tradein/add-to-cart.html?ie=UTF8&asin=193609620X">
720
+ <img src="http://g-ecx.images-amazon.com/images/G/01/tradein/buttons/btn-tradein-md-sec._V386994518_.png" alt="Trade in" border="0" height="22" id="tradeInBuyboxImg" width="99"/>
721
+ </a>
722
+ <div style="padding-top: 3px; font-size: 11px;">
723
+ <a
724
+ href="/gp/tradein/popovers/render-popover.html?ie=UTF8&name=howToTradeIn" target="_new"
725
+ id="tradeinBuyboxLearnMore">
726
+ Learn more
727
+ </a>
728
+ </div>
729
+ </div>
730
+ </div>
731
+ </div>
732
+ </div>
733
+ </td></tr><tr><td valign="top" width="100%">
734
+
735
+ </td></tr><tr><td valign="top" width="100%">
736
+
737
+ <div style="margin-top: 3px;" class="cBox mbcBox">
738
+ <span class="cBoxTL"><!-- &nbsp; --></span>
739
+ <span class="cBoxTR"><!-- &nbsp; --></span>
740
+ <span class="cBoxR"><!-- &nbsp; --></span>
741
+ <span class="cBoxBL"><!-- &nbsp; --></span>
742
+ <span class="cBoxBR"><!-- &nbsp; --></span>
743
+ <span class="cBoxB"><!-- &nbsp; --></span>
744
+ <div class="mbcContainer">
745
+ <div class="mbcTitle">More Buying Choices</div>
746
+ <div id="more-buying-choice-content-div">
747
+ <div class="extendedBuyBox" align="center" id="SDPBlock">
748
+
749
+ Have one to sell?
750
+ <span style="align: absmiddle;"><a class="dpSprite s_sellYoursHere " href="http://catalog-retail.amazon.com/abis/syh/DisplayCondition?_encoding=UTF8&asin=193609620X&colid=&coliid=&ld=AMZDP&qid=&sr=" ><span>Sell yours here</span></a></span>
751
+ </div>
752
+ </div>
753
+ </div>
754
+ </div>
755
+ </td></tr><tr><td valign="top" width="100%">
756
+ <div class="fionaPublishBox">
757
+ <div class="cBox grayBox">
758
+ <span class="cBoxTL"><!-- &nbsp; --></span>
759
+ <span class="cBoxTR"><!-- &nbsp; --></span>
760
+ <span class="cBoxR"><!-- &nbsp; --></span>
761
+ <span class="cBoxBL"><!-- &nbsp; --></span>
762
+ <span class="cBoxBR"><!-- &nbsp; --></span>
763
+ <span class="cBoxB"><!-- &nbsp; --></span>
764
+
765
+ <div class="cBoxInner">
766
+ <div class="fionaPublish">
767
+ <div>
768
+ <strong>
769
+ Tell the Publisher!
770
+ </strong>
771
+ <br />
772
+ <a href="/gp/digital/fiona/detail/request-kindle-edition?ie=UTF8&amp;a=193609620X">I'd like to read this book on Kindle</a>
773
+ <br /><br />
774
+ Don't have a Kindle? <a href="/Kindle-Ereader-ebook-reader/dp/B007HCCNJU">Get your Kindle here</a>, or download a <b>FREE</b> <a href="/gp/feature.html?ie=UTF8&amp;docId=1000493771"> Kindle Reading App</a>.
775
+ <br />
776
+ </div>
777
+ </div>
778
+ </div>
779
+ </div>
780
+ </div>
781
+ </td></tr><tr><td valign="top" width="100%">
782
+ </td></tr><tr><td valign="top" width="100%">
783
+
784
+ </td></tr></table>
785
+ <table border="0" cellpadding="0" cellspacing="0" width="240" class="productImageGrid" align="left">
786
+ <tr><td valign="top" width="100%">
787
+
788
+ </td></tr><tr><td valign="top" width="100%">
789
+
790
+ <div id="main-image-widget" class="size0 bottom-thumbs main-image-widget-for-dp standard">
791
+ <div id="main-image-content">
792
+ <div id="main-image-relative-container" style="position:relative">
793
+ <div id="main-image-fixed-container">
794
+ <div id="main-image-wrapper-outer">
795
+ <div id="main-image-wrapper" class="main" >
796
+ <div id="holderMainImage" class="holder image">
797
+ <div id="twister-main-image" customFunctionName ="ImageBlock.TwisterReArchModule.getMainImageMarkup" style = "display:none"></div>
798
+ <noscript><a href="/gp/reader/193609620X#reader-link"><img id="main-image-nonjs" src="http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" alt="" ></a></noscript>
799
+ <img id="main-image" src="http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" alt="" rel="" onload=";if(typeof measureATFDiff == 'function'){ measureATFDiff(new Date().getTime(),0)};if(typeof setCSMReq=='function'){setCSMReq('af');setCSMReq('cf');}else if (typeof uet=='function'){uet('af');uet('cf');amznJQ.completedStage('amznJQ.AboveTheFold');}">
800
+ </div>
801
+ </div>
802
+ </div>
803
+ </div>
804
+ <div id="main-image-unavailable">
805
+ <div class="wrapper">
806
+ <div class="item-not-available">
807
+ <b>Sorry, this item is not available in<b class="all-variations"></b></b>
808
+ </div>
809
+ <div class="text-color">
810
+ <b>Image not available for<br/>Color:<b class="color"></b></b>
811
+ </div>
812
+ <div class="text-no-color"><b>Image not available</b></div>
813
+ </div>
814
+ </div>
815
+ <p id="noFlashContent">
816
+ To view this video download <a href='http://get.adobe.com/flashplayer' target='_blank'>
817
+ Flash Player<span class ="swSprite s_extLink"></span></a>
818
+ </p>
819
+ </div>
820
+ <div id='main-image-caption' class='tiny'>&nbsp;</div><div id = 'thumbs-image' class='thumbs bottom' customFunctionName = 'ImageBlock.TwisterReArchModule.getAltsImageMarkup'><a href='http://www.amazon.com/gp/product/images/193609620X' class='altThumb' target='AmazonHelp' onclick='return amz_js_PopWin(this.href,"AmazonHelp","width=700,height=600,resizable=1,scrollbars=1,toolbar=0,status=1");' /><img class='border thumb0 selected' src='http://ecx.images-amazon.com/images/I/61mI3YmHVnL._SS30_.jpg' data-index='0'></a></div> <div id="prodImageCell" style="display:none"></div>
821
+ </div>
822
+ </div>
823
+ <script type="text/javascript">
824
+ var colorImages = {"initial":[{"large":"http://ecx.images-amazon.com/images/I/61mI3YmHVnL.jpg","landing":["http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg"],"thumb":"http://ecx.images-amazon.com/images/I/61mI3YmHVnL._SS30_.jpg","main":["http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg","http://ecx.images-amazon.com/images/I/61mI3YmHVnL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg"]}]};
825
+ (function(doc) {
826
+ var mi = doc.getElementById("main-image");
827
+ mi.style.display = "inline";
828
+ })(document);
829
+ </script>
830
+ </td></tr><tr><td valign="top" width="100%"></td></tr><tr><td valign="top" width="100%">
831
+ </td></tr><tr><td valign="top" width="100%">
832
+ <div class="tiny" style="padding-top: 6px;">
833
+ <a href="/gp/reader/193609620X#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReader('sib_dp_ptu'); return false; }">Search inside this book</a>
834
+ </div>
835
+ </td></tr></table>
836
+
837
+ <div class="buying">
838
+ <h1 class="parseasinTitle ">
839
+ <span id="btAsinTitle" >Knit Noro: Accessories: 30 Colorful Little Knits <span style="text-transform: capitalize; font-size: 16px;">[Hardcover]</span></span>
840
+ </h1>
841
+ <span >
842
+ <a href="/s?_encoding=UTF8&amp;field-author=Sixth%20%26%20Spring%20Books&amp;search-alias=books&amp;sort=relevancerank">Sixth & Spring Books</a> <span class="byLinePipe">(Editor)</span>
843
+ </span>
844
+
845
+ </div>
846
+ <div class="jumpBar">
847
+
848
+ <span class="tiny">
849
+ <script type='text/javascript'>
850
+ function acrPopoverHover(e, h) {
851
+ if(h) window.acrAsinHover = e;
852
+ else if(window.acrAsinHover == e) window.acrAsinHover = null;
853
+ }
854
+ amznJQ.onReady('popover', function() {
855
+ (function($) {
856
+ if($.fn.acrPopover) return;
857
+ var popoverConfig = {
858
+ showOnHover:true,
859
+ showCloseButton: true,
860
+ width: null,
861
+ location:'bottom',
862
+ locationAlign:'left',
863
+ locationOffset:[-20,0],
864
+ paddingLeft: 15,
865
+ paddingBottom: 5,
866
+ paddingRight: 15,
867
+ group: 'reviewsPopover',
868
+ clone:false,
869
+ hoverHideDelay:300
870
+ };
871
+ $.fn.acrPopover = function() {
872
+ return this.each(function() {
873
+ var $this = $(this);
874
+ if(!$this.data('init') && typeof $this.amazonPopoverTrigger === 'function') {
875
+ $this.data('init', 1);
876
+ var getargs = $this.attr('getargs');
877
+ var ajaxURL = '/gp/customer-reviews/common/du/displayHistoPopAjax.html?' +
878
+ '&ASIN=' + $this.attr('name') +
879
+ '&link=1' +
880
+ '&seeall=1' +
881
+ '&ref=' + $this.attr('ref') +
882
+ ((typeof getargs != 'undefined') ? ('&getargs=' + getargs) : '');
883
+ var myConfig = $.extend(true, { destination: ajaxURL }, popoverConfig);
884
+ $this.amazonPopoverTrigger(myConfig);
885
+ var w = window.acrAsinHover;
886
+ if(w && $(w).parents('.asinReviewsSummary').get(0) == this) {
887
+ $this.trigger('mouseover.amzPopover');
888
+ window.acrAsinHover = null;
889
+ }
890
+ }
891
+ });
892
+ };
893
+ window.reviewHistPopoverConfig = popoverConfig;
894
+ var jqInit = window.jQueryInitHistoPopovers = function(asin) {
895
+ if (typeof $('.acr-popover[name=' + asin + ']').acrPopover === 'function') {
896
+ $('.acr-popover[name=' + asin + ']').acrPopover();
897
+ }
898
+ };
899
+ window.doInit_average_customer_reviews = jqInit;
900
+ window.onAjaxUpdate_average_customer_reviews = jqInit;
901
+ window.onCacheUpdate_average_customer_reviews = jqInit;
902
+ window.onCacheUpdateReselect_average_customer_reviews = jqInit;
903
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
904
+ setTimeout(function() { amznJQ.declareAvailable('acrPopover'); }, 10);
905
+ });
906
+ })(jQuery);
907
+ });
908
+ amznJQ.onReady('acrPopover', function() {
909
+ jQuery('.acr-popover,#searchTemplate .asinReviewsSummary').each(function() {
910
+ if (typeof jQuery(this).acrPopover === 'function') {
911
+ jQuery(this).acrPopover();
912
+ }
913
+ });
914
+ });
915
+
916
+ </script>
917
+ <span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary acr-popover non-lazy" name="193609620X" ref="dp_top_cm_cr_acr_pop_" >
918
+ <a style="cursor:pointer;text-decoration:none" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" name="reviewHistoPop_193609620X__star__" onmouseover="return acrPopoverHover(this,1);" onmouseout="return acrPopoverHover(this,0);" ><span class="swSprite s_star_4_5 " title="4.6 out of 5 stars" ><span>4.6 out of 5 stars</span></span>&nbsp;</a>&nbsp;<span class="histogramButton"
919
+ style="margin-left:-3px"><a style="text-decoration:none" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" name="reviewHistoPop_193609620X__button__" onmouseover="return acrPopoverHover(this,1);" onmouseout="return acrPopoverHover(this,0);" style="cursor:pointer" ><span class="swSprite s_chevron " ><span>See all reviews</span></span>&nbsp;</a></span></span>(<a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" >28 customer reviews</a>)</span></span>
920
+ </div>
921
+ <hr noshade="noshade" size="1" id="product-title-divider"/>
922
+ <table border="0" cellpadding="0" cellspacing="0" >
923
+ <tr><td valign="top" width="100%">
924
+
925
+ <div class="buying" id="priceBlock" >
926
+ <table class="product">
927
+ <tr>
928
+ <td class="priceBlockLabel">List Price:</td>
929
+ <td><span id="listPriceValue" class="listprice">$24.95</span></td>
930
+ </tr>
931
+ <tr id="actualPriceRow">
932
+ <td id="actualPriceLabel" class="priceBlockLabelPrice">Price:</td>
933
+ <td id="actualPriceContent"><span id="actualPriceValue"><b class="priceLarge">$18.77</b></span>
934
+ <span id="actualPriceExtraMessaging">
935
+
936
+ & <b>FREE Shipping</b> on orders over $25.
937
+ <a href="/gp/help/customer/display.html?ie=UTF8&nodeId=527692&pop-up=1" target="AmazonHelp" onclick="return amz_js_PopWin('/gp/help/customer/display.html?ie=UTF8&nodeId=527692&pop-up=1','AmazonHelp','width=550,height=550,resizable=1,scrollbars=1,toolbar=0,status=0');">Details</a>
938
+
939
+ </td>
940
+ </tr>
941
+ <tr id="dealPriceRow" style="display: none;">
942
+ <td id="dealPriceLabel" class="priceBlockLabel">Deal Price: </td>
943
+ <td id="dealPriceContent">
944
+ <span id="dealPriceValue"></span>
945
+ <span id="dealPriceExtraMessaging"></span>
946
+ </td>
947
+ </tr>
948
+ <script type="text/javascript">
949
+ amznJQ.declareAvailable('gbPriceBlockFields');
950
+ </script>
951
+
952
+ <tr id="youSaveRow" class="youSavePriceRow">
953
+ <td id="youSaveLabel" class="priceBlockLabel">You Save:</td>
954
+ <td id="youSaveContent" class="price"><span id="youSaveValue">$6.18
955
+ (25%)</span>
956
+ </td>
957
+ </tr>
958
+
959
+ <tr style="height: 0px; line-height: 0px;"><td style="visibility: hidden;"/><td style="visibility: hidden;"><span style="line-height: 0px;">o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o</span></td></tr>
960
+ </table>
961
+
962
+ </div>
963
+ </td></tr><tr><td valign="top" width="100%">
964
+ </td></tr><tr><td valign="top" width="100%">
965
+
966
+ </td></tr><tr><td valign="top" width="100%">
967
+
968
+ <div class="buying" style="padding-bottom: 0.75em;">
969
+ <span class="availGreen">In Stock.</span><br /> Ships from and sold by <b>Amazon.com</b>. Gift-wrap available.
970
+ </div>
971
+ </td></tr><tr><td valign="top" width="100%">
972
+
973
+ <div id="ftMessage" class="buying">
974
+ <b>Want it Friday, Aug. 2?</b>
975
+ <input type="hidden" name="promise-promised-shipoption.193609620X" value="next" />
976
+ Choose <b></b> at checkout.
977
+ <a href="/gp/help/customer/display.html?ie=UTF8&nodeId=3510241&pop-up=1" target="AmazonHelp" onclick="return amz_js_PopWin('/gp/help/customer/display.html?ie=UTF8&nodeId=3510241&pop-up=1','AmazonHelp','width=550,height=600,resizable=1,scrollbars=1,toolbar=1,status=1');">Details</a>
978
+ <br />
979
+ <input type="hidden" name="promise-type" value="1-click" />
980
+ <input type="hidden" name="promise-item.193609620X" value="1375498800" />
981
+ <input type="hidden" name="promise-cutoff-time.193609620X" value="1375398000" />
982
+ <script language="Javascript1.2" type="text/javascript">
983
+ var timerDiv=document.getElementById("ftMessageTimer");
984
+ if (timerDiv && timerDiv.style)
985
+ timerDiv.style.display='inline';
986
+ </script>
987
+ </div>
988
+
989
+ </td></tr><tr><td valign="top" width="100%">
990
+ </td></tr><tr><td valign="top" width="100%"></td></tr><tr><td valign="top" width="100%">
991
+
992
+ </td></tr><tr><td valign="top" width="100%">
993
+ </td></tr><tr><td valign="top" width="100%"></td></tr><tr><td valign="top" width="100%">
994
+ <div>
995
+
996
+ </div>
997
+ </td></tr><tr><td valign="top" width="100%"></td></tr><tr><td valign="top" width="100%"></td></tr></table>
998
+ <input type="hidden" name="itemCount" value="1" />
999
+ </form>
1000
+ <script type="text/javascript">if(typeof measureATFDiff == 'function'){measureATFDiff(0, new Date().getTime())};if(typeof setCSMReq == 'function'){setCSMReq('af');}else if(typeof uet == 'function'){uet('af');}</script>
1001
+
1002
+ <div id="vellumMsg">
1003
+ <div id="vellumMsgIco"></div>
1004
+ <div id="vellumMsgHdr"></div>
1005
+ <div id="vellumMsgTxt"></div>
1006
+ <div id="vellumMsgCls" onclick="javascript:Vellum.h()"></div>
1007
+ </div>
1008
+ <div id="vellumShade" onclick="javascript:Vellum.h()"></div>
1009
+ <div id="vellumLdgIco"></div>
1010
+ <div id="sitbReaderPlaceholder"></div>
1011
+ <script>
1012
+ var msg = document.getElementById('sitbUnsupportedBrowserMessage');
1013
+ if (msg) {
1014
+ msg.style.display = 'block';
1015
+ var reftagImage = new Image();
1016
+ reftagImage.src = '/gp/search-inside/reftag/ref=rdr_bar_nobrowser';
1017
+ }
1018
+ </script>
1019
+
1020
+ <table border="0" cellpadding="0" cellspacing="0" class="twisterMediaMatrix">
1021
+ <tbody><tr><td style="border-top:none;">
1022
+ <div class="cBox dkBlueBox">
1023
+ <span class="cBoxTL"><!-- &nbsp; --></span>
1024
+ <span class="cBoxTR"><!-- &nbsp; --></span>
1025
+ <span class="cBoxR"><!-- &nbsp; --></span>
1026
+ <span class="cBoxBL"><!-- &nbsp; --></span>
1027
+ <span class="cBoxBR"><!-- &nbsp; --></span>
1028
+ <span class="cBoxB"><!-- &nbsp; --></span>
1029
+
1030
+ <div class="cBoxInner">
1031
+ <table border="0" cellspacing="0" cellpadding="2">
1032
+ <thead><tr>
1033
+ <th class=" " colspan="2">
1034
+ <h3 class="tmm_formatColumnHeader">Formats</h3>
1035
+ </th>
1036
+ <th class=" " colspan="2">
1037
+ Amazon Price
1038
+ </th>
1039
+ <th class="tmm_olpNewColumnHeader ">
1040
+ New from
1041
+ </th>
1042
+ <th class="tmm_olpUsedColumnHeader ">
1043
+ Used from
1044
+ </th>
1045
+ </tr></thead>
1046
+ <tbody id="hardcover_meta_binding_winner">
1047
+ <tr class="activeRow bucketBorderTop" id="tmm_193609620X">
1048
+ <td class="tmm_buttonTD">
1049
+ </td>
1050
+ </td>
1051
+ <td class="tmm_bookTitle noLinkDecoration ">
1052
+ Hardcover
1053
+ </td>
1054
+ <td class=" price ">
1055
+ $18.77
1056
+ </td>
1057
+ <td class=" noLinkDecoration ">
1058
+ &nbsp;
1059
+ </td>
1060
+ <td class="tmm_olpLinks ">
1061
+ --
1062
+ </td>
1063
+ <td class="tmm_olpLinks ">
1064
+ --
1065
+ </td>
1066
+ </tr>
1067
+ </tbody>
1068
+ <tbody id="hardcover_meta_binding_body">
1069
+ </tbody>
1070
+ <tbody>
1071
+ <tr class=" noLinkDecoration " style="display:none" id="hardcover_meta_binding_showMoreLink"><td></td><td colspan="5" ><strong><a href="#">See <span id="hardcover_meta_binding_showMoreVariationsCount">#</span> more hardcovers</a></strong></td></tr>
1072
+ <tr class=" noLinkDecoration " style="display:none" id="hardcover_meta_binding_showFewerLink"><td></td><td colspan="5" ><strong><a href="#">Show fewer hardcovers</a></strong></td></tr>
1073
+ </tbody>
1074
+ </table>
1075
+ </div>
1076
+ </div>
1077
+ </td></tr></tbody></table>
1078
+ <script type="text/javascript">
1079
+ window._tmm_3 = +new Date();
1080
+ if (typeof amznJQ != "undefined") {
1081
+ amznJQ.onCompletion("amznJQ.criticalFeature", function() {
1082
+ amznJQ.available("twister-media-matrix", function() {
1083
+ window._tmm_2 = +new Date();
1084
+ TwisterMediaMatrix.initialize({
1085
+ "hardcover_meta_binding": { "n": "2", "start": "1" }
1086
+ }, "1", "books", "193609620X", "B00667GAYQ", "book_display_on_website", "Loading...", "Error. Please try again.", "http://g-ecx.images-amazon.com/images/G/01/x-locale/twister/tiny-snake._V192199047_.gif", false, "", "");
1087
+ });
1088
+ });
1089
+ }
1090
+ var disableWinnerPopup;
1091
+ </script>
1092
+ <table border="0" cellpadding="0" cellspacing="0" class="qpDivTop">
1093
+ <tbody><tr><td>
1094
+ <div class="cBox grayBox">
1095
+ <span class="cBoxTL"><!-- &nbsp; --></span>
1096
+ <span class="cBoxTR"><!-- &nbsp; --></span>
1097
+ <span class="cBoxR"><!-- &nbsp; --></span>
1098
+ <span class="cBoxBL"><!-- &nbsp; --></span>
1099
+ <span class="cBoxBR"><!-- &nbsp; --></span>
1100
+ <span class="cBoxB"><!-- &nbsp; --></span>
1101
+
1102
+ <div class="cBoxInner">
1103
+ <span style="font-size: 0.82em;">
1104
+
1105
+ <div class="qpImage">
1106
+ <a href="/b?ie=UTF8&node=5556316011"><img src="http://g-ecx.images-amazon.com/images/G/01/books/other/FP-leaves-HQP._SL75_V377808655_.jpg" width="75" align="left" alt="Best Books of the Year So Far" height="56" border="0" /></a></div>
1107
+ <span class="qpHeadline">The Big Fall Books Preview</span><br>
1108
+
1109
+ The year's biggest book release season is just around the corner! See under-the-radar favorites, blockbusters, and exciting upcoming releases for all kinds of readers in our <a href="/b?ie=UTF8&node=5556316011">Big Fall Books Preview</a>.
1110
+
1111
+ <div class="hqpDiv" name="heroQuickPromoDiv" id="heroQuickPromoDiv">
1112
+ <strong class="hqpBold">&rsaquo;&nbsp;</strong>
1113
+ <a href="#productPromotions">See more product promotions</a>
1114
+ </div>
1115
+
1116
+ <div style="clear: left;"></div>
1117
+ </span>
1118
+ </div>
1119
+ </div>
1120
+ </td></tr>
1121
+ </tbody></table>
1122
+
1123
+ <div class="buying" id="promoGrid">
1124
+
1125
+ </div>
1126
+
1127
+ <a name="postPS"><hr class="bucketDivider" size="1" noshade="noshade"/></a>
1128
+ <div id="ps-content" class="bucket">
1129
+ <h2>Book Description</h2>
1130
+ <div class="buying"><span class="byLinePipe">Publication Date: </span><span style="font-weight: bold;">January 3, 2012</span> </div>
1131
+ <div class="content">
1132
+ <div id="outer_postBodyPS" style="overflow:hidden; z-index: 1; ">
1133
+ <div id="postBodyPS" style="overflow: hidden;">
1134
+ <div><DIV><DIV>Using only the finest natural materials and ecologically sound manufacturing processes, Japanese designer Eisaku Noro has been producing some of the most extraordinary and popular yarns in the world for over 30 years. Hand colored in vivid combinations of painterly hues, Noro yarns are as striking to behold as they are easy to work with. This follow-up to <I>Knit Noro</I> features 32 small projects knitters can complete in a weekend, including Leg Warmers, Cabled Mittens, a Lace Flap Hat, and even an iPad cover.</DIV><DIV>&#160;</DIV></DIV></div>
1135
+
1136
+ </div>
1137
+ </div>
1138
+ <div id="psGradient" class="psGradient" style="display:none;"></div>
1139
+ <div id="psPlaceHolder" style="display:none; height: 20px;">
1140
+ <div id="expandPS" style="display:none; z-index: 3;">
1141
+ <span class="swSprite s_expandChevron"></span>
1142
+ <a class="showMore" onclick="amz_expandPostBodyDescription('PS', ['psGradient', 'psPlaceHolder']); return false;" href="#">Show more</a>
1143
+ </div>
1144
+ </div>
1145
+ <div id="collapsePS" style="display:none; padding-top: 3px;">
1146
+ <span class="swSprite s_collapseChevron"></span>
1147
+ <a class="showLess" onclick="amz_collapsePostBodyDescription('PS', ['psGradient', 'psPlaceHolder']); return false;" href="#">Show less</a>
1148
+ </div>
1149
+ <noscript>
1150
+ <div id="postBodyPS"><DIV><DIV>Using only the finest natural materials and ecologically sound manufacturing processes, Japanese designer Eisaku Noro has been producing some of the most extraordinary and popular yarns in the world for over 30 years. Hand colored in vivid combinations of painterly hues, Noro yarns are as striking to behold as they are easy to work with. This follow-up to <I>Knit Noro</I> features 32 small projects knitters can complete in a weekend, including Leg Warmers, Cabled Mittens, a Lace Flap Hat, and even an iPad cover.</DIV><DIV>&#160;</DIV></DIV></div>
1151
+ </noscript>
1152
+ </div>
1153
+ </div>
1154
+ <script language="javascript" type="text/javascript">
1155
+ function amz_expandPostBodyDescription(id, objects) {
1156
+ amznJQ.onReady('jQuery', function() {
1157
+ for (var i = 0; i < objects.length; i++) {
1158
+ jQuery("#" + objects[i]).hide();
1159
+ }
1160
+ jQuery("#outer_postBody" + id).animate({height: jQuery("#postBody" + id).height()}, 500);
1161
+ jQuery("#expand" +id).hide();
1162
+ jQuery("#collapse" +id).show();
1163
+ jQuery.ajax({
1164
+ url: "/gp/product/utility/ajax/impression-tracking.html",
1165
+ data: {a: "193609620X", ref: "dp_pd_showmore_b"}
1166
+ });
1167
+ });
1168
+ }
1169
+
1170
+ function amz_collapsePostBodyDescription(id, objects) {
1171
+ amznJQ.onReady('jQuery',function (){
1172
+ for (var i = 0; i < objects.length; i++) {
1173
+ jQuery("#" + objects[i]).show();
1174
+ }
1175
+ jQuery("#outer_postBody" + id).animate({height: 200}, 500);
1176
+ jQuery("#collapse" +id).hide();
1177
+ jQuery("#expand" +id).show();
1178
+ jQuery.ajax({
1179
+ url: "/gp/product/utility/ajax/impression-tracking.html",
1180
+ data: {a: "193609620X", ref: "dp_pd_showless_b"}
1181
+ });
1182
+ });
1183
+ }
1184
+ amznJQ.onReady('jQuery', function() {
1185
+ var psTotalHeight = jQuery('#postBodyPS').height();
1186
+ if (psTotalHeight > 200) {
1187
+ jQuery('#outer_postBodyPS').css("display", "block").css("height", 200);
1188
+ jQuery('#psPlaceHolder').css("display", "block");
1189
+ jQuery('#expandPS').css("display", "block");
1190
+ jQuery('#psGradient').css("display", "block");
1191
+ } else {
1192
+ jQuery('#outer_postBodyPS').css("height", "auto");
1193
+ jQuery('#psGradient').hide();
1194
+ jQuery('#psPlaceHolder').hide();
1195
+ }
1196
+ });
1197
+ </script>
1198
+
1199
+ <hr class="bucketDivider">
1200
+ <div class="bucket " id="sims_fbt">
1201
+ <h2>Frequently Bought Together</h2>
1202
+ <div class="content">
1203
+ <form action="/gp/item-dispatch" method="post" name="BuyXGetYhandleBuy">
1204
+ <input name="session-id" type="hidden" value="000-0000000-0000000">
1205
+
1206
+ <table class="bxgyBundle">
1207
+ <tr>
1208
+ <td id="fbt_x_img">
1209
+ <img src="http://ecx.images-amazon.com/images/I/61mI3YmHVnL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS75_.jpg" width="75" alt="Knit Noro: Accessories: 30 Colorful Little Knits" id="" height="75" border="0" />
1210
+
1211
+ </td>
1212
+ <td class="plus" id="fbt_y_plus">+ </td>
1213
+ <td id="fbt_y_img">
1214
+
1215
+ <a href="http://www.amazon.com/Knit-Noro-Designs-Living-Color/dp/1936096153"><img src="http://ecx.images-amazon.com/images/I/517wqWXTJaL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="75" alt="Knit Noro: 30 Designs in Living Color" id="" height="75" border="0" /></a>
1216
+
1217
+ </td>
1218
+ <td class="plus" id="fbt_z_plus">+ </td>
1219
+ <td id="fbt_z_img">
1220
+
1221
+ <a href="http://www.amazon.com/Crochet-Noro-30-Dazzling-Designs/dp/193609648X"><img src="http://ecx.images-amazon.com/images/I/61OH78RNnLL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="75" alt="Crochet Noro: 30 Dazzling Designs" id="" height="75" border="0" /></a>
1222
+
1223
+ </td>
1224
+ </tr>
1225
+ </table>
1226
+
1227
+ <div id="fbt_price_block">
1228
+ <span id="fbt_bpt">Price for all three:</span>&nbsp;<span class="price" id="fbt_buying_price">$57.74</span>
1229
+ <br>
1230
+ <input type="image" title="" alt="Add all three to Cart" border="0" class="dpSprite s_add3ToCart button-margin" id="fbt_cartadd_button" value="" name="submit.addToCart" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" />
1231
+ <input type="image" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" width="146" align="top" alt="Add all three to Wish List" name="submit.add-to-registry.wishlist" id="fbt_wladd_button" class="wl-button-sprite button-margin wl_three" height="22" border="0" />
1232
+ <p id="fbt_shipping_details"><span></span> <a href="#" class="inlineLink" id="fbt_ship_details_link" style="display:none">Show availability and shipping details</a></p>
1233
+ </div>
1234
+
1235
+ <fieldset class="forScreenreaders"><legend><span>Buy the selected items together</span></legend>
1236
+ <ul id="fbt_item_details" tabindex="-1">
1237
+ <li class="fbt_item">
1238
+ <label>
1239
+ <input name="offeringID.1" value="8%2BLr9%2FGfx3xQV364TChzTv0TU5rTaG9O%2FK843DJycQTBvahWo0LznPCbU%2FBhv82X431ZczvcJGSrxKL0RdnRTU6x5Fsd7tA4PY89NwqrenJD7bYdTUVDYA%3D%3D" type="checkbox" id="fbt_x_check" style="display: none;" class="check" checked="checked">
1240
+ <span id="fbt_x_title"><strong>This item: </strong>
1241
+ Knit Noro: Accessories: 30 Colorful Little Knits<span class='bxgy-binding-byline'> <span class="bxgy-byline-text">by Sixth & Spring Books</span> Hardcover</span>
1242
+ <span class="price bxgy-item-price">$18.77</span><span class="price">
1243
+ </span></span>
1244
+ </label>
1245
+ <div id="xInfoWrapper" class="bxgySellerLoading" id="193609620XsellerInfo" style="display:none"> </div>
1246
+ </li>
1247
+ <li class="fbt_item">
1248
+ <input name="offeringID.2" value="Wd5%2BrfW9b6JRSp6lALPq33B39AYG7dVJ5Lg%2BN2FN8K0sJgdD4rUPqWTFEr%2FtuSIVUwCfYyjP9gL0PSj%2BPaTzVcI1az1yewoKSDrxgOEF%2F98rodtb9pcMNA%3D%3D" type=checkbox id="fbt_y_check" style="display: none;" class="check" checked="checked" title="
1249
+ Knit Noro: 30 Designs in Living Color by Sixth & Spring Books [Hardcover]">
1250
+ <span id="fbt_y_title">
1251
+ <a href="http://www.amazon.com/Knit-Noro-Designs-Living-Color/dp/1936096153">Knit Noro: 30 Designs in Living Color</a><span class='bxgy-binding-byline'> <span class="bxgy-byline-text">by Sixth & Spring Books</span> Hardcover</span>
1252
+ <span class="price bxgy-item-price">$18.77</span><span class="price">
1253
+ </span></span>
1254
+ <div id="yInfoWrapper" class="bxgySellerLoading" id="1936096153sellerInfo" style="display:none"></div>
1255
+ </li>
1256
+ <li class="fbt_item">
1257
+ <input name="offeringID.3" value="JWZc2cxJm6FoGoNAfW%2BgQeWhjeGK%2BQky%2FPo7LAVWFl1wqyebzB7rLEpV188ZAuk5PvPvgQr5zYJtukUQRlLEiR%2F7fvMcAT1TOpn2dCbTLvFRsPDsOv6k%2BQ%3D%3D" type=checkbox id="fbt_z_check" style="display: none;" class="check" checked="checked" title="
1258
+ Crochet Noro: 30 Dazzling Designs by Sixth & Spring Books [Hardcover]">
1259
+ <span id="fbt_z_title">
1260
+ <a href="http://www.amazon.com/Crochet-Noro-30-Dazzling-Designs/dp/193609648X">Crochet Noro: 30 Dazzling Designs</a><span class='bxgy-binding-byline'> <span class="bxgy-byline-text">by Sixth & Spring Books</span> Hardcover</span>
1261
+ <span class="price bxgy-item-price">$20.20</span><span class="price">
1262
+ </span></span>
1263
+ <div id="zInfoWrapper" class="bxgySellerLoading" id="193609648XsellerInfo" style="display:none"></div>
1264
+ </li>
1265
+ </ul>
1266
+ </fieldset>
1267
+ </form>
1268
+ </div>
1269
+
1270
+ </div>
1271
+ <div id="fbt_item_data" style="display:none;">{"currencyCode":"USD","itemData":[{"priceBreaksMAP":null,"buyingPrice":18.77,"ASIN":"193609620X","isPreorder":0},{"priceBreaksMAP":null,"buyingPrice":18.77,"ASIN":"1936096153","isPreorder":0},{"priceBreaksMAP":null,"buyingPrice":20.2,"ASIN":"193609648X","isPreorder":0}],"shippingId":"193609620X::8%2BLr9%2FGfx3xQV364TChzTv0TU5rTaG9O%2FK843DJycQTBvahWo0LznPCbU%2FBhv82X431ZczvcJGSrxKL0RdnRTU6x5Fsd7tA4PY89NwqrenJD7bYdTUVDYA%3D%3D,1936096153::Wd5%2BrfW9b6JRSp6lALPq33B39AYG7dVJ5Lg%2BN2FN8K0sJgdD4rUPqWTFEr%2FtuSIVUwCfYyjP9gL0PSj%2BPaTzVcI1az1yewoKSDrxgOEF%2F98rodtb9pcMNA%3D%3D,193609648X::JWZc2cxJm6FoGoNAfW%2BgQeWhjeGK%2BQky%2FPo7LAVWFl1wqyebzB7rLEpV188ZAuk5PvPvgQr5zYJtukUQRlLEiR%2F7fvMcAT1TOpn2dCbTLvFRsPDsOv6k%2BQ%3D%3D","sprites":{"addToWishlist":["wl_one","wl_two","wl_three"],"addToCart":["s_addToCart","s_addBothToCart","s_add3ToCart"],"preorder":["s_preorderThis","s_preorderBoth","s_preorderAll3"]},"shippingDetails":{"xz":"same","yz":"same","xy":"same","xyz":"same"},"tags":["x","y","z"],"strings":{"addToWishlist":["add to wishlist","Add both to Wish List","Add all three to Wish List"],"addToCart":["Add to Cart","Add both to Cart","Add all three to Cart"],"showDetailsDefault":"Show availability and shipping details","shippingError":"An error occurred, please try again","hideDetailsDefault":"Hide availability and shipping details","priceLabel":["Price:","Price for both:","Price for all three:"],"preorder":["Pre-order this item","Pre-order both items","Pre-order all three items"]}}</div>
1272
+
1273
+ <div id="purchase-sims-feature" class="">
1274
+ <a name="purchase"></a>
1275
+ <hr noshade="true" size="1" class="bucketDivider">
1276
+ <div class="bucket">
1277
+ <div class="simsWrapper auiTestWrapper">
1278
+ <div class="shoveler" id="purchaseShvl">
1279
+ <div class="shoveler-heading">
1280
+ <h2>Customers Who Bought This Item Also Bought</h2>
1281
+
1282
+ </div>
1283
+
1284
+ <div class="shoveler-pagination" style="display:none">
1285
+ <span>&nbsp;</span>
1286
+ <span>
1287
+ Page <span class="page-number"></span> of <span class="num-pages"></span>
1288
+ <span class="start-over"><span class="a-text-separator"></span><a href="#" onclick="return false;" class="start-over-link">Start over</a></span>
1289
+ </span>
1290
+ </div>
1291
+ <div class="shoveler-button-wrapper" id="purchaseButtonWrapper">
1292
+ <a class="back-button" href="#Back" style="display:none" onclick="return false;"><span class="auiTestSprite s_shvlBack"><span>Back</span></span></a>
1293
+ <div class="shoveler-content">
1294
+ <ul tabindex="-1">
1295
+ <li>
1296
+ <div class="new-faceout p13nimp" id="purchase_1936096153" data-asin="1936096153" data-ref="pd_sim_b_1">
1297
+
1298
+ <a href="/Knit-Noro-Designs-Living-Color/dp/1936096153" class="sim-img-title" > <div class="product-image">
1299
+ <img src="http://ecx.images-amazon.com/images/I/517wqWXTJaL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="100" alt="" height="100" border="0" />
1300
+ </div>
1301
+ Knit Noro: 30 Designs in Living Color </a>
1302
+ <div class="byline">
1303
+ Sixth & Spring Books
1304
+ </div>
1305
+ <div class="rating-price">
1306
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="1936096153"><a href="http://www.amazon.com/Knit-Noro-Designs-Living-Color/product-reviews/1936096153"><span class="auiTestSprite s_star_4_5 " title="4.5 out of 5 stars" ><span>4.5 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Knit-Noro-Designs-Living-Color/product-reviews/1936096153">34</a>)</span></span>
1307
+ </div>
1308
+ <div class="binding-platform">
1309
+ Hardcover
1310
+ </div>
1311
+ <div class="pricetext">
1312
+ <span class="price">$18.77</span>
1313
+ </div>
1314
+ </div>
1315
+ </li>
1316
+ <li>
1317
+ <div class="new-faceout p13nimp" id="purchase_193609648X" data-asin="193609648X" data-ref="pd_sim_b_2">
1318
+
1319
+ <a href="/Crochet-Noro-30-Dazzling-Designs/dp/193609648X" class="sim-img-title" > <div class="product-image">
1320
+ <img src="http://ecx.images-amazon.com/images/I/61OH78RNnLL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="100" alt="" height="100" border="0" />
1321
+ </div>
1322
+ Crochet Noro: 30 Dazzling Designs </a>
1323
+ <div class="byline">
1324
+ Sixth & Spring Books
1325
+ </div>
1326
+ <div class="rating-price">
1327
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="193609648X"><a href="http://www.amazon.com/Crochet-Noro-30-Dazzling-Designs/product-reviews/193609648X"><span class="auiTestSprite s_star_4_5 " title="4.6 out of 5 stars" ><span>4.6 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Crochet-Noro-30-Dazzling-Designs/product-reviews/193609648X">34</a>)</span></span>
1328
+ </div>
1329
+ <div class="binding-platform">
1330
+ Hardcover
1331
+ </div>
1332
+ <div class="pricetext">
1333
+ <span class="price">$20.20</span>
1334
+ </div>
1335
+ </div>
1336
+ </li>
1337
+ <li>
1338
+ <div class="new-faceout p13nimp" id="purchase_1933027878" data-asin="1933027878" data-ref="pd_sim_b_3">
1339
+
1340
+ <a href="/Noro-Behind-Legendary-Fabulous-Designs/dp/1933027878" class="sim-img-title" > <div class="product-image">
1341
+ <img src="http://ecx.images-amazon.com/images/I/51hv4lAXNoL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
1342
+ </div>
1343
+ <span title="Noro: Meet the Man Behind the Legendary Yarn*Knit 40 Fabulous Designs">Noro: Meet the Man Behind the Legendary &#133;</span> </a>
1344
+ <div class="byline">
1345
+ <span class="carat">&#8250</span> <a href="http://www.amazon.com/Cornelia-Tuttle-Hamilton/e/B002JGLTKI">Cornelia Tuttle Hamilto&#133;</a>
1346
+ </div>
1347
+ <div class="rating-price">
1348
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="1933027878"><a href="http://www.amazon.com/Noro-Behind-Legendary-Fabulous-Designs/product-reviews/1933027878"><span class="auiTestSprite s_star_3_5 " title="3.6 out of 5 stars" ><span>3.6 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Noro-Behind-Legendary-Fabulous-Designs/product-reviews/1933027878">19</a>)</span></span>
1349
+ </div>
1350
+ <div class="binding-platform">
1351
+ Hardcover
1352
+ </div>
1353
+ <div class="pricetext">
1354
+ <span class="price">$18.62</span>
1355
+ </div>
1356
+ </div>
1357
+ </li>
1358
+ <li>
1359
+ <div class="new-faceout p13nimp" id="purchase_159635710X" data-asin="159635710X" data-ref="pd_sim_b_4">
1360
+
1361
+ <a href="/Fashions-Flaunt-Crocheted-Noro-Yarns/dp/159635710X" class="sim-img-title" > <div class="product-image">
1362
+ <img src="http://ecx.images-amazon.com/images/I/51dGZaoVGmL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="100" alt="" height="100" border="0" />
1363
+ </div>
1364
+ <span title="Fashions to Flaunt Crocheted with Noro Yarns">Fashions to Flaunt Crocheted with Noro &#133;</span> </a>
1365
+ <div class="byline">
1366
+ Jenny King
1367
+ </div>
1368
+ <div class="rating-price">
1369
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="159635710X"><a href="http://www.amazon.com/Fashions-Flaunt-Crocheted-Noro-Yarns/product-reviews/159635710X"><span class="auiTestSprite s_star_4_5 " title="4.3 out of 5 stars" ><span>4.3 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Fashions-Flaunt-Crocheted-Noro-Yarns/product-reviews/159635710X">15</a>)</span></span>
1370
+ </div>
1371
+ <div class="binding-platform">
1372
+ Paperback
1373
+ </div>
1374
+ <div class="pricetext">
1375
+ <span class="price">$10.36</span>
1376
+ </div>
1377
+ </div>
1378
+ </li>
1379
+ <li>
1380
+ <div class="new-faceout p13nimp" id="purchase_1600854036" data-asin="1600854036" data-ref="pd_sim_b_5">
1381
+
1382
+ <a href="/Classic-Elite-Quick-Knits-Fabulous/dp/1600854036" class="sim-img-title" > <div class="product-image">
1383
+ <img src="http://ecx.images-amazon.com/images/I/51wGejRMWnL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="100" alt="" height="100" border="0" />
1384
+ </div>
1385
+ <span title="Classic Elite Quick Knits: 100 Fabulous Patterns for Wraps, Socks, Hats, and More">Classic Elite Quick Knits: 100 Fabulous &#133;</span> </a>
1386
+ <div class="byline">
1387
+ Classic Elite
1388
+ </div>
1389
+ <div class="rating-price">
1390
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="1600854036"><a href="http://www.amazon.com/Classic-Elite-Quick-Knits-Fabulous/product-reviews/1600854036"><span class="auiTestSprite s_star_4_0 " title="4.2 out of 5 stars" ><span>4.2 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Classic-Elite-Quick-Knits-Fabulous/product-reviews/1600854036">22</a>)</span></span>
1391
+ </div>
1392
+ <div class="binding-platform">
1393
+ Paperback
1394
+ </div>
1395
+ <div class="pricetext">
1396
+ <span class="price">$16.96</span>
1397
+ </div>
1398
+ </div>
1399
+ </li>
1400
+ <li>
1401
+ <div class="new-faceout p13nimp" id="purchase_1454701293" data-asin="1454701293" data-ref="pd_sim_b_6">
1402
+
1403
+ <a href="/One-Scarves-Shawls-Shrugs-Projects/dp/1454701293" class="sim-img-title" > <div class="product-image">
1404
+ <img src="http://ecx.images-amazon.com/images/I/51tEmQPSUXL._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_SS100_.jpg" width="100" alt="" height="100" border="0" />
1405
+ </div>
1406
+ <span title="One + One: Scarves, Shawls & Shrugs: 25+ Projects from Just Two Skeins">One + One: Scarves, Shawls & Shrugs: 25+ &#133;</span> </a>
1407
+ <div class="byline">
1408
+ <span class="carat">&#8250</span>
1409
+ <a href="http://www.amazon.com/Iris-Schreier/e/B001JP0ZRI">Iris Schreier</a>
1410
+ </div>
1411
+ <div class="rating-price">
1412
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="1454701293"><a href="http://www.amazon.com/One-Scarves-Shawls-Shrugs-Projects/product-reviews/1454701293"><span class="auiTestSprite s_star_4_0 " title="4.2 out of 5 stars" ><span>4.2 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/One-Scarves-Shawls-Shrugs-Projects/product-reviews/1454701293">45</a>)</span></span>
1413
+ </div>
1414
+ <div class="binding-platform">
1415
+ Paperback
1416
+ </div>
1417
+ <div class="pricetext">
1418
+ <span class="price">$8.97</span>
1419
+ </div>
1420
+ </div>
1421
+ </li>
1422
+ </ul>
1423
+ </div>
1424
+ <a class="next-button" href="#Next" style="display:none" onclick="return false;"><span class="auiTestSprite s_shvlNext"><span>Next</span></span></a>
1425
+ </div>
1426
+ </div>
1427
+ <div id="purchaseSimsData" class="sims-data" style="display:none" data-baseAsin="193609620X" data-featureId="pd_sim" data-pageId="193609620X" data-reftag="pd_sim_b" data-vt="193609620X" data-wdg="book_display_on_website" data-widgetName="purchase">1936096153,193609648X,1933027878,159635710X,1600854036,1454701293,1600854001,1454702850,1603427244,1596684380,1936096528,0307586553,1603429999,B00869RWDU,B0085SG42W,1936096501,1936096420,1936096048,0307586634,0307586677,1604681942,1936096005,1604681551,1596684909,0307587061,1596684836,0981985912,1570765278,1454703172,1580176887,1603420797,161212058X,1596687843,1603425799,1596689048,1596687819,1604680857,1936096455,1579906443,1596683120,1933027975,1936096374,1584799986,0307586715,1596684399,1931499543,1933064250,098149725X,1936096196,B004GPCEHC,1936096218,1580176453,B00BJEC1ZI,1617690171,1596680296,1596684887,1600599265,1600613012,159668786X,1604680466,1596687959,1933027851,1933064269,1936096609,1936096471,1936096137,1118216067,0760340641,161769021X,1936096439,1592173284,B006TQV2RO,0307965570,0307586529,1603429735,1936096463,1606600478,098307920X,1596356820,0312642210,B001H55MXM,0988719525,0307586804,1596685530,1416535179,0307462730,1604680288,1600859542,0307586502,0964639165,1440305382,1603429964,1604682256,1596685549,B00CP8Z0UA,1603420401,1612120423,1596687886,1596680547</div>
1428
+ </div>
1429
+ </div>
1430
+ </div>
1431
+ <div style="display:none;" class="p13n-session" data-marketplaceId="ATVPDKIKX0DER" data-mkt="US" data-pageId="193609620X" data-requestId="092063X86M9YY90XVEJP" data-session="000-0000000-0000000"></div>
1432
+
1433
+ <!--AMZNJQSECTION-->
1434
+
1435
+ <div id="cpsia-product-safety-warning_feature_div">
1436
+ </div>
1437
+
1438
+ <hr noshade="true" size="1" class="bucketDivider"/>
1439
+ <div class="bucket" id="productDescription">
1440
+ <h2>Editorial Reviews</h2>
1441
+ <div class="content">
1442
+ <h3 class="productDescriptionSource" >From <a href="/gp/feature.html/?docId=1000027801">Booklist</a></h3>
1443
+ <div class="productDescriptionWrapper" >
1444
+ How cool would it be to commission serious knitwear creators to design color bursts of accessories? The answer comes from the manufacturer of Noro, a high-end Japanese yarn brand known for its ever-fascinating combinations of hues. In this book, the follow-up to the first Knit Noro (2011) book, 30 accessories&#x2014;or smalls, consuming only a few skeins of expensive yarn&#x2014;dominate. Patterns and techniques are contemporary, whether brioche or entrelac, felted or cabled, as are the actual wearables. A shrug becomes kimono-like, and a dog&#x2019;s sweater is made flexible with the addition of a drawstring. Color photographs mesmerize; instructions&#x2014;and charts, wherever necessary&#x2014;are crystal clear to experienced knitters. Unfortunately, this isn&#x2019;t geared to beginners (unless a pro is nearby); these 30 projects demand the click-clack of well-honed needles. --Barbara Jacobs
1445
+
1446
+ <div class="emptyClear"> </div>
1447
+ </div>
1448
+ <h3 class="productDescriptionSource" >About the Author</h3>
1449
+ <div class="productDescriptionWrapper" >
1450
+ <DIV><DIV><DIV>The editors of <I>Vogue Knitting</I> have been the most trusted authorities on knitting for over a quarter of a century. Delivering expert information about techniques, an insider's take on the latest trends and happenings, and up-to-the-minute creations from top designers, they are the go-to source for knitters worldwide.</DIV><DIV><BR></DIV></DIV></DIV>
1451
+
1452
+ <div class="emptyClear"> </div>
1453
+ </div>
1454
+ </div>
1455
+ </div>
1456
+
1457
+ <div id="detail-bullets">
1458
+ <a name="productDetails" id="productDetails"></a>
1459
+ <hr noshade="noshade" size="1" class="bucketDivider" />
1460
+ <table cellpadding="0" cellspacing="0" border="0" id="productDetailsTable">
1461
+ <tr>
1462
+ <td class="bucket">
1463
+ <h2>Product Details</h2>
1464
+ <div class="content">
1465
+ <ul>
1466
+ <li><b>Hardcover:</b> 144 pages</li>
1467
+ <li><b>Publisher:</b> Sixth&Spring Books (January 3, 2012)</li>
1468
+ <li><b>Language:</b> English</li>
1469
+ <li><b>ISBN-10:</b> 193609620X</li>
1470
+ <li><b>ISBN-13:</b> 978-1936096206</li>
1471
+
1472
+ <li><b>
1473
+ Product Dimensions:
1474
+ </b>
1475
+ 0.7 x 9 x 10.5 inches
1476
+ </li>
1477
+ <li><b>Shipping Weight:</b> 2 pounds (<a href="http://www.amazon.com/gp/help/seller/shipping.html?ie=UTF8&amp;asin=193609620X&amp;seller=ATVPDKIKX0DER">View shipping rates and policies</a>)</li>
1478
+ <li><b>Average Customer Review:</b>
1479
+ <script type='text/javascript'>
1480
+ function acrPopoverHover(e, h) {
1481
+ if(h) window.acrAsinHover = e;
1482
+ else if(window.acrAsinHover == e) window.acrAsinHover = null;
1483
+ }
1484
+ amznJQ.onReady('popover', function() {
1485
+ (function($) {
1486
+ if($.fn.acrPopover) return;
1487
+ var popoverConfig = {
1488
+ showOnHover:true,
1489
+ showCloseButton: true,
1490
+ width: null,
1491
+ location:'bottom',
1492
+ locationAlign:'left',
1493
+ locationOffset:[-20,0],
1494
+ paddingLeft: 15,
1495
+ paddingBottom: 5,
1496
+ paddingRight: 15,
1497
+ group: 'reviewsPopover',
1498
+ clone:false,
1499
+ hoverHideDelay:300
1500
+ };
1501
+ $.fn.acrPopover = function() {
1502
+ return this.each(function() {
1503
+ var $this = $(this);
1504
+ if(!$this.data('init') && typeof $this.amazonPopoverTrigger === 'function') {
1505
+ $this.data('init', 1);
1506
+ var getargs = $this.attr('getargs');
1507
+ var ajaxURL = '/gp/customer-reviews/common/du/displayHistoPopAjax.html?' +
1508
+ '&ASIN=' + $this.attr('name') +
1509
+ '&link=1' +
1510
+ '&seeall=1' +
1511
+ '&ref=' + $this.attr('ref') +
1512
+ ((typeof getargs != 'undefined') ? ('&getargs=' + getargs) : '');
1513
+ var myConfig = $.extend(true, { destination: ajaxURL }, popoverConfig);
1514
+ $this.amazonPopoverTrigger(myConfig);
1515
+ var w = window.acrAsinHover;
1516
+ if(w && $(w).parents('.asinReviewsSummary').get(0) == this) {
1517
+ $this.trigger('mouseover.amzPopover');
1518
+ window.acrAsinHover = null;
1519
+ }
1520
+ }
1521
+ });
1522
+ };
1523
+ window.reviewHistPopoverConfig = popoverConfig;
1524
+ var jqInit = window.jQueryInitHistoPopovers = function(asin) {
1525
+ if (typeof $('.acr-popover[name=' + asin + ']').acrPopover === 'function') {
1526
+ $('.acr-popover[name=' + asin + ']').acrPopover();
1527
+ }
1528
+ };
1529
+ window.doInit_average_customer_reviews = jqInit;
1530
+ window.onAjaxUpdate_average_customer_reviews = jqInit;
1531
+ window.onCacheUpdate_average_customer_reviews = jqInit;
1532
+ window.onCacheUpdateReselect_average_customer_reviews = jqInit;
1533
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
1534
+ setTimeout(function() { amznJQ.declareAvailable('acrPopover'); }, 10);
1535
+ });
1536
+ })(jQuery);
1537
+ });
1538
+ amznJQ.onReady('acrPopover', function() {
1539
+ jQuery('.acr-popover,#searchTemplate .asinReviewsSummary').each(function() {
1540
+ if (typeof jQuery(this).acrPopover === 'function') {
1541
+ jQuery(this).acrPopover();
1542
+ }
1543
+ });
1544
+ });
1545
+
1546
+ </script>
1547
+ <span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary acr-popover" name="193609620X" ref="dp_db_cm_cr_acr_pop_" >
1548
+ <a style="cursor:pointer;text-decoration:none" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" name="reviewHistoPop_193609620X__star__" onmouseover="return acrPopoverHover(this,1);" onmouseout="return acrPopoverHover(this,0);" ><span class="swSprite s_star_4_5 " title="4.6 out of 5 stars" ><span>4.6 out of 5 stars</span></span>&nbsp;</a>&nbsp;<span class="histogramButton"
1549
+ style="margin-left:-3px"><a style="text-decoration:none" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" name="reviewHistoPop_193609620X__button__" onmouseover="return acrPopoverHover(this,1);" onmouseout="return acrPopoverHover(this,0);" style="cursor:pointer" ><span class="swSprite s_chevron " ><span>See all reviews</span></span>&nbsp;</a></span></span>(<a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" >28 customer reviews</a>)</span></li>
1550
+ <li id="SalesRank">
1551
+ <b>Amazon Best Sellers Rank:</b>
1552
+ #96,739 in Books (<a href="http://www.amazon.com/best-sellers-books-Amazon/zgbs/books">See Top 100 in Books</a>)
1553
+
1554
+ </li>
1555
+
1556
+ <div id="feedbackFeaturesContainer" class="bucket" style="padding-top:0.5em;padding-bottom:0.5em;" >
1557
+
1558
+ <div id="lwcfContainer" style="padding-top:0.5em"></div><div id="gfixFeaturesContainer" style="padding-top:0.5em">Would you like to <b><a href="https://www.amazon.com/gp/gfix/welcome.html?ie=UTF8&ASIN=193609620X&merchantID=ATVPDKIKX0DER&storeID=books">update product info</a></b> or <b><a href="https://www.amazon.com/gp/gfix/imageCorrection.html?ie=UTF8&ASIN=193609620X&merchantID=ATVPDKIKX0DER&storeID=books">give feedback on images</a></b>?</div></div>
1559
+ </ul>
1560
+ <span class="tiny">
1561
+ <ul class="noteBullets">
1562
+ </ul>
1563
+ </span>
1564
+ </div>
1565
+ </td>
1566
+ </tr>
1567
+ </table>
1568
+ </div>
1569
+
1570
+ <hr class="bucketDivider" style="height:1px" id="reviewsDivider"/>
1571
+ <a id="customerReviews"></a>
1572
+ <div class="reviews">
1573
+ <h2 style="font-size: 18px;" class="orange" id="customerReviewsHeader">Customer Reviews</h2>
1574
+ <div style="margin: 15px 0 0 25px;" id="summaryContainer">
1575
+ <div id="revSum">
1576
+ <div class='fl'>
1577
+ <div id='acr' class='fl'>
1578
+ <div id="acr-dpReviewsSummaryWithQuotes-193609620X" class="txtsmall">
1579
+ <div class="fl acrStars"><span class="swSprite s_starBig_4_5 " title="4.6 out of 5 stars" ><span>4.6 out of 5 stars</span></span>
1580
+ </div>
1581
+ <div class="fl gl5 mt3 txtnormal acrCount">(<a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="noTextDecoration" >28</a>)</div>
1582
+ <div class="clearboth"></div>
1583
+ <div class="gry txtnormal acrRating">4.6 out of 5 stars</div>
1584
+ </div>
1585
+ </div>
1586
+ <div id='revH' class='fl mt15 clearboth'>
1587
+ <div id="revHist-dpReviewsSummaryWithQuotes-193609620X" style="font-size: 11px; white-space:no-wrap; line-height:19px;" class="txtsmaller">
1588
+ <div class="fl histoRowfive clearboth" title="75% of reviews have 5 stars" >
1589
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X">
1590
+ <div class="histoRating fl gr10 txtnormal">5 star</div>
1591
+ <div class="histoFullBar fl tiny mr1" style="width:96px; background-color:#f4f4cf; overflow: hidden;">
1592
+ <div class="histoRatingBar" style="background-color:#ffcc66; height:19px; width:72px; border: 0;"></div>
1593
+ </div>
1594
+ <div class="histoCount fl gl10 ltgry txtnormal" style="text-decoration: none;">21</div>
1595
+ </a>
1596
+ </div>
1597
+ <div class="fl histoRowfour clearboth" title="14% of reviews have 4 stars" >
1598
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X">
1599
+ <div class="histoRating fl gr10 txtnormal">4 star</div>
1600
+ <div class="histoFullBar fl tiny mr1" style="width:96px; background-color:#f4f4cf; overflow: hidden;">
1601
+ <div class="histoRatingBar" style="background-color:#ffcc66; height:19px; width:14px; border: 0;"></div>
1602
+ </div>
1603
+ <div class="histoCount fl gl10 ltgry txtnormal" style="text-decoration: none;">4</div>
1604
+ </a>
1605
+ </div>
1606
+ <div class="fl histoRowthree clearboth" title="7% of reviews have 3 stars" >
1607
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X">
1608
+ <div class="histoRating fl gr10 txtnormal">3 star</div>
1609
+ <div class="histoFullBar fl tiny mr1" style="width:96px; background-color:#f4f4cf; overflow: hidden;">
1610
+ <div class="histoRatingBar" style="background-color:#ffcc66; height:19px; width:7px; border: 0;"></div>
1611
+ </div>
1612
+ <div class="histoCount fl gl10 ltgry txtnormal" style="text-decoration: none;">2</div>
1613
+ </a>
1614
+ </div>
1615
+ <div class="fl histoRowtwo clearboth" title="4% of reviews have 2 stars" >
1616
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X">
1617
+ <div class="histoRating fl gr10 txtnormal">2 star</div>
1618
+ <div class="histoFullBar fl tiny mr1" style="width:96px; background-color:#f4f4cf; overflow: hidden;">
1619
+ <div class="histoRatingBar" style="background-color:#ffcc66; height:19px; width:3px; border: 0;"></div>
1620
+ </div>
1621
+ <div class="histoCount fl gl10 ltgry txtnormal" style="text-decoration: none;">1</div>
1622
+ </a>
1623
+ </div>
1624
+ <div class="fl histoRowone clearboth" title="No 1-star reviews" >
1625
+ <div class="histoRating fl gr10 ltgry txtnormal">1 star</div>
1626
+ <div class="histoFullBar fl tiny mr1" style="width:96px; background-color:#f4f4cf; overflow: hidden;">
1627
+ <div class="histoRatingBar" style="background-color:#ffcc66; height:19px; width:0px; border: 0;"></div>
1628
+ </div>
1629
+ <div class="histoCount fl gl10 ltgry txtnormal" style="text-decoration: none;">0</div>
1630
+ </div>
1631
+ </div>
1632
+ </div>
1633
+ <div class='fl mt15 clearboth'>
1634
+ <a id='revSAR' href='http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X' class='txtsmall noTextDecoration'>
1635
+ See all 28 customer reviews
1636
+ </a>
1637
+ </div>
1638
+ </div>
1639
+ <div class='fl ml10' style='width:70%;' id="quotesContainer">
1640
+ <div id="advice-quote-list-dpReviewsBucketSummary-193609620X" class="noLinkDecoration searchTemplate fl" style="margin-left: 20px;"><div style="padding-bottom: 22px;"><!--[if IE]><div style="margin-top: -5px;"><![endif]--> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; display:block; top: -1px; left: -1px;" class="fl">&#8220;</span> <span id="advice-quote-0" style="margin: 0 0 0 12px;" class="block"> <span style="position:relative; ^left:-4px;" class="block"> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76" title="Read the full review by buttons94" style="text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R35GMDXL2TKMJ1"> <span style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;">I love Noro yarn and wanted some patterns using the various types they </span> </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76_hide" href="http://www.amazon.com/review/R35GMDXL2TKMJ1"></a><![if !IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;" class="inlineblock"><![endif]><!--[if IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;"><![endif]--> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76" title="Read the full review by buttons94" style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R35GMDXL2TKMJ1">sell. </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R35GMDXL2TKMJ1-2-0-76_hide" href="http://www.amazon.com/review/R35GMDXL2TKMJ1"></a> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; top: -1px; margin-right: 2px;">&#8221;</span> </span> </span> <span style="margin-top:-5px;" class="block"><!--[if IE]><span style="margin-top: -5px;"><![endif]--> <span id="advice-quote-author-0"><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">buttons94</span><span style="color:#999;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">&nbsp;&nbsp;|&nbsp;&nbsp;</span><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">8&nbsp;reviewers made a similar statement</span> </span><!--[if IE]></span><![endif]--> </span> </span><!--[if IE]></div><![endif]--></div><div style="padding-bottom: 22px;"><!--[if IE]><div style="margin-top: -5px;"><![endif]--> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; display:block; top: -1px; left: -1px;" class="fl">&#8220;</span> <span id="advice-quote-1" style="margin: 0 0 0 12px;" class="block"> <span style="position:relative; ^left:-4px;" class="block"> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44" title="Read the full review by Jeri Seegmiller" style="text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R1A6BDSDMG90CA"> <span style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;">Great projects, easy to follow </span> </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44_hide" href="http://www.amazon.com/review/R1A6BDSDMG90CA"></a><![if !IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;" class="inlineblock"><![endif]><!--[if IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;"><![endif]--> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44" title="Read the full review by Jeri Seegmiller" style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R1A6BDSDMG90CA">instructions. </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R1A6BDSDMG90CA-2-0-44_hide" href="http://www.amazon.com/review/R1A6BDSDMG90CA"></a> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; top: -1px; margin-right: 2px;">&#8221;</span> </span> </span> <span style="margin-top:-5px;" class="block"><!--[if IE]><span style="margin-top: -5px;"><![endif]--> <span id="advice-quote-author-1"><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">Jeri Seegmiller</span><span style="color:#999;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">&nbsp;&nbsp;|&nbsp;&nbsp;</span><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">2&nbsp;reviewers made a similar statement</span> </span><!--[if IE]></span><![endif]--> </span> </span><!--[if IE]></div><![endif]--></div><div ><!--[if IE]><div style="margin-top: -5px;"><![endif]--> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; display:block; top: -1px; left: -1px;" class="fl">&#8220;</span> <span id="advice-quote-2" style="margin: 0 0 0 12px;" class="block"> <span style="position:relative; ^left:-4px;" class="block"> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110" title="Read the full review by Bonnie Brody" style="text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R2OEHSJG47B7QO"> <span style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;">I love this book and intend to look at it again and again - and then take out my needles and begin </span> </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110_hide" href="http://www.amazon.com/review/R2OEHSJG47B7QO"></a><![if !IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;" class="inlineblock"><![endif]><!--[if IE]><span style="white-space:nowrap;font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;"><![endif]--> <a name="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110" title="Read the full review by Bonnie Brody" style="font-family:Georgia,Verdana,Arial,Helvetica,Sans-serif; font-style:italic; font-size:14px; line-height: 20px; color:#333;text-decoration:none; cursor: pointer;" href="http://www.amazon.com/review/R2OEHSJG47B7QO">knitting. </a><a style="display:none" id="advice-quote-list-dpReviewsBucketSummary-193609620X-R2OEHSJG47B7QO-2-1335-110_hide" href="http://www.amazon.com/review/R2OEHSJG47B7QO"></a> <span style="font-family:Georgia,Times New Roman,New Century Schoolbook,Times,Serif; font-style:italic; font-size:22px; color: #333; vertical-align: top; position: relative; top: -1px; margin-right: 2px;">&#8221;</span> </span> </span> <span style="margin-top:-5px;" class="block"><!--[if IE]><span style="margin-top: -5px;"><![endif]--> <span id="advice-quote-author-2"><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">Bonnie Brody</span><span style="color:#999;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">&nbsp;&nbsp;|&nbsp;&nbsp;</span><span style="color:#666;font-family:Arial,Verdana,Helvetica,Sans-serif; font-style:normal; font-size:12px; line-height: 36px;;">4&nbsp;reviewers made a similar statement</span> </span><!--[if IE]></span><![endif]--> </span> </span><!--[if IE]></div><![endif]--></div></div>
1641
+ </div>
1642
+ <div></div>
1643
+ <div class='clearboth'></div>
1644
+ </div>
1645
+ </div>
1646
+ <!--[if IE]>
1647
+ <div class="pcr7" style="margin:20px 0 0 0; width:100%" id="revListContainer">
1648
+ <![endif]-->
1649
+ <!--[if !IE]> -->
1650
+ <div class="pcr7" style="margin:20px 0 0 0;" id="revListContainer">
1651
+ <!-- <![endif]-->
1652
+ <div class="pc" id="revMHLContainer" >
1653
+ <div style="margin: 0 30px 0 25px;" id="revMHLContainerChild">
1654
+ <div id="revMH">
1655
+ <div id='revMHT' class='mb15 txtlarger drkgry'><strong>Most Helpful Customer Reviews</strong></div>
1656
+ <div id='revMHRL' class='mb30'>
1657
+ <div id="rev-dpReviewsMostHelpful-R2OEHSJG47B7QO" class="reviews" > <div class="gry txtsmall hlp">40 of 41 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1658
+ <a href="http://www.amazon.com/review/R2OEHSJG47B7QO" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Absolutely Splendid</strong></a><span class="gry valignMiddle">
1659
+ <span class="inlineblock txtsmall">December 21, 2011</span>
1660
+ </span></div> <div class="mt4 ath"><span class="gr10">
1661
+
1662
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/A39650P2CZUUC9" class="noTextDecoration">Bonnie Brody</a></span>
1663
+ </span><span class="gr8"><a onclick="return amz_js_PopWin(this.href,'AmazonHelp','width=340,height=340,resizable=1,scrollbars=1,toolbar=1,status=1');" target="AmazonHelp" href="http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=14279681&pop-up=1#tr" class="noTextDecoration" ><span class='c7yBadge TR-4'>TOP 100 REVIEWER</span></a></span><span class="gr8"><a onclick="return amz_js_PopWin(this.href,'AmazonHelp','width=340,height=340,resizable=1,scrollbars=1,toolbar=1,status=1');" target="AmazonHelp" href="http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=14279681&pop-up=1#vn" class="noTextDecoration" ><span class='c7yBadge VN-1'>VINE VOICE</span></a></span>
1664
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1665
+ <div class="drkgry">
1666
+ I love Noro yarn and have been using it since it first came to the United States many years ago. I love its color changes and the varied thickness and thinness of the yarn. It is absolutely wonderful to knit with. This new book contains many wonderful projects that will put a smile on any knitter's face.<br /><br />The Tulip Scarf is short and lovely, knit with Silk Garden in brown/rose/blue.<br />The Modular Neck Wrap is also short and lovely, knit with Silk Garden purple/gold/green with three buttons holding it together in the front.<br />The slip-Stitch Cowl is beautiful, elongated and sophisticated. It utilized Kuryon in brown/red/gold.<br />The Welted Cowl will keep you warm and looking beautiful at the same time. It calls for Iro in two separate colorways - brown/green/gray and blue/green/bronze.<br />The Riverbed Rib Hat is knit with Iro in green/purple/teal/lilac colorway with a ribbed pattern. It doesn't look too difficult and I can't wait to knit it.<br />The Intarsia Lace Scarf is one of those patterns that made me take in a deep breath. It is just that beautiful. It uses Silk Garden in royal/purple/fuchsia/lime colorway.<br /><br />I could go on and on about the beautiful patterns but I think you get the idea. This is a book to treasure. The patterns are all from different designers and there is a wide array of choices for the knitter. I love this book and intend to look at it again and again - and then take out my needles and begin knitting.
1667
+ </div>
1668
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1669
+ <a href="http://www.amazon.com/review/R2OEHSJG47B7QO" class="noTextDecoration">Comment</a>
1670
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1671
+ <a id="R2OEHSJG47B7QO.2115.Helpful.Reviews"></a>
1672
+ <div>
1673
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1674
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1675
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OEHSJG47B7QO/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=CE80196E5C541A3AF726D2850578891A1B2A5EFA&voteAnchorName=R2OEHSJG47B7QO.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1676
+ <span class="btn-small txtsmall">Yes</span>
1677
+ </a>
1678
+ </div>
1679
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1680
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OEHSJG47B7QO/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=4942EC2D0788A4B9568D7565D54EA458EBE7FCB7&voteAnchorName=R2OEHSJG47B7QO.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1681
+ <span class="btn-small txtsmall">No</span>
1682
+ </a>
1683
+ </div>
1684
+ </div>
1685
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OEHSJG47B7QO/Inappropriate/1?ie=UTF8&target=&token=92DD791987CF428064414311EC73DC5C91856466&voteAnchorName=R2OEHSJG47B7QO.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1686
+ <div class="clearboth"></div>
1687
+ </div> </div></div>
1688
+ <div id="rev-dpReviewsMostHelpful-R8GDJXWKMA9PQ" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">29 of 31 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1689
+ <a href="http://www.amazon.com/review/R8GDJXWKMA9PQ" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Delightful companion to Knit Noro: Designs in Living Color</strong></a><span class="gry valignMiddle">
1690
+ <span class="inlineblock txtsmall">December 15, 2011</span>
1691
+ </span></div> <div class="mt4 ath"><span class="gr10">
1692
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/ALGHCP1JMZKCW" class="noTextDecoration">H. Mehok</a></span>
1693
+ </span>
1694
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1695
+ <div class="drkgry">
1696
+ Hot off the press and wonderful. Lots of nice, easy to follow patterns featuring easy to find popular Noro yarns-Silk garden and Kureyon to name a few. The projects are portable and many require just a few skeins. I made the tulip scarf-nice way to learn "double knitting" to make the slot- also made the Intarsia Scarf in the featured colorway-made some adjustments to make the yarn change smoother- and want to star the Iro welted caplet- Worth every penny. Great Job!!
1697
+ </div>
1698
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1699
+ <a href="http://www.amazon.com/review/R8GDJXWKMA9PQ" class="noTextDecoration">Comment</a>
1700
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1701
+ <a id="R8GDJXWKMA9PQ.2115.Helpful.Reviews"></a>
1702
+ <div>
1703
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1704
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1705
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R8GDJXWKMA9PQ/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=9E0AF4E9BEBD31F86F6E364405888E43C10A28D9&voteAnchorName=R8GDJXWKMA9PQ.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1706
+ <span class="btn-small txtsmall">Yes</span>
1707
+ </a>
1708
+ </div>
1709
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1710
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R8GDJXWKMA9PQ/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=AC8F4DB54F03EF259171FFF8A6F0F747FD425DA6&voteAnchorName=R8GDJXWKMA9PQ.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1711
+ <span class="btn-small txtsmall">No</span>
1712
+ </a>
1713
+ </div>
1714
+ </div>
1715
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R8GDJXWKMA9PQ/Inappropriate/1?ie=UTF8&target=&token=F3C66973E515D7EDAEA39E9AEDA1AB158D6B9D7B&voteAnchorName=R8GDJXWKMA9PQ.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1716
+ <div class="clearboth"></div>
1717
+ </div> </div></div>
1718
+ <div id="rev-dpReviewsMostHelpful-R3JQRJDEEYOF32" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">9 of 9 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1719
+ <a href="http://www.amazon.com/review/R3JQRJDEEYOF32" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Great book for folks on a budget</strong></a><span class="gry valignMiddle">
1720
+ <span class="inlineblock txtsmall">February 17, 2012</span>
1721
+ </span></div> <div class="mt4 ath"><span class="gr10">
1722
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/AKFBV5SWV7CI4" class="noTextDecoration">Pam MacKenzie</a></span>
1723
+ </span>
1724
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"><span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span></span></div> <div class="mt9 reviewText">
1725
+ <div class="drkgry">
1726
+ Making a small project with Noro makes a lot more sense to someone like me on a budget. And this book has 30 projects that you can make with a hank or two of Noro so that you can enjoy the artful color arrays without breaking the bank on a sweater. You can make scarves, fingerless gloves, an Entrelac iPad cover, a tote, hats and cowls. There's even a little shrug for someone who wants to invest in some Noro Kureyon, a wool yarn.<br /><br />If you read this book and think that the projects are just too expensive to make in the recommended yarn, you may still find this book very useful. Substitute your own yarn. If you can't find a similar self-striping yarn, like Lion Brand Amazing or Bernat Mosaic, just get some odds and ends out of your stash and experiment. Is the quality going to be the same? It depends. Maybe, maybe not. But I'll bet you can create something wonderful if you put your mind to it.<br /><br />The Slip Stitch Cowl on page 42 is an example of what I mean. This is a long, full cowl that uses slip stitches to take advantage of the self-striping yarn. But if you don't have yarn that changes colors, you could make this scarf by manually changing the colors yourself, and it would be just as beautiful.<br /><br />I really like this book for ideas for gift-giving, too. There are projects in here that are very stylish, and if you make a gift from this book and tell the recipient that you made her something from Vogue, that gives you a certain cach&eacute;.<br /><br />The book retails for $25 in the US and has 30 patterns. That's less than $1 per pattern. I think it's the kind of book you can turn to often as you are looking for last-minute gifts, swap gifts or gifts for people you don't know real well but need a nice gift for. For these reasons, I think the $25 could be a good investment.
1727
+ </div>
1728
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1729
+ <a href="http://www.amazon.com/review/R3JQRJDEEYOF32" class="noTextDecoration">Comment</a>
1730
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1731
+ <a id="R3JQRJDEEYOF32.2115.Helpful.Reviews"></a>
1732
+ <div>
1733
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1734
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1735
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3JQRJDEEYOF32/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=02DA2E6B1D056C7BD0D85C0A56194CDC509FFAD6&voteAnchorName=R3JQRJDEEYOF32.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1736
+ <span class="btn-small txtsmall">Yes</span>
1737
+ </a>
1738
+ </div>
1739
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1740
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3JQRJDEEYOF32/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=F214CCD63781CF1F949907934EA859294BBB91E0&voteAnchorName=R3JQRJDEEYOF32.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1741
+ <span class="btn-small txtsmall">No</span>
1742
+ </a>
1743
+ </div>
1744
+ </div>
1745
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3JQRJDEEYOF32/Inappropriate/1?ie=UTF8&target=&token=D962E0178BE0156AE2B2D280D1DF088975034DD5&voteAnchorName=R3JQRJDEEYOF32.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1746
+ <div class="clearboth"></div>
1747
+ </div> </div></div>
1748
+ <div id="rev-dpReviewsMostHelpful-R3GKX30WAB5O0R" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">4 of 4 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1749
+ <a href="http://www.amazon.com/review/R3GKX30WAB5O0R" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Great book!</strong></a><span class="gry valignMiddle">
1750
+ <span class="inlineblock txtsmall">January 21, 2012</span>
1751
+ </span></div> <div class="mt4 ath"><span class="gr10">
1752
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/A3BQ3XOB2CGV9L" class="noTextDecoration">M. Richardson</a></span>
1753
+ </span>
1754
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1755
+ <div class="drkgry">
1756
+ Just received this book and it is beautiful! There are possibly only 3 or 4 patterns out of the 30 that I would NOT want to make (with an unlimited yarn budget!). the pictures are stunning and, of course, Noro yarns are spectacularly beautiful. Most of the patterns seem to be fairly easy and could be done by beginning or intermediate knitters. The majority of patterns call for silk garden or kureyon. I immediately reordered the book as a gift for my sister.
1757
+ </div>
1758
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1759
+ <a href="http://www.amazon.com/review/R3GKX30WAB5O0R" class="noTextDecoration">Comment</a>
1760
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1761
+ <a id="R3GKX30WAB5O0R.2115.Helpful.Reviews"></a>
1762
+ <div>
1763
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1764
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1765
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3GKX30WAB5O0R/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=AEFAD9E347050280880EA28303793B42A79759A8&voteAnchorName=R3GKX30WAB5O0R.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1766
+ <span class="btn-small txtsmall">Yes</span>
1767
+ </a>
1768
+ </div>
1769
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1770
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3GKX30WAB5O0R/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=258AA28079700A807CF9FFAE3FBC59ED273151E7&voteAnchorName=R3GKX30WAB5O0R.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1771
+ <span class="btn-small txtsmall">No</span>
1772
+ </a>
1773
+ </div>
1774
+ </div>
1775
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3GKX30WAB5O0R/Inappropriate/1?ie=UTF8&target=&token=E8E0FA0EB79373C862FC1FAB7677CF0A2D3D26A9&voteAnchorName=R3GKX30WAB5O0R.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1776
+ <div class="clearboth"></div>
1777
+ </div> </div></div>
1778
+ <div id="rev-dpReviewsMostHelpful-R3SXIP83LOOV6Z" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">11 of 14 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1779
+ <a href="http://www.amazon.com/review/R3SXIP83LOOV6Z" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Excellent Book!!</strong></a><span class="gry valignMiddle">
1780
+ <span class="inlineblock txtsmall">January 2, 2012</span>
1781
+ </span></div> <div class="mt4 ath"><span class="gr10">
1782
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/A3T1O8BQ9IUIV5" class="noTextDecoration">Christine Blossom</a></span>
1783
+ </span>
1784
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1785
+ <div class="drkgry">
1786
+ This book is filled with lots of great Noro projects in a range of yarn types and sizes. I am very impressed. I have several knitting friends for whom I will buy this book as a gift!
1787
+ </div>
1788
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1789
+ <a href="http://www.amazon.com/review/R3SXIP83LOOV6Z" class="noTextDecoration">Comment</a>
1790
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1791
+ <a id="R3SXIP83LOOV6Z.2115.Helpful.Reviews"></a>
1792
+ <div>
1793
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1794
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1795
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3SXIP83LOOV6Z/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=5A49E717D33C1CABBC5F8369C99EE1706DC9FE6A&voteAnchorName=R3SXIP83LOOV6Z.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1796
+ <span class="btn-small txtsmall">Yes</span>
1797
+ </a>
1798
+ </div>
1799
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1800
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3SXIP83LOOV6Z/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=476C46E66D2DFFD3528A56D40FDEE12D82CA822C&voteAnchorName=R3SXIP83LOOV6Z.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1801
+ <span class="btn-small txtsmall">No</span>
1802
+ </a>
1803
+ </div>
1804
+ </div>
1805
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R3SXIP83LOOV6Z/Inappropriate/1?ie=UTF8&target=&token=2A95CF089F391D55D40D662497E826BCA168319A&voteAnchorName=R3SXIP83LOOV6Z.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1806
+ <div class="clearboth"></div>
1807
+ </div> </div></div>
1808
+ <div id="rev-dpReviewsMostHelpful-R1B0EAF9TV3N1C" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">3 of 3 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_4_0 " title="4.0 out of 5 stars" ><span>4.0 out of 5 stars</span></span>
1809
+ <a href="http://www.amazon.com/review/R1B0EAF9TV3N1C" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>Loads of Noro-y Goodness</strong></a><span class="gry valignMiddle">
1810
+ <span class="inlineblock txtsmall">October 24, 2012</span>
1811
+ </span></div> <div class="mt4 ath"><span class="gr10">
1812
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/A19AC8BTMB89O" class="noTextDecoration">IowaBrenda</a></span>
1813
+ </span>
1814
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1815
+ <div class="drkgry">
1816
+ I previewed this book before I ordered by checking it out from my local library. This book is beautiful---loads of gorgeous photos. If you are a Noro fan, the projects are irresistable. Most of them use between three and five skeins of Kureyon or Silk Garden. I am a Noro junkie, and whenever I visit a new yarn shop, I usually buy a few skeins of Noro if they carry it, so these small projects are a perfect way to use these small amounts of yarn. I live in Iowa, so I will wear the mittens, hats, and neckwarmers included in the book, and they make fabulous gifts for family and friends.
1817
+ </div>
1818
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1819
+ <a href="http://www.amazon.com/review/R1B0EAF9TV3N1C" class="noTextDecoration">Comment</a>
1820
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1821
+ <a id="R1B0EAF9TV3N1C.2115.Helpful.Reviews"></a>
1822
+ <div>
1823
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1824
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1825
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R1B0EAF9TV3N1C/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=D5BCC3E30558759CDD1CD110E033A015426BCDE5&voteAnchorName=R1B0EAF9TV3N1C.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1826
+ <span class="btn-small txtsmall">Yes</span>
1827
+ </a>
1828
+ </div>
1829
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1830
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R1B0EAF9TV3N1C/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=42400F7CC9BB8CC639A45EDDA137160EFFE5B167&voteAnchorName=R1B0EAF9TV3N1C.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1831
+ <span class="btn-small txtsmall">No</span>
1832
+ </a>
1833
+ </div>
1834
+ </div>
1835
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R1B0EAF9TV3N1C/Inappropriate/1?ie=UTF8&target=&token=808831A7329C9C50929B8861C01D6E48EF497113&voteAnchorName=R1B0EAF9TV3N1C.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1836
+ <div class="clearboth"></div>
1837
+ </div> </div></div>
1838
+ <div id="rev-dpReviewsMostHelpful-R2OO9IPYQUA7DQ" class="reviews" style="margin-top:30px;"> <div class="gry txtsmall hlp">3 of 3 people found the following review helpful</div> <div class="clearboth"></div> <div class="mt4 ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1839
+ <a href="http://www.amazon.com/review/R2OO9IPYQUA7DQ" class="txtlarge gl3 gr4 reviewTitle valignMiddle"><strong>knitting with Noro yarns</strong></a><span class="gry valignMiddle">
1840
+ <span class="inlineblock txtsmall">February 1, 2012</span>
1841
+ </span></div> <div class="mt4 ath"><span class="gr10">
1842
+ <span class="txtsmall"><span class="gry">By</span> <a href="/gp/pdp/profile/AU1XL7UWQSHRQ" class="noTextDecoration">beadyeyedwoman</a></span>
1843
+ </span>
1844
+ </div> <div class="txtsmall mt4 fvavp"><span class="inlineblock formatVariation"> <span class="gr3 gry formatKey">Format:</span><span class="formatValue">Hardcover</span><span class="gl7 gr7 gry">|</span></span><span class="inlineblock avpOrVine" ><span class="orange strong avp">Amazon Verified Purchase</span></span></div> <div class="mt9 reviewText">
1845
+ <div class="drkgry">
1846
+ When I got my book, I fell in love with it. My goal is to knit each and every pattern. I have already finished 2 projects. The curved wrap and the bobble and eyelet scarf.
1847
+ </div>
1848
+ </div> <div class="clearboth txtsmall gt9 vtStripe"> <div class="fl cmt">
1849
+ <a href="http://www.amazon.com/review/R2OO9IPYQUA7DQ" class="noTextDecoration">Comment</a>
1850
+ <span class="gry gr4 gl4">|</span>&#160;</div> <div class="vt">
1851
+ <a id="R2OO9IPYQUA7DQ.2115.Helpful.Reviews"></a>
1852
+ <div>
1853
+ <div class="votingPrompt drkgry fl mr6"><strong>Was this review helpful to you?</strong></div>
1854
+ <div class="fl mr6 mtNegative3 votingButtonReviews yesButton" >
1855
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OO9IPYQUA7DQ/Helpful/1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=0002A2FFBA8905F5F90179CBC0D1EA1EADD88866&voteAnchorName=R2OO9IPYQUA7DQ.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="Yes">
1856
+ <span class="btn-small txtsmall">Yes</span>
1857
+ </a>
1858
+ </div>
1859
+ <div class="fl mtNegative3 votingButtonReviews noButton" >
1860
+ <a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OO9IPYQUA7DQ/Helpful/-1?ie=UTF8&target=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMTkzNjA5NjIwWA&token=0E742AFDAFB3E2D9B5D542741739C60B7AB5FC59&voteAnchorName=R2OO9IPYQUA7DQ.2115.Helpful.Reviews&voteSessionID=000-0000000-0000000" class="cr-btn btn-sec border-one rounded-standard" title="No">
1861
+ <span class="btn-small txtsmall">No</span>
1862
+ </a>
1863
+ </div>
1864
+ </div>
1865
+ <div class="votingMessage fl mr2"><a href="http://www.amazon.com/gp/voting/cast/Reviews/2115/R2OO9IPYQUA7DQ/Inappropriate/1?ie=UTF8&target=&token=62A2C6D23F8CE8D876623E015E1B6365AD7AD017&voteAnchorName=R2OO9IPYQUA7DQ.2115.Inappropriate.Reviews&voteSessionID=000-0000000-0000000"></a></div>
1866
+ <div class="clearboth"></div>
1867
+ </div> </div></div>
1868
+ </div>
1869
+ </div>
1870
+ </div>
1871
+ <div id="revF" style="margin: 0 0 30px 25px;">
1872
+
1873
+ <div>
1874
+ <b class="h3color txtsmall">&rsaquo;</b>
1875
+ <a id="seeAllReviewsUrl" href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="txtlarge noTextDecoration">
1876
+ <strong>
1877
+ See all 28 customer reviews (newest first)
1878
+ </strong>
1879
+ </a>
1880
+ </div>
1881
+ <div id="ftWR" class="mt20">
1882
+
1883
+ <a href="http://www.amazon.com/review/create-review" class="cr-btn btn-sec border-one rounded-standard" title="Write a customer review">
1884
+ <span class="btn-medium txtsmall">
1885
+ <strong>Write a customer review</strong>
1886
+ </span>
1887
+ </a>
1888
+ </div>
1889
+ </div>
1890
+ <div style="margin-left: 25px;">
1891
+ </div>
1892
+
1893
+ <div id="revOH" style="margin: 0 0 30px 0;"></div>
1894
+ </div>
1895
+ <div class="pr7 mb30" style="width: 305px;" id="revMRLContainer">
1896
+ <div style="padding-bottom: 20px" id="ADPlaceholder"><script type='text/javascript'>var paCusRevAllURL = "http://product-ads-portal.amazon.com/gp/synd/?asin=193609620X&pAsin=&gl=14&sq=&sa=&se=&noo=&pt=Detail&spt=Glance&sn=customer-reviews-top&pRID=092063X86M9YY90XVEJP&ts=1375332002&h=D11489904E8738FF50258D6861A0873FCEA3A9BE";</script></div>
1897
+ <div>
1898
+ <div id='revMRT' class='txtlarger drkgry'><strong>Most Recent Customer Reviews</strong></div>
1899
+ <div id='revMRRL'>
1900
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt14" title="Read the full review by Anya" > <div id="rev-dpReviewsMostRecent-RKY3OORDCBW72" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1901
+ <span class="txtlarge gl3 valignMiddle"><strong>Best Noro accessories book out there</strong></span></div> <div class="reviewText">
1902
+ <div class="drkgry">
1903
+ There are 30 patterns in this book. Out of those 30 I would make 8 for sure (the curving wrap, intarsia lace scarf, kimono shrug, leg warmers, long lace scarf, modular neck wrap,... <span class="readMoreLink" >Read more</span>
1904
+ </div>
1905
+ </div> <div class="clearboth mt3 pbl">
1906
+ <span class="gry txtsmall">Published 2 months ago by Anya</span>
1907
+ </div> </div></a>
1908
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Roberta Freytag" > <div id="rev-dpReviewsMostRecent-ROBKZRVUI6YSL" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1909
+ <span class="txtlarge gl3 valignMiddle"><strong>Beautifully Designed</strong></span></div> <div class="reviewText">
1910
+ <div class="drkgry">
1911
+ If one could look like the beautiful photographed models, one would make every accessory in the book. I will be making many of the little knits. <span class="readMoreLink" >Read more</span>
1912
+ </div>
1913
+ </div> <div class="clearboth mt3 pbl">
1914
+ <span class="gry txtsmall">Published 3 months ago by Roberta Freytag</span>
1915
+ </div> </div></a>
1916
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Jeri Seegmiller" > <div id="rev-dpReviewsMostRecent-R1A6BDSDMG90CA" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1917
+ <span class="txtlarge gl3 valignMiddle"><strong>Love it</strong></span></div> <div class="reviewText">
1918
+ <div class="drkgry">
1919
+ Great projects, easy to follow instructions. Eager to try several more of the projects. For those who like Noro yarn - you will like this book
1920
+ </div>
1921
+ </div> <div class="clearboth mt3 pbl">
1922
+ <span class="gry txtsmall">Published 3 months ago by Jeri Seegmiller</span>
1923
+ </div> </div></a>
1924
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by buttons94" > <div id="rev-dpReviewsMostRecent-R35GMDXL2TKMJ1" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1925
+ <span class="txtlarge gl3 valignMiddle"><strong>Great knitting book</strong></span></div> <div class="reviewText">
1926
+ <div class="drkgry">
1927
+ I love Noro yarn and wanted some patterns using the various types they sell. This book was all I expected and more. <span class="readMoreLink" >Read more</span>
1928
+ </div>
1929
+ </div> <div class="clearboth mt3 pbl">
1930
+ <span class="gry txtsmall">Published 3 months ago by buttons94</span>
1931
+ </div> </div></a>
1932
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Carrie" > <div id="rev-dpReviewsMostRecent-RXFTL3UZDWKLO" class="block"> <div class="ttl"><span class="swSprite s_star_3_0 " title="3.0 out of 5 stars" ><span>3.0 out of 5 stars</span></span>
1933
+ <span class="txtlarge gl3 valignMiddle"><strong>Decent Pattern Book</strong></span></div> <div class="reviewText">
1934
+ <div class="drkgry">
1935
+ Plenty of cute projects, but as an intermediate-level knitter, I found many of the patterns too complicated to even attempt. <span class="readMoreLink" >Read more</span>
1936
+ </div>
1937
+ </div> <div class="clearboth mt3 pbl">
1938
+ <span class="gry txtsmall">Published 4 months ago by Carrie</span>
1939
+ </div> </div></a>
1940
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Craig Morrison" > <div id="rev-dpReviewsMostRecent-R3VZBL8E35AY0R" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1941
+ <span class="txtlarge gl3 valignMiddle"><strong>Great Knit book</strong></span></div> <div class="reviewText">
1942
+ <div class="drkgry">
1943
+ easy to understand and great ideas in this book. I would recommend it to all my knitting friends. Worth it.
1944
+ </div>
1945
+ </div> <div class="clearboth mt3 pbl">
1946
+ <span class="gry txtsmall">Published 4 months ago by Craig Morrison</span>
1947
+ </div> </div></a>
1948
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Karen" > <div id="rev-dpReviewsMostRecent-R15KN5X5NH0JIP" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1949
+ <span class="txtlarge gl3 valignMiddle"><strong>Great Book!</strong></span></div> <div class="reviewText">
1950
+ <div class="drkgry">
1951
+ This book has so many wonderful patterns that you want to sit and knit each and every one of them. Well worth the money.
1952
+ </div>
1953
+ </div> <div class="clearboth mt3 pbl">
1954
+ <span class="gry txtsmall">Published 5 months ago by Karen</span>
1955
+ </div> </div></a>
1956
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Melinda Tramitz" > <div id="rev-dpReviewsMostRecent-R3KH9XORTHNXG8" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1957
+ <span class="txtlarge gl3 valignMiddle"><strong>Knit Noro Accessories</strong></span></div> <div class="reviewText">
1958
+ <div class="drkgry">
1959
+ See above review of Noro book :) Love, love, love Noro's patterns and yarns - just can't get enough of it.
1960
+ </div>
1961
+ </div> <div class="clearboth mt3 pbl">
1962
+ <span class="gry txtsmall">Published 5 months ago by Melinda Tramitz</span>
1963
+ </div> </div></a>
1964
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by beulhamae" > <div id="rev-dpReviewsMostRecent-R3BYJZ8A4KY3AW" class="block"> <div class="ttl"><span class="swSprite s_star_4_0 " title="4.0 out of 5 stars" ><span>4.0 out of 5 stars</span></span>
1965
+ <span class="txtlarge gl3 valignMiddle"><strong>Yes</strong></span></div> <div class="reviewText">
1966
+ <div class="drkgry">
1967
+ I love Noro yarns, the colors and great and the patterns are designed to set-off the colors as well. A worthwhile purchase.
1968
+ </div>
1969
+ </div> <div class="clearboth mt3 pbl">
1970
+ <span class="gry txtsmall">Published 7 months ago by beulhamae</span>
1971
+ </div> </div></a>
1972
+ <a href="http://www.amazon.com/Knit-Noro-Accessories-Colorful-Little/product-reviews/193609620X" class="reviewTitle inlineblock mt17" title="Read the full review by Judith A. Eigsti" > <div id="rev-dpReviewsMostRecent-R3KB163772YMHT" class="block"> <div class="ttl"><span class="swSprite s_star_5_0 " title="5.0 out of 5 stars" ><span>5.0 out of 5 stars</span></span>
1973
+ <span class="txtlarge gl3 valignMiddle"><strong>Noro</strong></span></div> <div class="reviewText">
1974
+ <div class="drkgry">
1975
+ I love the patterns. I have not had a chance to use them yet. Very stylish and fun patterns to work with.
1976
+ </div>
1977
+ </div> <div class="clearboth mt3 pbl">
1978
+ <span class="gry txtsmall">Published 7 months ago by Judith A. Eigsti</span>
1979
+ </div> </div></a>
1980
+ </div>
1981
+ </div>
1982
+ <div id="revS" style="margin-top: 30px;">
1983
+ <FORM method="GET" action="http://www.amazon.com/gp/community-content-search/results/" style="padding:0; margin:0;">
1984
+ <div class="txtlarge mb5">
1985
+ <strong>
1986
+ Search Customer Reviews
1987
+ </strong>
1988
+ </div>
1989
+ <div>
1990
+ <div class="fl">
1991
+ <input id="searchCustomerReviewsInput" class="small mr5" style="width: 225px; margin-top: 0px;" type="text" name="query" value="" />
1992
+ </div>
1993
+ <div id="searchCustomerReviewsButton" class="fl" unselectable="on" >
1994
+
1995
+ <span class="cr-btn btn-input btn-sec rounded-standard">
1996
+ <input type="submit" class="btn-small" value="Go" title="Go" />
1997
+ </span>
1998
+ </div>
1999
+ </div>
2000
+ <div class="clearboth">
2001
+ <input type="checkbox" name="idx.asin" value="193609620X" checked>
2002
+ <input type="hidden" name="search-alias" value="community-reviews"/>
2003
+
2004
+ <span class="tiny">
2005
+ Only search this product's reviews
2006
+ </span>
2007
+ </div>
2008
+ </FORM>
2009
+ </div>
2010
+ </div>
2011
+ </div>
2012
+ <div class="clearboth"></div>
2013
+ </div>
2014
+ <script type="text/javascript">
2015
+ if(typeof setCSMReq == 'function') {
2016
+ setCSMReq('cf');
2017
+ }else {
2018
+ if(typeof uet == 'function') {
2019
+ uet('cf');
2020
+ }
2021
+ amznJQ.completedStage('amznJQ.criticalFeature');
2022
+ }
2023
+ </script>
2024
+
2025
+ <script type="text/javascript">
2026
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
2027
+ var DPCL;
2028
+ amznJQ.available("DPClientLogger", function(){
2029
+ if( typeof window.DPClientLogger != 'undefined' ) {
2030
+ DPCL = new window.DPClientLogger.ImpressionLogger("dpbxapps", "bxapps-atfMarker", true, true);
2031
+ }
2032
+ });
2033
+ jQuery('.oneClickSignInLink').click(function(e) {
2034
+ if (DPCL) {
2035
+ DPCL.logImpression("ma-books-oneClick-signIn-C");
2036
+ }
2037
+ return true;
2038
+ });
2039
+ });
2040
+ </script>
2041
+
2042
+ <script type="text/javascript">
2043
+ var ImageBlockWeblabs = {};
2044
+ ImageBlockWeblabs["swipe"] = 0;
2045
+ ImageBlockWeblabs["consolidated"] = 1;
2046
+ ImageBlockWeblabs["bookLargeImage"] = 0;
2047
+ amznJQ.available('ImageBlockATF', function() {
2048
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
2049
+ var data = {"indexToColor":["initial"],"visualDimensions":["color_name"],"productGroupID":"book_display_on_website","newVideoMissing":0,"useIV":1,"useChildVideos":1,"numColors":1,"defaultColor":"initial","logMetrics":0,"staticStrings":{"playVideo":"Click to play video","rollOverToZoom":"Roll over image to zoom in","images":"Images","video":"video","touchToZoom":"Touch the image to zoom in","videos":"Videos","close":"Close","pleaseSelect":"Please select","clickToExpand":"Click to open expanded view","allMedia":"All Media"},"gIsNewTwister":0,"title":"Knit Noro: Accessories: 30 Colorful Little Knits","ivRepresentativeAsin":{},"mainImageSizes":[["300","300"],["300","300"]],"isQuickview":0,"ipadVideoSizes":[[300,300],[300,300]],"colorToAsin":{},"showLITBOnClick":1,"stretchyGoodnessWidth":[1280],"videoSizes":[[300,300],[300,300]],"autoplayVideo":0,"hoverZoomIndicator":0,"sitbReftag":"sib_dp_pt","useHoverZoom":0,"staticImages":{"spinner":"http://g-ecx.images-amazon.com/images/G/01/ui/loadIndicators/loading-large_labeled._V192238949_.gif","zoomOut":"http://g-ecx.images-amazon.com/images/G/01/detail-page/cursors/zoom-out._V184888738_.bmp","hoverZoomIcon":"http://g-ecx.images-amazon.com/images/G/01/img11/apparel/UX/DP/icon_zoom._V138923886_.png","zoomIn":"http://g-ecx.images-amazon.com/images/G/01/detail-page/cursors/zoom-in._V184888790_.bmp","videoSWFPath":"http://g-ecx.images-amazon.com/images/G/01/Quarterdeck/en_US/video/20110518115040892/Video._V178668404_.swf","zoomLensBackground":"http://g-ecx.images-amazon.com/images/G/01/apparel/rcxgs/tile._V211431200_.gif","arrow":"http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-vertical-popover-arrow._V186877868_.png","videoThumbIcon":"http://g-ecx.images-amazon.com/images/G/01/Quarterdeck/en_US/images/video._V183716339_SS30_.gif"},"videos":[],"gPreferChildVideos":1,"altsOnLeft":0,"ivImageSetKeys":{"initial":0},"useHoverZoomIpad":"","isUDP":0,"alwaysIncludeVideo":1,"widths":0,"maxAlts":7,"useChromelessVideoPlayer":0};
2050
+ data["customerImages"] = eval('[]');
2051
+ var def = colorImages ? colorImages[data.defaultColor] : [];
2052
+ colorImages = {};
2053
+ colorImages[data.defaultColor] = def;
2054
+ (function() {
2055
+ var markup = "%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Cstyle%3E%0A%0Aa.slateLink%3Alink%7B%20color%3A%20rgb(119%2C119%2C119)%3B%20text-decoration%3Anone%3B%7D%0Aa.slateLink%3Aactive%20%7B%20color%3A%20rgb(119%2C119%2C119)%3B%20text-decoration%3Anone%3B%7D%0Aa.slateLink%3Avisited%7B%20color%3A%20rgb(119%2C119%2C119)%3B%20text-decoration%3Anone%3B%7D%0Aa.slateLink%3Ahover%7B%20color%3A%20rgb(119%2C119%2C119)%3B%20text-decoration%3Anone%3B%7D%0A%0A.shuttleGradient%20%7B%0A%20%20%20%20float%3Aleft%3B%0A%20%20%20%20width%3A100%25%3B%0A%20%20%20%20text-align%3Aleft%3B%0A%20%20%20%20line-height%3A%20normal%3B%0A%20%20%20%20position%3Arelative%3B%0A%20%20%20%20height%3A43px%3B%20%0A%20%20%20%20background-color%3A%23dddddd%3B%20%0A%20%20%20%20background-image%3A%20url(http%3A%2F%2Fg-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fx-locale%2Fcommunities%2Fcustomerimage%2Fshuttle-gradient._V192250138_.gif)%3B%20%0A%20%20%20%20background-position%3A%20bottom%3B%20%0A%20%20%20%20background-repeat%20%3A%20repeat-x%3B%0A%7D%0A%0A.shuttleTextTop%20%7B%0A%20%20%20%20font-size%3A18px%3B%0A%20%20%20%20font-weight%3Abold%3B%0A%20%20%20%20font-family%3Averdana%2Carial%2Chelvetica%2Csans-serif%3B%0A%20%20%20%20color%3A%20rgb(119%2C119%2C119)%3B%0A%20%20%20%20margin-left%3A10px%3B%0A%7D%0A%0A.shuttleTextBottom%20%7B%0A%20%20%20%20margin-top%3A-2px%3B%0A%20%20%20%20font-size%3A15px%3B%0A%20%20%20%20font-family%3Averdana%2Carial%2Chelvetica%2Csans-serif%3B%0A%20%20%20%20color%3A%20rgb(119%2C119%2C119)%3B%0A%20%20%20%20margin-left%3A10px%3B%0A%7D%0A.outercenterslate%7B%0A%20%20%20%20cursor%3Apointer%3B%0A%7D%0A.innercenterslate%7B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%7D%0A%0A.slateoverlay%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200px%3B%0A%20%20%20%20border%3A%200px%0A%7D%0A%0A.centerslate%20%7B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20background-color%3Ablack%3B%20%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%7D%0A.centerslate%20*%20%7B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%7D%0A.centerslate%20%7B%20display%2F*%5C**%2F%3A%20block%5C9%20%7D%20%0A%2F*%5C*%2F%2F*%2F%0A.centerslate%20%7B%0A%20%20%20%20display%3A%20block%3B%0A%7D%0A.centerslate%20span%20%7B%0A%20%20%20%20display%3A%20inline-block%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20width%3A%201px%3B%0A%7D%0A%2F**%2F%0A%3C%2Fstyle%3E%0A%3C!--%5Bif%20lt%20IE%209%5D%3E%3Cstyle%3E%0A.centerslate%20span%20%7B%0A%20%20%20%20display%3A%20inline-block%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%7D%0A%3C%2Fstyle%3E%3C!%5Bendif%5D--%3E%0A%3Cstyle%3E%0A%3C%2Fstyle%3E%0A%0A%3Cscript%20type%3D%22text%2Fjavascript%22%3E%0AamznJQ.addLogical(%22swfobject-2.2%22%2C%20%5B%22http%3A%2F%2Fz-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fmedia%2Fswf%2Famznjq-swfobject-2.2._V210753426_.js%22%5D)%3B%0A%0Awindow.AmznVideoPlayer%3Dfunction(mediaObject%2CtargetId%2Cwidth%2Cheight)%7B%0A%20%20AmznVideoPlayer.players%5BmediaObject.mediaObjectId%5D%3Dthis%3B%0A%20%20this.slateImageUrl%3DmediaObject.slateImageUrl%3B%0A%20%20this.id%3DmediaObject.mediaObjectId%3B%0A%20%20this.preplayWidth%3Dwidth%3B%0A%20%20this.preplayHeight%3Dheight%3B%0A%20%20this.flashDivWidth%3Dwidth%3B%0A%20%20this.flashDivHeight%3Dheight%3B%0A%20%20this.targetId%3DtargetId%3B%0A%20%20this.swfLoading%3D0%3B%0A%20%20this.swfLoaded%3D0%3B%0A%20%20this.preplayDivId%3D'preplayDiv'%2Bthis.id%3B%0A%20%20this.flashDivId%3D'flashDiv'%2Bthis.id%3B%0A%7D%0A%0AAmznVideoPlayer.players%3D%5B%5D%3B%0AAmznVideoPlayer.session%3D'000-0000000-0000000'%3B%0AAmznVideoPlayer.root%3D'http%3A%2F%2Fwww.amazon.com'%3B%0AAmznVideoPlayer.locale%3D'en_US'%3B%0AAmznVideoPlayer.swf%3D'http%3A%2F%2Fg-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fam3%2F20120510035744301%2FAMPlayer._V148501545_.swf'%3B%0AAmznVideoPlayer.preplayTemplate%3D'%3Cdiv%20style%3D%22width%3A0px%3Bheight%3A0px%3B%22%20class%3D%22outercenterslate%22%3E%3Cdiv%20style%3D%22width%3A0px%3Bheight%3A-43px%3B%22%20class%3D%22centerslate%22%20%3E%3Cspan%3E%3C%2Fspan%3E%3Cimg%20border%3D%220%22%20alt%3D%22Click%20to%20watch%20this%20video%22%20src%3D%22slateImageGoesHere%22%3E%3C%2Fdiv%3E%3Cdiv%20class%3D%22shuttleGradient%22%3E%3Cdiv%20class%3D%22shuttleTextTop%22%3EAmazon%3C%2Fdiv%3E%3Cdiv%20class%3D%22shuttleTextBottom%22%3EVideo%3C%2Fdiv%3E%3Cimg%20id%3D%22mediaObjectIdpreplayImageId%22%20style%3D%22height%3A74px%3Bposition%3Aabsolute%3Bleft%3A-31px%3Btop%3A-31px%3B%22%20src%3D%22http%3A%2F%2Fg-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fx-locale%2Fcommunities%2Fcustomerimage%2Fplay-shuttle-off._V192250119_.gif%22%20border%3D%220%22%2F%3E%3C%2Fdiv%3E%3C%2Fdiv%3E'%3B%0AAmznVideoPlayer.rollOn%3D'http%3A%2F%2Fg-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fx-locale%2Fcommunities%2Fcustomerimage%2Fplay-shuttle-on._V192250112_.gif'%3B%0AAmznVideoPlayer.rollOff%3D'http%3A%2F%2Fg-ecx.images-amazon.com%2Fimages%2FG%2F01%2Fx-locale%2Fcommunities%2Fcustomerimage%2Fplay-shuttle-off._V192250119_.gif'%3B%0AAmznVideoPlayer.flashVersion%3D'9.0.115'%3B%0AAmznVideoPlayer.noFlashMsg%3D'To%20view%20this%20video%20download%20%3Ca%20target%3D%22_blank%22%20href%3D%22http%3A%2F%2Fget.adobe.com%2Fflashplayer%2F%22%20target%3D%22_top%22%3EFlash%20Player%3C%2Fa%3E%20(version%209.0.115%20or%20higher)'%3B%0A%0AAmznVideoPlayer.hideAll%3Dfunction()%7B%0A%20%20for(var%20i%20in%20AmznVideoPlayer.players)%7B%0A%20%20%20%20AmznVideoPlayer.players%5Bi%5D.hidePreplay()%3B%0A%20%20%20%20AmznVideoPlayer.players%5Bi%5D.hideFlash()%3B%0A%20%20%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.writePreplayHtml%3Dfunction()%7B%0A%20%20if(typeof%20this.preplayobject%3D%3D'undefined')%7B%0A%20%20%20%20this.preplayobject%3DjQuery(AmznVideoPlayer.preplayTemplate.replace(%22slateImageGoesHere%22%2Cthis.slateImageUrl)%0A%20%20%20%20%20%20%20%20.replace(%22mediaObjectId%22%2Cthis.id).replace(%22-43px%22%2C(this.preplayHeight-43)%2B%22px%22).replace(%22-31px%22%2C(Math.round(this.preplayWidth%2F2)-31)%2B%22px%22))%3B%0A%20%20%20%20this.preplayobject.width(this.preplayWidth%2B%22px%22).height(this.preplayHeight%2B%22px%22)%3B%0A%20%20%20%20this.preplayobject.find(%22.innercenterslate%22).width(this.preplayWidth%2B%22px%22).height(this.preplayHeight%2B%22px%22)%3B%0A%20%20%20%20this.preplayobject.find(%22.centerslate%22).width(this.preplayWidth%2B%22px%22)%3B%0A%20%20%20%20var%20self%3Dthis%3B%0A%20%20%20%20this.preparePlaceholder()%3B%0A%20%20%20%20jQuery(%22%23%22%2Bthis.preplayDivId).click(function()%7Bself.preplayClick()%3B%7D)%3B%0A%20%20%20%20jQuery(%22%23%22%2Bthis.preplayDivId).hover(%0A%20%20%20%20%20%20%20%20function()%7BjQuery(%22%23%22%2Bself.id%2B'preplayImageId').attr('src'%2CAmznVideoPlayer.rollOn)%3B%7D%2C%0A%20%20%20%20%20%20%20%20function()%7BjQuery(%22%23%22%2Bself.id%2B'preplayImageId').attr('src'%2CAmznVideoPlayer.rollOff)%3B%7D)%3B%0A%20%20%20%20jQuery(%22%23%22%2Bthis.preplayDivId).html(this.preplayobject)%3B%0A%20%20%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.writeFlashHtml%3Dfunction()%7B%0A%20%20if(!this.swfLoaded%26%26!this.swfLoading)%7B%0A%20%20%20%20this.swfLoading%3D1%3B%0A%20%20%20%20var%20params%3D%7B'allowscriptaccess'%3A'always'%2C'allowfullscreen'%3A'true'%2C'wmode'%3A'transparent'%2C'quality'%3A'high'%7D%3B%0A%20%20%20%20var%20shiftJISRegExp%20%3D%20new%20RegExp(%22%5Ehttps%3F%3A%22%2BString.fromCharCode(0x5C)%2B%22%2F%22%2BString.fromCharCode(0x5C)%2B%22%2F%22)%3B%0A%20%20%20%20var%20flashvars%3D%7B'xmlUrl'%3AAmznVideoPlayer.root%2B'%2Fgp%2Fmpd%2Fgetplaylist-v2%2F'%2Bthis.id%2B'%2F'%2BAmznVideoPlayer.session%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20'mediaObjectId'%3Athis.id%2C'locale'%3AAmznVideoPlayer.locale%2C'sessionId'%3AAmznVideoPlayer.session%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20'amazonServer'%3AAmznVideoPlayer.root.replace(shiftJISRegExp%2C'')%2C'swfEmbedTime'%3Anew%20Date().getTime()%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20'allowFullScreen'%3A'true'%2C'amazonPort'%3A'80'%2C'preset'%3A'detail'%2C'autoPlay'%3A'1'%2C'permUrl'%3A'gp%2Fmpd%2Fpermalink'%2C'scale'%3A'noscale'%7D%3B%0A%20%20%20%20var%20self%3Dthis%3B%0A%20%20%20%20swfobject.embedSWF(AmznVideoPlayer.swf%2C'so_'%2Bthis.id%2C%22100%25%22%2C%22100%25%22%2CAmznVideoPlayer.flashVersion%2Cfalse%2Cflashvars%2Cparams%2Cparams%2C%0A%20%20%20%20%20%20function(e)%7B%0A%20%20%20%20%20%20%20%20self.swfLoading%3D0%3B%0A%20%20%20%20%20%20%20%20if(e.success)%7BAmznVideoPlayer.lastPlayedId%3Dself.id%3Bself.swfLoaded%3D1%3Breturn%3B%7D%0A%20%20%20%20%20%20%20%20jQuery('%23'%2Bself.flashDivId).html('%3Cbr%2F%3E%3Cbr%2F%3E%3Cbr%2F%3E%3Cbr%2F%3E%3Cbr%2F%3E%3Cbr%2F%3E%3Cbr%2F%3E'%2BAmznVideoPlayer.noFlashMsg).css(%7B'background'%3A'%23ffffff'%7D)%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20)%3B%0A%20%20%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.showPreplay%3Dfunction()%7B%0A%20%20this.writePreplayHtml()%3B%0A%20%20this.preparePlaceholder()%3B%0A%20%20jQuery(%22%23%22%2Bthis.preplayDivId).show()%3B%0A%20%20return%20this%3B%0A%7D%0A%0AAmznVideoPlayer.prototype.hidePreplay%3Dfunction()%7B%0A%20%20this.preparePlaceholder()%3B%0A%20%20jQuery(%22%23%22%2Bthis.preplayDivId).hide()%3B%0A%20%20return%20this%3B%0A%7D%0A%0AAmznVideoPlayer.prototype.showFlash%3Dfunction()%7B%0A%20%20this.preparePlaceholder()%3B%0A%20%20if(!this.swfLoaded%26%26!this.swfLoading)%7B%0A%20%20%20%20var%20self%3Dthis%3B%0A%20%20%20%20amznJQ.available(%22swfobject-2.2%22%2Cfunction()%7Bself.writeFlashHtml()%3B%7D)%3B%0A%20%20%7D%0A%20%20jQuery(%22%23%22%2Bthis.flashDivId).width(this.flashDivWidth%2B'px').height(this.flashDivHeight%2B'px')%3B%0A%20%20AmznVideoPlayer.lastPlayedId%3Dthis.id%3B%0A%20%20return%20this%3B%0A%7D%0A%0AAmznVideoPlayer.prototype.hideFlash%3Dfunction()%7B%0A%20%20this.preparePlaceholder()%3B%0A%20%20jQuery(%22%23%22%2Bthis.flashDivId).width('0px').height('1px')%3B%0A%20%20return%20this%3B%0A%7D%0A%0AAmznVideoPlayer.prototype.preparePlaceholder%3Dfunction()%7B%0A%20%20if(!(jQuery('%23'%2Bthis.flashDivId).length)%7C%7C!(jQuery('%23'%2Bthis.preplayDivId)))%7B%0A%20%20%20%20var%20preplayDiv%3DjQuery(%22%3Cdiv%20id%3D'%22%2Bthis.preplayDivId%2B%22'%3E%3C%2Fdiv%3E%22).css(%7B'position'%3A'relative'%7D)%3B%0A%20%20%20%20var%20flashDiv%3DjQuery(%22%3Cdiv%20id%3D'%22%2Bthis.flashDivId%2B%22'%3E%3Cdiv%20id%3D'so_%22%2Bthis.id%2B%22'%2F%3E%3C%2Fdiv%3E%22).css(%7B'overflow'%3A'hidden'%2Cbackground%3A'%23000000'%7D)%3B%0A%20%20%20%20var%20wrapper%3DjQuery(%22%3Cdiv%2F%3E%22).css(%7B'position'%3A'relative'%2C'float'%3A'left'%7D).append(preplayDiv).append(flashDiv)%3B%0A%20%20%20%20jQuery('%23'%2Bthis.targetId).html(wrapper)%3B%0A%20%20%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.resizeVideo%3Dfunction(width%2Cheight)%7B%0A%20%20this.flashDivWidth%3Dwidth%3B%0A%20%20this.flashDivHeight%3Dheight%3B%0A%20%20if%20(jQuery(%22%23%22%2Bthis.flashDivId)%26%26jQuery(%22%23%22%2Bthis.flashDivId).width()!%3D0)%7Bthis.showFlash()%3B%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.preplayClick%3Dfunction()%7B%20%0A%20%20if(this.swfLoaded)%7Bthis.play()%3B%7D%20%0A%20%20this.showFlash()%3B%0A%20%20this.hidePreplay()%3B%0A%7D%0A%0AAmznVideoPlayer.prototype.play%3Dfunction()%7B%0A%20%20var%20so%3Dthis.getSO()%3B%0A%20%20if(typeof%20so.playVideo%3D%3D'function')%7B%0A%20%20%20%20if(this.id!%3DAmznVideoPlayer.lastPlayedId)%7B%0A%20%20%20%20%20%20AmznVideoPlayer.players%5BAmznVideoPlayer.lastPlayedId%5D.pause()%3B%0A%20%20%20%20%7D%0A%20%20%20%20AmznVideoPlayer.lastPlayedId%3Dthis.id%3Bso.playVideo()%3B%0A%20%20%7D%0A%7D%0A%0AAmznVideoPlayer.prototype.pause%3Dfunction()%7Bif(this.swfLoading%7C%7Cthis.swfLoaded)%7Bthis.autoplayCancelled%3Dtrue%3B%7Dvar%20so%3Dthis.getSO()%3Bif(so%20%26%26%20typeof%20so.pauseVideo%3D%3D'function')%7Bso.pauseVideo()%3B%7D%7D%0AAmznVideoPlayer.prototype.stop%3Dfunction()%7Bif(this.swfLoading%7C%7Cthis.swfLoaded)%7Bthis.autoplayCancelled%3Dtrue%3B%7Dvar%20so%3Dthis.getSO()%3Bif(so%20%26%26%20typeof%20so.stopVideo%3D%3D'function')%7Bso.stopVideo()%3B%7D%7D%0AAmznVideoPlayer.prototype.getSO%3Dfunction()%7Breturn%20jQuery(%22%23so_%22%2Bthis.id).get(0)%3B%7D%0A%0Afunction%20isAutoplayCancelled(showID)%20%7B%0A%20%20return%20(AmznVideoPlayer.players%5BshowID%5D%20%26%26%20AmznVideoPlayer.players%5BshowID%5D.autoplayCancelled%20%3D%3D%20true)%3B%20%0A%7D%0A%3C%2Fscript%3E%0A";
2056
+ jQuery("<div></div>").insertAfter("#main-image-widget").html(decodeURIComponent(markup));
2057
+ })();
2058
+ data.cfEndTimer = new Date() ;
2059
+ amznJQ.available("imageBlock", function() {
2060
+ jQuery.imageBlock = new ImageBlock(data);
2061
+ ImageBlock.TwisterReArchModule = function () {
2062
+ return jQuery.imageBlock.getTwisterReArchApis();
2063
+ }();
2064
+ });
2065
+ });
2066
+ });
2067
+ </script>
2068
+ <script type="text/javascript">
2069
+ if (window.amznJQ) {
2070
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
2071
+ var precacheDetailImages = function(imageUrls, pids) {
2072
+ function transformUrl(imgUrl, pid) {
2073
+ var suffix = '._SL500_AA300_.jpg',
2074
+ defaultApparel = '._AA300_.jpg',
2075
+ imgUrlSplit = imgUrl.split("._");
2076
+ if (imgUrlSplit.length) {
2077
+ var prefix = imgUrlSplit[0];
2078
+ if ((!pid && storeName == "books") || pid == "books_display_on_website") {
2079
+ if (imgUrl.match("PIsitb-sticker-arrow")){
2080
+ var OUID = imgUrl.substr(imgUrl.indexOf('_OU'), 6);
2081
+ var lookInsideSticker = '._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20'+ OUID +'.jpg';
2082
+ urls.push(prefix + lookInsideSticker);
2083
+ } else {
2084
+ urls.push(prefix + suffix);
2085
+ }
2086
+ } else if ((!pid && storeName == "apparel") || pid == "apparel_display_on_website") {
2087
+ urls.push(prefix + "._SX342_.jpg");
2088
+ urls.push(prefix + "._SY445_.jpg");
2089
+ } else if ((!pid && storeName == "shoes") || pid == "shoes_display_on_website") {
2090
+ urls.push(prefix + "._SX395_.jpg");
2091
+ urls.push(prefix + "._SY395_.jpg");
2092
+ } else {
2093
+ urls.push(prefix + suffix);
2094
+ }
2095
+ }
2096
+ };
2097
+ var urls = [],
2098
+ numImgsPreload = Math.min(6, imageUrls.length),
2099
+ storeName = "books";
2100
+ for (var i = 0; i < numImgsPreload; i++){
2101
+ var currPid = (pids && pids.length) ? pids[i] : "";
2102
+ transformUrl(imageUrls[i], currPid);
2103
+ }
2104
+ for (var j = 0; j < urls.length; j++) {
2105
+ var img = new Image();
2106
+ img.src = urls[j];
2107
+ }
2108
+ };
2109
+ var win = jQuery(window);
2110
+ var feature = jQuery("#purchaseShvl");
2111
+ var shvlPresent = feature.length > 0 ? 1:0;
2112
+ var lastCheck = 0;
2113
+ var pending = 0;
2114
+
2115
+ var onScrollPrecache = function() {
2116
+ if (pending) {
2117
+ return;
2118
+ }
2119
+ var lastCheckDiff = new Date().getTime() - lastCheck;
2120
+ var checkDelay = (lastCheckDiff < 200 ? 200 - lastCheckDiff : 10);
2121
+ pending = 1;
2122
+ var u = function() {
2123
+ if(shvlPresent && (win.scrollTop() + win.height() > feature.offset().top + 200)) {
2124
+ var p = precacheDetailImages,
2125
+ $ = jQuery;
2126
+ if (p) {
2127
+ var selector = "#purchaseButtonWrapper";
2128
+ var imgElems = $(selector).find("a > div > img");
2129
+ var pgs, imgs = [], i = imgElems.length;
2130
+ while (i-- > 0) {
2131
+ imgs[i] = $(imgElems[i]).attr('src');
2132
+ }
2133
+ p(imgs,pgs);
2134
+ }
2135
+ // unbind listening on scroll once pre-caching completed
2136
+ $(window).unbind('scroll', onScrollPrecache);
2137
+ return;
2138
+ }
2139
+ pending = 0; //precache not execute yet, wait next invoke
2140
+ lastCheck = new Date().getTime();
2141
+ };
2142
+ setTimeout(u, checkDelay);
2143
+ return;
2144
+ };
2145
+
2146
+ jQuery(window).bind('scroll', onScrollPrecache);
2147
+ });
2148
+ }
2149
+ </script>
2150
+
2151
+ <script type="text/javascript">
2152
+ amznJQ.onCompletion('amznJQ.criticalFeature', function() {
2153
+ amznJQ.available('search-js-jq', function(){});
2154
+ amznJQ.available('amazonShoveler', function(){});
2155
+ amznJQ.available('simsJS', function(){});
2156
+ amznJQ.available('cmuAnnotations', function(){});
2157
+ amznJQ.available('externalJS.tagging', function(){});
2158
+ amznJQ.available('amzn-ratings-bar', function(){});
2159
+ amznJQ.available('accessoriesJS', function(){});
2160
+ amznJQ.available('priceformatterJS', function(){});
2161
+ amznJQ.available('CustomerPopover', function(){});
2162
+ if (!window.DPClientLogger) {
2163
+ window.DPClientLogger = {};
2164
+ }
2165
+ window.DPClientLogger.ImpressionLogger = function( program_group, feature, forceUpload, controlledLogging) {
2166
+ var self = this,
2167
+ data = {};
2168
+ var isBooksUdploggingDisabled = false;
2169
+ var enableNewCSMs = false;
2170
+ var newCSMs = ["ma-books-image-ftb-shown","ma-books-image-listen-shown"];
2171
+ self.logImpression = function(key) {
2172
+ if(!(isBooksUdploggingDisabled && controlledLogging !== undefined && controlledLogging)){
2173
+ var isNewCSM = self.isKeyNewCSM(key);
2174
+ if(!isNewCSM || ( isNewCSM && enableNewCSMs)){
2175
+ data[key]=1;
2176
+ setTimeout( self.upload, 2000 ); // upload client side metrics after 2secs of recording it.
2177
+ }
2178
+ }
2179
+ };
2180
+ self.isKeyNewCSM = function(key){
2181
+ var isNewCSM = false;
2182
+ jQuery.each(newCSMs, function(index,csm){
2183
+ if(csm == key){
2184
+ isNewCSM = true;
2185
+ }
2186
+ });
2187
+ return isNewCSM;
2188
+ };
2189
+ self.upload = function() {
2190
+ var t = [];
2191
+ jQuery.each(data, function(k,v){ t.push(k); });
2192
+ data = {};
2193
+ if(t.length > 0){
2194
+ var protocol = location.protocol == "https:" ? "https://" : "http://",
2195
+ url = protocol + ue.furl + "/1/action-impressions/1/OP/" + program_group + "/action/" + feature + ":" + t.join() + "?marketplaceId=" + ue.mid + "&requestId=" + ue.rid + "&session=" + ue.sid + "&_=" + (new Date()).getTime();
2196
+ (new Image()).src = url;
2197
+ }
2198
+ };
2199
+ if(forceUpload) {
2200
+ jQuery(window).unload(function() { self.upload();});
2201
+ }
2202
+ };
2203
+ amznJQ.onReady("jQuery", function(){
2204
+ amznJQ.declareAvailable("DPClientLogger");
2205
+ });
2206
+ });
2207
+ </script>
2208
+ <link type='text/css' href='http://z-ecx.images-amazon.com/images/G/01/browser-scripts/dpMergedOverallCSS/dpMergedOverallCSS-11065390972._V1_.css' rel='stylesheet'>
2209
+ <div style="display: none">
2210
+ <div id="nav-prime-menu" class="nav-empty nav-flyout-content nav-ajax-prime-menu">
2211
+ <div class="nav_dynamic"></div>
2212
+ <div class="nav-ajax-message"></div>
2213
+ <div class="nav-ajax-error-msg">
2214
+ <p class="nav_p nav-bold">There's a problem loading this menu right now.</p>
2215
+ <p class="nav_p"><a href="/gp/prime" class="nav_a">Learn more about Amazon Prime.</a></p>
2216
+ </div>
2217
+ </div>
2218
+ </div>
2219
+ <div style="display: none">
2220
+ <div id="nav-prime-tooltip">
2221
+ <div class="nav-npt-text-title"> Watch. Read. Shop. Relax. </div>
2222
+ <div class="nav-npt-text-detail"> Millions of Amazon Prime members enjoy instant videos, free Kindle books and unlimited free two-day shipping. </div>
2223
+ <div class="nav-npt-text-detail">
2224
+ &gt;
2225
+ <a class="nav-npt-a" href="https://www.amazon.com/gp/subs/primeclub/signup/handler.html?ie=UTF8&primeCampaignId=videos&primeMetadata=ref%3Dnav_tooltip_redirect&session-id=000-0000000-0000000">Get started</a>
2226
+ </div>
2227
+ </div>
2228
+ </div>
2229
+
2230
+ <div style="display: none;">
2231
+ <div id="nav_browse_flyout" >
2232
+ <div id="nav_subcats_wrap" class="nav_browse_wrap">
2233
+ <div id="nav_subcats">
2234
+ <div id="nav_subcats_0" data-nav-promo-id="instant-video" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Unlimited Instant Videos</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2676882011" class="nav_a nav_item">Prime Instant Video</a><div class="nav_tag">Unlimited streaming of thousands of<br />movies and TV shows with Amazon Prime</div></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/video/primesignup?ie=UTF8&amp;redirectQueryParams=bm9kZT0yNjE1MjYwMDEx&amp;redirectURL=L2Iv" class="nav_a nav_item">Learn More About Amazon Prime</a></li><li class="nav_taglined nav_subcat_link nav_pop_li nav_divider_before"><a href="/Instant-Video/b?ie=UTF8&amp;node=2858778011" class="nav_a nav_item">Amazon Instant Video Store</a><div class="nav_tag">Rent or buy hit movies and TV shows<br />to stream or download</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/video/library" class="nav_a nav_item">Your Video Library</a><div class="nav_tag">Your movies and TV shows<br />stored in the cloud</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/video/ontv/ontv" class="nav_a nav_item">Watch Anywhere</a><div class="nav_tag">Watch instantly on your Kindle Fire,<br />TV, Blu-ray player, or set-top box</div></li></ul></div>
2235
+ <div id="nav_subcats_1" data-nav-promo-id="mp3" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">MP3s & Cloud Player</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/MP3-Music-Download/b?ie=UTF8&amp;node=163856011" class="nav_a nav_item">MP3 Music Store</a><div class="nav_tag">Shop over 20 million songs</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000825251" class="nav_a nav_item">Music on Kindle Fire</a><div class="nav_tag">Discover how to play your music</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1001067901" class="nav_a nav_item">Cloud Player for PC</a><div class="nav_tag">Play, manage and download your music</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/dmusic/marketing/CloudPlayerLaunchPage" class="nav_a nav_item" target="_blank">Cloud Player for Web</a><div class="nav_tag">Play from any browser</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000454841" class="nav_a nav_item">Cloud Player for Android</a><div class="nav_tag">For Android phones and tablets</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000776061" class="nav_a nav_item">Cloud Player for iOS</a><div class="nav_tag">For iPhone, iPad and iPod touch</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2658409011" class="nav_a nav_item">Cloud Player for Home</a><div class="nav_tag">For Sonos and Roku</div></li></ul></div>
2236
+ <div id="nav_subcats_2" data-nav-promo-id="cloud-drive" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Amazon Cloud Drive</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/clouddrive" class="nav_a nav_item" target="_blank">Your Cloud Drive</a><div class="nav_tag">5 GB of free storage</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000796781" class="nav_a nav_item">Get the Desktop App</a><div class="nav_tag">For Windows and Mac</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000848741" class="nav_a nav_item">Cloud Drive Photos for Android</a><div class="nav_tag">For Android phones and tablets</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1001206201" class="nav_a nav_item">Cloud Drive Photos for iPhone</a><div class="nav_tag">For iPhone and iPod touch</div></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000796931" class="nav_a nav_item">Learn More About Cloud Drive</a></li></ul></div>
2237
+ <div id="nav_subcats_3" data-nav-promo-id="kindle" class="nav_browse_subcat nav_super_cat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_first nav_pop_li nav_browse_cat_head">Kindle E-readers</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B007HCCNJU" class="nav_a nav_item">Kindle</a><div class="nav_tag">Small, light, perfect for reading</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B007OZNZG0" class="nav_a nav_item">Kindle Paperwhite</a><div class="nav_tag">World's most advanced e-reader</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B007OZNUCE" class="nav_a nav_item">Kindle Paperwhite 3G</a><div class="nav_tag">With free 3G wireless</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=5916440011" class="nav_a nav_item">Kindle E-reader Accessories</a><div class="nav_tag">Covers, chargers, sleeves and more</div></li><li class="nav_pop_li nav_browse_cat_head nav_divider_before">Kindle Store</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/Kindle-eBooks/b?ie=UTF8&amp;node=1286228011" class="nav_a nav_item">Kindle Books</a></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/digital/fiona/redirect/newsstand/home/" class="nav_a nav_item">Newsstand</a></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/redirect.html?ie=UTF8&amp;location=%2Fkindlelendinglibrary" class="nav_a nav_item">Kindle Owners' Lending Library</a><div class="nav_tag">With Prime, Kindle owners read for free</div></li></ul>
2238
+ <ul class="nav_browse_ul nav_browse_cat2_ul">
2239
+ <li class="nav_pop_li nav_browse_cat_head">Kindle Fire</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B0083Q04IQ" class="nav_a nav_item">Fire</a><div class="nav_tag">All new--faster, twice the memory</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B0083PWAPW" class="nav_a nav_item">Fire HD</a><div class="nav_tag">7", Dolby audio, ultra-fast Wi-Fi</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B008GFRE5A" class="nav_a nav_item">Fire HD 8.9"</a><div class="nav_tag">8.9", Dolby audio, ultra-fast Wi-Fi</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/dp/B008GFRDL0" class="nav_a nav_item">Fire HD 8.9" 4G</a><div class="nav_tag">With ultra-fast 4G LTE wireless</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=5916439011" class="nav_a nav_item">Kindle Fire Accessories</a><div class="nav_tag">Cases, chargers, sleeves and more</div></li><li class="nav_pop_li nav_browse_cat_head nav_divider_before">Kindle Apps & Resources</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="https://www.amazon.com:443/gp/redirect.html?location=https://read.amazon.com/&amp;token=34AD60CFC4DCD7A97D4E2F4A4A7C4149FBEEF236" class="nav_a nav_item">Kindle Cloud Reader</a><div class="nav_tag">Read your Kindle books in a browser</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000493771" class="nav_a nav_item">Free Kindle Reading Apps</a><div class="nav_tag">For PC, iPad, iPhone, Android, and more</div></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/digital/fiona/manage" class="nav_a nav_item">Manage Your Kindle</a></li></ul></div>
2240
+ <div id="nav_subcats_4" data-nav-promo-id="android" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Appstore for Android</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/mobile-apps/b?ie=UTF8&amp;node=2350149011" class="nav_a nav_item">Apps</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2478844011" class="nav_a nav_item">Games</a></li><li class="nav_taglined nav_subcat_link nav_pop_li nav_divider_before"><a href="/b?ie=UTF8&amp;node=3071729011" class="nav_a nav_item">Test Drive Apps</a><div class="nav_tag">Try thousands of apps and games right now</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/feature.html?ie=UTF8&amp;docId=1000645111" class="nav_a nav_item">Amazon Apps</a><div class="nav_tag">Kindle, mobile shopping, MP3, and more</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/mas/your-account/myapps" class="nav_a nav_item">Your Apps and Devices</a><div class="nav_tag">View your apps and manage your devices</div></li></ul></div>
2241
+ <div id="nav_subcats_5" data-nav-promo-id="digital-games-software" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Digital Games & Software</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/Game-Downloads/b?ie=UTF8&amp;node=979455011" class="nav_a nav_item">Digital Games</a><div class="nav_tag">For PC and Mac</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=5267605011" class="nav_a nav_item">Free-to-Play Games</a><div class="nav_tag">For PC and Mac</div></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/pc-mac-software-downloads/b?ie=UTF8&amp;node=1233514011" class="nav_a nav_item">Digital Software</a><div class="nav_tag">For PC and Mac</div></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/swvgdtt/your-account/manage-downloads.html" class="nav_a nav_item">Your Games & Software Library</a></li></ul></div>
2242
+ <div id="nav_subcats_6" data-nav-promo-id="audible" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Audible Audiobooks</li><li class="nav_first nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/audible/signup/display.html" class="nav_a nav_item">Audible Membership</a><div class="nav_tag">Get to know Audible</div></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2402172011" class="nav_a nav_item">Audible Audiobooks & More</a></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/bestsellers/books/2402172011" class="nav_a nav_item">Bestsellers</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2669348011" class="nav_a nav_item">New & Notable</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2669344011" class="nav_a nav_item">Listener Favorites</a></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=5744819011" class="nav_a nav_item">Whispersync for Voice</a><div class="nav_tag">Switch between reading and listening</div></li></ul></div>
2243
+ <div id="nav_subcats_7" data-nav-promo-id="books" data-nav-wt='22304' class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Books & Magazines</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/books-used-books-textbooks/b?ie=UTF8&amp;node=283155" class="nav_a nav_item">Books</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Kindle-eBooks/b?ie=UTF8&amp;node=1286228011" class="nav_a nav_item">Kindle Books</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Childrens-Books/b?ie=UTF8&amp;node=4" class="nav_a nav_item">Children's Books</a></li><li class="nav_subcat_link nav_pop_li"><a href="/New-Used-Textbooks-Books/b?ie=UTF8&amp;node=465600" class="nav_a nav_item">Textbooks</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Audiobooks-Books/b?ie=UTF8&amp;node=368395011" class="nav_a nav_item">Audiobooks</a></li><li class="nav_subcat_link nav_pop_li"><a href="/magazines/b?ie=UTF8&amp;node=599858" class="nav_a nav_item">Magazines</a></li><li class="nav_subcat_link nav_pop_li nav_divider_before"><a href="/Sell-Books/b?ie=UTF8&amp;node=2205237011" class="nav_a nav_item">Sell Your Books</a></li></ul></div>
2244
+ <div id="nav_subcats_8" data-nav-promo-id="movies-music-games" data-nav-wt='19650' class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Movies, Music & Games</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/movies-tv-dvd-bluray/b?ie=UTF8&amp;node=2625373011" class="nav_a nav_item">Movies & TV</a></li><li class="nav_subcat_link nav_pop_li"><a href="/movies-tv-bluray-bluray3d/b?ie=UTF8&amp;node=2901953011" class="nav_a nav_item">Blu-ray</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Instant-Video/b?ie=UTF8&amp;node=2858778011" class="nav_a nav_item">Amazon Instant Video</a></li><li class="nav_subcat_link nav_pop_li nav_divider_before"><a href="/music-rock-classical-pop-jazz/b?ie=UTF8&amp;node=5174" class="nav_a nav_item">Music</a></li><li class="nav_subcat_link nav_pop_li"><a href="/MP3-Music-Download/b?ie=UTF8&amp;node=163856011" class="nav_a nav_item">MP3 Downloads</a></li><li class="nav_subcat_link nav_pop_li"><a href="/musical-instruments-accessories-sound-recording/b?ie=UTF8&amp;node=11091801" class="nav_a nav_item">Musical Instruments</a></li><li class="nav_subcat_link nav_pop_li nav_divider_before"><a href="/computer-video-games-hardware-accessories/b?ie=UTF8&amp;node=468642" class="nav_a nav_item">Video Games</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Game-Downloads/b?ie=UTF8&amp;node=979455011" class="nav_a nav_item">Digital Games</a></li></ul></div>
2245
+ <div id="nav_subcats_9" data-nav-promo-id="electronics-computers" data-nav-wt='21811' class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Electronics & Computers</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=6993639011" class="nav_a nav_item">Computers & Tablets</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Televisions-Video/b?ie=UTF8&amp;node=1266092011" class="nav_a nav_item">TV & Home Theater</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=7012551011" class="nav_a nav_item">Home & Portable Audio</a></li><li class="nav_subcat_link nav_pop_li"><a href="/cell-phones-service-plans-accessories/b?ie=UTF8&amp;node=2335752011" class="nav_a nav_item">Cell Phones & Services</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Camera-Photo-Film-Canon-Sony/b?ie=UTF8&amp;node=502394" class="nav_a nav_item">Camera & Video</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=7000941011" class="nav_a nav_item">Vehicle, GPS & Navigation</a></li><li class="nav_subcat_link nav_pop_li"><a href="/musical-instruments-accessories-sound-recording/b?ie=UTF8&amp;node=11091801" class="nav_a nav_item">Musical Instruments</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=7021207011" class="nav_a nav_item">Video Games & Consoles</a></li><li class="nav_subcat_link nav_pop_li"><a href="/design-download-business-education-software/b?ie=UTF8&amp;node=229534" class="nav_a nav_item">Software</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=7014097011" class="nav_a nav_item">Office Products</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=5745855011" class="nav_a nav_item">Electronics Accessories</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Electronics-Trade-In/b?ie=UTF8&amp;node=2226766011" class="nav_a nav_item">Trade In Electronics</a></li></ul></div>
2246
+ <div id="nav_subcats_10" data-nav-promo-id="home-garden-tools" data-nav-wt='21967' class="nav_browse_subcat nav_super_cat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_first nav_pop_li nav_browse_cat_head">Home, Garden &amp; Pets</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/kitchen-dining-small-appliances-cookware/b?ie=UTF8&amp;node=284507" class="nav_a nav_item">Kitchen & Dining</a></li><li class="nav_subcat_link nav_pop_li"><a href="/furniture-decor-rugs-lamps-beds-tv-stands/b?ie=UTF8&amp;node=1057794" class="nav_a nav_item">Furniture & D�cor</a></li><li class="nav_subcat_link nav_pop_li"><a href="/bedding-bath-sheets-towels/b?ie=UTF8&amp;node=1057792" class="nav_a nav_item">Bedding & Bath</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Appliances/b?ie=UTF8&amp;node=2619525011" class="nav_a nav_item">Appliances</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Patio-Lawn-Garden/b?ie=UTF8&amp;node=2972638011" class="nav_a nav_item">Patio, Lawn & Garden</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Arts-Crafts-Sewing/b?ie=UTF8&amp;node=2617941011" class="nav_a nav_item">Arts, Crafts & Sewing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/pet-supplies-dog-cat-food-bed-toy/b?ie=UTF8&amp;node=2619533011" class="nav_a nav_item">Pet Supplies</a></li></ul>
2247
+ <ul class="nav_browse_ul nav_browse_cat2_ul">
2248
+ <li class="nav_pop_li nav_browse_cat_head">Tools, Home Improvement</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/Tools-and-Home-Improvement/b?ie=UTF8&amp;node=228013" class="nav_a nav_item">Home Improvement</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Power-Tools-and-Hand-Tools/b?ie=UTF8&amp;node=328182011" class="nav_a nav_item">Power & Hand Tools</a></li><li class="nav_subcat_link nav_pop_li"><a href="/lighting-and-ceiling-fans/b?ie=UTF8&amp;node=495224" class="nav_a nav_item">Lamps & Light Fixtures</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Kitchen-and-Bath-Fixtures/b?ie=UTF8&amp;node=3754161" class="nav_a nav_item">Kitchen & Bath Fixtures</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Hardware-Locks-and-Fasteners/b?ie=UTF8&amp;node=511228" class="nav_a nav_item">Hardware</a></li><li class="nav_subcat_link nav_pop_li"><a href="/building-supplies/b?ie=UTF8&amp;node=551240" class="nav_a nav_item">Building Supplies</a></li></ul></div>
2249
+ <div id="nav_subcats_11" data-nav-promo-id="grocery-health-beauty" data-nav-wt='20600' class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Grocery, Health & Beauty</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/grocery-breakfast-foods-snacks-organic/b?ie=UTF8&amp;node=16310101" class="nav_a nav_item">Grocery & Gourmet Food</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=2983386011" class="nav_a nav_item">Wine</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Natural-Organic-Grocery/b?ie=UTF8&amp;node=51537011" class="nav_a nav_item">Natural & Organic</a></li><li class="nav_subcat_link nav_pop_li"><a href="/health-personal-care-nutrition-fitness/b?ie=UTF8&amp;node=3760901" class="nav_a nav_item">Health & Personal Care</a></li><li class="nav_subcat_link nav_pop_li"><a href="/beauty-makeup-fragrance-skin-care/b?ie=UTF8&amp;node=3760911" class="nav_a nav_item">Beauty</a></li></ul></div>
2250
+ <div id="nav_subcats_12" data-nav-promo-id="toys-kids-baby" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Toys, Kids & Baby</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/toys/b?ie=UTF8&amp;node=165793011" class="nav_a nav_item">Toys & Games</a></li><li class="nav_subcat_link nav_pop_li"><a href="/baby-car-seats-strollers-bedding/b?ie=UTF8&amp;node=165796011" class="nav_a nav_item">Baby</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Kids-Baby-Clothing/b?ie=UTF8&amp;node=1040662" class="nav_a nav_item">Kids' Clothing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/l/2402554011" class="nav_a nav_item">Baby Clothing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Kids-Family/b?ie=UTF8&amp;node=471306" class="nav_a nav_item">Video Games for Kids</a></li><li class="nav_taglined nav_subcat_link nav_pop_li"><a href="/gp/mom/signup" class="nav_a nav_item">Amazon Mom</a><div class="nav_tag">20% off diapers, free shipping and more</div></li><li class="nav_subcat_link nav_pop_li"><a href="/gp/registry/baby" class="nav_a nav_item">Baby Registry</a></li></ul></div>
2251
+ <div id="nav_subcats_13" data-nav-promo-id="clothing-shoes-jewelry" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Clothing, Shoes & Jewelry</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/clothing-accessories-men-women-kids/b?ie=UTF8&amp;node=1036592" class="nav_a nav_item">Clothing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/shoes-men-women-kids-baby/b?ie=UTF8&amp;node=672123011" class="nav_a nav_item">Shoes</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Handbags-Accessories-Clothing/b?ie=UTF8&amp;node=15743631" class="nav_a nav_item">Handbags</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Handbags-Designer-Sunglasses-iPod-Case/b?ie=UTF8&amp;node=1036700" class="nav_a nav_item">Accessories</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Luggage-Bags-Travel-Accessories-Clothing/b?ie=UTF8&amp;node=15743161" class="nav_a nav_item">Luggage</a></li><li class="nav_subcat_link nav_pop_li"><a href="/jewelry-watches-engagement-rings-diamonds/b?ie=UTF8&amp;node=3367581" class="nav_a nav_item">Jewelry</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Watches-Mens-Womens-Kids-Accessories/b?ie=UTF8&amp;node=377110011" class="nav_a nav_item">Watches</a></li></ul></div>
2252
+ <div id="nav_subcats_14" data-nav-promo-id="sports-outdoors" data-nav-wt='18547' class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_pop_li nav_browse_cat_head">Sports & Outdoors</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/Exercise-Fitness-Sports-Outdoors/b?ie=UTF8&amp;node=3407731" class="nav_a nav_item">Exercise & Fitness</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Outdoor-Recreation/b?ie=UTF8&amp;node=706814011" class="nav_a nav_item">Outdoor Recreation</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Hunting-Fishing/b?ie=UTF8&amp;node=706813011" class="nav_a nav_item">Hunting &amp; Fishing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/cycling-bikes-bicycles-bike-sale/b?ie=UTF8&amp;node=3403201" class="nav_a nav_item">Cycling</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Apparel/b?ie=UTF8&amp;node=2206626011" class="nav_a nav_item">Athletic & Outdoor Clothing</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Boating-Water-Sports-Outdoors/b?ie=UTF8&amp;node=3421331" class="nav_a nav_item">Boating & Water Sports</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Team-Sports-Outdoors/b?ie=UTF8&amp;node=706809011" class="nav_a nav_item">Team Sports</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Fan-Shop-Sports-Outdoors/b?ie=UTF8&amp;node=3386071" class="nav_a nav_item">Fan Shop</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Sports-Collectibles/b?ie=UTF8&amp;node=3250697011" class="nav_a nav_item">Sports Collectibles</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Golf-Sports-Outdoors/b?ie=UTF8&amp;node=3410851" class="nav_a nav_item">Golf</a></li><li class="nav_subcat_link nav_pop_li"><a href="/sporting-goods-clothing-cycling-exercise/b?ie=UTF8&amp;node=3375251" class="nav_a nav_item">All Sports & Outdoors</a></li></ul></div>
2253
+ <div id="nav_subcats_15" data-nav-promo-id="automotive-industrial" class="nav_browse_subcat"><ul class="nav_browse_ul nav_browse_cat_ul"><li class="nav_first nav_pop_li nav_browse_cat_head">Automotive</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/automotive-auto-truck-replacements-parts/b?ie=UTF8&amp;node=15684181" class="nav_a nav_item">Automotive Parts & Accessories</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Tools-Equipment-Automotive/b?ie=UTF8&amp;node=15706941" class="nav_a nav_item">Automotive Tools & Equipment</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Car-Electronics/b?ie=UTF8&amp;node=1077068" class="nav_a nav_item">Car Electronics & GPS</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=15706571" class="nav_a nav_item">Tires & Wheels</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Motorcycle-ATV-Automotive/b?ie=UTF8&amp;node=346333011" class="nav_a nav_item">Motorcycle & ATV</a></li><li class="nav_pop_li nav_browse_cat_head nav_divider_before">Industrial & Scientific</li><li class="nav_first nav_subcat_link nav_pop_li"><a href="/industrial-scientific-supplies/b?ie=UTF8&amp;node=16310091" class="nav_a nav_item">Industrial Supplies</a></li><li class="nav_subcat_link nav_pop_li"><a href="/Lab-Scientific-Supplies/b?ie=UTF8&amp;node=317970011" class="nav_a nav_item">Lab & Scientific</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=317971011" class="nav_a nav_item">Janitorial</a></li><li class="nav_subcat_link nav_pop_li"><a href="/b?ie=UTF8&amp;node=318135011" class="nav_a nav_item">Safety</a></li></ul></div>
2254
+ </div>
2255
+ <div class="nav_subcats_div"></div>
2256
+ <div class="nav_subcats_div nav_subcats_div2"></div>
2257
+ </div>
2258
+ <div id="nav_cats_wrap" class="nav_browse_wrap">
2259
+ <ul id="nav_cats" class="nav_browse_ul">
2260
+ <li class="nav_first nav_pop_li nav_cat" id="nav_cat_0">Unlimited Instant Videos</li><li class="nav_taglined nav_pop_li nav_cat" id="nav_cat_1">MP3s & Cloud Player<div class="nav_tag">20 million songs, play anywhere</div></li><li class="nav_taglined nav_pop_li nav_cat" id="nav_cat_2">Amazon Cloud Drive<div class="nav_tag">5 GB of free storage</div></li><li class="nav_pop_li nav_cat" id="nav_cat_3">Kindle</li><li class="nav_taglined nav_pop_li nav_cat" id="nav_cat_4">Appstore for Android<div class="nav_tag">Get a premium app for free today<span id="nav_amabotandroid"></span></div></li><li class="nav_pop_li nav_cat" id="nav_cat_5">Digital Games & Software</li><li class="nav_pop_li nav_cat" id="nav_cat_6">Audible Audiobooks</li><li class="nav_pop_li nav_cat nav_divider_before" id="nav_cat_7">Books & Magazines</li><li class="nav_pop_li nav_cat" id="nav_cat_8">Movies, Music & Games</li><li class="nav_pop_li nav_cat" id="nav_cat_9">Electronics & Computers</li><li class="nav_pop_li nav_cat" id="nav_cat_10">Home, Garden & Tools</li><li class="nav_pop_li nav_cat" id="nav_cat_11">Grocery, Health & Beauty</li><li class="nav_pop_li nav_cat" id="nav_cat_12">Toys, Kids & Baby</li><li class="nav_pop_li nav_cat" id="nav_cat_13">Clothing, Shoes & Jewelry</li><li class="nav_pop_li nav_cat" id="nav_cat_14">Sports & Outdoors</li><li class="nav_pop_li nav_cat" id="nav_cat_15">Automotive & Industrial</li><li class="nav_last nav_pop_li nav_divider_before nav_a_carat" id="nav_cat_16"><span class="nav_a_carat">&rsaquo;</span><a href="/gp/site-directory" class="nav_a">Full Store Directory</a></li>
2261
+ </ul>
2262
+ <div id="nav_cat_indicator" class="nav-sprite"></div>
2263
+ </div>
2264
+ </div>
2265
+ <div id="nav_your_account_flyout" class="nav-flyout-content"> <ul class="nav_pop_ul">
2266
+ <li class="nav_pop_li nav_divider_after">
2267
+ <div><a href="https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_signin" class="nav-action-button nav-sprite" rel="nofollow">
2268
+ <span class='nav-action-inner nav-sprite'>Sign in</span>
2269
+ </a></div>
2270
+ <div class="nav_pop_new_cust">New customer? <a href="https://www.amazon.com/ap/register?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_newcust" rel="nofollow" class="nav_a">Start here.</a></div>
2271
+ </li>
2272
+ <li class="nav_first nav_pop_li"><a href="https://www.amazon.com/gp/css/homepage.html" class="nav_a nav_a">Your Account</a></li><li class="nav_pop_li"><a href="https://www.amazon.com/gp/css/order-history" class="nav_a nav_a" id="nav_prefetch_yourorders">Your Orders</a></li><li class="nav_pop_li"><a href="/gp/registry/wishlist" class="nav_a nav_a">Your Wish List</a></li><li class="nav_pop_li"><a href="/gp/yourstore" class="nav_a nav_a">Your Recommendations</a></li><li class="nav_pop_li"><a href="https://www.amazon.com/gp/subscribe-and-save/manager/viewsubscriptions" class="nav_a nav_a">Your Subscribe & Save Items</a></li><li class="nav_pop_li" id="nav_ya_your_collections"><a href="/gp/customers/me/collections" class="nav_a nav_a">Your Collections</a></li><li class="nav_pop_li nav_divider_before"><a href="/gp/digital/fiona/manage" class="nav_a nav_a">Manage Your Kindle</a></li><li class="nav_taglined nav_pop_li"><a href="/gp/dmusic/mp3/player" class="nav_a nav_a">Your Cloud Player</a><div class="nav_tag">Play from any browser</div></li><li class="nav_taglined nav_pop_li"><a href="/clouddrive" class="nav_a nav_a">Your Cloud Drive</a><div class="nav_tag">5 GB of free storage</div></li><li class="nav_taglined nav_pop_li"><a href="/b?ie=UTF8&amp;node=2676882011" class="nav_a nav_a">Prime Instant Videos</a><div class="nav_tag">Unlimited streaming of thousands<br />of movies and TV shows</div></li><li class="nav_pop_li"><a href="/gp/video/library" class="nav_a nav_a">Your Video Library</a></li><li class="nav_pop_li"><a href="/gp/swvgdtt/your-account/manage-downloads.html" class="nav_a nav_a">Your Games & Software Library</a></li><li class="nav_last nav_pop_li"><a href="/gp/mas/your-account/myapps" class="nav_a nav_a">Your Android Apps & Devices</a></li> </ul> <!--[if IE ]> <div class='nav-ie-min-width' style='width: 160px'></div> <![endif]--> </div>
2273
+ <div id="nav_cart_flyout" class="nav-empty nav-flyout-content">
2274
+ <ul class='nav_dynamic'></ul>
2275
+ <div class='nav-ajax-message'></div>
2276
+ <div class='nav-dynamic-empty'>
2277
+ <p class='nav_p nav-bold nav-cart-empty'> Your Shopping Cart is empty.</p>
2278
+ <p class='nav_p '> Give it purpose&mdash;fill it with books, DVDs, clothes, electronics, and more.</p>
2279
+ <p class='nav_p '> If you already have an account, <a href="https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_signin_cart" class="nav_a">sign in</a>.</p>
2280
+ </div>
2281
+ <div class='nav-ajax-error-msg'>
2282
+ <p class='nav_p nav-bold'> There's a problem previewing your cart right now.</p>
2283
+ <p class='nav_p '> Check your Internet connection and <a href="/gp/cart/view.html?ie=UTF8&hasWorkingJavascript=1" class="nav_a">go to your cart</a>, or <a href='javascript:void(0);' class='nav_a nav-try-again'>try again</a>.</p>
2284
+ </div>
2285
+ <a href="/gp/cart/view.html?ie=UTF8&hasWorkingJavascript=1" id="nav-cart-menu-button" class="nav-action-button nav-sprite"><span class="nav-action-inner nav-sprite">
2286
+ View Cart
2287
+ <span class='nav-ajax-success'>
2288
+ <span id='nav-cart-zero'>(<span class='nav-cart-count'>0</span> items)</span>
2289
+ <span id='nav-cart-one' style='display: none;'>(<span class='nav-cart-count'>0</span> item)</span>
2290
+ <span id='nav-cart-many' style='display: none;'>(<span class='nav-cart-count'>0</span> items)</span>
2291
+ </span>
2292
+ </span></a>
2293
+
2294
+ </div>
2295
+ <div id="nav_wishlist_flyout" class="nav-empty nav-flyout-content">
2296
+ <div class='nav-ajax-message'></div>
2297
+ <ul class='nav_dynamic nav_pop_ul nav_divider_after'></ul>
2298
+ <ul class="nav_pop_ul">
2299
+ <li class="nav_first nav_pop_li nav-dynamic-empty"><a href="/gp/wishlist" class="nav_a nav_a">Create a Wish List</a></li><li class="nav_pop_li"><a href="/gp/gift-central" class="nav_a nav_a">Find a Wish List or Registry</a></li><li class="nav_taglined nav_pop_li"><a href="/wishlist/universal" class="nav_a nav_a">Wish from Any Website</a><div class="nav_tag">Add items to your List from anywhere</div></li><li class="nav_pop_li"><a href="/gp/wedding/homepage" class="nav_a nav_a">Wedding Registry</a></li><li class="nav_pop_li"><a href="/gp/registry/baby" class="nav_a nav_a">Baby Registry</a></li><li class="nav_pop_li"><a href="/gp/toys/birthday" class="nav_a nav_a">Kids' Birthdays</a></li><li class="nav_last nav_pop_li"><a href="/gp/gift-central/organizer" class="nav_a nav_a">Friends & Family Gifting</a></li>
2300
+ </ul>
2301
+ </div>
2302
+ <script type='text/html' id='nav-tpl-wishlist'>
2303
+ <# jQuery.each(wishlist, function (i, item) { #>
2304
+ <li class='nav_pop_li'>
2305
+ <a href='<#=item.url #>' class='nav_a'>
2306
+ <#=item.name #>
2307
+ </a>
2308
+ <div class='nav_tag'>
2309
+ <# if(typeof item.count !='undefined') { #>
2310
+ <#=
2311
+ (item.count == 1 ? "{count} item" : "{count} items")
2312
+ .replace("{count}", item.count)
2313
+ #>
2314
+ <# } #>
2315
+ </div>
2316
+ </li>
2317
+ <# }); #>
2318
+ </script>
2319
+ <script type='text/html' id='nav-tpl-cart'>
2320
+ <# jQuery.each(cart, function (i, item) { #>
2321
+ <li class='nav_cart_item'>
2322
+ <a href='<#=item.url #>' class='nav_a'>
2323
+ <img class='nav_cart_img' src='<#=item.img #>'/>
2324
+ <span class='nav-cart-title'><#=item.name #></span>
2325
+ <# if (item.ourPrice) { #>
2326
+ <span class='nav-cart-buyingPrice'><#=item.ourPrice #></span>
2327
+ <# } #>
2328
+ <# if (item.scarcityMessage) { #>
2329
+ <span class='<#=item.scarcityClass #>'><#=item.scarcityMessage #></span>
2330
+ <# } #>
2331
+ <span class='nav-cart-quantity'>
2332
+ <# if(typeof item.wireless !== 'undefined') { #>
2333
+ <#= "Items: {count}".replace("{count}", item.qty) #>
2334
+ <# } else { #>
2335
+ <#= "Quantity: {count}".replace("{count}", item.qty) #>
2336
+ <# } #>
2337
+ </span>
2338
+ </a>
2339
+ </li>
2340
+ <# }); #>
2341
+ </script>
2342
+ <script type='text/html' id='nav-tpl-asin-promo'>
2343
+ <a href='<#=destination #>' class='nav_asin_promo'>
2344
+ <img src='<#=image #>' class='nav_asin_promo_img'/>
2345
+ <span class='nav_asin_promo_headline'><#=headline #></span>
2346
+ <span class='nav_asin_promo_info'>
2347
+ <span class='nav_asin_promo_title'><#=productTitle #></span>
2348
+ <span class='nav_asin_promo_title2'><#=productTitle2 #></span>
2349
+ <span class='nav_asin_promo_price'><#=price #></span>
2350
+ </span>
2351
+ <span class='nav_asin_promo_button nav-sprite'><#=button #></span>
2352
+ </a>
2353
+ </script>
2354
+ </div>
2355
+ <script type='text/javascript'>window.$Nav.declare('config.prefetchUrls', ["http://z-ecx.images-amazon.com/images/G/01/browser-scripts/fruitCSS/US-combined-745644715._V1_.css","http://z-ecx.images-amazon.com/images/G/01/browser-scripts/registriesCSS/US-combined-545184966._V376148880_.css","https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-beacon/site-wide-7538592147._V1_.css","https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-beaconized/wcs-ya-homepage-beaconized-1899362992._V1_.css","https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-beaconized/wcs-ya-homepage-beaconized-3515399030._V1_.js","https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-order-history-beaconized/wcs-ya-order-history-beaconized-2777963369._V1_.css","https://images-na.ssl-images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01-plus._V381442192_.png","https://images-na.ssl-images-amazon.com/images/G/01/gno/images/general/navAmazonLogoFooter._V169459313_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/communities/social/snwicons_v2._V369764580_.png","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/css/images/amznbtn-sprite03._V387356454_.png","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/help/images/spotlight/kindle-family-02b._V386370244_.jpg","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/acorn._V192250692_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/amazon-gc-100._V192250695_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/amazon-gcs-100._V192250695_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/btn-close._V192250694_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/projects/text-trace/texttrace_typ._V381285749_.js","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/ya/images/new-link._V192250664_.gif","https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/ya/images/shipment_large_lt._V192250661_.gif"]);
2356
+ _navbar = window._navbar || {};
2357
+ _navbar.prefetch = function() { window.amznJQ && amznJQ.addPL(window.$Nav.getNow('config.prefetchUrls')); };
2358
+ window.$Nav && $Nav.declare( 'config.prefetch', _navbar.prefetch );
2359
+ window.$Nav && $Nav.declare( 'config.flyoutURL', null );
2360
+ window.$Nav && $Nav.declare('btf.lite');
2361
+ window.amznJQ && amznJQ.declareAvailable('navbarBTFLite');
2362
+ window.$Nav && $Nav.declare('btf.full');
2363
+ window.amznJQ && amznJQ.declareAvailable('navbarBTF');
2364
+ </script>
2365
+ <div id="sign-in-tooltip-anchor-point">
2366
+ <div class="sign-in-tooltip-beak">
2367
+ &nbsp;
2368
+ </div>
2369
+ <div id="sign-in-tooltip-body">
2370
+ <div class="cust-rec-aui-button cust-rec-inline-tag">
2371
+ <span class='a-button a-button-span12 a-button-primary'><span class='a-button-inner'><a href='https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_custrec_signin' class='a-button-text'>
2372
+ Sign in
2373
+ </a></span></span>
2374
+ </div>
2375
+ <div class="sign-in-tooltip-new-customer">
2376
+ New customer? <a class="sign-in-tooltip-link" href="https://www.amazon.com/ap/register?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_custrec_newcust">Start here.</a>
2377
+ </div>
2378
+ </div>
2379
+ </div>
2380
+ <script type="text/javascript">
2381
+ (function () {
2382
+ //Check if referrer is an Amazon page
2383
+ var referSite = document.referrer.split('?');
2384
+ var siteName = "amazon.com";
2385
+ var serverName = "www.amazon.com";
2386
+ var zcnName = "z.cn";
2387
+ var amznCNName = "amazon.cn";
2388
+ var amznUSName = "amazon.com";
2389
+ if (referSite[0].indexOf(siteName) != -1 || referSite[0].indexOf(zcnName) != -1
2390
+ || referSite[0].indexOf(serverName) != -1 || referSite[0].indexOf(amznCNName) != -1 || referSite[0].indexOf(amznUSName) != -1){
2391
+ return;
2392
+ }
2393
+ var URL = window.location.toString();
2394
+ var urlPattern = /^https/;
2395
+ if (urlPattern.test(URL)) {
2396
+ return;
2397
+ }
2398
+
2399
+ var useAUI = (typeof window.P === "object" && typeof window.P.when === "function");
2400
+
2401
+ // Function to get URL GET parameters
2402
+ function getParam(name){
2403
+ if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search))
2404
+ return decodeURIComponent(name[1]);
2405
+ }
2406
+
2407
+ function jQueryCallback($) {
2408
+ //jQuery is available by default
2409
+
2410
+ if (!$) {
2411
+ return;
2412
+ };
2413
+
2414
+ var isIE6 = false;
2415
+ var isIE7 = false;
2416
+ if ($.browser.msie) {
2417
+ isIE6 = (parseInt($.browser.version, 10) < 7) ? 1 : 0;
2418
+ isIE7 = (parseInt($.browser.version, 10) == 7) ? 1 : 0;
2419
+ }
2420
+
2421
+ if (isIE6 && ""){
2422
+ return;
2423
+ }
2424
+
2425
+ var tooltipSize = isIE6 ? 200 : 250;
2426
+ var popoverContainer;
2427
+ var signInPopover;
2428
+ var tooltipTimer;
2429
+
2430
+ var signInPopoverOptions = {
2431
+ 'align': "center",
2432
+ 'closeEventInclude': "CLICK_OUTSIDE",
2433
+ 'forceAlignment': true,
2434
+ 'focusOnShow': false,
2435
+ 'location': 'bottom',
2436
+ 'localContent': "#sign-in-tooltip-anchor-point",
2437
+ 'locationElement': "#nav-your-account",
2438
+ 'locationMargin': 8,
2439
+ 'paddingBottom': 0,
2440
+ 'paddingLeft': 20,
2441
+ 'paddingRight': 20,
2442
+ 'showCloseButton': true,
2443
+ 'showOnHover': false,
2444
+ 'onHide': function () { signInPopover = undefined; },
2445
+ 'onShow' : function () {
2446
+ if($.browser.msie) //disable fade in for IE
2447
+ $("#sign-in-tooltip-body").show();
2448
+ else
2449
+ $("#sign-in-tooltip-body").fadeIn(1000);
2450
+ tooltipTimer = constructTooltipTimer();
2451
+ },
2452
+ 'skin': isIE6 ?
2453
+ "<div style='border:1px solid #aed2ee;background-color:white; padding:8; text-align:right;'>" +
2454
+ "<a id='sign-in-tooltip-ie6-cross' href='#' rel='tooltip-cross'> <span style = 'font-weight:bold'>X</span></a>" +
2455
+ "<div class='ap_content' style='padding:20px 20px 8px 20px;'></div>" +
2456
+ "</div>" : 'default',
2457
+ 'width': tooltipSize,
2458
+ 'zIndex': 999
2459
+ };
2460
+ var dismissPopover = function (popover) {
2461
+ if (popover) {
2462
+ popover.close();
2463
+ }
2464
+ };
2465
+
2466
+ var repositionPopover = function (popover) {
2467
+ if (popover) {
2468
+ popover.reposition();
2469
+ }
2470
+ }
2471
+
2472
+ var zoomIE7 = function () {
2473
+ if (isIE7){
2474
+ var ie7Window = document.body.getBoundingClientRect();
2475
+ var zoomLevel = (ie7Window.right - ie7Window.left)/document.body.clientWidth;
2476
+
2477
+ if (zoomLevel == 1){
2478
+ return false;
2479
+ } else {
2480
+ return true;
2481
+ }
2482
+ } else {
2483
+ return false;
2484
+ }
2485
+ }
2486
+ // Constructs the tooltip and sets necessary variables
2487
+ var constructTooltip = function () {
2488
+
2489
+ var logInfo = "tooltip-" + "us" + "-1";
2490
+ ue.log(logInfo, "cust-rec-soc", {n:true});
2491
+
2492
+ var css = {};
2493
+ if (isIE6) {
2494
+ css.top = "-16px";
2495
+ css.left = "92px";
2496
+ } else {
2497
+ css.left = "92px";
2498
+ }
2499
+
2500
+ $('.sign-in-tooltip-beak').css(css);
2501
+
2502
+ signInPopover = $.AmazonPopover.displayPopover(signInPopoverOptions);
2503
+ $('a[id="sign-in-tooltip-ie6-cross"]').click( function() {
2504
+ dismissPopover(signInPopover);
2505
+ });
2506
+ popoverContainer = $("#sign-in-tooltip-anchor-point").parents(".ap_popover");
2507
+ // If customer hovers over popover, prevent it from dismissing itself
2508
+ // Upon hovering off, reset the timer
2509
+ if (popoverContainer) {
2510
+ popoverContainer.hover(
2511
+ function () {
2512
+ clearTimeout(tooltipTimer);
2513
+ },
2514
+ function () {
2515
+ tooltipTimer = constructTooltipTimer();
2516
+ }
2517
+ );
2518
+ }
2519
+ // Resize tooltip if window is resized
2520
+ $(window).resize(function (eventObject) {
2521
+ //Dismiss if IE7 and zoom level not 100%
2522
+ if (zoomIE7()){
2523
+ dismissPopover(signInPopover);
2524
+ }
2525
+ repositionPopover(signInPopover);
2526
+ });
2527
+ };
2528
+ // Constructs a timer to dismiss the tooltip
2529
+ var constructTooltipTimer = function () {
2530
+ return setTimeout(function () {
2531
+ if (signInPopover) {
2532
+ if (popoverContainer && !($.browser.msie && parseInt($.browser.version, 10) < 9)) {
2533
+ popoverContainer.fadeOut(1000, function () {
2534
+ dismissPopover(signInPopover);
2535
+ });
2536
+ } else {
2537
+ dismissPopover(signInPopover);
2538
+ }
2539
+ }
2540
+ }, 10000);
2541
+ };
2542
+ var popoverCallback = function () {
2543
+ var dismissed = false;
2544
+ var navDismissCallback = function () {
2545
+ // Event fired by Nav flyouts
2546
+ dismissed = true;
2547
+ dismissPopover(signInPopover);
2548
+ };
2549
+
2550
+ if (useAUI) {
2551
+ P.when('navDismissTooltip').execute(navDismissCallback);
2552
+ } else {
2553
+ amznJQ.available('navDismissTooltip', navDismissCallback);
2554
+ }
2555
+
2556
+ // Sprite preloading
2557
+ var horizontalSprite = new Image();
2558
+ var verticalSprite = new Image();
2559
+ var beakSprite = new Image();
2560
+
2561
+ // Onload handler must be set PRIOR to setting src field for proper event triggering in IE
2562
+ if (0){
2563
+ if (!dismissed && !zoomIE7()) {
2564
+ constructTooltip();
2565
+ }
2566
+ } else {
2567
+ horizontalSprite.onload = function () {
2568
+ if (!dismissed && !zoomIE7()) {
2569
+ constructTooltip();
2570
+ }
2571
+ }
2572
+ }
2573
+
2574
+ horizontalSprite.src = "http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-h._V219326280_.png";
2575
+ verticalSprite.src = "http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-v._V219326283_.png";
2576
+ beakSprite.src = "http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-vertical-popover-arrow2._V371798167_.gif";
2577
+ };
2578
+
2579
+ setTimeout(function(){
2580
+ if ($.AmazonPopover && $.AmazonPopover.displayPopover) {
2581
+ popoverCallback();
2582
+ }
2583
+ },500);
2584
+ };
2585
+
2586
+ window.onload=function() {
2587
+ if (useAUI) {
2588
+ //hook up AUI (trying to protect against a random global P that is not the AUI P)
2589
+ window.P.when('jQuery', 'ready', 'legacy-popover').execute(jQueryCallback);
2590
+ } else if (window.amznJQ) {
2591
+ //hook up amaznJQ
2592
+ window.amznJQ.available('jQuery', function() {
2593
+ window.amznJQ.available('popover', function() {
2594
+ window.amznJQ.jQuery(document).ready(function (){
2595
+ jQueryCallback(window.amznJQ.jQuery);
2596
+ });
2597
+ });
2598
+ });
2599
+ }
2600
+ }
2601
+ })();
2602
+ </script>
2603
+
2604
+ <div id="sitb-pop">
2605
+ <div class='sitb-pop-bookmarks'>
2606
+
2607
+ <a href="/gp/reader/193609620X?ie=UTF8&amp;p=S001#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToPage(1, null, 'sib_dp_pop_fc'); return false; }">Front&nbsp;Cover</a>&nbsp;| <a href="/gp/reader/193609620X?ie=UTF8&amp;p=S006#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToPage(6, null, 'sib_dp_pop_toc'); return false; }">Table&nbsp;of&nbsp;Contents</a>&nbsp;| <a href="/gp/reader/193609620X?ie=UTF8&amp;p=S00D#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToPage(13, null, 'sib_dp_pop_ex'); return false; }">First&nbsp;Pages</a>&nbsp;| <a href="/gp/reader/193609620X?ie=UTF8&amp;p=S041#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToPage(145, null, 'sib_dp_pop_idx'); return false; }">Index</a>&nbsp;| <a href="/gp/reader/193609620X?ie=UTF8&amp;p=S042#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToPage(146, null, 'sib_dp_pop_bc'); return false; }">Back&nbsp;Cover</a>&nbsp;| <a href="/gp/reader/193609620X?ie=UTF8&amp;p=random#reader-link" onclick="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToRandomPage('sib_dp_pop_sup'); return false; }">Surprise&nbsp;Me!</a>
2608
+ </div><div class='sitb-pop-search'>
2609
+
2610
+ <form name='strip_form' method='GET' style='margin-top:0px; margin-bottom:
2611
+ 0px; padding-bottom: 0px' action='/gp/reader/193609620X' onsubmit="if (typeof(SitbReader) != 'undefined') { SitbReader.LightboxActions.openReaderToSearchResults(jQuery('#sitb-pop-inputbox').val(), 'sib_dp_srch_pop'); return false; }">
2612
+ <input type="hidden" name="v" value="search-inside" />
2613
+ <table width="100%" cellspacing=0 ><tr>
2614
+ <td class="tinypopup">Search Inside This Book:</td>
2615
+ <td><input id="sitb-pop-inputbox" class="sitb-pop-inputbox" name="keywords" value="" /></td>
2616
+ <td><input type="image" src="http://g-ecx.images-amazon.com/images/G/01/search-browse/dp-popover-go-button._V156409071_.png" width="21" alt="Go!" value="Go!" name="go" height="21" border="0" /></td>
2617
+ </tr>
2618
+ </table>
2619
+ </form>
2620
+ </div>
2621
+ </div>
2622
+ <script>
2623
+ function sitb_doHide () { return false; } /*Stubbed out for AmazonFamily package*/
2624
+ function sitb_showLayer() { return false; }
2625
+ amznJQ.available('popover', function(){
2626
+ jQuery('div#main-image-wrapper').amazonPopoverTrigger({
2627
+ localContent: "#sitb-pop",
2628
+ showOnHover: true,
2629
+ showCloseButton: false,
2630
+ hoverShowDelay: 500,
2631
+ hoverHideDelay: 300,
2632
+ width: 370,
2633
+ location: "left",
2634
+ locationOffset: [400,60]
2635
+ });
2636
+ });
2637
+ </script>
2638
+
2639
+ <div id="view_to_purchase-sims-feature" class="display-heading-left use-beacon-styles">
2640
+ <a name="view_to_purchase"></a>
2641
+ <hr noshade="true" size="1" class="bucketDivider">
2642
+ <div class="bucket">
2643
+ <div class="simsWrapper auiTestWrapper">
2644
+ <div class="shoveler" id="view_to_purchaseShvl">
2645
+ <div class="shoveler-heading">
2646
+ <h2>Customers Also Bought These Items in Other Departments</h2>
2647
+
2648
+ </div>
2649
+
2650
+ <div class="shoveler-pagination" style="display:none">
2651
+ <span>&nbsp;</span>
2652
+ <span>
2653
+ Page <span class="page-number"></span> of <span class="num-pages"></span>
2654
+ <span class="start-over"><span class="a-text-separator"></span><a href="#" onclick="return false;" class="start-over-link">Start over</a></span>
2655
+ </span>
2656
+ </div>
2657
+ <div class="shoveler-button-wrapper" id="view_to_purchaseButtonWrapper">
2658
+ <a class="back-button" href="#Back" style="display:none" onclick="return false;"><span class="auiTestSprite s_shvlBack"><span>Back</span></span></a>
2659
+ <div class="shoveler-content">
2660
+ <ul tabindex="-1">
2661
+ <li>
2662
+ <div class="new-faceout p13nimp" id="view_to_purchase_B000WUXO4W" data-asin="B000WUXO4W" data-ref="pd_vtp_b_1">
2663
+
2664
+ <a href="/Clover-Knitting-Stitch-Counter-Kacha-Kacha/dp/B000WUXO4W" class="sim-img-title" > <div class="product-image">
2665
+ <img src="http://ecx.images-amazon.com/images/I/41uGMhptXkL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2666
+ </div>
2667
+ Clover Knitting Stitch Counter Mini Kacha-Kacha </a>
2668
+ <div class="rating-price">
2669
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B000WUXO4W"><a href="http://www.amazon.com/Clover-Knitting-Stitch-Counter-Kacha-Kacha/product-reviews/B000WUXO4W"><span class="auiTestSprite s_star_4_5 " title="4.7 out of 5 stars" ><span>4.7 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Clover-Knitting-Stitch-Counter-Kacha-Kacha/product-reviews/B000WUXO4W">80</a>)</span></span>
2670
+ </div>
2671
+ <div class="pricetext">
2672
+ <span class="price">$7.97</span>
2673
+ </div>
2674
+ </div>
2675
+ </li>
2676
+ <li>
2677
+ <div class="new-faceout p13nimp" id="view_to_purchase_B009BS32RU" data-asin="B009BS32RU" data-ref="pd_vtp_b_2">
2678
+
2679
+ <a href="/Noro-Pattern-Book-Love-Ellison/dp/B009BS32RU" class="sim-img-title" > <div class="product-image">
2680
+ <img src="http://ecx.images-amazon.com/images/I/51gVnDQJQsL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2681
+ </div>
2682
+ Noro Pattern Book Love by Jane Ellison </a>
2683
+ <div class="rating-price">
2684
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B009BS32RU"><a href="http://www.amazon.com/Noro-Pattern-Book-Love-Ellison/product-reviews/B009BS32RU"><span class="auiTestSprite s_star_4_5 " title="4.6 out of 5 stars" ><span>4.6 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Noro-Pattern-Book-Love-Ellison/product-reviews/B009BS32RU">5</a>)</span></span>
2685
+ </div>
2686
+ <div class="pricetext">
2687
+ <span class="price">$18.95</span>
2688
+ </div>
2689
+ </div>
2690
+ </li>
2691
+ <li>
2692
+ <div class="new-faceout p13nimp" id="view_to_purchase_B00114Q79C" data-asin="B00114Q79C" data-ref="pd_vtp_b_3">
2693
+
2694
+ <a href="/Clover-Soft-Stitch-Ring-Markers/dp/B00114Q79C" class="sim-img-title" > <div class="product-image">
2695
+ <img src="http://ecx.images-amazon.com/images/I/41dLl7DTuDL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2696
+ </div>
2697
+ Clover Soft Stitch Ring Markers </a>
2698
+ <div class="rating-price">
2699
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B00114Q79C"><a href="http://www.amazon.com/Clover-Soft-Stitch-Ring-Markers/product-reviews/B00114Q79C"><span class="auiTestSprite s_star_4_5 " title="4.5 out of 5 stars" ><span>4.5 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Clover-Soft-Stitch-Ring-Markers/product-reviews/B00114Q79C">20</a>)</span></span>
2700
+ </div>
2701
+ <div class="pricetext">
2702
+ <span class="price">$5.00</span>
2703
+ </div>
2704
+ </div>
2705
+ </li>
2706
+ <li>
2707
+ <div class="new-faceout p13nimp" id="view_to_purchase_B006H7QXMO" data-asin="B006H7QXMO" data-ref="pd_vtp_b_4">
2708
+
2709
+ <a href="/Knitters-Pride-Dreamz-Interchangeable-Knitting/dp/B006H7QXMO" class="sim-img-title" > <div class="product-image">
2710
+ <img src="http://ecx.images-amazon.com/images/I/41ePEhUWyzL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2711
+ </div>
2712
+ Knitter&#39;s Pride Dreamz Deluxe Interchangeable Long Tip Knitting Needle Set </a>
2713
+ <div class="rating-price">
2714
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B006H7QXMO"><a href="http://www.amazon.com/Knitters-Pride-Dreamz-Interchangeable-Knitting/product-reviews/B006H7QXMO"><span class="auiTestSprite s_star_4_5 " title="4.7 out of 5 stars" ><span>4.7 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Knitters-Pride-Dreamz-Interchangeable-Knitting/product-reviews/B006H7QXMO">69</a>)</span></span>
2715
+ </div>
2716
+ <div class="pricetext">
2717
+ <span class="price">$64.95</span>
2718
+ </div>
2719
+ </div>
2720
+ </li>
2721
+ <li>
2722
+ <div class="new-faceout p13nimp" id="view_to_purchase_B002HRAFLS" data-asin="B002HRAFLS" data-ref="pd_vtp_b_5">
2723
+
2724
+ <a href="/Protectors-Stoppers-Knitting-Needles-6-Piece/dp/B002HRAFLS" class="sim-img-title" > <div class="product-image">
2725
+ <img src="http://ecx.images-amazon.com/images/I/51hW9H7uQ8L._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2726
+ </div>
2727
+ <span title="Point Protectors and Stoppers for Knitting Needles Size #0-10-1/2 Aqua/Pink, 6-Piece">Point Protectors and Stoppers for Knitting Needles Size #0-10-1/2 Aqua / Pink, 6-Piece</span> </a>
2728
+ <div class="rating-price">
2729
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B002HRAFLS"><a href="http://www.amazon.com/Protectors-Stoppers-Knitting-Needles-6-Piece/product-reviews/B002HRAFLS"><span class="auiTestSprite s_star_4_5 " title="4.7 out of 5 stars" ><span>4.7 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Protectors-Stoppers-Knitting-Needles-6-Piece/product-reviews/B002HRAFLS">20</a>)</span></span>
2730
+ </div>
2731
+ <div class="pricetext">
2732
+ <span class="price">$5.00</span>
2733
+ </div>
2734
+ </div>
2735
+ </li>
2736
+ <li>
2737
+ <div class="new-faceout p13nimp" id="view_to_purchase_B009D4H3XG" data-asin="B009D4H3XG" data-ref="pd_vtp_b_6">
2738
+
2739
+ <a href="/Noro-Silk-Garden-211-Blue-Magenta-Green-Brown/dp/B009D4H3XG" class="sim-img-title" > <div class="product-image">
2740
+ <img src="http://ecx.images-amazon.com/images/I/61NKC3IXSsL._SL500_SS100_.jpg" width="100" alt="" height="100" border="0" />
2741
+ </div>
2742
+ Noro Silk Garden, 211 - Blue-Magenta-Green-Brown </a>
2743
+ <div class="rating-price">
2744
+ <span class="rating-stars"><span class="crAvgStars" style="white-space:no-wrap;"><span class="asinReviewsSummary" name="B009D4H3XG"><a href="http://www.amazon.com/Noro-Silk-Garden-211-Blue-Magenta-Green-Brown/product-reviews/B009D4H3XG"><span class="auiTestSprite s_star_5_0 " title="4.8 out of 5 stars" ><span>4.8 out of 5 stars</span></span></a>&nbsp;</span>(<a href="http://www.amazon.com/Noro-Silk-Garden-211-Blue-Magenta-Green-Brown/product-reviews/B009D4H3XG">4</a>)</span></span>
2745
+ </div>
2746
+ <div class="pricetext">
2747
+ <span class="price">$9.95</span>
2748
+ </div>
2749
+ </div>
2750
+ </li>
2751
+ </ul>
2752
+ </div>
2753
+ <a class="next-button" href="#Next" style="display:none" onclick="return false;"><span class="auiTestSprite s_shvlNext"><span>Next</span></span></a>
2754
+ </div>
2755
+ </div>
2756
+ <div id="view_to_purchaseSimsData" class="sims-data" style="display:none" data-baseAsin="193609620X" data-featureId="pd_vtp" data-pageId="193609620X" data-reftag="pd_vtp_b" data-vt="193609620X" data-wdg="book_display_on_website" data-widgetName="view_to_purchase">B000WUXO4W,B009BS32RU,B00114Q79C,B006H7QXMO,B002HRAFLS,B009D4H3XG,B001IZHNU6,B00CQ8LW92,B001L8DL4C,B004N36G58,B000QHDB2G,B006U33LC0,B00CP8Z0UA,B0019KBTYG,B000IG7TQY,B000WZ6QUQ,B008S0HCNM,B00114561C,B003IEEM0Y,B000IG1I8O,B0027A03PS,B00007AYH7,B001K58Q4Q,B00114M20A,B001YI2RTY,B000WV1X8A</div>
2757
+ </div>
2758
+ </div>
2759
+ </div>
2760
+ <div style="display:none;" class="p13n-session" data-marketplaceId="ATVPDKIKX0DER" data-mkt="US" data-pageId="193609620X" data-requestId="092063X86M9YY90XVEJP" data-session="000-0000000-0000000"></div>
2761
+
2762
+ <hr noshade="noshade" size="1" class="bucketDivider" />
2763
+ <div class="bucket">
2764
+ <h2>
2765
+ Sell a Digital Version of This Book in the Kindle Store
2766
+ </h2>
2767
+ <div class="content">
2768
+ If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store.
2769
+ <a href="/gp/redirect.html?_encoding=UTF8&amp;location=http%3A%2F%2Fkdp.amazon.com%2Fself-publishing%2Fsignin%3Flanguage%3Den_US&amp;token=4390D1E24C734C33C2AD170EF0D21D29165B355E">Learn more</a>
2770
+ </div>
2771
+ </div>
2772
+ <table border="0" cellpadding="0" cellspacing="0" align="right">
2773
+ <tr><td valign="top" width="100%"></td></tr></table>
2774
+
2775
+ <noscript>
2776
+ </noscript>
2777
+ <div id="cf-forums-empty-cel" class="celwidget">
2778
+ <hr class="bucketDivider" size="1" noshade="noshade">
2779
+ <a name="CustomerDiscussions"></a>
2780
+ <div class="cmPage">
2781
+ <div class="customerForumsBucket">
2782
+ <div class="cfBucketTitle">
2783
+ <h2>Forums</h2>
2784
+ </div>
2785
+ <div class="cfNoDiscussionsBucket">
2786
+ <div class="cfNoDiscussionsHeading">
2787
+ There are no discussions about this product yet.
2788
+ </div>
2789
+ <div class="cfNoDiscussionsStartNew">
2790
+ <div class="cfNoDiscussionsCTA">
2791
+ Be the first to discuss this product with the community.
2792
+ </div>
2793
+ <div class="cfPostButton">
2794
+
2795
+ <span id="startDiscussionBtn" style="display: none;">
2796
+ <a href="javascript:void(0);" onclick="threadValidator.cdOpenPostBox(); return threadValidator.cdFocusPostTitle();" class="dboards-btn btn-prim border-one rounded-standard" title="Start a Discussion"><span class="btn-small txtsmall">Start a Discussion</span></a>
2797
+ </span>
2798
+ <div id="cdPostBoxExpander" class="cdStartDiscussionPostBox">
2799
+ <a id="CustomerDiscussionsPost" name="CustomerDiscussionsPost"> </a>
2800
+ <form id="cdPostBoxForm" name="cdPostBoxForm" action="https://www.amazon.com/gp/forum/update/create.html"
2801
+ method="POST" onsubmit="return threadValidator.cdCheckThreadPost(this);">
2802
+
2803
+ <input type="hidden" name="ASIN" value="193609620X" />
2804
+ <input type="hidden" name="cdBirth" value="1375332002" />
2805
+ <input type="hidden" name="cdClientIP" value="204.110.10.118" />
2806
+ <input type="hidden" name="cdSFormFields" value="ASIN:cdBirth:cdClientIP:cdSFormFields:originInstanceID:originTypeID:redirectTarget:threadType" />
2807
+ <input type="hidden" name="originInstanceID" value="193609620X" />
2808
+ <input type="hidden" name="originTypeID" value="1" />
2809
+ <input type="hidden" name="redirectTarget" value="aHR0cDovL3d3dy5hbWF6b24uY29tL0tuaXQtTm9yby1BY2Nlc3Nvcmllcy1Db2xvcmZ1bC1MaXR0bGUvZHAvMTkzNjA5NjIwWD9fZW5jb2Rpbmc9VVRGOCZjZFBhZ2U9MSZub0xMPTE" />
2810
+ <input type="hidden" name="threadType" value="Normal" />
2811
+ <input type="hidden" name="cdSecureFormToken" value="gCdloxnP9WtJsi9NtC5uZDvoyUAHl8zs88bJJ38AAAACAAAAAFH55qJyYXcAAAAA" />
2812
+ <div class="cdFormRow"
2813
+ style="padding: 0.7em 0 0.2em 0; _padding: 0.35em 0 0.1em 0;">
2814
+ <h5><em style="color:#E47911">Start a new discussion</em></h5>
2815
+ </div>
2816
+ <div class="cdFormRow">
2817
+
2818
+ </div>
2819
+ <table class="cdFormRow" cellspacing="0" cellpadding="0"
2820
+ style="padding-top: 0.3em; _padding-top: 0.15em; width: 100%">
2821
+ <tr>
2822
+ <td style="white-space: nowrap; padding-right: 0.7em;">
2823
+ Topic:
2824
+ </td>
2825
+ <td style="width: 100%; padding-right: 5px;">
2826
+ <input id="cdPostBoxTitleInput" type="text"
2827
+ maxlength="255" name="subjectText" title="Topic"
2828
+ style="width: 100%; border: 1px solid #a1bed3;"
2829
+ onclick="threadValidator.cdOpenPostBox();" onfocus="threadValidator.cdOpenPostBox();" />
2830
+ </td>
2831
+ </tr>
2832
+ </table>
2833
+ <div id="cdPostBoxBottom">
2834
+ <div class="cdFormRow" style="padding: 0.7em 0 0.2em 0; _padding: 0.35em 0 0.1em 0;">
2835
+ First post:
2836
+ </div>
2837
+ <div class="cdFormRow"
2838
+ style="padding: 0.3em 0 0.1em 0; _padding: 0.15em 0 0.1em 0;">
2839
+
2840
+ <textarea id="cdPostBoxBodyInput" class="ASINInjectorTextArea" name="bodyText" title="First post"
2841
+ style="width: 100%; border: 1px solid #a1bed3; margin-top: 0;"></textarea>
2842
+ </div>
2843
+ <div class="cdFormRow">
2844
+ <label><input type="checkbox" name="subscribeToThread" checked="checked">
2845
+ Receive e-mail when new posts are made</label>
2846
+ </div>
2847
+ <div class="cdFormRow"
2848
+ style="padding: 0.1em 0 0.3em 0; _padding: 0.1em 0 0.15em 0;">
2849
+ <div class="cdPostBoxInputs">
2850
+ <div style="float: left; text-align: center;">
2851
+ <div class="cdPromptWrapper">
2852
+ <span class="dboards-btn btn-input btn-prim rounded-standard"><input class="btn-small" type="submit" title="Post Discussion" value="Post Discussion"/></span>
2853
+ <div class="cdPromptFor">
2854
+ Prompts for sign-in
2855
+ </div>
2856
+ </div>
2857
+ &nbsp;
2858
+ </div>
2859
+ <div style="float: right;"><a href="/gp/forum/content/db-guidelines.html" target="AmazonHelp" onclick="return PopWin('/gp/forum/content/db-guidelines.html', 'AmazonHelp', 'width=500,height=600,resizable=1,scrollbars=1,toolbar=1,status=1');">Guidelines</a></div>
2860
+ <br clear="all" />
2861
+ </div>
2862
+ </div>
2863
+ </div>
2864
+ <input type="text" name="ignoreMe" title="ignoreMe" maxlength="1" style="display: none;" />
2865
+ </form>
2866
+ </div>
2867
+
2868
+ </div>
2869
+ </div>
2870
+ </div>
2871
+ </div>
2872
+ </div>
2873
+ </div>
2874
+ <script>
2875
+ amznJQ.onReady('JQuery', function() {
2876
+ threadValidator.cdOpenPostBox();
2877
+ });
2878
+ </script>
2879
+
2880
+ <div class="amabot_widget">
2881
+ <hr noshade="noshade" size="1" class="bucketDivider" />
2882
+ <div class="bucket" id="listmania" >
2883
+ <h2>Listmania!</h2>
2884
+ <div class="content">
2885
+ <table width="94%" cellpadding="0" cellspacing="0" border="0">
2886
+ <tbody>
2887
+ <tr>
2888
+ <td valign="top">
2889
+ <ul>
2890
+ <li>
2891
+ <table border="0" cellpadding="0" cellspacing="0">
2892
+ <tr>
2893
+ <td style="vertical-align: top; width: 60px">
2894
+ <a href="/Cool-Knitting-Books/lm/RWMK11X9SDE47"><img src="http://ecx.images-amazon.com/images/I/51ajLiMh2hL._AA60_.jpg" width="60" alt="Cool Knitting Books" height="60" border="0" /></a>
2895
+ </td>
2896
+ <td width="10">&nbsp;</td>
2897
+ <td>
2898
+ <a href="/Cool-Knitting-Books/lm/RWMK11X9SDE47">Cool Knitting Books</a>: A list by <a href="/gp/richpub/listmania/byauthor/A1VLAYJ95M4X0W">Heather Jean</a>
2899
+ </td>
2900
+ </tr>
2901
+ </table>
2902
+ </li>
2903
+ </ul>
2904
+ <a href="/gp/richpub/listmania/createpipeline">Create a Listmania! list</a>
2905
+ </td>
2906
+ <td width="300" valign="top">
2907
+ <div>
2908
+
2909
+ <FORM method="GET" action="/gp/community-content-search/results/ref=cm_srch_q_col_rpli/" style="padding:0; margin:0;">
2910
+ <table border="0" cellpadding="0" cellspacing="0" style="clear: both;" width="250">
2911
+ <tr>
2912
+ <td colspan="2" nowrap="nowrap" style="text-align:left;">
2913
+ <label for="search_col_rpli"><b class="h3color">Search Listmania!</b></label>
2914
+ </td>
2915
+ </tr>
2916
+ <tr>
2917
+ <td style="width: 100%">
2918
+ <input id="search_col_rpli" class="tiny" style="width: 100%;" type="text" name="query" value=""/>
2919
+ <input type="hidden" name="search-alias" value="rp-listmania"/>
2920
+
2921
+ </td>
2922
+ <td style="padding-left: 5px;"><input type="image" title="Go" alt="Go" border="0" class="swSprite s_goTan " id="" value="" name="Go" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" /></td>
2923
+ </tr>
2924
+ </table>
2925
+ </FORM>
2926
+ </div>
2927
+ </td>
2928
+ </tr>
2929
+ </tbody>
2930
+ </table>
2931
+ </div>
2932
+ </div>
2933
+ </div>
2934
+
2935
+ <div class="amabot_widget">
2936
+ <hr noshade="noshade" size="1" class="bucketDivider" />
2937
+ <div class="bucket" id="sylt" >
2938
+ <h2>So You'd Like to...</h2>
2939
+ <div class="content">
2940
+ <table width="94%" cellpadding="0" cellspacing="0" border="0">
2941
+ <tbody>
2942
+ <tr>
2943
+ <td valign="top">
2944
+ <ul>
2945
+
2946
+ </ul>
2947
+ <a href="/gp/richpub/syltguides/create"><img src="http://g-ecx.images-amazon.com/images/G/01/x-locale/customers/guides/create_a_guide._V192250666_.gif" width="147" height="79" border="0" /><br />Create a guide</a>
2948
+ </td>
2949
+ <td width="300" valign="top">
2950
+ <div>
2951
+ <FORM method="GET" action="/gp/community-content-search/results/ref=cm_srch_q_col_rpsy/" style="padding:0; margin:0;">
2952
+ <table border="0" cellpadding="0" cellspacing="0" style="clear: both;" width="250">
2953
+ <tr>
2954
+ <td colspan="2" nowrap="nowrap" style="text-align:left;">
2955
+ <label for="search_col_rpsy"><b class="h3color">Search Guides</b></label>
2956
+ </td>
2957
+ </tr>
2958
+ <tr>
2959
+ <td style="width: 100%">
2960
+ <input id="search_col_rpsy" class="tiny" style="width: 100%;" type="text" name="query" value=""/>
2961
+ <input type="hidden" name="search-alias" value="rp-sylt"/>
2962
+
2963
+ </td>
2964
+ <td style="padding-left: 5px;"><input type="image" title="Go" alt="Go" border="0" class="swSprite s_goTan " id="" value="" name="Go" src="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V386942464_.gif" /></td>
2965
+ </tr>
2966
+ </table>
2967
+ </FORM>
2968
+ </div>
2969
+ </td>
2970
+ </tr>
2971
+ </tbody>
2972
+ </table>
2973
+ </div>
2974
+ </div>
2975
+ </div>
2976
+
2977
+ <br />
2978
+
2979
+ <hr noshade="noshade" size="1" class="bucketDivider" />
2980
+ <div class="bucket">
2981
+ <h2>Look for Similar Items by Category</h2>
2982
+
2983
+ <div class="content">
2984
+ <ul>
2985
+ <li><a href="/books-used-books-textbooks/b?ie=UTF8&amp;node=283155">Books</a> > <a href="/Home-Garden-Books/b?ie=UTF8&amp;node=48">Crafts, Hobbies & Home</a> > <a href="/Crafts-Hobbies-Home-Garden-Books/b?ie=UTF8&amp;node=5126">Crafts & Hobbies</a> > <a href="/Needlecrafts-Crafts-Hobbies-Books/b?ie=UTF8&amp;node=13998731">Needlecrafts & Textile Crafts</a> > <a href="/Knitting-Crafts-Hobbies-Books/b?ie=UTF8&amp;node=5148">Knitting</a></li>
2986
+ </ul>
2987
+ </div>
2988
+ </div>
2989
+ <div class="unified_widget rcmBody"><hr><b>Want to discover more products? </b>You may find many from <a href="/gp/feature.html?ie=UTF8&docId=1001157651">noro yarn</a> shopping list.
2990
+ <div class="h_rule"></div></div>
2991
+
2992
+ <div id="navFooter" role="contentinfo"><table class="navFooterVerticalColumn" cellspacing="0" align="center"><tr><td class="navFooterLinkCol"><div class="navFooterColHead">Get to Know Us</div><ul><li class="nav_first"><a href="/gp/jobs" class="nav_a">Careers</a></li><li><a href="/gp/redirect.html?_encoding=UTF8&amp;location=http%3A%2F%2Fphx.corporate-ir.net%2Fphoenix.zhtml%3Fc%3D97664%26p%3Dirol-irhome&amp;token=F9CAD8A11D4336B5E0B3C3B089FA066D0A467C1C" class="nav_a">Investor Relations</a></li><li><a href="/gp/redirect.html?_encoding=UTF8&amp;location=http%3A%2F%2Fphx.corporate-ir.net%2Fphoenix.zhtml%3Fc%3D176060%26p%3Dirol-mediaHome&amp;token=F9CAD8A11D4336B5E0B3C3B089FA066D0A467C1C" class="nav_a">Press Releases</a></li><li><a href="/b?ie=UTF8&amp;node=13786321" class="nav_a">Amazon and Our Planet</a></li><li class="nav_last"><a href="/b?ie=UTF8&amp;node=13786411" class="nav_a">Amazon in the Community</a></li></ul></td><td class="navFooterColSpacerInner"></td><td class="navFooterLinkCol"><div class="navFooterColHead">Make Money with Us</div><ul><li class="nav_first"><a href="/gp/redirect.html?_encoding=UTF8&amp;location=http%3A%2F%2Fwww.amazonservices.com%2Fcontent%2Fsell-on-amazon.htm%2Fref%3Dfooter_soa%3Fld%3DAZFSSOA&amp;token=1E60AB4AC0ECCA00151B45353E21782E539DC601" class="nav_a">Sell on Amazon</a></li><li><a href="https://affiliate-program.amazon.com" class="nav_a">Become an Affiliate</a></li><li><a href="http://services.amazon.com/content/product-ads-on-amazon.htm/ref=footer_pads?ld=AZPADSFooter" class="nav_a">Advertise Your Products</a></li><li><a href="/gp/seller-account/mm-summary-page.html?ie=UTF8&amp;ld=AZFooterSelfPublish&amp;topic=200260520" class="nav_a">Independently Publish with Us</a></li><li class="nav_last nav_a_carat"><span class="nav_a_carat">&rsaquo;</span><a href="/gp/seller-account/mm-landing.html?ie=UTF8&amp;ld=AZSOAviewallMakeM" class="nav_a">See all</a></li></ul></td><td class="navFooterColSpacerInner"></td><td class="navFooterLinkCol"><div class="navFooterColHead">Let Us Help You</div><ul><li class="nav_first"><a href="https://www.amazon.com/gp/css/homepage.html" class="nav_a">Your Account</a></li><li><a href="/gp/help/customer/display.html?ie=UTF8&amp;nodeId=468520" class="nav_a">Shipping Rates & Policies</a></li><li><a href="/gp/prime" class="nav_a">Amazon Prime</a></li><li><a href="/gp/css/returns/homepage.html" class="nav_a">Returns Are Easy</a></li><li><a href="/gp/digital/fiona/manage" class="nav_a">Manage Your Kindle</a></li><li class="nav_last"><a href="/gp/help/customer/display.html?ie=UTF8&amp;nodeId=508510" class="nav_a">Help</a></li></ul></td></tr></table>
2993
+ <div class="navFooterLine navFooterLogoLine"><a href="/"><img src="http://g-ecx.images-amazon.com/images/G/01/gno/images/general/navAmazonLogoFooter._V169459313_.gif" width="126" alt="amazon.com" height="24" border="0" /></a></div>
2994
+ <div class="navFooterLine navFooterLinkLine navFooterPadItemLine"><ul><li class="nav_first"><a href="http://www.amazon.com.br" class="nav_a">Brazil</a></li><li><a href="http://www.amazon.ca/" class="nav_a">Canada</a></li><li><a href="http://www.amazon.cn/" class="nav_a">China</a></li><li><a href="http://www.amazon.fr/" class="nav_a">France</a></li><li><a href="http://www.amazon.de/" class="nav_a">Germany</a></li><li><a href="http://www.amazon.in/" class="nav_a">India</a></li><li><a href="http://www.amazon.it/" class="nav_a">Italy</a></li><li><a href="http://www.amazon.co.jp/" class="nav_a">Japan</a></li><li><a href="http://www.amazon.es/" class="nav_a">Spain</a></li><li class="nav_last"><a href="http://www.amazon.co.uk/" class="nav_a">United Kingdom</a></li></ul></div>
2995
+ <div class="navFooterLine navFooterLinkLine navFooterDescLine"><table cellspacing="0"><tr>
2996
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
2997
+ <td class="navFooterDescItem"><a href="http://www.6pm.com/" class="nav_a">6pm<br/> <span class="navFooterDescText">Score deals<br/> on fashion brands</span></a></td>
2998
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
2999
+ <td class="navFooterDescItem"><a href="http://www.abebooks.com/" class="nav_a">AbeBooks<br/> <span class="navFooterDescText">Rare Books<br/> & Textbooks</span></a></td>
3000
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3001
+ <td class="navFooterDescItem"><a href="http://www.afterschool.com/" class="nav_a">AfterSchool.com<br/> <span class="navFooterDescText">Kids� Sports, Outdoor<br/> & Dance Gear</span></a></td>
3002
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3003
+ <td class="navFooterDescItem"><a href="http://fresh.amazon.com" class="nav_a">AmazonFresh<br/> <span class="navFooterDescText">Groceries & More<br/> Right To Your Door</span></a></td>
3004
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3005
+ <td class="navFooterDescItem"><a href="http://amazonlocal.com/" class="nav_a">AmazonLocal<br/> <span class="navFooterDescText">Great Local Deals<br/> in Your City</span></a></td>
3006
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3007
+ <td class="navFooterDescItem"><a href="http://www.amazonsupply.com/" class="nav_a">AmazonSupply<br/> <span class="navFooterDescText">Business, Industrial<br/> & Scientific Supplies</span></a></td>
3008
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3009
+ <td class="navFooterDescItem"><a href="http://aws.amazon.com/" class="nav_a">AmazonWebServices<br/> <span class="navFooterDescText">Scalable<br/> Cloud Services</span></a></td>
3010
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3011
+ <td class="navFooterDescItem"><a href="http://askville.amazon.com/" class="nav_a">Askville<br/> <span class="navFooterDescText">Community<br/> Answers</span></a></td>
3012
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3013
+ </tr>
3014
+ <tr><td>&nbsp;</td></tr>
3015
+ <tr>
3016
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3017
+ <td class="navFooterDescItem"><a href="http://www.audible.com/" class="nav_a">Audible<br/> <span class="navFooterDescText">Download<br/> Audio Books</span></a></td>
3018
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3019
+ <td class="navFooterDescItem"><a href="http://www.beautybar.com/" class="nav_a">BeautyBar.com<br/> <span class="navFooterDescText">Prestige Beauty<br/> Delivered</span></a></td>
3020
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3021
+ <td class="navFooterDescItem"><a href="http://www.bookdepository.com/" class="nav_a">Book Depository<br/> <span class="navFooterDescText">Books With Free<br/> Delivery Worldwide</span></a></td>
3022
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3023
+ <td class="navFooterDescItem"><a href="http://www.bookworm.com" class="nav_a">Bookworm.com<br/> <span class="navFooterDescText">Books For Children<br/> Of All Ages</span></a></td>
3024
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3025
+ <td class="navFooterDescItem"><a href="http://www.casa.com/" class="nav_a">Casa.com<br/> <span class="navFooterDescText">Kitchen, Storage<br/> & Everything Home</span></a></td>
3026
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3027
+ <td class="navFooterDescItem"><a href="http://www.createspace.com/" class="nav_a">CreateSpace<br/> <span class="navFooterDescText">Indie Print Publishing<br/> Made Easy</span></a></td>
3028
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3029
+ <td class="navFooterDescItem"><a href="http://www.diapers.com/" class="nav_a">Diapers.com<br/> <span class="navFooterDescText">Everything<br/> But The Baby</span></a></td>
3030
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3031
+ <td class="navFooterDescItem"><a href="http://www.dpreview.com/" class="nav_a">DPReview<br/> <span class="navFooterDescText">Digital<br/> Photography</span></a></td>
3032
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3033
+ </tr>
3034
+ <tr><td>&nbsp;</td></tr>
3035
+ <tr>
3036
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3037
+ <td class="navFooterDescItem"><a href="http://www.fabric.com/" class="nav_a">Fabric<br/> <span class="navFooterDescText">Sewing, Quilting<br/> & Knitting</span></a></td>
3038
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3039
+ <td class="navFooterDescItem"><a href="http://www.imdb.com/" class="nav_a">IMDb<br/> <span class="navFooterDescText">Movies, TV<br/> & Celebrities</span></a></td>
3040
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3041
+ <td class="navFooterDescItem"><a href="http://www.junglee.com/" class="nav_a">Junglee.com<br/> <span class="navFooterDescText">Shop Online<br/> in India</span></a></td>
3042
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3043
+ <td class="navFooterDescItem"><a href="http://kdp.amazon.com/" class="nav_a">Kindle Direct Publishing<br/> <span class="navFooterDescText">Indie Digital Publishing<br/> Made Easy
3044
+ </span></a></td>
3045
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3046
+ <td class="navFooterDescItem"><a href="http://www.look.com/" class="nav_a">Look.com<br/> <span class="navFooterDescText">Kids' Clothing<br/> & Shoes</span></a></td>
3047
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3048
+ <td class="navFooterDescItem"><a href="http://www.myhabit.com/" class="nav_a">MYHABIT<br/> <span class="navFooterDescText">Private Fashion<br/> Designer Sales</span></a></td>
3049
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3050
+ <td class="navFooterDescItem"><a href="http://www.shopbop.com/welcome" class="nav_a">Shopbop<br/> <span class="navFooterDescText">Designer<br/> Fashion Brands</span></a></td>
3051
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3052
+ <td class="navFooterDescItem"><a href="http://www.soap.com/" class="nav_a">Soap.com<br/> <span class="navFooterDescText">Health, Beauty &<br/> Home Essentials</span></a></td>
3053
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3054
+ </tr>
3055
+ <tr><td>&nbsp;</td></tr>
3056
+ <tr>
3057
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3058
+ <td class="navFooterDescItem">&nbsp;</td>
3059
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3060
+ <td class="navFooterDescItem"><a href="http://www.vine.com/" class="nav_a">Vine.com<br/> <span class="navFooterDescText">Everything<br/> to Live Life Green</span></a></td>
3061
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3062
+ <td class="navFooterDescItem"><a href="http://www.wag.com/" class="nav_a">Wag.com<br/> <span class="navFooterDescText">Everything<br/> For Your Pet</span></a></td>
3063
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3064
+ <td class="navFooterDescItem"><a href="/b?ie=UTF8&amp;node=1267877011" class="nav_a">Warehouse Deals<br/> <span class="navFooterDescText">Open-Box<br/> Discounts</span></a></td>
3065
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3066
+ <td class="navFooterDescItem"><a href="http://www.woot.com/" class="nav_a">Woot<br/> <span class="navFooterDescText">Never Gonna<br/> Give You Up</span></a></td>
3067
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3068
+ <td class="navFooterDescItem"><a href="http://www.yoyo.com/" class="nav_a">Yoyo.com<br/> <span class="navFooterDescText">A Happy Place<br/> To Shop For Toys</span></a></td>
3069
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3070
+ <td class="navFooterDescItem"><a href="http://www.zappos.com/c/top-searches" class="nav_a">Zappos<br/> <span class="navFooterDescText">Shoes &<br/> Clothing</span></a></td>
3071
+ <td class="navFooterDescSpacer" style="width: 4%"></td>
3072
+ <td class="navFooterDescItem">&nbsp;</td>
3073
+ <td class="navFooterDescSpacer" style="width: 36.0%"></td>
3074
+ </tr>
3075
+ </table></div>
3076
+ <div class="navFooterLine navFooterLinkLine navFooterPadItemLine"><ul><li class="nav_first"><a href="/gp/help/customer/display.html?ie=UTF8&amp;nodeId=508088" class="nav_a">Conditions of Use</a></li><li><a href="/gp/help/customer/display.html?ie=UTF8&amp;nodeId=468496" class="nav_a">Privacy Notice</a></li><li><a href="/interestbasedads" class="nav_a">Interest-Based Ads</a></li><li class="nav_last">� 1996-2013, Amazon.com, Inc. or its affiliates</li></ul></div>
3077
+ </div>
3078
+ <!-- whfh-IoGvLPMgrrZY3G4SVNULNVzOsjEEQHxTrCiiQqBxx8Dss9PVeDE+3PQIV9gCXbEf rid-092063X86M9YY90XVEJP -->
3079
+ <div id="sis_pixel_r2"></div><script>(function(a,b){a.attachEvent?a.attachEvent("onload",b):a.addEventListener&&a.addEventListener("load",b,!1)})(window,function(){setTimeout(function(){var el=document.getElementById("sis_pixel_r2");el&&(el.innerHTML='<iframe id="DAsis" src="//s.amazon-adsystem.com/iu3?d=amazon.com&slot=navFooter&a2=0101a1823ca3d5d46ce03d4502edf28f095b20f780c29eddcddebefb2933fa9c1e98&old_oo=0&cb=1375332002178" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>')},300)});</script>
3080
+ <!--AMZNJQFINAL-->
3081
+
3082
+ <div id="amznCompressDiv">
3083
+ </div>
3084
+ <script type="text/javascript">
3085
+ if (window.amznJQ) {
3086
+ amznJQ.onReady('jQuery', function () {
3087
+ document.cookie="GZ=0;path=/";
3088
+ setTimeout(function() {
3089
+ jQuery('#amznCompressDiv').append('<iframe id="amznCompressIframe" width="0" height="0" frameborder="0" style="display:none"> </iframe>');
3090
+ jQuery('#amznCompressIframe').attr('src', '/gp/compression/base/detail');
3091
+ }, 3000);
3092
+ });
3093
+ }
3094
+ </script>
3095
+
3096
+ </div>
3097
+ </body>
3098
+ </html>