beway 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -298,12 +298,12 @@ parsing method, returns a string
298
298
  <div class="method-source-code"
299
299
  id="auction-number-source">
300
300
  <pre>
301
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 112</span>
302
- 112: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">auction_number</span>
303
- 113: <span class="ruby-identifier">canonical_url_node</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_css</span>(<span class="ruby-value str">'link[@rel = &quot;canonical&quot;]'</span>)
304
- 114: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find canonical URL&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">canonical_url_node</span>
305
- 115: <span class="ruby-identifier">canonical_url_node</span>.<span class="ruby-identifier">attr</span>(<span class="ruby-value str">'href'</span>)[<span class="ruby-regexp re">/\d+$/</span>]
306
- 116: <span class="ruby-keyword kw">end</span></pre>
301
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 125</span>
302
+ 125: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">auction_number</span>
303
+ 126: <span class="ruby-identifier">canonical_url_node</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_css</span>(<span class="ruby-value str">'link[@rel = &quot;canonical&quot;]'</span>)
304
+ 127: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find canonical URL&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">canonical_url_node</span>
305
+ 128: <span class="ruby-identifier">canonical_url_node</span>.<span class="ruby-identifier">attr</span>(<span class="ruby-value str">'href'</span>)[<span class="ruby-regexp re">/\d+$/</span>]
306
+ 129: <span class="ruby-keyword kw">end</span></pre>
307
307
  </div>
308
308
 
309
309
  </div>
@@ -467,18 +467,18 @@ parsing method, returns a Time object
467
467
  <div class="method-source-code"
468
468
  id="end-time-source">
469
469
  <pre>
470
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 99</span>
471
- 99: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">end_time</span>
472
- 100: <span class="ruby-identifier">text</span> = <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">time_node</span>)
473
- 101: <span class="ruby-identifier">md</span> = <span class="ruby-identifier">text</span>.<span class="ruby-identifier">match</span>(<span class="ruby-regexp re">/\(([^)]*)\)/</span>)
474
- 102: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">md</span>
475
- 103: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">md</span>[<span class="ruby-value">1</span>]
476
- 104: <span class="ruby-keyword kw">else</span>
477
- 105: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">text</span>
478
- 106: <span class="ruby-keyword kw">end</span>
479
- 107: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_str</span>
480
- 108: <span class="ruby-constant">Time</span>.<span class="ruby-identifier">parse</span>(<span class="ruby-identifier">time_str</span>)
481
- 109: <span class="ruby-keyword kw">end</span></pre>
470
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 112</span>
471
+ 112: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">end_time</span>
472
+ 113: <span class="ruby-identifier">text</span> = <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">time_node</span>)
473
+ 114: <span class="ruby-identifier">md</span> = <span class="ruby-identifier">text</span>.<span class="ruby-identifier">match</span>(<span class="ruby-regexp re">/\(([^)]*)\)/</span>)
474
+ 115: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">md</span>
475
+ 116: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">md</span>[<span class="ruby-value">1</span>]
476
+ 117: <span class="ruby-keyword kw">else</span>
477
+ 118: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">text</span>
478
+ 119: <span class="ruby-keyword kw">end</span>
479
+ 120: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_str</span>
480
+ 121: <span class="ruby-constant">Time</span>.<span class="ruby-identifier">parse</span>(<span class="ruby-identifier">time_str</span>)
481
+ 122: <span class="ruby-keyword kw">end</span></pre>
482
482
  </div>
483
483
 
484
484
  </div>
@@ -511,11 +511,11 @@ parsming method, returns boolean
511
511
  <div class="method-source-code"
512
512
  id="has-bid-button--source">
513
513
  <pre>
514
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 119</span>
515
- 119: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">has_bid_button?</span>
516
- 120: <span class="ruby-identifier">place_bid_button</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">'//form//input[@value=&quot;Place bid&quot;]'</span>)
517
- 121: <span class="ruby-keyword kw">return</span> (<span class="ruby-identifier">place_bid_button</span>.<span class="ruby-identifier">nil?</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword kw">false</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">true</span>
518
- 122: <span class="ruby-keyword kw">end</span></pre>
514
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 132</span>
515
+ 132: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">has_bid_button?</span>
516
+ 133: <span class="ruby-identifier">place_bid_button</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">'//form//input[@value=&quot;Place bid&quot;]'</span>)
517
+ 134: <span class="ruby-keyword kw">return</span> (<span class="ruby-identifier">place_bid_button</span>.<span class="ruby-identifier">nil?</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword kw">false</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">true</span>
518
+ 135: <span class="ruby-keyword kw">end</span></pre>
519
519
  </div>
520
520
 
521
521
  </div>
@@ -548,18 +548,18 @@ parsing method, returns a float
548
548
  <div class="method-source-code"
549
549
  id="min-bid-source">
550
550
  <pre>
551
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 86</span>
552
- 86: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">min_bid</span>
553
- 87: <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">complete?</span>
554
- 88:
555
- 89: <span class="ruby-identifier">max_label</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//th/label[contains(text(),'Your max bid:')]&quot;</span>)
556
- 90: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find max bid label in document&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">max_label</span>
557
- 91: <span class="ruby-identifier">min_bid_node</span> = <span class="ruby-identifier">max_label</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">next_sibling</span>
558
- 92: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find minimum bid in document&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">min_bid_node</span>
559
- 93: <span class="ruby-identifier">md</span> = <span class="ruby-regexp re">/\(Enter ([^)]*) or more\)/</span>.<span class="ruby-identifier">match</span> <span class="ruby-identifier">min_bid_node</span>.<span class="ruby-identifier">inner_text</span>
560
- 94: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Min Bid data not in expected format&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">md</span>.<span class="ruby-identifier">nil?</span>
561
- 95: <span class="ruby-identifier">md</span>[<span class="ruby-value">1</span>][<span class="ruby-regexp re">/\d*\.\d*/</span>].<span class="ruby-identifier">to_f</span>
562
- 96: <span class="ruby-keyword kw">end</span></pre>
551
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 99</span>
552
+ 99: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">min_bid</span>
553
+ 100: <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">complete?</span>
554
+ 101:
555
+ 102: <span class="ruby-identifier">max_label</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//th/label[contains(text(),'Your max bid:')]&quot;</span>)
556
+ 103: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find max bid label in document&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">max_label</span>
557
+ 104: <span class="ruby-identifier">min_bid_node</span> = <span class="ruby-identifier">max_label</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">next_sibling</span>
558
+ 105: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find minimum bid in document&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">min_bid_node</span>
559
+ 106: <span class="ruby-identifier">md</span> = <span class="ruby-regexp re">/\(Enter ([^)]*) or more\)/</span>.<span class="ruby-identifier">match</span> <span class="ruby-identifier">min_bid_node</span>.<span class="ruby-identifier">inner_text</span>
560
+ 107: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Min Bid data not in expected format&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">md</span>.<span class="ruby-identifier">nil?</span>
561
+ 108: <span class="ruby-identifier">md</span>[<span class="ruby-value">1</span>][<span class="ruby-regexp re">/\d*\.\d*/</span>].<span class="ruby-identifier">to_f</span>
562
+ 109: <span class="ruby-keyword kw">end</span></pre>
563
563
  </div>
564
564
 
565
565
  </div>
@@ -636,11 +636,24 @@ parsing method, returns a string
636
636
  76: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">time_node</span>)
637
637
  77: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">time_str</span>[<span class="ruby-regexp re">/^[^(]*/</span>].<span class="ruby-identifier">strip</span>
638
638
  78: <span class="ruby-identifier">time_ar</span> = <span class="ruby-identifier">time_str</span>.<span class="ruby-identifier">split</span>
639
- 79: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find hour marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">1</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'h'</span>
640
- 80: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find minute marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">3</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'m'</span>
641
- 81: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find second marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">5</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'s'</span>
642
- 82: <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">0</span>] <span class="ruby-operator">+</span> <span class="ruby-value str">'h '</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">2</span>] <span class="ruby-operator">+</span> <span class="ruby-value str">'m '</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">4</span>] <span class="ruby-operator">+</span> <span class="ruby-value str">'s'</span>
643
- 83: <span class="ruby-keyword kw">end</span></pre>
639
+ 79:
640
+ 80: <span class="ruby-comment cmt"># time_ar comes to us looking like</span>
641
+ 81: <span class="ruby-comment cmt"># [&quot;2d&quot;, &quot;05h&quot;] or [&quot;0&quot;, &quot;h&quot;, &quot;12&quot;, &quot;m&quot;, &quot;5&quot;, &quot;s&quot;]</span>
642
+ 82: <span class="ruby-comment cmt"># decide which, and roll with it...</span>
643
+ 83:
644
+ 84: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">0</span>][<span class="ruby-regexp re">/^\d+d$/</span>] <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">1</span>][<span class="ruby-regexp re">/^\d+h$/</span>]
645
+ 85: <span class="ruby-comment cmt"># [&quot;2d&quot;, &quot;05h&quot;] style</span>
646
+ 86: <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">time_ar</span>.<span class="ruby-identifier">join</span>(<span class="ruby-value str">' '</span>)
647
+ 87: <span class="ruby-keyword kw">else</span>
648
+ 88: <span class="ruby-comment cmt"># assume [&quot;0&quot;, &quot;h&quot;, &quot;12&quot;, &quot;m&quot;, &quot;5&quot;, &quot;s&quot;] style</span>
649
+ 89: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find hour marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">1</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'h'</span>
650
+ 90: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find minute marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">3</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'m'</span>
651
+ 91: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Didn't find second marker where expected&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">5</span>] <span class="ruby-operator">==</span> <span class="ruby-value str">'s'</span>
652
+ 92: <span class="ruby-keyword kw">return</span> [ <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">0</span>] <span class="ruby-operator">+</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">1</span>],
653
+ 93: <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">2</span>] <span class="ruby-operator">+</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">3</span>],
654
+ 94: <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">4</span>] <span class="ruby-operator">+</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">5</span>] ].<span class="ruby-identifier">join</span>(<span class="ruby-value str">' '</span>)
655
+ 95: <span class="ruby-keyword kw">end</span>
656
+ 96: <span class="ruby-keyword kw">end</span></pre>
644
657
  </div>
645
658
 
646
659
  </div>
@@ -716,12 +729,12 @@ a string of all text nodes below n, concatenated
716
729
  <div class="method-source-code"
717
730
  id="node-text-source">
718
731
  <pre>
719
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 143</span>
720
- 143: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">n</span>)
721
- 144: <span class="ruby-identifier">t</span> = <span class="ruby-value str">''</span>
722
- 145: <span class="ruby-identifier">n</span>.<span class="ruby-identifier">traverse</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">e</span><span class="ruby-operator">|</span> <span class="ruby-identifier">t</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">' '</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">to_s</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">text?</span> }
723
- 146: <span class="ruby-identifier">t</span>.<span class="ruby-identifier">gsub</span>(<span class="ruby-regexp re">/ +/</span>, <span class="ruby-value str">' '</span>).<span class="ruby-identifier">strip</span>
724
- 147: <span class="ruby-keyword kw">end</span></pre>
732
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 156</span>
733
+ 156: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">n</span>)
734
+ 157: <span class="ruby-identifier">t</span> = <span class="ruby-value str">''</span>
735
+ 158: <span class="ruby-identifier">n</span>.<span class="ruby-identifier">traverse</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">e</span><span class="ruby-operator">|</span> <span class="ruby-identifier">t</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">' '</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">to_s</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">text?</span> }
736
+ 159: <span class="ruby-identifier">t</span>.<span class="ruby-identifier">gsub</span>(<span class="ruby-regexp re">/ +/</span>, <span class="ruby-value str">' '</span>).<span class="ruby-identifier">strip</span>
737
+ 160: <span class="ruby-keyword kw">end</span></pre>
725
738
  </div>
726
739
 
727
740
  </div>
@@ -754,21 +767,21 @@ fetch the node containing the end time
754
767
  <div class="method-source-code"
755
768
  id="time-node-source">
756
769
  <pre>
757
- <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 127</span>
758
- 127: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">time_node</span>
759
- 128: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">complete?</span>
760
- 129: <span class="ruby-identifier">td</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//td[contains(text(),'Ended:')]&quot;</span>)
761
- 130: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find ended header&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">td</span>
762
- 131: <span class="ruby-identifier">node</span> = <span class="ruby-identifier">td</span>.<span class="ruby-identifier">next_sibling</span>
763
- 132: <span class="ruby-keyword kw">else</span>
764
- 133: <span class="ruby-identifier">th</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//th[contains(text(),'Time left:')]&quot;</span>)
765
- 134: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find Time Left header&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">th</span>
766
- 135: <span class="ruby-identifier">node</span> = <span class="ruby-identifier">th</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">at_css</span>(<span class="ruby-value str">'td'</span>)
767
- 136: <span class="ruby-keyword kw">end</span>
768
- 137:
769
- 138: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find Time node&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">node</span>
770
- 139: <span class="ruby-identifier">node</span>
771
- 140: <span class="ruby-keyword kw">end</span></pre>
770
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 140</span>
771
+ 140: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">time_node</span>
772
+ 141: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">complete?</span>
773
+ 142: <span class="ruby-identifier">td</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//td[contains(text(),'Ended:')]&quot;</span>)
774
+ 143: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find ended header&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">td</span>
775
+ 144: <span class="ruby-identifier">node</span> = <span class="ruby-identifier">td</span>.<span class="ruby-identifier">next_sibling</span>
776
+ 145: <span class="ruby-keyword kw">else</span>
777
+ 146: <span class="ruby-identifier">th</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">at_xpath</span>(<span class="ruby-value str">&quot;//th[contains(text(),'Time left:')]&quot;</span>)
778
+ 147: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find Time Left header&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">th</span>
779
+ 148: <span class="ruby-identifier">node</span> = <span class="ruby-identifier">th</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">at_css</span>(<span class="ruby-value str">'td'</span>)
780
+ 149: <span class="ruby-keyword kw">end</span>
781
+ 150:
782
+ 151: <span class="ruby-identifier">raise</span> <span class="ruby-constant">AuctionParseError</span>, <span class="ruby-value str">&quot;Couldn't find Time node&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">node</span>
783
+ 152: <span class="ruby-identifier">node</span>
784
+ 153: <span class="ruby-keyword kw">end</span></pre>
772
785
  </div>
773
786
 
774
787
  </div>
@@ -1,6 +1,6 @@
1
- Wed, 05 Jan 2011 09:18:12 -0800
1
+ Wed, 05 Jan 2011 10:20:59 -0800
2
2
  README Tue, 04 Jan 2011 18:26:07 -0800
3
3
  lib/beway/ebay_data.rb Mon, 27 Dec 2010 00:14:52 -0800
4
- lib/beway/auction.rb Mon, 27 Dec 2010 00:16:00 -0800
4
+ lib/beway/auction.rb Wed, 05 Jan 2011 10:18:33 -0800
5
5
  lib/beway/cli_runner.rb Tue, 04 Jan 2011 19:10:37 -0800
6
6
  lib/beway/bidder.rb Tue, 04 Jan 2011 16:07:37 -0800
@@ -24,7 +24,7 @@
24
24
  <div id="metadata">
25
25
  <dl>
26
26
  <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2010-12-27 00:16:00 -0800</dd>
27
+ <dd class="modified-date">2011-01-05 10:18:33 -0800</dd>
28
28
 
29
29
 
30
30
  <dt class="requires">Requires</dt>
@@ -76,10 +76,23 @@ module Beway
76
76
  time_str = node_text(time_node)
77
77
  time_str = time_str[/^[^(]*/].strip
78
78
  time_ar = time_str.split
79
- raise AuctionParseError, "Didn't find hour marker where expected" unless time_ar[1] == 'h'
80
- raise AuctionParseError, "Didn't find minute marker where expected" unless time_ar[3] == 'm'
81
- raise AuctionParseError, "Didn't find second marker where expected" unless time_ar[5] == 's'
82
- time_ar[0] + 'h ' + time_ar[2] + 'm ' + time_ar[4] + 's'
79
+
80
+ # time_ar comes to us looking like
81
+ # ["2d", "05h"] or ["0", "h", "12", "m", "5", "s"]
82
+ # decide which, and roll with it...
83
+
84
+ if time_ar[0][/^\d+d$/] and time_ar[1][/^\d+h$/]
85
+ # ["2d", "05h"] style
86
+ return time_ar.join(' ')
87
+ else
88
+ # assume ["0", "h", "12", "m", "5", "s"] style
89
+ raise AuctionParseError, "Didn't find hour marker where expected" unless time_ar[1] == 'h'
90
+ raise AuctionParseError, "Didn't find minute marker where expected" unless time_ar[3] == 'm'
91
+ raise AuctionParseError, "Didn't find second marker where expected" unless time_ar[5] == 's'
92
+ return [ time_ar[0] + time_ar[1],
93
+ time_ar[2] + time_ar[3],
94
+ time_ar[4] + time_ar[5] ].join(' ')
95
+ end
83
96
  end
84
97
 
85
98
  # parsing method, returns a float
@@ -6,6 +6,15 @@ AUCTIONS_VALID = []
6
6
  AUCTIONS_BIN = []
7
7
  AUCTIONS_COMPLETE = []
8
8
 
9
+ AUCTIONS_VALID << {
10
+ :url => HTML_DIR + 'off-white-sweater.html',
11
+ :description => 'J CREW Hooded Sweater Off-White Cable Knit w Cashmere S',
12
+ :current_bid => 'US $14.99',
13
+ :min_bid => 14.99,
14
+ :time_left => '2d 05h',
15
+ :end_time => 'Jan 07, 2011 15:00:44 PST',
16
+ :auction_number => '250749861707'
17
+ }
9
18
  AUCTIONS_VALID << {
10
19
  :url => HTML_DIR + 'pink-sweater-bid-bin.html',
11
20
  :description => 'ALFANI MENS SWEATER PINK SMALL NEW WITH TAGS',
@@ -0,0 +1,141 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script type="text/javascript">var plst=new Date().getTime();</script><title>J CREW Hooded Sweater Off-White Cable Knit w Cashmere S - eBay (item 250749861707 end time Jan-07-11 15:00:44 PST)</title><meta name="description" content="eBay: Find J CREW Hooded Sweater Off-White Cable Knit w Cashmere S in the Clothing, Shoes Accessories , Women's Clothing , Sweaters category on eBay."><meta name="keywords" content="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S, Clothing, Shoes Accessories, Women's Clothing, Sweaters"><link rel="canonical" href="http://cgi.ebay.com/J-CREW-Hooded-Sweater-Off-White-Cable-Knit-w-Cashmere-S-/250749861707"><meta name="google-site-verification" content="8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg"><meta name="y_key" content=""><meta name="msvalidate.01" content=""><meta property="og:title" content="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S"><meta property="og:type" content="product"><meta property="og:url" content="http://cgi.ebay.com/J-CREW-Hooded-Sweater-Off-White-Cable-Knit-w-Cashmere-S-/250749861707"><meta property="og:image" content="http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_1.JPG?set_id=880000500F"><meta property="og:site_name" content="eBay"><meta property="og:description" content="eBay: Find J CREW Hooded Sweater Off-White Cable Knit w Cashmere S in the Clothing, Shoes Accessories , Women's Clothing , Sweaters category on eBay."><meta property="fb:app_id" content="102628213125203"><!--[if lt IE 7]><style>* html #vi-container { width: 940px; width: expression((document.documentElement && document.documentElement.clientHeight) ? ( (document.documentElement.clientWidth < 940) ? "940px" : ( (document.documentElement.clientWidth > 1200) ? "1200px" : "auto") ) : ( (document.body.clientWidth < 940) ? "940px" : "auto") ); }</style><![endif]--><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/en_US/e693/GH-ZAM_RedesignEbayNoneFull_e69312303392_en_US.css"><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/en_US/e693/BuyingApp_ViewItemATLShipping_e69312303392_en_US.css"><!--[if lt IE 8]><style>.bn-b input{position:relative;left:-3px;padding:0 14px;width:1%}.bn-b b,.bn-b a{left:-3px}.psb-S input,.ssb-S input,.trsb-S input{padding:0 9px 0 10px}</style><![endif]--><!--[if IE 6]><style>.bn-b input{overflow:visible;width:0}</style><![endif]--><!--[if IE 8]><style>.bn-b input{padding:0 14px 2px}.psb-S input,.ssb-S input,.trsb-S input{padding:2px 9px 3px 10px}.psb-bp input{background-position:1px -479px}</style><![endif]--><!--[if lt IE 7]><style>.olp-cnt{height:100%!important}</style><![endif]--><!--[if lt IE 8]><style>.trsTop{margin-top:-3px!important;margin-left:0!important}.s-content{margin:0 0 0 3px}.s-content-eu td{padding-bottom:0}.sl-eu{margin-bottom:10px}.s-gray-eu{margin-bottom:10px}</style><![endif]--></head><body style="text-align:left" id="body"><div></div>
2
+ <div id="vi-container">
3
+ <div id="vi-top"><div id="gnheader" class="gh-w"><a href="#mainContent" rel="nofollow" style="display:block;position:absolute;left:-9999px">Skip to main content</a><div><div class="gh-eb"><div class="gh-emn"><div class="gh-hid"></div><div class="gh-mn"><span class="gh-fst"><a id="MyEbay" href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&amp;gbh=1" _sp="l1533">My eBay</a></span><a id="Sell" href="http://sell.ebay.com/sell" _sp="l1528">Sell</a><a id="Community" href="http://hub.ebay.com/community" _sp="l1540">Community</a><span class="gh-nho"><a id="ContactUs" href="http://contact.ebay.com/ws/eBayISAPI.dll?CustomerSupportRedirect&amp;target=cu" _sp="l1549">Contact us</a></span><a id="Help" href="http://contact.ebay.com/ws/eBayISAPI.dll?CustomerSupportRedirect&amp;target=help" _sp="l1545">Help</a><span class="gh-nho"></span></div></div><form id="headerSearch" name="headerSearch" method="get" action="http://shop.ebay.com"><input type="hidden" name="_from" value="R40"><input type="hidden" name="_trksid" value="m570"><span class="gh-esb"><label for="_nkw" class="g-hdn">Enter your search keyword</label><input type="text" class="gh-txt" name="_nkw" id="_nkw"><a><input type="submit" value="Go" class="gh-go"></a></span></form></div><div class="gh-log"><span class="gh-lg"><a id="EbayLogo" href="http://www.ebay.com"><img src="http://p.ebaystatic.com/aw/pics/logos/logoEbay_x45.gif" alt="From collectibles to cars, buy and sell all kinds of items on eBay" border="0" height="45" width="110"></img></a></span><span class="gh-wrap"><span style="height:100%;display:inline-block;max-height:40px"></span><span class="greeting gh-ui"><!-- BEGIN: GREETING:SIGNEDOUT --><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn" _sp="l1524" rel="nofollow" onclick="return vjo.darwin.core.greetings.VjGreetingsServer.handleClick('https://signin.ebay.com/ws/eBayISAPI.dll?SignIn',event);">Sign in</a> or <a href="https://scgi.ebay.com/ws/eBayISAPI.dll?RegisterEnterInfo" id="registerLink" rel="nofollow">register</a><!-- END: GREETING:SIGNEDOUT --><span id="bta"></span></span><span class="coupon"></span></span></div><div class="gh-rph"><span class="addllinks"></span></div><div class="gh-cl"></div><div class="gh-col"><b class="gh-c1"></b><b class="gh-c2"></b><b class="gh-c3"></b><b class="gh-c4"></b><b class="gh-c5"></b><b class="gh-c6"></b><b class="gh-c7"></b><div class="gh-clr"></div></div><div id="headerWrapper" class="gh-hbw"><div class="gh-hb"><div class="gh-mn"><a id="BrowseCategories" href="http://shop.ebay.com/allcategories/all-categories" _sp="l1620">CATEGORIES</a><a id="chevron0" href="javascript:;" class="gh-ai"><b>&nbsp;</b></a><span id="11450_sp"><a title="Your new destination for Clothing, Shoes &amp; Accessories on eBay." href="http://fashion.ebay.com/">FASHION</a></span><a title="Buy and sell cars, trucks, vehicle parts, and accessories." href="http://www.motors.ebay.com/">MOTORS</a><a id="EbayDeals" title="Great items, deep discounts, and free shipping!" href="http://deals.ebay.com/">DEALS</a><a id="EbayClassifieds" href="http://www.ebayclassifieds.com">CLASSIFIEDS</a></div></div><div class="gh-lbh1"><div class="gh-rtm"><div id="rtm_html_876"></div></div></div><div class="gh-lbh2"><div class="gh-rtm"><div id="rtm_html_912"></div></div></div><div class="gh-lbh3"><div class="gh-rtm"><div id="rtm_html_433"></div></div></div><div class="gh-clr"></div></div><div id="v4-0" class="gh-vnl"><div class="gh-cNav"><a id="gh_vnl_0" title="Women" class="vnl-dd" href="javascript:;">Women<b>.</b></a><a id="gh_vnl_1" title="Men" class="vnl-dd" href="javascript:;">Men<b>.</b></a><a id="gh_vnl_2" title="Kids &amp; Baby" class="vnl-dd" href="javascript:;">Kids &amp; Baby<b>.</b></a><a id="gh_vnl_3" title="Brands" class="vnl-dd" href="javascript:;">Brands<b>.</b></a><a id="gh_vnl_4" title="Fashion Vault" class="vnl-img" href="http://fashionvault.ebay.com/?_lk=1673"> <img src="http://p.ebaystatic.com/aw/pics/buy/csa/logos/sprVNLFashionVault.gif" alt="Fashion Vault" border="0" height="100" width="124"></img></a><a id="gh_vnl_4" title="Fashion Voice" class="vnl-img" href="http://pages.ebay.com/fashion/voice.html?_lk=1674"> <img src="http://q.ebaystatic.com/aw/pics/buy/csa/logos/sprVNLFashionVoice.gif" alt="Fashion Voice" border="0" height="100" width="125"></img></a></div></div><img src="http://rover.ebay.com/roversync/?site=0&amp;stg=1&amp;mpt=1294250335749" alt="" width="1" height="1"><script type="text/javascript">var svrGMT = 1294250335749;</script><div class="gh-ovr" id="gbh_ovl"><div class="gh-iovr"></div></div></div></div><div class="vi-cmb"><div class="vi-ih-header"><table cellpadding="0" cellspacing="0" border="0" class="vi-ih-area_nav"><tr><td valign="top"><span id="ngviback" class="sbt"><a href="http://www.ebay.com/" title="Click to Go Back to home page"><img src="http://p.ebaystatic.com/aw/pics/icon/iconLtArrow_20x20.gif" height="20" width="20" border="0" align="middle" alt="Click to Go Back to home page">Back to home page</a></span></td><td valign="top" class="vi-ih-pipe-cell">&#160;|&#160;</td><td valign="top"><table style="margin-top: 0px;"><tr><td class="vi-ih-bc-label">Listed in category:</td><td valign="top"><div><div class="bbc-in bbc bbc-nav"><b class="g-hdn">Bread Crumb Link</b><ul class="in"><li><a href="http://shop.ebay.com/Clothing-Shoes-Accessories-/11450/i.html">Clothing, Shoes &amp; Accessories</a><span> &gt; </span></li><li><a href="http://shop.ebay.com/Womens-Clothing-/15724/i.html">Women's Clothing</a><span> &gt; </span></li><li><a href="http://shop.ebay.com/Sweaters-/63866/i.html">Sweaters</a></li></ul></div></div></td></tr></table></td></tr></table></div></div><div style="clear:both;"><div class="vi-tm-pbt10"><div id="blueStripComp"></div></div></div><div class="z_5" style="clear:both"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td nowrap="nowrap" width="100%" align="right"><span><span class="watchlinkSpan" id="linkTopAct"><img src="http://q.ebaystatic.com/aw/pics/s.gif" width="5" alt=""><a rel="nofollow" title="" id="WtchItm" href="http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&amp;item=250749861707&amp;pt=US_CSA_WC_Sweaters&amp;sourcePage=4340&amp;ssPageName=VIP:watchlink:top:en&amp;wt=5ff5bd8d8797f8d77cfbdbbfa350a612&amp;_trksid=p4340.l1359">Add to Watch list</a></span></span><span><span id="dwnArr" class="z_4"></span><span id="upArr" class="z_1"></span></span><img src="http://q.ebaystatic.com/aw/pics/s.gif" width="3" alt=""></td></tr></table><div><div><div><div id="errorDiv" class="watchouterdiv1_5" style="display:none">You have reached your maximum guest watch list limit of 10 items.<br>Please remove some items from your watch list in <a href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&amp;item=250749861707&amp;currentPage=MyeBayWatching&amp;ssPageName=VI:MEFG:2">My eBay</a> if you want to add more.</div><div id="masterDiv" class="watchItem watchOuterDiv" style="display:none"><div class="guestLine">This item has been added to your guest watch list in <a href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&amp;item=250749861707&amp;currentPage=MyeBayWatching&amp;ssPageName=VI:MEFG:2">My eBay</a>.</div><div id="middleDiv" class="watchInfo"></div></div></div></div></div></div></div>
4
+ <table id="vi-tTbl" cellpadding="0" cellspacing="0" border="0"><tr><td colspan="1" rowspan="1" id="vi-tTblC1"><div><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td class="ipics-cell"><div class="vi-ipic1"><span class="shig" id="freeShippingIcon"></span><form name="ssFrm" action="http://cgi.ebay.com/ws/eBayISAPI.dll?VISuperSize&amp;item=250749861707" target="ssFrmWin" method="post"><input type="hidden" name="ssr" value="1"><input type="hidden" name="iurls" value="0#http://i.ebayimg.com/23#!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_14.JPG#!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_12.JPG#!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_3.JPG|1#http://i.ebayimg.com/12#!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_14.JPG#!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_12.JPG#!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_3.JPG|2#http://i.ebayimg.com/06#!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_14.JPG#!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_12.JPG#!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_3.JPG|3#http://i.ebayimg.com/14#!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_14.JPG#!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_12.JPG#!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_3.JPG"><input type="hidden" name="dtid" value="0"><input type="hidden" name="vs" value="1"><input type="hidden" name="sh" value="0"><input type="hidden" name="title" value="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S"></form><div><table border="0" cellpadding="0" cellspacing="0"><tr><td class="vs_w-a"><div class="ict-w1" id="vv4-37" title="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S"><div class="ic-w300 ic-cntr"><div class="ic-w300 ic-m" id="vv4-37_idiv"><center><span></span><img src="http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_35.JPG" id="i_vv4-37" alt="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S"></center></div><a id="vv4-37_a" class="ic-cp" href="javascript:;"></a><div id="vv4-37_bdiv" class="ic-p ic-b1" style="height:298px;width:298px;"><div id="vv4-37_t" class="ic-thr"><span>Please wait</span></div><div id="vv4-37_e" class="ic-err"><span>Image not available</span></div></div></div><div class="tbr-c" id="vv4-37_TB"><ul class="tbr-w1 tbr-w1"><li title="Show close up area of image"><a id="vv4-37_TB_0" href="javascript:;"><span class="ict-zm">Zoom</span></a></li><li title="Show larger and alternate views" class="tbr-l"><a id="vv4-37_TB_1" href="javascript:;"><span class="ict-enl">Enlarge</span></a></li></ul></div><div id="vv4-37_zm" class="ict-no"><div id="vv4-37_zm_msk" class="z-ctr"><div class="z-mkr" id="vv4-37_zm_mrk"><div id="vv4-37_zm_mCtr"></div><div id="vv4-37_zm_msg" class="z-msg"><b id="vv4-37_zm_txt">Mouse here to zoom in</b></div></div></div><div class="z-wrp" style="height:320px;width:320px;" id="vv4-37_zm_iCtr"><div class="z-zctr" style="height:320px;width:320px;"><div id="vv4-37_zm_thr" class="z-thr"><span>Please wait</span></div><div id="vv4-37_zm_zErr" class="z-err"><span>Image not available</span></div><div id="vv4-37_zm_zCtr" style="height:800px;width:800px;"><img id="vv4-37_zm_zImg" alt="" src="http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_3.JPG"></div><iframe frameborder="0" height="320" width="320"></iframe></div></div></div></div></td></tr><tr><td id="vv4-37_sp" class="vs_w-spr">&#160;</td></tr><tr><td><div id="pD_vv4-37" class="tg-p"><div class="tg-p tg-wh" id="vv4-37_div" style="width:300px;height:43px;"><div id="b1_vv4-37_" class="tg-bdr"></div><div id="b2_vv4-37_0" class="tg-bdr2"></div><table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" class="tg-tb tg-clp" id="vv4-37_tbl"><tr id="t_r_vv4-37_0"><td id="t_c_vv4-37_0" width="16%" height="42px"><img alt="" id="t_ivv4-37_0" src="http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_14.JPG"></td><td id="t_c_vv4-37_1" width="16%"><img alt="" id="t_ivv4-37_1" src="http://i.ebayimg.com/12/!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_14.JPG"></td><td id="t_c_vv4-37_2" width="16%"><img alt="" id="t_ivv4-37_2" src="http://i.ebayimg.com/06/!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_14.JPG"></td><td id="t_c_vv4-37_3" width="16%"><img alt="" id="t_ivv4-37_3" src="http://i.ebayimg.com/14/!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_14.JPG"></td><td id="t_c_vv4-37_4" class="tg-td" width="16%"></td><td id="t_c_vv4-37_5" class="tg-td" width="16%"></td></tr></table></div></div></td></tr></table></div><div><img src="http://q.ebaystatic.com/aw/pics/s.gif" height="1" width="302px" alt=""></div></div></td><td class="isumv1_5-cell"><form name="v4-24" id="v4-24" method="post" class="vi-is1-s4" action="http://offer.ebay.com/ws/eBayISAPI.dll?MakeBid&amp;_trksid=p4340.l1356&amp;item=250749861707&amp;pt=US_CSA_WC_Sweaters&amp;fromPage=4340&amp;fb=2"><table class="vi-is1" cellpadding="0" cellspacing="0" border="0"><tr><td colspan="4"><div><b id="mainContent"><h1 class="vi-is1-titleH1">J CREW Hooded Sweater Off-White Cable Knit w Cashmere S</h1></b></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><th class="vi-is1-lbl">Item condition:</th><td colspan="3" class="vi-is1-clr"><span class="vi-is1-condText">Pre-owned</span></td></tr><tr><td colspan="4" height="10"></td></tr><tr><th class="vi-is1-lbl">Time left:</th><td colspan="3" class="vi-is1-clr"><span class="vi-is1-dt"><span class="vi-is1-tml">2d 05h </span><span><span>(Jan 07, 2011</span><span class="vi-is1-t">15:00:44 PST)</span></span></span><span class="vi-is1-s7"><span class="vi-is1-misc"></span></span></td></tr><tr><td colspan="4" height="10"></td></tr><tr><th class="vi-is1-lbl">Bid history:</th><td colspan="3" class="vi-is1-clr"><div><span class="vi-is1-s6"><span><a href="http://offer.ebay.com/ws/eBayISAPI.dll?ViewBids&amp;item=250749861707" rel="nofollow"><span id="v4-25">0</span> <span>bids</span></a></span></span><span id="v4-26" class="vi-is1-tet vi-is1-rf vi-is1-dspl">[<a href="javascript:;">Refresh bidhistory</a>]</span></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><td colspan="4" height="10" class="vi-is1-solid"></td></tr><tr><th class="vi-is1-lblp vi-is1-solidBg">Starting bid:</th><td class="vi-is1-solid vi-is1-tbll"><span><span id="v4-27" class="vi-is1-prcp">US $14.99</span></span></td><td colspan="2" class="vi-is1-solid vi-is1-tblb"></td></tr><tr><td colspan="4" height="10" class="vi-is1-solid"></td></tr><tr><th class="vi-is1-lblp vi-is1-solidBg"><label for="v4-28">Your max bid:</label></th><td class="vi-is1-solid vi-is1-tbll"><table cellpadding="0" cellspacing="0" border="0" class="vi-is1-prcp"><tr><td class="vi-is1-prcs vi-is1-cur">US $</td><td><div><input type="text" size="8" maxlength="10" name="maxbid" id="v4-28" class="vi-is1-tet vi-is1-mb"></div></td></tr><tr></tr></table></td><td colspan="2" class="vi-is1-solid vi-is1-tblb"><div><b id="v4-7" class="bn-w bn-pad psb-S"><i>Place bid</i><span id="spn_v4-7" class="bn-b psb-b psb-S"><input id="but_v4-7" name="" value="Place bid" title="" type="submit"><b id="txt_v4-7">Place bid</b></span></b></div></td></tr><tr><th class="vi-is1-lblp vi-is1-solidBg"></th><td colspan="3" class="vi-is1-solid"><span id="v4-29" class="vi-c-fsmt">(Enter US $14.99 or more)</span></td></tr><tr><td colspan="4" height="10" class="vi-is1-solid"></td></tr><tr id="watchItemMiddleRow"><td class="vi-is1-solid"></td><td id="watchLabelDiv" class="vi-is1-solid"> </td><td colspan="2" class="vi-is1-solid vi-is1-tblb"><div><div><div class="ul-dd g-xs"><div id="ddv_addToList"><span id="ttlsp_addToList" class="ul-tl"><a href="javascript:;" id="-99_ttl_addToList" sw="true" w="t" i="-99" n="Watch list">Add to Watch list</a></span><span class="ul-di"><a href="javascript:;" id="img_addToList"></a></span></div><div id="pnl_addToList" style="display:none;" class="ul-pn"><a href="javascript:;" id="s_addToList" class="g-hdn">Start of panel</a><ul id="ul_addToList" class="ul-it"><li><a href="javascript:;" id="-99_ita_addToList" sw="true" w="t" i="-99" n="Watch list">Add to Watch list</a></li></ul><div class="ul-sp"></div><div><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItem%26item%3D250749861707%26actionType%3Dsinginformore" id="s_ita_addToList" nw="true" i="s" n="addNew">Sign in for more lists</a></div><a href="javascript:;" id="e_addToList" class="g-hdn">End of panel</a></div></div><div id="nLstOly" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="300"><tr id="nLstOlytid"><td class="olp-tl"><p></p><a href="javascript:;" id="nLstOly_sa" style="outline:none"><b class="g-hdn">Start of layer</b></a></td><td width="18" class="olp-tr"><b></b></td></tr><tr><td class="olp-ml" height="45"><div class="olp-cnt" id="nLstOly_olp_cnt"><div class="olp-pad olp-xtpd" id="nLstOly_olp_pad"><div><div class="al-ttl"><label for="nLstTxt">Add to a new list</label></div><div class="al-te" id="al_me"><b class="al-ei"></b><b class="al-et" id="al_et">Please enter a valid name</b><span id="al_te" style="width:90%"></span></div><input type="text" id="nLstTxt" name="nLstTxt" size="40" value="Type a new list name here"><div class="al-it">(Separate multiple list names with a comma.)</div><div class="al-be" id="al_be"></div><div class="al-br"><div class="al-fl"><input type="button" name="ad_btn" id="ad_btn" value="Add"><span class="al-c"><a href="javascript:;" id="v4-30">Cancel</a></span></div></div></div></div><a href="javascript:;" id="nLstOly_cbtn" ex="" title="Click to close" class="olp-cbtn"><div class="olp-hdn">Click to close</div></a></div></td><td class="olp-mr"></td></tr><tr id="nLstOlybid"><td class="olp-bl"><a href="javascript:;" id="nLstOly_ea" style="outline:none"><b class="g-hdn">End of layer</b></a><div></div><p></p></td><td class="olp-br"></td></tr></table></div></div></div></td></tr><tr id=""><td class="vi-is1-solid"></td><td colspan="3" class="vi-is1-solid"><div class="vi-is1-stMsg" id="statusmsg" role="alert" aria-live="assertive"></div></td></tr><tr><td colspan="4" height="10" class="vi-is1-solid"></td></tr><tr id="v4-33"><td colspan="4" class="vi-is1-solid"></td></tr><tr><td colspan="4" height="10"></td></tr><tr><th class="vi-is1-lbl">Shipping:</th><td colspan="3" class="vi-is1-clr"><span id="fshippingCost" class="vi-is1-sh-srvcCost vi-is1-hideElem vi-is1-showElem">$3.50</span><span><span> </span></span><span id="fshippingSvc">Expedited Shipping</span>&#160;<span class="sh-nowrap"><a href="javascript:;" id="changeLocLink" class="vi-tl vi-is1-shpl vi-c-fsmt vi-is1-hideDisc vi-is1-shpl vi-is1-showDisc"><span>See more services</span>&#160;<span class="vi-pla-sI vi-pla-iD"></span></a></span><div id="chngLoc" class="olp-mn vi-shp"><table cellpadding="0" cellspacing="0" border="0" width="334"><tr id="chngLoctid"><td class="olp-tl"><p></p><a href="javascript:;" id="chngLoc_sa" style="outline:none"><b class="g-hdn">Start of layer</b></a></td><td width="18" class="olp-tr"><b></b></td></tr><tr><td class="olp-ml" height="45"><div class="olp-cnt" id="chngLoc_olp_cnt"><div class="olp-pad olp-xtpd" id="chngLoc_olp_pad"><div><div class="vi-shp"><div><div id="clOverLayPanelDiv" class="sh-InpFld"><label for="clcountry" class="sh-Cntry">Country:</label><div id="countryDiv"><div class="sh-CntrySlctr"><select class="sh-TxtCnt" id="clcountry" name="country" onchange="return vjo.Registry._9.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="4">Afghanistan</option><option value="5">Albania</option><option value="6">Algeria</option><option value="7">American Samoa</option><option value="8">Andorra</option><option value="9">Angola</option><option value="10">Anguilla</option><option value="11">Antigua and Barbuda</option><option value="12">Argentina</option><option value="13">Armenia</option><option value="14">Aruba</option><option value="15">Australia</option><option value="16">Austria</option><option value="17">Azerbaijan Republic</option><option value="18">Bahamas</option><option value="19">Bahrain</option><option value="20">Bangladesh</option><option value="21">Barbados</option><option value="22">Belarus</option><option value="23">Belgium</option><option value="24">Belize</option><option value="25">Benin</option><option value="26">Bermuda</option><option value="27">Bhutan</option><option value="28">Bolivia</option><option value="29">Bosnia and Herzegovina</option><option value="30">Botswana</option><option value="31">Brazil</option><option value="32">British Virgin Islands</option><option value="33">Brunei Darussalam</option><option value="34">Bulgaria</option><option value="35">Burkina Faso</option><option value="37">Burundi</option><option value="38">Cambodia</option><option value="39">Cameroon</option><option value="2">Canada</option><option value="40">Cape Verde Islands</option><option value="41">Cayman Islands</option><option value="42">Central African Republic</option><option value="43">Chad</option><option value="44">Chile</option><option value="45">China</option><option value="46">Colombia</option><option value="47">Comoros</option><option value="48">Congo, Democratic Republic of the</option><option value="49">Congo, Republic of the</option><option value="50">Cook Islands</option><option value="51">Costa Rica</option><option value="53">Croatia, Republic of</option><option value="55">Cyprus</option><option value="56">Czech Republic</option><option value="57">Denmark</option><option value="58">Djibouti</option><option value="59">Dominica</option><option value="60">Dominican Republic</option><option value="61">Ecuador</option><option value="62">Egypt</option><option value="63">El Salvador</option><option value="64">Equatorial Guinea</option><option value="65">Eritrea</option><option value="66">Estonia</option><option value="67">Ethiopia</option><option value="68">Falkland Islands (Islas Malvinas)</option><option value="69">Fiji</option><option value="70">Finland</option><option value="71">France</option><option value="72">French Guiana</option><option value="73">French Polynesia</option><option value="74">Gabon Republic</option><option value="75">Gambia</option><option value="76">Georgia</option><option value="77">Germany</option><option value="78">Ghana</option><option value="79">Gibraltar</option><option value="80">Greece</option><option value="81">Greenland</option><option value="82">Grenada</option><option value="83">Guadeloupe</option><option value="84">Guam</option><option value="85">Guatemala</option><option value="87">Guinea</option><option value="88">Guinea-Bissau</option><option value="89">Guyana</option><option value="90">Haiti</option><option value="91">Honduras</option><option value="92">Hong Kong</option><option value="93">Hungary</option><option value="94">Iceland</option><option value="95">India</option><option value="96">Indonesia</option><option value="98">Iraq</option><option value="99">Ireland</option><option value="100">Israel</option><option value="101">Italy</option><option value="102">Jamaica</option><option value="104">Japan</option><option value="106">Jordan</option><option value="107">Kazakhstan</option><option value="108">Kenya</option><option value="109">Kiribati</option><option value="111">Korea, South</option><option value="112">Kuwait</option><option value="113">Kyrgyzstan</option><option value="114">Laos</option><option value="115">Latvia</option><option value="116">Lebanon</option><option value="117">Lesotho</option><option value="118">Liberia</option><option value="119">Libya</option><option value="120">Liechtenstein</option><option value="121">Lithuania</option><option value="122">Luxembourg</option><option value="123">Macau</option><option value="124">Macedonia</option><option value="125">Madagascar</option><option value="126">Malawi</option><option value="127">Malaysia</option><option value="128">Maldives</option><option value="129">Mali</option><option value="130">Malta</option><option value="131">Marshall Islands</option><option value="132">Martinique</option><option value="133">Mauritania</option><option value="134">Mauritius</option><option value="135">Mayotte</option><option value="136">Mexico</option><option value="226">Micronesia</option><option value="137">Moldova</option><option value="138">Monaco</option><option value="139">Mongolia</option><option value="228">Montenegro</option><option value="140">Montserrat</option><option value="141">Morocco</option><option value="142">Mozambique</option><option value="143">Namibia</option><option value="144">Nauru</option><option value="145">Nepal</option><option value="146">Netherlands</option><option value="147">Netherlands Antilles</option><option value="148">New Caledonia</option><option value="149">New Zealand</option><option value="150">Nicaragua</option><option value="151">Niger</option><option value="152">Nigeria</option><option value="153">Niue</option><option value="154">Norway</option><option value="155">Oman</option><option value="156">Pakistan</option><option value="157">Palau</option><option value="158">Panama</option><option value="159">Papua New Guinea</option><option value="160">Paraguay</option><option value="161">Peru</option><option value="162">Philippines</option><option value="163">Poland</option><option value="164">Portugal</option><option value="165">Puerto Rico</option><option value="166">Qatar</option><option value="227">Reunion</option><option value="167">Romania</option><option value="168">Russian Federation</option><option value="169">Rwanda</option><option value="170">Saint Helena</option><option value="171">Saint Kitts-Nevis</option><option value="172">Saint Lucia</option><option value="173">Saint Pierre and Miquelon</option><option value="174">Saint Vincent and the Grenadines</option><option value="175">San Marino</option><option value="176">Saudi Arabia</option><option value="177">Senegal</option><option value="229">Serbia</option><option value="178">Seychelles</option><option value="179">Sierra Leone</option><option value="180">Singapore</option><option value="181">Slovakia</option><option value="182">Slovenia</option><option value="183">Solomon Islands</option><option value="184">Somalia</option><option value="185">South Africa</option><option value="186">Spain</option><option value="187">Sri Lanka</option><option value="189">Suriname</option><option value="191">Swaziland</option><option value="192">Sweden</option><option value="193">Switzerland</option><option value="196">Taiwan</option><option value="197">Tajikistan</option><option value="198">Tanzania</option><option value="199">Thailand</option><option value="200">Togo</option><option value="201">Tonga</option><option value="202">Trinidad and Tobago</option><option value="203">Tunisia</option><option value="204">Turkey</option><option value="205">Turkmenistan</option><option value="206">Turks and Caicos Islands</option><option value="207">Tuvalu</option><option value="208">Uganda</option><option value="209">Ukraine</option><option value="210">United Arab Emirates</option><option value="3">United Kingdom</option><option value="1" selected="selected">United States</option><option value="211">Uruguay</option><option value="212">Uzbekistan</option><option value="213">Vanuatu</option><option value="214">Vatican City State</option><option value="215">Venezuela</option><option value="216">Vietnam</option><option value="217">Virgin Islands (U.S.)</option><option value="218">Wallis and Futuna</option><option value="219">Western Sahara</option><option value="220">Western Samoa</option><option value="221">Yemen</option><option value="223">Zambia</option><option value="224">Zimbabwe</option></select></div></div><div id="clZipCodeDiv"><div id="zipCodeDiv"><div class="sh-TxtBxAln"><label id="clZipCodeTextDiv" for="clzipCode" class="sh-TxtStyl sh-zipLeftAlign sh-hideElement">ZIP Code:</label><div class="sh-zipSpanPanel"><div id="clZipArrowimg" class="sh-hideElement"></div><input type="text" id="clzipCode" size="12" name="zipCode" class="sh-TxtCnt sh-hideElement sh-enblBox sh-TxtCnt" disabled="disabled"><div class="sh-RateBtn"><input type="button" id="clGetRates" name="getRates" value="Get Rates" class="sh-BtnTxt sh-BtnTxt"></div></div></div></div></div></div><div><div id="srvcDetails" class="sh-SrvcDtls"><div>Service and other details:</div></div><div id="shippingServices" class="sh-DTbl"><div class="dt" id="v4-34"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-34_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-34_tab_0_srtHCol_0" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-SrvcHdr">Service</div></th><th scope="col" id="v4-34_tab_0_srtHCol_1" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-SrvcHdr">Estimated delivery*</div></th><th scope="col" id="v4-34_tab_0_srtHCol_2" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-SrvcHdr sh_Prcpad">Price</div></th></tr></thead><tr><td scope="row" id="v4-34_tab_0_srtCol_0_0" class="dt-colCnt dt-rowSeptr dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div><span class="sh-ShipDtls">Expedited Shipping</span></div></td><td id="v4-34_tab_0_srtCol_0_1" class="dt-colCnt dt-rowSeptr dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls"><div>Between Tue. Jan. 11 and Wed. Jan. 12</div></div></td><td id="v4-34_tab_0_srtCol_0_2" class="dt-colCnt dt-rowSeptr dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls sh_Prcpad">$3.50</div></td></tr><tr><td scope="row" id="v4-34_tab_0_srtCol_1_0" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div><span class="sh-ShipDtls">Expedited Shipping</span></div></td><td id="v4-34_tab_0_srtCol_1_1" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls"><div>Between Tue. Jan. 11 and Wed. Jan. 12</div></div></td><td id="v4-34_tab_0_srtCol_1_2" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls sh_Prcpad">$5.50</div></td></tr></table></div></div></div><div id="instrTextPanel" class="sh-instrText sh-transitTime">*Estimated delivery dates include seller's handling time, and will depend on shipping service selected and receipt of cleared payment. Delivery times may vary, especially during peak periods.</div></div></div></div></div></div><a href="javascript:;" id="chngLoc_cbtn" ex="" title="Click to close" class="olp-cbtn"><div class="olp-hdn">Click to close</div></a></div></td><td class="olp-mr"></td></tr><tr id="chngLocbid"><td class="olp-bl"><a href="javascript:;" id="chngLoc_ea" style="outline:none"><b class="g-hdn">End of layer</b></a><div></div><p></p></td><td class="olp-br"></td></tr></table></div><input type="hidden" id="chngLocPnlJSId" value="12chngLoc"><b>&nbsp;</b><span class="sh-nowrap"><wbr><a href="javascript:;" id="seeDcnt" class="vi-tl vi-is1-shpl vi-c-fsmt vi-is1-hideDisc"><span>See <b class="g-hdn">shipping</b> discounts</span>&#160;<span class="vi-pla-sI vi-pla-iD vi-is1-hideDiv"></span></a></wbr></span><div id="disPnl" class="olp-mn vi-dm"><table cellpadding="0" cellspacing="0" border="0" width="175"><tr id="disPnltid"><td class="olp-tl"><p></p><a href="javascript:;" id="disPnl_sa" style="outline:none"><b class="g-hdn">Start of layer</b></a></td><td width="18" class="olp-tr"><b></b></td></tr><tr><td class="olp-ml" height="45"><div class="olp-cnt" id="disPnl_olp_cnt"><div class="olp-pad" id="disPnl_olp_pad"><div id="discountsMessaging"><table width="99%" class="vi-is1-s9"><tr><td style="word-wrap: break-word"><div><div id="discount_msg" class="sh-discPnl"></div></div></td></tr></table></div></div></div></td><td class="olp-mr"></td></tr><tr id="disPnlbid"><td class="olp-bl"><a href="javascript:;" id="disPnl_ea" style="outline:none"><b class="g-hdn">End of layer</b></a><div></div><p></p></td><td class="olp-br"></td></tr></table><div id="disPnlarid" style="display:none"></div></div><b>&nbsp;|&nbsp;</b><span class="vi-is1-rePol"> <span class="vi-is1-wrp"><a rel="nofollow" class="vi-is1-rePol"><a onclick="vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab();" href="#shId">See all <b class="g-hdn">shipping</b> details</a></a></span></span></td></tr><tr id="delspcr"><td colspan="4" height="10"></td></tr><tr id="delrw"><th class="vi-is1-lbl">Delivery:</th><td colspan="3" class="vi-is1-clr"><span style="float : none"><div><div id="fdeliveryTime"><div><div><div class="sh-TblCnt">Estimated between <span class="sh-fontBold">Tue. Jan. 11 and Wed. Jan. 12</span><span> <span><a id="hldhlp"><img src="http://p.ebaystatic.com/aw/pics/icons/iconBubbleHelp.gif" height="12" width="12" alt="help icon for Estimated delivery date - opens a layer" title="help icon" class="crptr"></a></span></span><div class="sh-DlvryDtl"></div></div></div></div></div></div></span></td></tr><tr><td colspan="4" height="10"></td></tr><tr><th class="vi-is1-lbl">Returns:</th><td colspan="3" class="vi-is1-clr"><div class="vi-is1-s6"><table border="0" width="100%" cellpadding="0" cellspacing="0" id="miyId"><tr><td class="vi-rpd-miyContent">7 day&nbsp;money back,&nbsp;buyer pays return shipping&nbsp;|<span class="g-nav pyOp"> <span class="vi-rpd-wtSp"><a rel="nofollow"><a onclick="vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab();" href="#rpdId">Read <b class="g-hdn">return policy</b> details</a></a></span></span></td></tr></table></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><td colspan="4"><div id="v4-35" class="vi-bg-cpn vi-bg-cm"><div class="vi-bg-oh vi-bg-cpn"><img src="http://q.ebaystatic.com/aw/pics/buy/trust/logoeBP_65x74.gif" height="74" width="65" alt="eBay shield" class="vi-bg-crp vi-bg-sh"><div class="vi-bg-bgn vi-bg-cpn vi-bg-oh vi-bg-l65 vi-bg-m65"></div></div><div class="vi-bg-il vi-bg-crp"><img src="http://p.ebaystatic.com/aw/pics/buy/trust/imgeBPText_232x22.gif" height="22" width="232" alt="eBay Buyer Protection"><div><img src="http://q.ebaystatic.com/aw/pics/buy/trust/imgeBPSText_312x14.gif" height="14" width="312" alt="Covers your purchase price plus original shipping"></div><span class="g-btn"><a href="http://pages.ebay.com/coverage/index.html" target="_blank">Learn more<b class="g-hdn">about eBay Buyer Protection - opens in a new window or tab</b></a></span></div></div></td></tr></table></form><div></div><div id="hldolp" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="250"><tr id="hldolptid"><td class="olp-tl"><p></p><a href="javascript:;" id="hldolp_sa" style="outline:none"><b class="g-hdn">Start of layer</b></a></td><td width="18" class="olp-tr"><b></b></td></tr><tr><td class="olp-ml" height="45"><div class="olp-cnt" id="hldolp_olp_cnt"><div class="olp-pad olp-xtpd" id="hldolp_olp_pad"><div><a href="http://pages.ebay.com/help/buy/contextual/estimated-delivery.html" target="_blank">Estimated delivery dates <b class="g-hdn">- opens in a new window or tab</b></a> include seller's handling time, and will depend on shipping service selected and receipt of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">cleared payment<b class="g-hdn">- opens in a new window or tab</b></a>. Delivery times may vary, especially during peak periods.</div></div><a href="javascript:;" id="hldolp_cbtn" ex="" title="Click to close" class="olp-cbtn"><div class="olp-hdn">Click to close</div></a></div></td><td class="olp-mr"></td></tr><tr id="hldolpbid"><td class="olp-bl"><a href="javascript:;" id="hldolp_ea" style="outline:none"><b class="g-hdn">End of layer</b></a><div></div><p></p></td><td class="olp-br"></td></tr></table><div id="hldolparid" style="display:none"></div></div><div id="v4-36" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="250"><tr id="v4-36tid"><td class="olp-tl"><p></p><a href="javascript:;" id="v4-36_sa" style="outline:none"><b class="g-hdn">Start of layer</b></a></td><td width="18" class="olp-tr"><b></b></td></tr><tr><td class="olp-ml" height="45"><div class="olp-cnt" id="v4-36_olp_cnt"><div class="olp-pad" id="v4-36_olp_pad">A reserve price is the minimum price the seller will accept. This price is hidden from bidders. To win, a bidder must have the highest bid and have met or exceeded the reserve price.</div></div></td><td class="olp-mr"></td></tr><tr id="v4-36bid"><td class="olp-bl"><a href="javascript:;" id="v4-36_ea" style="outline:none"><b class="g-hdn">End of layer</b></a><div></div><p></p></td><td class="olp-br"></td></tr></table><div id="v4-36arid" style="display:none"></div></div><div><div class="vi-is1-s1"></div></div></td></tr></table></div></td><td colspan="1" rowspan="1" id="vi-tTblS"> </td><td colspan="1" rowspan="1" id="vi-tTblC2"><div><div><table cellpadding="0" cellspacing="0" class="trsTopPanel"><tr><td class="trsBtmPanel"><table cellpadding="0" cellspacing="0" class="s-content s-content-eu"><tbody><tr><td><table cellpadding="0" cellspacing="0" width="100%"><tr><td width="100%"><h2 class="sit trsTopPad"><a target="_blank" href="http://pages.ebay.com/topratedsellers/index.html"><b class="g-hdn">Find out more about</b> Top-rated seller <b class="g-hdn">- opens in a new window or tab</b></a></h2><div class="bdg"><div class="mbg"><a title="Member id newenglandcountryliving" href="http://myworld.ebay.com/newenglandcountryliving/"><b class="g-hdn">Member id </b><b><span class="mbg-nw">newenglandcountryliving</span></b></a> <span class="mbg-l"> ( <a class="mbg-fb" title="Feedback Score Of 6489" href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&amp;iid=250749861707&amp;userid=newenglandcountryliving&amp;ssPageName=VIP:feedback&amp;ftab=FeedbackAsSeller"><b class="g-hdn">Feedback Score Of</b> 6489</a><img src="http://p.ebaystatic.com/aw/pics/icon/iconGreenStar_25x25.gif" height="25" width="25" class="mbg-star" title="Green star icon for feedback score in between 5,000 to 9,999" alt="Green star icon for feedback score in between 5,000 to 9,999">) </span> <span class="mbg-l"><a href="http://members.ebay.com/ws/eBayISAPI.dll?ViewUserPage&amp;userid=newenglandcountryliving"><img src="http://q.ebaystatic.com/aw/pics/aboutme-small.gif" height="8" width="23" alt="About member" border="0"></a> </span></div><br><span class="s-gray z_a">99.9%&#160;Positive feedback</span></div></td><td><div class="trsImgEu"><img src="http://p.ebaystatic.com/aw/pics/icons/iconTrsLarge.gif" height="80" width="58" alt="Get fast shipping and excellent service from eBay Top-rated sellers."></div><div class="spc2"></div></td></tr></table></td></tr><tr><td class="trsTxt"><ul><li>Consistently receives highest buyers' ratings</li><li>Ships items quickly</li><li>Has earned a track record of excellent service</li></ul></td></tr><tr><td><div class="bdg sl"><div class="s-f-da"><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D250749861707&amp;mode=0&amp;ssPageName=STRK:MEFS:ADDVI&amp;sellerid=newenglandcountryliving&amp;preference=0" rel="nofollow">Save this seller</a></div><div><div class="s-f-da"><span class="s-f-da"><a href="http://shop.ebay.com/newenglandcountryliving/m.html">See other items <b class="g-hdn">from this seller</b></a></span></div><div class="s-gray inf_lab">Visit store:&#160;<a href="http://stores.ebay.com/NewEnglandCountryLiving"><img src="http://q.ebaystatic.com/aw/pics/icon/iconStoresNW_20x20.gif" height="20" width="20" alt="Ebay Stores" class="st-img">NewEnglandCountryLiving</a></div></div></div></td></tr><tr></tr><tr><td><div class="s-gray"></div></td></tr></tbody></table></td></tr></table><div class="spc1"></div></div></div><div class="lmar"><div class="c-gy-bdr cr-brd cr-bt"><div><span id="ec_span" class="ec-span"><a id="ii_arr" href="javascript:;" class="vi-pla-sI vi-pla-bR"></a></span><h3 id="ec_title" class="eciIt">Other item info</h3></div><div id="ii_lyr" class="vi-display"><div class="z_b"><table class="sp1" cellpadding="3" summary="Other item info"><tr><td width="1%" align="right" valign="top" class="inf_lab">Item number:</td><td valign="top">250749861707</td></tr><tr><td align="right" valign="top" class="inf_lab">Item location:</td><td valign="top">Swansea, Massachusetts, United States</td></tr><tr><td align="right" valign="top" class="inf_lab">Ships to:</td><td valign="top">Worldwide </td></tr><tr><td align="right" valign="top" class="inf_lab">Payments:</td><td valign="top"><div><div><div class="on_pay"><div id="payDet1" style="color:#000;">PayPal<span> <span class="g-nav pyOp"><a rel="nofollow"><a id="a_payId" href="#payId">See <b class="g-hdn">payment</b> details</a></a></span></span></div></div></div></div></td></tr></table></div></div></div></div><div class="vi-title"><a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;item=250749861707&amp;si=uDETPprGggvHBjyCulB3IB%2Fyb%2Bo%3D&amp;print=all&amp;category=63866" rel="nofollow" target="viPrint" class="vi-pla-vAb"><span></span>Print <b class="g-hdn">this item - opens in a new window or tab</b></a><span class="vi-pla-dl g-hlp">|</span><a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ReportThisItemRedirect&amp;active=1&amp;itemId=250749861707&amp;seller=newenglandcountryliving" rel="nofollow" class="vi-pla-vAb"><span></span>Report item</a></div></td></tr></table>
5
+
6
+ <div id="vi-content" class="vi-mdtt" style="clear:both;"><div id="VisualPreviewContent"></div><div class="vi-cmb" id="rtm_html_1595" style="height:100%; width:100%"></div><div id="vi-desc"></div><div class="vi-cd"><div id="vi_tabs"><div><div class="tb-tw tb-gr"><table cellspacing="0" cellpadding="0" id="vi_tabs_wrp" class="tb tb-nw" width="100%"><tr><td class="tb-act" id="vi_tabs_0_td" width="1"><a class="tb-a" href="javascript:;" id="vi_tabs_0"><span class="tb-txt"><h2 class="vi-tab-hdr g-m g-m0">Description</h2></span></a></td><td id="vi_tabs_1_td" width="1"><a class="tb-a" href="javascript:;" id="vi_tabs_1"><span class="tb-txt"><h2 class="vi-tab-hdr g-m g-m0">Shipping and payments</h2></span></a></td><td class="tb-rrs"><div class="tb-rs"><div class="vi-pla-c1 vi-pla-mr25"><span class="vi-pla-shr vi-pla-p0 g-dft"><span class="vi-pla-lbc">Share: <b class="g-hdn">this item</b></span><a title="Email to a friend - opens in a new window or tab" href="http://contact.ebay.com/ws1/eBayISAPI.dll?ShowEmailAuctionToFriend&amp;item=250749861707" target="_blank" class="vi-pla-sI vi-pla-iE2"></a>&nbsp;<a title="Share on Facebook - opens in a new window or tab" href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ShareLink&amp;swd=2&amp;du=http%3A%2F%2Fcgi.ebay.com%2F250749861707&amp;itm=250749861707&amp;t=J+CREW+Hooded+Sweater+Off-White+Cable+Knit+w+Cashmere+S&amp;spid=4340" target="_blank" class="vi-pla-sI vi-pla-iF"></a>&nbsp;<a title="Share on Twitter - opens in a new window or tab" href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ShareLink&amp;swd=3&amp;du=http%3A%2F%2Fcgi.ebay.com%2F250749861707&amp;itm=250749861707&amp;t=J+CREW+Hooded+Sweater+Off-White+Cable+Knit+w+Cashmere+S&amp;spid=4340" target="_blank" class="vi-pla-sI vi-pla-iT"></a>&nbsp;</span></div></div></td></tr></table><input type="hidden" id="vi_tabs_hid" value="-1"></div><div class="tb-cw"><div id="vi_tabs_0_cnt" class="tb-cntOn"><div><div class="vi-cd"><span style="float: left;" class="vi-br">Seller assumes all responsibility for this listing.</span><div class="vi-iw"><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><table cellpadding="0" cellspacing="0" width="100%" class="vi-ia-attrGroup"><tr><td id="vi-ia-attrTableFirstRowTd"><h3 class="vi-ia-attrGroupTitle vi-ds2-subt">Item specifics</h3></td></tr><tr><td><table cellpadding="0" cellspacing="0" width="100%"><tr><th nowrap="nowrap" id="v4-43" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Condition: </th><td headers="v4-43" class="vi-ia-attrColPadding" width="50.0%"><div>Pre-owned: An item that has been used or worn previously. See the seller’s listing for full details and <span id="v4-41" style="display:none">description of any imperfections.&#160;<a href="http://pages.ebay.com/help/sell/contextual/condition_2.html" target="_blank" class="vi-ia-rm">See all condition definitions<b class="g-hdn">- opens in a new window or tab</b></a></span><span id="v4-40" style="display:inline">...&#160;<a href="javascript:;" class="vi-ia-rm" id="v4-42">Read more<b class="g-hdn">about the condition</b></a></span></div></td><th nowrap="nowrap" id="v4-44" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Style: </th><td headers="v4-44" class="vi-ia-attrColPadding" width="50.0%">Hooded</td></tr><tr><th nowrap="nowrap" id="v4-45" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Main Color: </th><td headers="v4-45" class="vi-ia-attrColPadding" width="50.0%">Off-white</td><th nowrap="nowrap" id="v4-46" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size Type: </th><td headers="v4-46" class="vi-ia-attrColPadding" width="50.0%">Misses</td></tr><tr><th nowrap="nowrap" id="v4-47" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Brand: </th><td headers="v4-47" class="vi-ia-attrColPadding" width="50.0%">J Crew</td><th nowrap="nowrap" id="v4-48" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size: </th><td headers="v4-48" class="vi-ia-attrColPadding" width="50.0%">S</td></tr><tr><th nowrap="nowrap" id="vi-ia-attrSectionLastRowTd" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Material: </th><td headers="v4-49" id="vi-ia-attrSectionLastRowTd" class="vi-ia-attrColPadding" width="50.0%">wool/rayon/angora/cashmere</td><td class="vi-ia-attrColPadding">&#160;</td><td width="50.0%">&#160;</td></tr></table></td></tr></table></div></div></div><div class="store_header vi-cd c-rcp-rcp"><div class="store-panel"><div class="cr-w cr-c cr-cp"><div class="cr-hr" style="background:#F8E3EC;"><table width="100%"><tr><td align="left"><span style="color:#7A2743"><h3 class="storeTitleHeader">NewEnglandCountryLiving</h3></span></td><td align="right"><span style="color:#7A2743;font-size:small;font-weight:normal">Visit my eBay store</span></td><td align="right" style="width:20px;padding:0px 10px 0px 5px;"><a href="http://stores.ebay.com/NewEnglandCountryLiving"><img src="http://q.ebaystatic.com/aw/pics/icon/iconStoresNW_20x20.gif" height="20" width="20" alt="NewEnglandCountryLiving" border="0"></a></td></tr></table></div><div class="cr-cnt" style="background:#FFF9FD;"><div><div><table cellpadding="0" cellspacing="0" bgcolor="#FFF9FD" class="storesearchTable"><tr></tr></table><table cellpadding="0" cellspacing="0" bgcolor="#FFF9FD" width="100%"><tr><td style="width:310px; padding-left:5px; padding-right:10px"><a href="http://stores.ebay.com/NewEnglandCountryLiving" class="store-logo" style="margin-left:0px"><img src="http://i.ebayimg.com/08/!!d3i3vwBHM~$(KGrHqIOKjgEyNHbZhEpBM)G,ntsvw~~_11.JPG" alt="" width="310px" height="90px" border="0"></a></td><td valign="bottom" class="storeinfo"><div class="store-info-links linkTexts" style="padding-left:5px; padding-top:10px"><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;linkname=includefavoritestore&amp;sellerid=newenglandcountryliving">Add this store to favorites</a><img src="http://q.ebaystatic.com/aw/pics/s.gif" width="10px" alt="">|<img src="http://q.ebaystatic.com/aw/pics/s.gif" width="10px" alt=""><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;linkname=includenewsletter&amp;sellerid=newenglandcountryliving">Sign up for newsletter</a></div><div align="left" class="store-info-links" style="padding-left:5px"><form name="search" method="get" action="http://search.stores.ebay.com/search/search.dll" target="_parent"><input type="hidden" name="sid" value="143578515"><input type="hidden" name="srchdesc" value="y"><input type="hidden" name="fp" value="0"><label for="searchId" class="g-hdn">Search Store</label><input type="text" name="query" size="17" maxlength="300" id="searchId" class="searchText"><input type="submit" value="Search Store" name="submit"></form></div></td></tr></table></div><div class="borderDiv"></div><table><tr><td class="catTdLink2"><span class="catSpanLink"><a href="http://cgi3.ebay.com/ws/eBayISAPI.dll?ViewUserPage&amp;userid=newenglandcountryliving">About Me</a></span></td></tr><tr><td colspan="5" class="itemsOnSaleTd"><span class="itemsOnSaleSpan"><img src="http://p.ebaystatic.com/aw/pics/stores/sale/imgStrSaleLstFrmTrns.gif" height="32" width="32" alt="" class="itemsOnSaleImg"><a href="http://search.stores.ebay.com/search/search.dll?GetResult&amp;foso=1&amp;frts=0&amp;sasel=143578515&amp;frpp=30&amp;fsoo=1&amp;fsop=1&amp;fcl=3">Items On Sale</a></span></td></tr></table></div></div></div></div></div></div><table width="100%"><tr><td valign="top" class="storeDescTd"><div><div class="item_description"><div id="ngvi_desc_div" class="d-pad"><div><div><table style="border: 1px solid rgb(122, 37, 66);" width="100%" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0">
7
+ <tbody>
8
+ <tr>
9
+ <td style="padding: 10px;" align="left">
10
+ <table width="100%" border="0" cellpadding="0" cellspacing="5">
11
+ <tbody>
12
+ <tr>
13
+ <td valign="top"><!-- TITLE HERE -->
14
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 20px; font-weight: bold;" align="center">Sweater by J Crew<br></p><!-- New 2 Column Table Here -->
15
+ <table style="padding: 10px;" width="100%" align="center" border="0" cellpadding="0" cellspacing="0" cols="2">
16
+ <tbody>
17
+ <tr>
18
+ <td style="padding: 0pt 10px 10px 0pt;" valign="top" width="420"><!-- PICS HERE -->
19
+ <p><img style="width: 486px; height: 588px;" src="http://i58.photobucket.com/albums/g241/newenglandcountryliving/12/5034.jpg"><br><br>
20
+ <img style="width: 486px; height: 616px;" src="http://i58.photobucket.com/albums/g241/newenglandcountryliving/12/5035.jpg"><br><br>
21
+ <img style="width: 486px; height: 598px;" src="http://i58.photobucket.com/albums/g241/newenglandcountryliving/12/5036.jpg"><br><br>
22
+
23
+ <img style="width: 486px; height: 598px;" src="http://i58.photobucket.com/albums/g241/newenglandcountryliving/12/5033.jpg"><br><br></p></td>
24
+ <td style="padding: 0pt 10px 10px 0pt;" valign="top"><!-- Description Table Here -->
25
+ <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" cols="2">
26
+ <tbody>
27
+ <tr>
28
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 10px;" colspan="2" valign="top">
29
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 16px; font-weight: bold;">Description:</p>
30
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 16px;">Super soft hooded cable knit sweater by J Crew in off-white.<br></p><span style="font-family: arial;"><span style="font-weight: bold;"></span></span></td></tr>
31
+ <tr>
32
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center" width="100">Size: </td>
33
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center">S<br></td></tr>
34
+ <tr>
35
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center" width="100">Measurements: </td>
36
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center"><span style="font-family: arial;"></span><span style="font-family: arial;">across the chest: 15"<br>across the bottom hem: 15"<br>length (from shoulder): 21"<br>sleeve length (from under arm): 18"<br></span></td></tr>
37
+ <tr>
38
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center" width="100">Fabric: </td>
39
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center">40% wool/30% rayon/20% angora/10% cashmere<br><span style="font-family: arial;"></span></td></tr>
40
+ <tr>
41
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center" width="100">Condition </td>
42
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" valign="center">Pre-owned, in flawless condition<br><!-- Size, Measurements, Condition --></td></tr>
43
+ <tr>
44
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 5px; font-family: arial; color: rgb(122, 37, 66); font-size: 15px;" colspan="2" valign="center">
45
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">Please be sure to check the measurements above as sizes may vary by manufacturer. <br><br>We recommend to compare our measurements with a similar items from your own closet to ensure proper fit. <br>All measurements are taken lying flat, without any added stretch </p></td></tr>
46
+ <tr>
47
+ <td style="border-top: 1px solid rgb(122, 37, 66); border-left: 1px solid rgb(122, 37, 66); border-right: 1px solid rgb(122, 37, 66); padding: 10px;" colspan="2" valign="top">
48
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 16px; font-weight: bold;">Payments:</p>
49
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">We accept the following payment methods:</p>
50
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">Paypal <br>Other</p></td></tr>
51
+ <tr>
52
+ <td style="border: 1px solid rgb(122, 37, 66); padding: 10px;" colspan="2" valign="top">
53
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 16px; font-weight: bold;">Shipping:</p>
54
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">We ship Monday to Friday. Usually your item will be shipped the next business day after receipt of payment. </p>
55
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">We are happy to combine shipping for you. Each additional item will ship for just 1 USD more within the US. International customers, please add 2 USD for each additional item. </p>
56
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;">If you require a faster shipping method than quoted, please contact us for shipping quote. </p><!-- Bottom Full Width Table -->
57
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
58
+ <tbody>
59
+ <tr>
60
+ <td valign="top">
61
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px; text-decoration: underline;"><span style="font-weight: bold;">International customers:</span> Please note, that any customs duty that might incur are the receivers responsibility. We will not falsify customs documents and we will write the actual purchase price on the customs forms. </p>
62
+ <p style="font-family: arial; color: rgb(122, 37, 66); font-size: 15px;"><font size="4">Save on shipping: Each additional item ships for only 1 USD more (US only) and 2 USD more for international orders.&nbsp;<span style="font-weight: bold;"><span style="font-weight: bold;"></span></span></font> </p>
63
+ <table width="100%" align="center" border="0" cellpadding="2" cellspacing="2">
64
+ <tbody>
65
+ <tr>
66
+ <td align="middle"><font face="Arial,sans-serif" size="3"><a href="http://stores.ebay.com/NewEnglandCountryLiving"><img src="http://i12.ebayimg.com/07/s/000/77/5c/d2f1_1_b.JPG" border="0"></a><br></font></td></tr></tbody></table>
67
+ <p style="font-family: arial; color: rgb(158, 93, 117); font-size: 15px;" align="center">. </p><!-- Begin Footer with Links -->
68
+ <div align="center">
69
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
70
+ <tbody>
71
+ <tr>
72
+ <td style="font-family: verdana; color: rgb(122, 37, 66); font-size: 13px;" valign="center" width="100%" align="middle" height="30"><a style="color: rgb(122, 37, 66); text-decoration: none;" href="http://stores.ebay.com/NewEnglandCountryLiving_W0QQdptZ0QQsclZQ2d1QQtZkm">All Items</a> | <a style="color: rgb(122, 37, 66); text-decoration: none;" href="http://stores.ebay.com/NewEnglandCountryLiving_W0QQcolZ4QQdirZ1QQdptZ0QQftidZ2QQsclZ1QQtZkm">Fixed Price Items</a> | <a style="color: rgb(122, 37, 66); text-decoration: none;" href="http://stores.ebay.com/NewEnglandCountryLiving_W0QQcolZ4QQdirZ1QQdptZ0QQftidZ2QQsclZ2QQtZkm">Auctions</a> | <a style="color: rgb(122, 37, 66); text-decoration: none;" href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;sellerid=newenglandcountryliving&amp;ssPageName=STRK:MEFS:ADDSTR">Add to favorites</a> </td></tr></tbody></table></div>
73
+ <p align="center">&nbsp;</p><!-- End Footer with Links --></td></tr></tbody></table><!-- EMPTY SPACE -->
74
+ <p><img src="http://www.zoicks.com/gabriele/transparent.jpg" width="100" border="0" height="1"> </p></td></tr></tbody></table></td></tr></tbody></table><!-- Copyright Info -->
75
+ <p style="font-family: verdana; letter-spacing: 2px; color: rgb(122, 37, 66); font-size: 11px; font-weight: 400;" align="center">Copyright © 2005 - 2010 New England Country Living. All rights reserved.</p><!-- End Description --></td></tr></tbody></table></td></tr></tbody></table><!-- End Description --><BR/><font rwr='1' size='2' style='font-family:Arial'><br></div></div></div></div></div></td></tr></table><div><div><div class="vi-qa-main_qa"><div class="pnltbl"><div id="v4-51"><table cellpadding="0" cellspacing="0" class="r3 c gy-br"><thead id="v4-51h" class="gy"><tr><td><div class="r3_hm" style="border-width: 1px 1px 0; padding: 0; height: 5px; font-size:0; overflow:hidden;"></div></td></tr><tr id="v4-51_h"><td class="r3_hm" id="v4-51_hm_0"><h4 class="vi-qa-m0 vi-ds2-subt">Questions and answers about this item</h4></td></tr></thead><tr id="v4-51_c"><td id="v4-51cm" class="r3_c c-sgf"><div class="r3_cm po" id="v4-51_ct"><div><div class="dt" id="v4-52"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-52_tab_0"><tr><td width="1%" class="dt-spTd dt-bgColorTrans">&#160;</td><td scope="row" id="v4-52_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><span>No questions or answers have been posted about this item.</span></td><td width="1%" class="dt-spTd dt-bgColorTrans">&#160;</td></tr></table></div></div></div></div><div class="r3_fm r3_s" id="v4-51_f"><div class="vi-qa-asq-brdr"><div class="vi-qa-ngvi-qa-ask"><span class="vi-qa-qa-ask-span"><a href="http://contact.ebay.com/ws/eBayISAPI.dll?ShowSellerFAQ&amp;_trksid=p4340.l1499&amp;frm=284&amp;iid=250749861707&amp;ssPageName=PageSellerM2MFAQ_VI&amp;redirect=0&amp;requested=newenglandcountryliving" class="al">Ask a question</a></span></div></div></div><div class="r3_hm" style="border-width: 0pt 0px 1px; padding: 0px; height: 4px;font-size:0;overflow:hidden"></div></td></tr></table></div></div></div></div><div></div></div></div></div><div id="vi_tabs_1_cnt" class="tb-cntOff"><div><span class="vi-br">Seller assumes all responsibility for this listing.</span><div class="vi-shp"><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div><div class="shippingSection_BottomVI vi-shp" id="shipNHadling"><div id="shId"><h3 class="g-m0 head vi-ds2-subt" style="font-size:16px;font-weight:bold;color:#333">Shipping and handling</h3></div><div><div><div id="discounts"></div><div class="sh-ItemLoc">Item location: Swansea, Massachusetts, United States</div><div class="sh-ShipSecTop"><div class="sh-ShipTo"><div class="sh-ShipLoc">Shipping to: Worldwide </div></div><div class="sh-CalcShip"><div class="sh_calcShipPad"><table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td width="40%" nowrap="nowrap"><div id="qtyArrowImg" class="sh-hideArrow"></div><div class="sh-InlCnt"><label for="shCountry" class="sh-ShipDtl">Change country:</label><div id="shipToCountry" class="sh-InlCnt"><select class="sh-TxtCnt" id="shCountry" name="country" onchange="return vjo.Registry._30.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="4">Afghanistan</option><option value="5">Albania</option><option value="6">Algeria</option><option value="7">American Samoa</option><option value="8">Andorra</option><option value="9">Angola</option><option value="10">Anguilla</option><option value="11">Antigua and Barbuda</option><option value="12">Argentina</option><option value="13">Armenia</option><option value="14">Aruba</option><option value="15">Australia</option><option value="16">Austria</option><option value="17">Azerbaijan Republic</option><option value="18">Bahamas</option><option value="19">Bahrain</option><option value="20">Bangladesh</option><option value="21">Barbados</option><option value="22">Belarus</option><option value="23">Belgium</option><option value="24">Belize</option><option value="25">Benin</option><option value="26">Bermuda</option><option value="27">Bhutan</option><option value="28">Bolivia</option><option value="29">Bosnia and Herzegovina</option><option value="30">Botswana</option><option value="31">Brazil</option><option value="32">British Virgin Islands</option><option value="33">Brunei Darussalam</option><option value="34">Bulgaria</option><option value="35">Burkina Faso</option><option value="37">Burundi</option><option value="38">Cambodia</option><option value="39">Cameroon</option><option value="2">Canada</option><option value="40">Cape Verde Islands</option><option value="41">Cayman Islands</option><option value="42">Central African Republic</option><option value="43">Chad</option><option value="44">Chile</option><option value="45">China</option><option value="46">Colombia</option><option value="47">Comoros</option><option value="48">Congo, Democratic Republic of the</option><option value="49">Congo, Republic of the</option><option value="50">Cook Islands</option><option value="51">Costa Rica</option><option value="53">Croatia, Republic of</option><option value="55">Cyprus</option><option value="56">Czech Republic</option><option value="57">Denmark</option><option value="58">Djibouti</option><option value="59">Dominica</option><option value="60">Dominican Republic</option><option value="61">Ecuador</option><option value="62">Egypt</option><option value="63">El Salvador</option><option value="64">Equatorial Guinea</option><option value="65">Eritrea</option><option value="66">Estonia</option><option value="67">Ethiopia</option><option value="68">Falkland Islands (Islas Malvinas)</option><option value="69">Fiji</option><option value="70">Finland</option><option value="71">France</option><option value="72">French Guiana</option><option value="73">French Polynesia</option><option value="74">Gabon Republic</option><option value="75">Gambia</option><option value="76">Georgia</option><option value="77">Germany</option><option value="78">Ghana</option><option value="79">Gibraltar</option><option value="80">Greece</option><option value="81">Greenland</option><option value="82">Grenada</option><option value="83">Guadeloupe</option><option value="84">Guam</option><option value="85">Guatemala</option><option value="87">Guinea</option><option value="88">Guinea-Bissau</option><option value="89">Guyana</option><option value="90">Haiti</option><option value="91">Honduras</option><option value="92">Hong Kong</option><option value="93">Hungary</option><option value="94">Iceland</option><option value="95">India</option><option value="96">Indonesia</option><option value="98">Iraq</option><option value="99">Ireland</option><option value="100">Israel</option><option value="101">Italy</option><option value="102">Jamaica</option><option value="104">Japan</option><option value="106">Jordan</option><option value="107">Kazakhstan</option><option value="108">Kenya</option><option value="109">Kiribati</option><option value="111">Korea, South</option><option value="112">Kuwait</option><option value="113">Kyrgyzstan</option><option value="114">Laos</option><option value="115">Latvia</option><option value="116">Lebanon</option><option value="117">Lesotho</option><option value="118">Liberia</option><option value="119">Libya</option><option value="120">Liechtenstein</option><option value="121">Lithuania</option><option value="122">Luxembourg</option><option value="123">Macau</option><option value="124">Macedonia</option><option value="125">Madagascar</option><option value="126">Malawi</option><option value="127">Malaysia</option><option value="128">Maldives</option><option value="129">Mali</option><option value="130">Malta</option><option value="131">Marshall Islands</option><option value="132">Martinique</option><option value="133">Mauritania</option><option value="134">Mauritius</option><option value="135">Mayotte</option><option value="136">Mexico</option><option value="226">Micronesia</option><option value="137">Moldova</option><option value="138">Monaco</option><option value="139">Mongolia</option><option value="228">Montenegro</option><option value="140">Montserrat</option><option value="141">Morocco</option><option value="142">Mozambique</option><option value="143">Namibia</option><option value="144">Nauru</option><option value="145">Nepal</option><option value="146">Netherlands</option><option value="147">Netherlands Antilles</option><option value="148">New Caledonia</option><option value="149">New Zealand</option><option value="150">Nicaragua</option><option value="151">Niger</option><option value="152">Nigeria</option><option value="153">Niue</option><option value="154">Norway</option><option value="155">Oman</option><option value="156">Pakistan</option><option value="157">Palau</option><option value="158">Panama</option><option value="159">Papua New Guinea</option><option value="160">Paraguay</option><option value="161">Peru</option><option value="162">Philippines</option><option value="163">Poland</option><option value="164">Portugal</option><option value="165">Puerto Rico</option><option value="166">Qatar</option><option value="227">Reunion</option><option value="167">Romania</option><option value="168">Russian Federation</option><option value="169">Rwanda</option><option value="170">Saint Helena</option><option value="171">Saint Kitts-Nevis</option><option value="172">Saint Lucia</option><option value="173">Saint Pierre and Miquelon</option><option value="174">Saint Vincent and the Grenadines</option><option value="175">San Marino</option><option value="176">Saudi Arabia</option><option value="177">Senegal</option><option value="229">Serbia</option><option value="178">Seychelles</option><option value="179">Sierra Leone</option><option value="180">Singapore</option><option value="181">Slovakia</option><option value="182">Slovenia</option><option value="183">Solomon Islands</option><option value="184">Somalia</option><option value="185">South Africa</option><option value="186">Spain</option><option value="187">Sri Lanka</option><option value="189">Suriname</option><option value="191">Swaziland</option><option value="192">Sweden</option><option value="193">Switzerland</option><option value="196">Taiwan</option><option value="197">Tajikistan</option><option value="198">Tanzania</option><option value="199">Thailand</option><option value="200">Togo</option><option value="201">Tonga</option><option value="202">Trinidad and Tobago</option><option value="203">Tunisia</option><option value="204">Turkey</option><option value="205">Turkmenistan</option><option value="206">Turks and Caicos Islands</option><option value="207">Tuvalu</option><option value="208">Uganda</option><option value="209">Ukraine</option><option value="210">United Arab Emirates</option><option value="3">United Kingdom</option><option value="1" selected="selected">United States</option><option value="211">Uruguay</option><option value="212">Uzbekistan</option><option value="213">Vanuatu</option><option value="214">Vatican City State</option><option value="215">Venezuela</option><option value="216">Vietnam</option><option value="217">Virgin Islands (U.S.)</option><option value="218">Wallis and Futuna</option><option value="219">Western Sahara</option><option value="220">Western Samoa</option><option value="221">Yemen</option><option value="223">Zambia</option><option value="224">Zimbabwe</option></select></div></div></td><td width="60%"><div id="zipArrowImg" class="sh-hideArrow"></div><div id="shZipCode" class="sh-InlCnt"><span><label id="shZipCodeTextDiv" for="shPostalCode" class="sh-ShipDtl sh-hideElement">ZIP Code:</label><div class="sh-ZipAln"><input type="text" id="shPostalCode" size="12" name="zipCode" class="sh-TxtCnt sh-hideElement sh-enblBox" disabled="disabled"></div></span></div><div class="sh-RateBtn sh-InlCnt"><input type="button" value="Get Rates" id="shGetRates" name="getRates" class="sh-BtnTxt sh-hideElement"></div></td></tr><tr><td width="40%"><div id="shQtyError" class="sh-hideElement"></div></td><td width="60%" valign="top"><div id="shZipError" class="sh-hideElement"></div></td></tr></table><div><input type="hidden" id="hiddenCountry" name="hiddenCountry"><input type="hidden" id="hiddenZipCode" name="hiddenZipCode"></div></div></div></div><div class="sh_shipTblAln_">&nbsp</div><div id="shippingSection" class="sh-DTbl"><div class="dt" id="v4-53"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-53_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-53_tab_0_srtHCol_0" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-TblHdr-new">Shipping and handling</div></th><th scope="col" id="v4-53_tab_0_srtHCol_1" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-TblHdr-new">To</div></th><th scope="col" id="v4-53_tab_0_srtHCol_2" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-TblHdr-new">Service</div></th><th scope="col" id="v4-53_tab_0_srtHCol_3" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="0%" colspan="1"><div class="sh-TblHdr-new">Estimated delivery*</div></th></tr></thead><tr><td scope="row" id="v4-53_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div>US $3.50</div><div></div></div></td><td id="v4-53_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">United States</div></td><td id="v4-53_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div><div>Expedited Shipping (USPS First Class Mail<sup>®</sup>)</div></div></div></td><td id="v4-53_tab_0_srtCol_0_3" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div><div><div id="fdeliveryTime"><div><div><div class="sh-TblCnt">Between <span>Tue. Jan. 11 and Wed. Jan. 12</span><div class="sh-DlvryDtl"></div></div></div></div></div></div></div></td></tr><tr><td scope="row" id="v4-53_tab_0_srtCol_1_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div>US $5.50</div><div></div></div></td><td id="v4-53_tab_0_srtCol_1_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">United States</div></td><td id="v4-53_tab_0_srtCol_1_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div><div>Expedited Shipping (USPS Priority Mail<sup>®</sup>)</div></div></div></td><td id="v4-53_tab_0_srtCol_1_3" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div><div><div id="fdeliveryTime"><div><div><div class="sh-TblCnt">Between <span>Tue. Jan. 11 and Wed. Jan. 12</span><div class="sh-DlvryDtl"></div></div></div></div></div></div></div></td></tr></table></div></div></div><div id="instrTextTable" class="sh_TopSptr sh-instrText sh-transitTime">* <a href="http://pages.ebay.com/help/buy/contextual/estimated-delivery.html" target="_blank">Estimated delivery dates <b class="g-hdn">- opens in a new window or tab</b></a> include seller's handling time, and will depend on shipping service selected and receipt of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">cleared payment <b class="g-hdn">- opens in a new window or tab</b></a>. Delivery times may vary, especially during peak periods.</div></div></div></div><div class="vi-shp"><div id="dom_handling_timeId"><div class="sh-DTbl"><div class="dt" id="v4-54"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-54_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-54_tab_0_srtHCol_0" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="33%" colspan="1"><div class="sh-TblHdr-new">Domestic handling time</div></th></tr></thead><tr><td scope="row" id="v4-54_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">Will usually ship within 1 business day of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">receiving cleared payment <b class="g-hdn">- opens in a new window or tab</b></a>.<span id="shphandlingspan"></span></div></td></tr></table></div></div></div><div class="sh-InpFld"></div><div></div></div></div></div></div></div></div><div><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div id="rpdId"><h3 class="g-m0 vi-rpd-rpdTitle_ vi-ds2-subt" style="font-size:16px;font-weight:bold;color:#333">Return policy</h3><table border="0" width="99%" cellpadding="5" cellspacing="0" class="vi-rpd-tbllyt"><tr><td class="vi-rpd-rpdHeader" width="33%"><div>Item must be returned within</div></td><td class="vi-rpd-rpdHeader" width="33%"><div>Refund will be given as</div></td><td class="vi-rpd-rpdHeader" width="33%"><div>Return policy details</div></td></tr><tr><td width="33%" style="word-wrap: break-word" class="vi-rpd-rpdContent"><div>7 days after the buyer receives it</div></td><td width="33%" style="word-wrap: break-word" class="vi-rpd-rpdContent"><div>Money Back</div></td></tr><tr><td class="vi-rpd-instrText">The buyer is responsible for return shipping costs.</td></tr></table><br><table border="0" width="99%" cellpadding="5" cellspacing="0" class="vi-rpd-tbllyt"></table></div></div></div></div><div class="vi-pd"><div><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div id="payId" class="pay-cont"><h3 class="pay-hdr vi-ds2-subt">Payment details</h3><div class="pay-data"><div class="dt" id="v4-55"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-55_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-55_tab_0_srtHCol_0" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="33%" colspan="1">Payment method</th><th scope="col" id="v4-55_tab_0_srtHCol_1" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="33%" colspan="1">Preferred / Accepted</th><th scope="col" id="v4-55_tab_0_srtHCol_2" class="dt-colCnt dt-rowSeptr dt-colHdr dt-alignLft" width="33%" colspan="1"><b>&#160;</b></th></tr></thead><tr><td scope="row" id="v4-55_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div id="payDet1"><div><img src="http://pics.ebaystatic.com/aw/pics/paypal/imgEcheck.gif" alt="Credit or debit card through PayPal" title="Credit or debit card through PayPal"></div></div></td><td id="v4-55_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div id="payPref1">PayPal Preferred</div></td><td id="v4-55_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><b>&#160;</b></td></tr></table></div></div></div></div></div></div></div></div></div></div></div></div></div></div><script>if (typeof(oGaugeInfo) !== 'undefined') { st = oGaugeInfo.iST; eT = new Date().getTime() - st; oGaugeInfo.sUrl = oGaugeInfo.sUrl+'&atf='+ eT;}</script><script src="http://include.ebaystatic.com/v4js/en_US/e693/SYS-ZAM_vjo_e69312303384_1_en_US.js"></script><script src="http://include.ebaystatic.com/v4js/en_US/e699/GH-ZAM_RedesignEbayNoneFull_e69912424164_1_en_US.js"></script></div>
76
+ <div id="vi-bottom"><div><div class="dt-tp dt-laB"></div></div><div class="vi-btb-blinks"><span><a href="http://www.ebay.com/" class="vi-btb-Lt">Back to home page</a><b class="vi-btb-Lt">&#160;|&#160;</b></span><a href="http://cgi5.ebay.com/ws/eBayISAPI.dll?SellLikeItem&amp;item=250749861707" class="vi-btb-Lt" rel="nofollow">Sell one like this</a><a href="#" id="_rtop" class="vi-btb-Rt">Return to top</a></div><div class="vi-mcmt pvw_m_sep"></div><div class="vi-cmb" id="rtm_html_973" style="height:100%; width:100%"></div><div class="vi-cmb" id="rtm_html_974" style="height:100%; width:100%"></div><div><div style="padding-bottom:0px;margin-top:15px;" class="RtmStyle"><span class="RtmStyle1"><div id="rtm_html_825" style="height:115; width:300"></div></span><span><div></div></span><span class="RtmStyle2"><div id="rtm_html_827" style="height:100; width:300"></div></span><span class="RtmStyle3"><div id="rtm_html_829" style="height:115; width:300"></div></span></div></div><div class="vi-cmb" id="rtm_html_813" style="height:100%; width:940"></div><div><div class="standard-text"><div id="internal" class="pipelinecolor"><a href="http://home.shop.ebay.com/Home-Garden-/11700/i.html?_nkw=anthropologie">Anthropologie</a> | <a href="http://popular.ebay.com/clothing-shoes-accessories-/cashmere-sweater.htm">Cashmere Sweater</a> | <a href="http://shop.ebay.com/i.html?_nkw=sweater">Sweater</a> | <a href="http://shop.ebay.com/i.html?_nkw=ugly+Christmas+Sweater">Ugly Christmas Sweater</a> | <a href="http://shop.ebay.com/i.html?_nkw=cardigan">Cardigan</a> | <a href="http://popular.ebay.com/">Popular Searches</a> | <a href="http://reviews.ebay.com/">eBay Reviews</a> | <a href="http://stores.ebay.com/">eBay Stores</a> | <a href="http://www.half.ebay.com/">Half.com</a> | <a href="http://global.ebay.com/">Global Buying Hub</a> | <a href="http://www.ebay.co.uk/">United Kingdom</a> | <a href="http://www.ebay.de/">Germany</a> | <a href="http://www.ebay.com.au/">Australia</a> | <a href="http://www.ebay.ca/">Canada</a></div><div id="external" class="pipelinecolor"><a href="http://www.ebayclassifieds.com">Free Local Classifieds</a> | <a href="https://www.paypal.com/">PayPal</a> | <a href="http://www.prostores.com/">ProStores</a> | <a href="http://www.rent.com/">Apartments for Rent</a> | <a href="http://www.stubhub.com/">Tickets</a> | <a href="http://www.shopping.com/-cashmere">Cashmere on Shopping.com</a></div></div></div><div class="coreFooterLinks" id="glbfooter"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td class="g-pipe"><img src="http://q.ebaystatic.com/aw/pics/s.gif" height="10" width="1" alt=""><br><a href="http://www.ebayinc.com">About eBay</a> | <a href="http://pages.ebay.com/securitycenter/index.html">Security Center</a> | <a href="http://pages.ebay.com/buy/tools.html">Buyer Tools</a> | <a href="http://pages.ebay.com/help/policies/overview.html">Policies</a> | <a href="http://stores.ebay.com/">Stores</a> | <a href="http://pages.ebay.com/sitemap.html" _sp="l1625">Site Map</a> | <a href="http://viv.ebay.com/ws/eBayISAPI.dll?EbayTime">eBay official time</a></td></tr><tr><td height="5"></td></tr><tr><td height="1" bgcolor="#cccccc" colspan="2"></td></tr><tr><td height="10"></td></tr><tr class="g-hlp" valign="top"><td class="g-nav coreFooterLegalNotice">Copyright © 1995-2011 eBay Inc. All Rights Reserved. Designated trademarks and brands are the property of their respective owners. Use of this Web site constitutes acceptance of the eBay <a href="http://pages.ebay.com/help/policies/user-agreement.html?rt=nc" target="_blank">User Agreement</a> and <a href="http://pages.ebay.com/help/policies/privacy-policy.html?rt=nc" target="_blank">Privacy Policy</a>.<br><img src="http://q.ebaystatic.com/aw/pics/s.gif" height="20" alt=""></td></tr></table><div id="cobrandFooter"></div></div><script type="text/javascript">var _GlobalNavHeaderStatic=false, _GlobalNavHeaderCookieTracking=true, _GlobalNavHeaderSrcPageId=4340;vjo.darwin.core.ebayheader.rover.FooterRover.roverService("http://rover.ebay.com/idmap/0?footer");; if(vjo && vjo.darwin && vjo.darwin.globalnav && vjo.darwin.globalnav.rtm && vjo.darwin.globalnav.rtm.GlobalHeaderRtmCall)vjo.darwin.globalnav.rtm.GlobalHeaderRtmCall.submitRTMCall("http://include.ebaystatic.com/v4js/en_US/e699/GH-ZAM_RedesignEbayRTM_e69912424164_1_en_US.js");</script><div style="margin-top:5px"></div><div class="vi-cmb" id="rtm_html_283" style="height:1; width:100%"></div><div id="tacodaVIWatching" class="z_4"><div class="vi-cmb" id="rtm_html_280" style="height:1; width:100%"></div></div><script language="JavaScript" type="text/javascript"><!--
77
+ var eBayTRPageName="TR_ViewItem";var eBayTRDisplayName="Online Auction - Item #250749861707:J CREW Hooded Sweater Off-White Cable Knit w Cashmere S";var eBayTREiasId="nY+sHZ2PrBmdj6wVnY+sEZ2PrA2dj6wFlIGkD5iHoAmdj6x9nY+seQ==";var eBayTRItemId="250749861707";var eBayTRItemTitle="J CREW Hooded Sweater Off-White Cable Knit w Cashmere S";var eBayTRListingFormat="Online Auction";var eBayTRStoreSearchTerm="";var eBayTRHomePage="";var eBayTREvent="";var eBayTRInactive=false;
78
+ //--></script><script language="JavaScript" type="text/javascript" src="http://include.ebaystatic.com/js/e699/us/features/site_catalyst/omniture/base_e6991us.js"></script><script language="JavaScript" type="text/javascript" src="http://include.ebaystatic.com/js/e699/us/features/site_catalyst/omniture/storesv4_e6991us.js"></script><script type="text/javascript">vjo.Registry.put('bta', new vjo.darwin.globalnav.bta.BuyerTransactionAlert("bta", 60, 2, 2, "http://bmsgs.ebay.com/ws/eBayISAPI.dll?GetBuyerTransactionAlerts", "http://q.ebaystatic.com/aw/pics/", "http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem", "Watched Item ending soon!", "You've been outbid!", "You've received a Second Chance Offer", "You've received a Transaction Confirmation Request."));
79
+ vjo.darwin.globalnav.util.EventReg.aggregate(vjo.Registry._bta.onRefreshHdl());
80
+ vjo.darwin.globalnav.util.EventReg.browseCategories("BrowseCategoriesMenu", "http://include.ebaystatic.com/categoryjs/96/en_US_MAIN/category_96en_US_MAIN0.js");
81
+ vjo.darwin.globalnav.util.EventReg.impression("AVN3HZiY*");
82
+ </script></div>
83
+ </div>
84
+ <!--ud.re`j565;,RcmdId ViewItemNext,RlogId p4%60bo7%60jtb9%3Fud.re%60j565%3B-12d5754de05--><script type="text/javascript">vjo.dsf.error.ErrorHandlerManager.register(new vjo.dsf.error.DefaultErrorHandler());
85
+ vjo.dsf.error.ErrorHandlerManager.enableOnError(true);
86
+ vjo.dsf.cookie.VjCookieJar.sCookieDomain = '.ebay.com';vjo.dsf.cookie.VjCookieJar.writeCookielet('ebay','js','1');
87
+ </script><script type="text/javascript">var _GlobalNavHeaderUtf8Encoding=true;
88
+
89
+ </script><script type="text/javascript">var _oGlobalNavRTMInfo={};_oGlobalNavRTMInfo.aRTMPlacementData=[];_oGlobalNavRTMInfo.aRTMPlacementData=[{"ord":null,"maxWidth":"470","rtmUrl":"http://srx.main.ebayrtm.com/rtm","htmlId":"rtm_html_433","userId":null,"isUserSignin":false,"GUid":null,"renderBeforeOnload":true,"maxHeight":"22","pid":"433"},{"ord":null,"maxWidth":"160","rtmUrl":"http://srx.main.ebayrtm.com/rtm","htmlId":"rtm_html_876","userId":null,"isUserSignin":false,"GUid":null,"renderBeforeOnload":true,"maxHeight":"22","pid":"876"},{"ord":null,"maxWidth":"160","rtmUrl":"http://srx.main.ebayrtm.com/rtm","htmlId":"rtm_html_912","userId":null,"isUserSignin":false,"GUid":null,"renderBeforeOnload":true,"maxHeight":"22","pid":"912"}];
90
+ (function(){
91
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
92
+ _r.put('37', new vjo.darwin.core.rtm.RTMInit({"contentTypes":[null,null,null,null,null,null,null,null,null],"triggerEvent":["0","0","0","0","0","0","0","0","1"],"onload":false,"defaultUrls":["","collapse","collapse","","","","","",""],"pids":["1595","973","974","825","827","829","813","283","280"],"adSurveyJsUrl":"http://include.ebaystatic.com/v4js/en_US/e693/GH-ZAM_AdSurvey_e69312303384_1_en_US.js","expJsUrl":"http://include.ebaystatic.com/v4js/en_US/e693/GH-ZAM_ExpAd_e69312303384_1_en_US.js","htmlIds":["rtm_html_1595","rtm_html_973","rtm_html_974","rtm_html_825","rtm_html_827","rtm_html_829","rtm_html_813","rtm_html_283","rtm_html_280"],"expandDirections":[null,null,null,null,null,null,null,null,null],"hasSurvey":[null,null,null,null,null,null,null,null,null],"quickPids":[],"fetchUrl":null,"mode":"0","suppressRtmCmd":false,"popupBoxJsUrl":"http://include.ebaystatic.com/v4js/en_US/e693/GH-ZAM_PopupBox_e69312303384_1_en_US.js","maxExpandWidths":null,"heights":["100%","100%","100%","115","100","115","100%","1","1"],"widths":["100%","100%","100%","300","300","300","940","100%","100%"],"maxExpandHeights":null,"url":"http://srx.main.ebayrtm.com/rtm?RtmCmd&a=json&p=1595:973:974:825:827:829:813:283:280&ph=0:0:0:0:0:0:0:0:0&ev=0:0:0:0:0:0:0:0:1&g=5754ddc712d0a03662648474ffd36c57&uf=0&c=1H4sIAAAAAAAAAFVT22rcMBB9D%2BQfBC0tFCXRZSRLAT2kZiFpm02o0ywtgeLuKrsGxwq2U3eLP75jyUno02ju58yM3qz8hnwqG8IU4exUmVOlyGVxQwTj%2FPDgUdjMRcn4LJn7RPKvixU5D2GDycXgy9635Or%2B%2Fmi1q3pP8vJX7cnnpurJgEq3e%2FCtJ0WsphwHqTKjuEKdS%2BO4ygTEN3bioNj0ttYJxTKwRvOMZdEtIwAuhZPHKZm7GKxFkhZeC%2BgEl1vuin5fe5rQ0qL668nN%2FtHTy6rrfBcNtKCXZdWQPNShpRORYSJCP7Zls6FIt%2FUDRiDLqqzpEEJ90pb70JyUzTa05cl65ogNpcnc7VKe%2F6i%2Bfzg8WFcbx8XdE2M4TZak%2Bl%2BdQAqbwCqcABxbG23wkhldMnE00oGE6Sk5zg5SsBHzbKKQPO2Mp7lIrpOK4zpOBnD5%2BcVyUSx%2Bnn3Lby6ultEq53AsJiwAIAbA%2FtPeuHK4eZbyBUa%2BFYxGPRoyFVOBzSgz4%2FI69Luq2VJS7ILvyDtytl77rgtt5bvEaxUefPO%2BI8%2BhyTrfU%2FfKHSDhxy5aGq2jLe1XMuPi8QBL4Fnmln5YNNsaV5eHp6Zv91%2Bq31gdvWbOke7q0Td3UdOzjbnrcutvKz9c9P5h6f%2F0EzFn4qwFtkkym2fIXqAIjbfKpaJcKEWBU2ElUJVRyYSh%2Blm3VHGqDFViypHaXbf%2BKAyN38R%2FgTUYEhQjxwOXUo0chDZgR8G0BWZGZKa0ESMwzUCyEd1aCzWCtAr%2FSASSuVicpb0LCe4o3geGOoGuf6Pc0c7tAwAA&ord=1294250335749","reportAdJsUrl":"http://include.ebaystatic.com/v4js/en_US/e693/GH-ZAM_RtmDC_e69312303384_1_en_US.js","merchPrefix":"ME","onDemandPids":[],"onScrollPids":[],"expandSecurityTokens":null,"th":{},"showPH":["0","0","0","0","0","0","0","0","0"],"allowExpandOnPageLoad":null,"delayedContent":[null,null,null,null,null,null,null,null,null],"dblclkUrls":["","","","","","","","",""]}));
93
+ $se(0,'RTM_CALLBACK_SERVICE',vjo.Registry.get('37'));
94
+ $se(2,function(message) {if (message.trspType == 'Remote') { message.stok = '-741572763' };});
95
+ $se(2,function(message) {if (message.trspType == 'Remote') {message.pId = '4340';}});
96
+ $se(6,'Remote',function (message) {vjo.darwin.tracking.sojourner.TrackingRespHdl.handleResponse(message); });
97
+ })();
98
+ </script><script type="text/javascript">(function() {vjo.dsf.ServiceEngine.handleRequest(new vjo.dsf.Message('RTM_CALLBACK_SERVICE'));})();
99
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/en_US/e693/SYS-ZAM_Omniture_e69312303384_5_en_US.js"></script><script type="text/javascript">vjo.dsf.cookie.VjCookieJar.writeCookieEx("lucky9", "3181608", 730);
100
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/en_US/e695/BuyingApp_Common_e69512334701_6b_en_US.js"></script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/en_US/e693/BuyingApp_ViewItemATLShipping_e69312303384_6_en_US.js"></script><script type="text/javascript">if(plst!=null){var plft = new Date().getTime();var pllt = ((plft - plst) / 1000);if (pllt >= 999) {pllt = 999;}pllt = pllt.toString();if (pllt.length > 3) {pllt = pllt.substring(0, 3);}vjo.dsf.cookie.VjCookieJar.writeCookielet("ebay","lrtjs",pllt);}
101
+ vjo.darwin.globalnav.util.EventReg.vnlArrow("11450_sp", "gh-act gh-ua", {"gh_vnl_0":["v4-0",null],"gh_vnl_1":["v4-0",null],"gh_vnl_2":["v4-0",null],"gh_vnl_3":["v4-0",null]}, "gh-vsmn", null, [500,500], "VNL_MENU", "http://cgi1.ebay.com/ws/eBayISAPI.dll?GlobalHeaderAjax&vnlmenu=true&catid=11450&pageid=4340");
102
+ vjo.darwin.tracking.rover.Rover.roverTrack();
103
+ (function () {
104
+ var _r = vjo.Registry;
105
+ function $o3(){return new vjo.darwin.pres.buying.cmp.watchitem.WatchItem({watchingText:"defWatchingText",watchDiv:"linkId",upArrowImageDiv:"upArr",guestMsgs:["You can add ##n## more item.","You can add ##n## more items."],maxDiv:"errorDiv",resDiv:"middleDiv",itemsStr:"(##i## items)",watchBottomDiv:"watchLinkBottom",mainDiv:"masterDiv",guestDiv:"guestId",downArrowImageDiv:"dwnArr",watchingDiv:"watchButtonStatus",itemStr:"(##i## item)",baseUrl:"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=250749861707&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=5ff5bd8d8797f8d77cfbdbbfa350a612&_trksid=p4340.l1359",watchActTopDiv:"linkTopAct",watchBottomRow:"wchBtmRow",watchActBottomDiv:"watchLinkBottomAct",watchLabel:" ",watchLabelDiv:"watchLabelDiv",watchMiddleDiv:"watchLinkButton",blueKaiPid:280,NGVIWatchersPC:false,watchMiddleRow:"wchMidRow",maxtrackedItem:0,watchCountIsOne:false,userMsgs:["You’re the first person to watch this item. Don’t let it get away!","people are watching this item. Place a bid and beat them to buy this item!","##n## item can still be added to your watch list.","##n## items can still be added to your watch list.","person is watching this item. Place a bid and improve your chances to buy this item."]});};function $o5(p0_4,p0_10,p0_11,p0_18,p0_22,p0_23,p0_26,p0_29,p0_31){return new vjo.darwin.core.overlaypanel3.OverlayPanel({CHI:"v4-31",HM:false,mzid:6000,jsr:null,STK:p0_4,PCSN:"OP_CLSD",SC:"olp-mn olp-ws_c",SOn:true,zid:4000,OD:0,COB:p0_10,ICOMO:p0_11,POSN:"OP_OPND",CSN:"OP_CLS",CID:null,HOF:0,CD:0,ACC:true,CJId:p0_18,OSN:"OP_OPN",VA:"auto",scrbl:false,VOF:p0_22,SIC:p0_23,VANS:-1,MCI:"",CW:p0_26,HA:"auto",MCO:"",HJId:p0_29,scrlH:0,CId:p0_31});};function $o10(){return new vjo.darwin.core.overlaypanel3.PositionElement(true);};function $o11(p0,p1,p2){return new vjo.darwin.pres.buying.cmp.shippingrates.CountrySelect(p0,p1,p2,["1,0","2,0"]);};function $o15(p0){return new vjo.darwin.core.overlaypanel3.harrow.OverlayPanelWithHArrow(p0,new Array('aro-al aro-rt','aro-al aro-rl','aro-ar aro-lt','aro-ar aro-ll'),28,"CENTER","29");};_r.put('0',$o3()); _r.put('1',$o3()); _r.put('Js-v4-7',new vjo.darwin.comp.button.Button({"FName":null,"BT":"psb-S","scope":"bn","subScope":"psb","LId":"txt_v4-7","svcId":"BTN_SBMT_SRV_v4-7","tp":1,"BId":"but_v4-7","SId":"spn_v4-7","dis":false})); _r.put('addLst_js',new vjo.darwin.pres.buying.cmp.addtolist.AddToList({"mskuItem":false,"defList":false,"BKId":280,"addCnt":"Add to ##1","watchListId":-99,"watchStatusCnt":"Added to your ##1","nwDefCt":"Type a new list name here","maxListCount":50,"listFull":"##1 is full","watchList":"Watch list","jitId":null,"watchListBaseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=250749861707&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=5ff5bd8d8797f8d77cfbdbbfa350a612&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","signInRedirectUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=250749861707&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=5ff5bd8d8797f8d77cfbdbbfa350a612&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","dropDownJsId":"dropdown","adddedMoreLst":"Added to ##2 lists","allListIds":[-99],"inWl":false,"newOl":"nLstOly","nwTxtId":"nLstTxt","watchLinkId":"linkTopAct","itemEnded":false,"itemListIds":[],"adddedOneLst":"Added to your ##1 list","statusMsg":"statusmsg","hasWatchLink":true,"otherListBaseUrl":"http://my.ebay.com/ws/eBayISAPI.dll?MyEbayBeta&entityInfo=250749861707^ITEM&vi=true&SubmitAction.AddToListVI=x&pItemId=250749861707","addToWatch":"Add to Watch list","maxListIds":[],"addtoListLabel":"Add to list"})); _r.put('dropdown',new vjo.darwin.pres.buying.cmp.dropdown.DropDown({"selSvcId":"D_ISID","firstAddToWatch":false,"panel":"pnl_addToList","charLimit":35,"cnAttrVal":"true","itemAnch":"_ita_addToList","titleAnch":"-99_ttl_addToList","ddSpan":"dd_addToList","footerDs":false,"swAttrVal":"true","itemIdList":{"-99":false},"swAttrNm":"sw","ellipses":"...","pnlStrAnch":"s_addToList","titleSp":"ttlsp_addToList","ul":"ul_addToList","footer":"s","cnAttrNm":"nw","imgId":"img_addToList","pnlEndAnch":"e_addToList"})); _r.put('nLstOlyjsid',$o10()); _r.put('5nLstOly',$o5(true,true,false,"5nLstOly",-18,false,300,"nLstOlyjsid","nLstOly")); _r.put('9',$o11("clcountry","clZipCodeTextDiv","clzipCode")); _r.put('chngLocjsid',$o10()); _r.put('12chngLoc',$o5(false,false,false,"12chngLoc",20,true,334,"chngLocjsid","chngLoc"));
106
+ _r.put('disPnljsid',$o15("disPnlarid")); _r.put('15disPnl',$o5(false,false,false,"15disPnl",0,false,175,"disPnljsid","disPnl")); _r.put('hldolpjsid',$o15("hldolparid")); _r.put('18hldolp',$o5(false,true,false,"18hldolp",0,false,250,"hldolpjsid","hldolp")); _r.put('v4-36jsid',$o15("v4-36arid")); _r.put('21v4-36',$o5(false,false,true,"21v4-36",0,false,250,"v4-36jsid","v4-36")); _r.put('ic_js_vv4-37',new vjo.darwin.core.imagecontainerwithtoolbar.ImageContainerWithToolbar({"mskId":"vv4-37_zm_msk","cmpId":"vv4-37","ZHt":320,"imgData":{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_35.JPG","customAttributes":{},"alt":"J CREW Hooded Sweater Off-White Cable Knit w Cashmere S","href":null},"loadSrvcId":"LOAD_HIRES_SRVC_ID_vv4-37","hiResImgHt":800,"ancId":"vv4-37_a","TBarId":"vv4-37_TB","DEnTxt":"Enlarge option unavailable","ZErrId":"vv4-37_zm_zErr","height":300,"hiResImgCntrId":"vv4-37_zm_zCtr","preLoad":true,"msgTxtId":"vv4-37_zm_txt","mrkCntrId":"vv4-37_zm_mCtr","bdrId":"vv4-37_bdiv","dsblZoomTitle":"Close up image unavailable","noZoomMsg":"Zoom unavailable","zoomMsg":"Zoom","hiResImgData":{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_3.JPG","customAttributes":{},"alt":null,"href":null},"reszOnLd":false,"mskImgId":"vv4-37_zm_mImg","zoomSrvcId":"MN_CLK_SVCvv4-37_TB_0","imgId":"i_vv4-37","EEnTxt":"Enlarge","IDivId":"vv4-37_idiv","hiResCntId":"vv4-37_zm_iCtr","width":300,"ZWd":320,"DEnTip":"Enlarge image option unavailable","mkrId":"vv4-37_zm_mrk","hiResImgWd":800,"zoomCntId":"vv4-37_zm","enblZoomTitle":"Show close up area of image","enIdx":1,"loadSvcId":"LOAD_IMG_SRVC_ID_vv4-37","dsblClz":"tbr-d","clkLstrKey":null,"hiResId":"vv4-37_zm_zImg","thrbId":"vv4-37_t","errId":"vv4-37_e","err":null,"zoomIdx":0,"EEnTip":"Show larger and alternate views","clkSrvId":"IMG_CNTR_CLICKED_vv4-37","zoomThrobId":"vv4-37_zm_thr","msgId":"vv4-37_zm_msg","thr":null,"enblClz":"ict-zm","enlrgSrvcId":"MN_CLK_SVCvv4-37_TB_1"})); _r.put('th_js_vv4-37',new vjo.darwin.core.thumbnailgrid.ThumbnailGrid({"instId":"th_js_vv4-37","cmpId":"vv4-37","width":32,"noOv":false,"hrSrvId":"TH_HVR_SVCvv4-37","selPfx":"sel_vv4-37_","errUrl":"http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_32x32.gif","divId":"vv4-37_div","imgData":[{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_14.JPG","customAttributes":{},"alt":"J CREW Hooded Sweater Off-White Cable Knit w Cashmere S","href":null},{"src":"http://i.ebayimg.com/12/!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/06/!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/14/!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_14.JPG","customAttributes":{},"alt":null,"href":null}],"padding":0,"pos":2,"clkLstrKey":null,"brd1Id":"b1_vv4-37_","rows":1,"brd2Id":"b2_vv4-37_","idList":["vv4-37_div","vv4-37_tbl","t_ivv4-37_","t_c_vv4-37_","b1_vv4-37_","b2_vv4-37_","pD_vv4-37","sel_vv4-37_"],"currSelImg":"t_c_vv4-37_0","scBarId":null,"errCss":"tg-e32","forcedLoad":false,"hvrBgClr":"#3881e8","clkBgClr":"#666","noC":false,"trPfx":"t_r_vv4-37_","height":32,"cellHeight":43,"cls":["tg-tb","tg-clp","tg-td","tg-tbL","tg-tbT"],"prDivId":"pD_vv4-37","spacer":{"src":"http://q.ebaystatic.com/aw/pics/s.gif","customAttributes":{},"alt":"","href":""},"clkSrvId":"TH_CLK_SVCvv4-37","moutSrvId":"TH_OUT_SVCvv4-37","tdPfx":"t_c_vv4-37_","cols":6,"resizeOnLoad":true,"tblId":"vv4-37_tbl","imgPfx":"t_ivv4-37_"})); _r.put('vv4-37_js',new vjo.darwin.core.viewselector1.ViewSelectorWithToolbar({"DE":false,"cmpId":"vv4-37","icJsInstId":"ic_js_vv4-37","width":300,"height":300,"gtId":"gt_v4-37","mnImgData":[{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_35.JPG","customAttributes":{},"alt":"J CREW Hooded Sweater Off-White Cable Knit w Cashmere S","href":null},{"src":"http://i.ebayimg.com/12/!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/06/!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/14/!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_35.JPG","customAttributes":{},"alt":null,"href":null}],"spTd":"vv4-37_sp","hiResImgData":[{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/12/!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/06/!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/14/!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_3.JPG","customAttributes":{},"alt":null,"href":null}],"thWidth":0,"zoom":true,"thImgData":[{"src":"http://i.ebayimg.com/23/!B+OuE6gCWk~$(KGrHqR,!hoEzeKbLR0BBM-+1CCShQ~~1_14.JPG","customAttributes":{},"alt":"J CREW Hooded Sweater Off-White Cable Knit w Cashmere S","href":null},{"src":"http://i.ebayimg.com/12/!B+OuMM!EGk~$(KGrHqZ,!ioEzNpy2WY+BM-+1M7n,g~~1_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/06/!B+OuS,!B2k~$(KGrHqV,!l8Ey+jC2JuHBM-+1WKjFQ~~1_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/14/!B+OucP!EGk~$(KGrHqR,!hQEzd14BlPUBM-+1knYRw~~1_14.JPG","customAttributes":{},"alt":null,"href":null}],"scJsInstId":null,"thHeight":0,"scrollCnt":0,"mnImgId":"i_vv4-37","thJsInstId":"th_js_vv4-37"})); _r.put('27',new vjo.darwin.pres.buying.cmp.itempictures.ItemPictures({"noVarImgTxt":null,"picIdxChgSrvId":"vi-PicSelIdxValChange","trackId":"l1494","thmMOSrvid":null,"VSJsRefId":null,"priTrtValSvcId":"vi-PriTraitValChange","thmClkSrvid":null,"imgConId":null,"pageId":"p4340","noImgIdx":0,"noVarImgClass":null,"varSellblId":null}));
107
+ _r.put('v4-38',new vjo.darwin.pres.buying.cmp.bid.Bid({"changeBidUrl":null,"placeBidContId":null,"lmd":0,"fastDur":0,"accRatio":0,"bidAgainUrl":null,"promoReq":null,"EBayBucksContId":null,"confirmBidUrl":null,"EBayBucksRowId":null,"errorContId":null,"placeBidUrl":null,"timeContId":null,"leftMaxBidId":null,"placeBidToolbarId":null,"pageMaxBidTxtId":"v4-28","daysContId":null,"confirmMaxBidContId":null,"slowInt":0,"lmdName":null,"rightMaxBidId":null,"maxBidTxtId":null,"secondsLblId":null,"bidConfirmToolbarId":null,"inclVatLblId":null,"currBidContId":null,"bidConfirmFooterId":null,"shippingContId":null,"infoContId":null,"dateContId":null,"initUrl":"https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26bolp%3D1%26item%3D250749861707%26pt%3DUS_CSA_WC_Sweaters","slowDur":0,"reviewMaxInclVatLblId":null,"changeBidLinkId":null,"virIdName":null,"maxBidContId":null,"hrsLblId":null,"secondsContId":null,"pageShippingFeeElemId":null,"ocbEnabled":null,"autoRefreshVal":null,"daysLblId":null,"minToBidContId":null,"congratsContId":null,"ocbJsCompId":null,"ocbLinkId":null,"dateTimeContId":null,"disclaimerContId":null,"changeBidBtnId":null,"confirmBidContId":null,"content":null,"confirmBidBtnId":null,"congratsMsgContId":null,"refreshBtnId":null,"timeLeftContId":null,"maxReBidTxtId":null,"shippingRowId":null,"pageMaxBidFormId":"v4-24","aDivid":null,"merchContId":null,"localCurrBidContId":null,"dayLeftContId":null,"overlayCmpId":null,"titleId":null,"refreshUrl":null,"clzNames":null,"outbidLegalContId":null,"bmlRow":null,"virId":0,"ocbContId":null,"hoursLblId":null,"errorMsgContId":null,"increaseMaxBidContId":null,"minToReBidContId":null,"throbberContId":null,"manualRefreshVal":null,"minutesContId":null,"rightMaxReBidId":null,"maxBidParamName":"maxbid","accDur":0,"infoMsgContId":null,"makeBidUrl":null,"placeBidBtnId":null,"showMerch":null,"bidConfirmCloseLinkId":null,"closeLinkId":null,"bmlContId":null,"refreshBtnContId":null,"currBidExclVatContId":null,"cancelLinkId":null,"minutesLblId":null,"reviewBidContId":null,"confirmMaxInclVatLblId":null,"hoursContId":null,"siteCatalyst":null,"refreshTypeName":null,"leftMaxReBidId":null,"currBidRowId":null,"slowConnUrlContId":null,"arefreshCmpJsId":null,"reviewBidToolbarId":null,"accBase":0,"fastInt":0,"hrsContId":null,"maxBidValue":null,"bmlCoreRow":null,"sUrl":null,"currBidExclVatId":null})); _r.put('30',$o11("shCountry","shZipCodeTextDiv","shPostalCode")); _r.put('Js-vi_tabs',new vjo.darwin.comp.tab.Tab({"SC":"tb","BS":false,"MSI":"TAB_CLK1_vi_tabs","ABG":null,"AI":0,"id":"vi_tabs"})); _r.put('v4-50',new vjo.darwin.pres.buying.cmp.description.HideShowIframe({"descIframeId":"b","frameUrl":null,"srcMode":null})); _r.put('36',new vjo.darwin.comp.base.Base()); })();
108
+ (function(){
109
+ var _d=vjo.dsf.EventDispatcher;
110
+ var _r=vjo.Registry;
111
+ function $8(){return function(event){return this.swapItemInfoClass({outTitleCls:"eciIt",arwId:"ii_arr",ecTitleId:"ec_title",rarwCls:"vi-pla-sI vi-pla-bR",hvrTitleCls:"eciItHvr",showId:"ii_lyr",darwCls:"vi-pla-sI vi-pla-bD",ecId:"ec_span",dspanCls:"ec-span-down",rspanCls:"ec-span"});};};function $10(p0){return function(event){return this.setMState(p0);};};function $12(p0,p1){return function(event){return this.olpMsg(p0,p1);};};function $13(p0){return function(event){return this.clickedServiceHandler(p0,null);};};function $14(p0){return function(event){return this.submit(p0);};};function $15(){return function(event){return this.onMin();};};function $17(p0){return function(event){return this.toggleDiv(p0,"masterDiv","dwnArr","upArr");};};function $18(){return function(event){return this.showItemInfo({outTitleCls:"eciIt",arwId:"ii_arr",ecTitleId:"ec_title",rarwCls:"vi-pla-sI vi-pla-bR",hvrTitleCls:"eciItHvr",showId:"ii_lyr",darwCls:"vi-pla-sI vi-pla-bD",ecId:"ec_span",dspanCls:"ec-span-down",rspanCls:"ec-span"});};};function $19(){return function(event){return this.catchElement(event);};};function $20(){return function(event){return this.onMout();};};_r.put('8', new vjo.darwin.pres.buying.cmp.shippingrates.UpdateHiddenFields(["hiddenQuantity","hiddenCountry","hiddenZipCode"], ["clquantity","clcountry","clzipCode"])); _r.put('10', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("clGetRates")); _r.put('11', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "clcountry", "clquantity", "clzipCode", 250749861707, "clGetRates")); _r.put('29', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", null, 250749861707, "shGetRates")); _r.put('31', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("shGetRates")); _r.put('32', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", null, 250749861707, "shGetRates")); _d.add('dwnArr','click',$17("block"),_r._0);_d.add('upArr','click',$17("none"),_r._1);_d.add('nLstTxt','keypress',function(event) { this.onEnter(event, "ad_btn"); },vjo.darwin.pres.buying.cmp.addtolist.AddToList);_d.add('ad_btn','click',function(event) { this.createNewListRequest("nLstTxt"); },vjo.darwin.pres.buying.cmp.addtolist.AddToList);_d.add('v4-30','click',$12("OP_CLSnLstOly","v4-30"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('nLstOly','mouseover',$10(1),_r._5nLstOly);_d.add('nLstOly','mouseout',$10(0),_r._5nLstOly);_d.add('nLstOly','mouseover',$15(),_r._5nLstOly);_d.add('nLstOly','mouseout',$20(),_r._5nLstOly);_d.add('nLstOly_cbtn','click',$12("OP_CLSnLstOly","nLstOly_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);
112
+ _d.add('changeLocLink','click',_r.get('8'));_d.add('clzipCode','keypress',_r.get('10'));_d.add('clGetRates','click',_r.get('11'));_d.add('clGetRates','click',function(event){ return false; });_d.add('chngLoc','mouseover',$10(1),_r._12chngLoc);_d.add('chngLoc','mouseout',$10(0),_r._12chngLoc);_d.add('chngLoc','mouseover',$15(),_r._12chngLoc);_d.add('chngLoc','mouseout',$20(),_r._12chngLoc);_d.add('chngLoc_cbtn','click',$12("OP_CLSchngLoc","chngLoc_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',$12("OP_OPNchngLoc","changeLocLink"),vjo.darwin.core.overlaypanel3.OverlayPanel);
113
+ _d.add('disPnl','mouseover',$10(1),_r._15disPnl);_d.add('disPnl','mouseout',$10(0),_r._15disPnl);_d.add('disPnl','mouseover',$15(),_r._15disPnl);_d.add('disPnl','mouseout',$20(),_r._15disPnl);_d.add('seeDcnt','mouseover',$12("OP_OPNdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('seeDcnt','focus',$12("OP_OPNdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('seeDcnt','mouseout',$12("OP_CLSdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$12("OP_OPNhldolp","hldhlp"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldolp','mouseover',$10(1),_r._18hldolp);_d.add('hldolp','mouseout',$10(0),_r._18hldolp);
114
+ _d.add('hldolp','mouseover',$15(),_r._18hldolp);_d.add('hldolp','mouseout',$20(),_r._18hldolp);_d.add('hldolp_cbtn','click',$12("OP_CLShldolp","hldolp_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('v4-35','click',function(event) { return this.onClk("http://pages.ebay.com/coverage/index.html"); },vjo.darwin.pres.buying.cmp.buyerguarantee.BuyerGuarantee);_d.add('v4-36','mouseover',$10(1),_r.get('21v4-36'));_d.add('v4-36','mouseout',$10(0),_r.get('21v4-36'));_d.add('v4-36','mouseover',$15(),_r.get('21v4-36'));_d.add('v4-36','mouseout',$20(),_r.get('21v4-36'));_d.add('vv4-37_a','click',function(event) { return this.clickedImgServiceHandler(); },_r.get('ic_js_vv4-37'));_d.add('vv4-37_TB_0','click',$13("MN_CLK_SVCvv4-37_TB_0"),vjo.darwin.core.toolbar.Toolbar);
115
+ _d.add('vv4-37_TB_1','click',$13("MN_CLK_SVCvv4-37_TB_1"),vjo.darwin.core.toolbar.Toolbar);_d.add('body','load',function(event) { this.placeBdr(null, "b2_vv4-37_0", 0, "click"); },_r.get('th_js_vv4-37'));_d.add('body','load',function(event) { this.startLoading(); },_r.get('th_js_vv4-37'));_d.add('body','load',function(event) { this.setTabInfo({"desc":0,"ship":1}); },vjo.darwin.pres.buying.cmp.shared.SwitchTabs);_d.add('body','load',function(event) { this.callOnLoad(["Js-v4-7","Js-vi_tabs"]); },vjo.darwin.comp.utils.EventUtils);_d.add('vv4-37_div','mouseout',function(event) { this.movingout(event); },_r.get('th_js_vv4-37'));_d.add('vv4-37_div','click',$19(),_r.get('th_js_vv4-37'));_d.add('vv4-37_div','mouseover',$19(),_r.get('th_js_vv4-37'));_d.add('b1_vv4-37_','click',$19(),_r.get('th_js_vv4-37'));_d.add('b2_vv4-37_0','click',$19(),_r.get('th_js_vv4-37'));
116
+ _d.add('b2_vv4-37_0','mouseover',$19(),_r.get('th_js_vv4-37'));_d.add('but_v4-7','click',$14("but_v4-7"),_r.get('v4-38'));_d.add('','click',$14(""),_r.get('v4-38'));_d.add('tmp-bid','click',$14("tmp-bid"),_r.get('v4-38'));_d.add('a_payId','click',function(event){ vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab(); });_d.add('ii_arr','click',$18(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','click',$18(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','mouseover',$8(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','mouseout',$8(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('v4-42','click',function(event) { this.showConditionDef("v4-41", "v4-40"); },vjo.darwin.pres.buying.cmp.itemattributes.ItemAttributes);
117
+ _d.add('shCountry','change',_r.get('29'));_d.add('shCountry','change',function(event){ return false; });_d.add('shPostalCode','keypress',_r.get('31'));_d.add('shGetRates','click',_r.get('32'));_d.add('shGetRates','click',function(event){ return false; });_d.add('v4-61','click',function(event){ vjo.dsf.Element.toggleHideShow('ngvi_desc_div'); });_d.add('v4-61','click',function(event) { this.hideShowIframe(); },_r.get('v4-50'));})();
118
+ (function(){
119
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
120
+
121
+ $se(4,'TH_OUT_SVCvv4-37',function (message) {_r.get('vv4-37_js').UpdateImgContainer(message); });
122
+ $se(4,'D_ADDID',function (message) {_r._dropdown.addChld(message); });
123
+ $se(4,'TH_CLK_SVCvv4-37',function (message) {_r.get('vv4-37_js').handleZoom(message); });
124
+ $se(4,'TH_CLK_SVCvv4-37',function (message) {_r.get('vv4-37_js').detachZoom(message); });
125
+ $se(4,'TH_CLK_SVCvv4-37',function (message) {_r.get('vv4-37_js').UpdateImgContainer(message); });
126
+ $se(4,'TH_CLK_SVCvv4-37',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.setSelectedIdx(message); });
127
+ $se(4,'D_EDID',function (message) {_r._dropdown.callEnDsbl(message); });
128
+ $se(4,'C_EDID',function (message) {_r._dropdown.chgTtl(message); });
129
+ $se(4,'BTN_SBMT_SRV_v4-7',function (message) {_r.get('Js-v4-7').disable(); });
130
+ $se(4,'TH_HVR_SVCvv4-37',function (message) {_r.get('vv4-37_js').detachZoom(message); });
131
+ $se(4,'TH_HVR_SVCvv4-37',function (message) {_r.get('vv4-37_js').UpdateImgContainer(message); });
132
+ $se(4,'MN_CLK_SVCvv4-37_TB_0',function (message) {_r.get('ic_js_vv4-37').attachZoom(message); });
133
+ $se(4,'MN_CLK_SVCvv4-37_TB_0',function (message) {_r._27.clickTrackServiceHandler(message); });
134
+ $se(4,'MN_CLK_SVCvv4-37_TB_1',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 892, 870, -1); });
135
+ $se(4,'IMG_CNTR_CLICKED_vv4-37',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 892, 870, -1); });
136
+ })();
137
+ </script><script type="text/javascript">
138
+ vjo.ctype("vjo.dsf.FirePageLoad").endType();if(typeof(oGaugeInfo)!="undefined"){oGaugeInfo.iLoadST=(new Date()).getTime();}
139
+ vjo.dsf.EventDispatcher.load(document.body);
140
+
141
+ </script></body></html>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dibson T Hoffweiler
@@ -145,6 +145,7 @@ files:
145
145
  - spec/auction_spec.rb
146
146
  - spec/config.rb-dist
147
147
  - spec/html/alfani-sweater-complete.html
148
+ - spec/html/off-white-sweater.html
148
149
  - spec/html/mens-cardigans-dutch-bin.html
149
150
  - spec/html/pink-sweater-bid-bin.html
150
151
  - spec/html/xmas-sweater.html