beway 1.0.1 → 1.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 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>
301
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 128</span>
302
+ 128: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">auction_number</span>
303
+ 129: <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
+ 130: <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
+ 131: <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
+ 132: <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 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>
470
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 115</span>
471
+ 115: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">end_time</span>
472
+ 116: <span class="ruby-identifier">text</span> = <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">time_node</span>)
473
+ 117: <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
+ 118: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">md</span>
475
+ 119: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">md</span>[<span class="ruby-value">1</span>]
476
+ 120: <span class="ruby-keyword kw">else</span>
477
+ 121: <span class="ruby-identifier">time_str</span> = <span class="ruby-identifier">text</span>
478
+ 122: <span class="ruby-keyword kw">end</span>
479
+ 123: <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
+ 124: <span class="ruby-constant">Time</span>.<span class="ruby-identifier">parse</span>(<span class="ruby-identifier">time_str</span>)
481
+ 125: <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 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>
514
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 135</span>
515
+ 135: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">has_bid_button?</span>
516
+ 136: <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
+ 137: <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
+ 138: <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 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>
551
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 102</span>
552
+ 102: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">min_bid</span>
553
+ 103: <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
+ 104:
555
+ 105: <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
+ 106: <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
+ 107: <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
+ 108: <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
+ 109: <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
+ 110: <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
+ 111: <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
+ 112: <span class="ruby-keyword kw">end</span></pre>
563
563
  </div>
564
564
 
565
565
  </div>
@@ -644,16 +644,19 @@ parsing method, returns a string
644
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
645
  85: <span class="ruby-comment cmt"># [&quot;2d&quot;, &quot;05h&quot;] style</span>
646
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>
647
+ 87: <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">1</span>] <span class="ruby-operator">=~</span> <span class="ruby-regexp re">/^days?$/</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">time_ar</span>[<span class="ruby-value">3</span>] <span class="ruby-operator">=~</span> <span class="ruby-regexp re">/^hours?$/</span>
648
+ 88: <span class="ruby-comment cmt"># [&quot;1&quot;, &quot;day&quot;, &quot;18&quot;, &quot;hours&quot;]</span>
649
+ 89: <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>)
650
+ 90: <span class="ruby-keyword kw">else</span>
651
+ 91: <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>
652
+ 92: <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>
653
+ 93: <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>
654
+ 94: <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>
655
+ 95: <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>],
656
+ 96: <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>],
657
+ 97: <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>)
658
+ 98: <span class="ruby-keyword kw">end</span>
659
+ 99: <span class="ruby-keyword kw">end</span></pre>
657
660
  </div>
658
661
 
659
662
  </div>
@@ -729,12 +732,12 @@ a string of all text nodes below n, concatenated
729
732
  <div class="method-source-code"
730
733
  id="node-text-source">
731
734
  <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>
735
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 159</span>
736
+ 159: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">node_text</span>(<span class="ruby-identifier">n</span>)
737
+ 160: <span class="ruby-identifier">t</span> = <span class="ruby-value str">''</span>
738
+ 161: <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> }
739
+ 162: <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>
740
+ 163: <span class="ruby-keyword kw">end</span></pre>
738
741
  </div>
739
742
 
740
743
  </div>
@@ -767,21 +770,21 @@ fetch the node containing the end time
767
770
  <div class="method-source-code"
768
771
  id="time-node-source">
769
772
  <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>
773
+ <span class="ruby-comment cmt"># File lib/beway/auction.rb, line 143</span>
774
+ 143: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">time_node</span>
775
+ 144: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">complete?</span>
776
+ 145: <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>)
777
+ 146: <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>
778
+ 147: <span class="ruby-identifier">node</span> = <span class="ruby-identifier">td</span>.<span class="ruby-identifier">next_sibling</span>
779
+ 148: <span class="ruby-keyword kw">else</span>
780
+ 149: <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>)
781
+ 150: <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>
782
+ 151: <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>)
783
+ 152: <span class="ruby-keyword kw">end</span>
784
+ 153:
785
+ 154: <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>
786
+ 155: <span class="ruby-identifier">node</span>
787
+ 156: <span class="ruby-keyword kw">end</span></pre>
785
788
  </div>
786
789
 
787
790
  </div>
@@ -1,6 +1,6 @@
1
- Sun, 13 Mar 2011 20:03:22 -0700
1
+ Sun, 13 Mar 2011 21:27:17 -0700
2
2
  README Sun, 13 Mar 2011 19:44:15 -0700
3
- lib/beway/auction.rb Sun, 13 Mar 2011 19:44:15 -0700
3
+ lib/beway/auction.rb Sun, 13 Mar 2011 21:10:00 -0700
4
4
  lib/beway/bidder.rb Sun, 13 Mar 2011 19:44:15 -0700
5
5
  lib/beway/cli_runner.rb Sun, 13 Mar 2011 19:44:15 -0700
6
6
  lib/beway/ebay_data.rb Sun, 13 Mar 2011 19:54:17 -0700
@@ -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">2011-03-13 19:44:15 -0700</dd>
27
+ <dd class="modified-date">2011-03-13 21:10:00 -0700</dd>
28
28
 
29
29
 
30
30
  <dt class="requires">Requires</dt>
@@ -84,6 +84,9 @@ module Beway
84
84
  if time_ar[0][/^\d+d$/] and time_ar[1][/^\d+h$/]
85
85
  # ["2d", "05h"] style
86
86
  return time_ar.join(' ')
87
+ elsif time_ar[1] =~ /^days?$/ and time_ar[3] =~ /^hours?$/
88
+ # ["1", "day", "18", "hours"]
89
+ return time_ar.join(' ')
87
90
  else
88
91
  # assume ["0", "h", "12", "m", "5", "s"] style
89
92
  raise AuctionParseError, "Didn't find hour marker where expected" unless time_ar[1] == 'h'
@@ -6,6 +6,42 @@ AUCTIONS_VALID = []
6
6
  AUCTIONS_BIN = []
7
7
  AUCTIONS_COMPLETE = []
8
8
 
9
+ AUCTIONS_VALID << {
10
+ :url => HTML_DIR + 'zoom-multi-track.html',
11
+ :description => 'ZOOM PS-04 Palmtop STUDIO Multi-track Recorder w Memory',
12
+ :current_bid => 'US $46.00',
13
+ :min_bid => 47.00,
14
+ :time_left => '1 day 14 hours',
15
+ :end_time => 'Mar 15, 2011 11:42:53 PDT',
16
+ :auction_number => '270717333271'
17
+ }
18
+ AUCTIONS_VALID << {
19
+ :url => HTML_DIR + 'skinny-jeans.html',
20
+ :description => 'ACNE Hep slim straight Black jeans 28 skinny',
21
+ :current_bid => 'US $10.00',
22
+ :min_bid => 10.50,
23
+ :time_left => '15h 55m 11s',
24
+ :end_time => '2011-03-14 13:10:47 -0700',
25
+ :auction_number => '190510549653'
26
+ }
27
+ AUCTIONS_VALID << {
28
+ :url => HTML_DIR + 'crescent-down-vest.html',
29
+ :description => 'Awesome Crescent Down Works by J Crew Vest!!! $265!!!',
30
+ :current_bid => 'US $61.00',
31
+ :min_bid => 62.00,
32
+ :time_left => '20h 9m 6s',
33
+ :end_time => '2011-03-14 17:25:06 -0700',
34
+ :auction_number => '170612954333'
35
+ }
36
+ AUCTIONS_VALID << {
37
+ :url => HTML_DIR + 'cashmere-pale-gray.html',
38
+ :description => 'J. Crew Wool Cashmere Pale Gray Cardigan. Size Small.',
39
+ :current_bid => 'US $22.00',
40
+ :min_bid => 22.00,
41
+ :time_left => '1 day 18 hours',
42
+ :end_time => 'Mar 15, 2011 14:26:35 PDT',
43
+ :auction_number => '290543793533'
44
+ }
9
45
  AUCTIONS_VALID << {
10
46
  :url => HTML_DIR + 'off-white-sweater.html',
11
47
  :description => 'J CREW Hooded Sweater Off-White Cable Knit w Cashmere S',
@@ -0,0 +1,105 @@
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 Wool Cashmere Pale Gray Cardigan. Size Small. - eBay (item 290543793533 end time Mar-15-11 14:26:35 PDT)</title><meta name="description" content="eBay: Find J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. in the Clothing, Shoes Accessories , Women's Clothing , Sweaters category on eBay."><meta name="keywords" content="J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. , Clothing, Shoes Accessories, Women's Clothing, Sweaters"><link rel="canonical" href="http://cgi.ebay.com/J-Crew-Wool-Cashmere-Pale-Gray-Cardigan-Size-Small-/290543793533"><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 Wool Cashmere Pale Gray Cardigan. Size Small. "><meta property="og:type" content="product"><meta property="og:url" content="http://cgi.ebay.com/J-Crew-Wool-Cashmere-Pale-Gray-Cardigan-Size-Small-/290543793533"><meta property="og:image" content="http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_1.JPG?set_id=880000500F"><meta property="og:site_name" content="eBay"><meta property="og:description" content="eBay: Find J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. 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]--><script>var pageHasRtmPlacements = true;</script><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/uj/x35tvjzjhi1vtotrclmto5df3.css#GH-ZAM_RedesignEbayNoneFull_e711_12863861_en_US"><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/yw/adod5xbn5qyd1awqeiqciyslf.css#BuyingApp_ViewItemATLShipping_e711_12863861_en_US"><!--[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}.bn-b,.bn-b input,.bn-b a,.bn-b b{background-image:url(http://p.ebaystatic.com/aw/pics/cmp/ds2/sprButtons.png)}</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}.trsTopPanel{margin-top:0}.trsBtmPanel{position:fixed}.vi-pla-ec-span{margin-top:-2px}.vi-pla-ec-span-down{margin-top:2px}</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"><!--<![endif]--><a href="#mainContent" rel="nofollow" class="g-hdn">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"></span><a id="Help" href="http://contact.ebay.com/ws/eBayISAPI.dll?CustomerSupport" _sp="l1545">Customer Support</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><a id="holidayImgS" href="http://getinthegame.event.ebay.com/" class="gh-his"><img src="http://pics.ebaystatic.com/aw/pics/holiday/doodle2011/marchmadness/img_scoreboardheaderV2_158x159.jpg" alt="Gear up – shop now"></a><span class="gh-wrap"><span class="gh-shim"></span><span class="greeting gh-ui"><!-- BEGIN: GREETING:SIGNEDOUT -->Welcome! <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></div></div><div class="gh-cl"></div><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" _sp="m570.l1673"><i>Fashion Vault</i></a><a id="gh_vnl_4" title="DEREK LAM + eBay" class="vnl-img" href="http://dereklam.ebay.com" _sp="m570.l1675"><i>DEREK LAM + eBay</i></a></div></div><img src="http://rover.ebay.com/roversync/?site=0&amp;stg=1&amp;mpt=1300072230705" alt="" width="1" height="1"><script type="text/javascript">var svrGMT = 1300072230705;</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" class="vi-tm-tpd"></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=290543793533&amp;pt=US_CSA_WC_Sweaters&amp;sourcePage=4340&amp;ssPageName=VIP:watchlink:top:en&amp;wt=59b1c1a139dca7bd4905b44a891267eb&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=290543793533&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=290543793533&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=290543793533" target="ssFrmWin" method="post"><input type="hidden" name="ssr" value="1"><input type="hidden" name="iurls" value="0#http://i.ebayimg.com/00#$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_14.JPG#$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_12.JPG#$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_3.JPG|1#http://i.ebayimg.com/00#$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_14.JPG#$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_12.JPG#$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_3.JPG|2#http://i.ebayimg.com/00#$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_14.JPG#$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_12.JPG#$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_3.JPG|3#http://i.ebayimg.com/00#$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_14.JPG#$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_12.JPG#$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_3.JPG|4#http://i.ebayimg.com/00#$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_14.JPG#$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_12.JPG#$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_3.JPG|5#http://i.ebayimg.com/00#$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_14.JPG#$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_12.JPG#$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_3.JPG|6#http://i.ebayimg.com/00#$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_14.JPG#$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_12.JPG#$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_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 Wool Cashmere Pale Gray Cardigan. Size Small. "></form><div><table border="0" cellpadding="0" cellspacing="0"><tr><td class="vs_w-a"><div class="ict-w1" id="vv4-43" title="J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. "><div class="ic-w300 ic-cntr"><div class="ic-w300 ic-m" id="vv4-43_idiv"><center><span></span><img src="http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_35.JPG" id="i_vv4-43" alt="J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. "></center></div><a id="vv4-43_a" class="ic-cp" href="javascript:;"></a><div id="vv4-43_bdiv" class="ic-p ic-b1" style="height:298px;width:298px;"><div id="vv4-43_t" class="ic-thr"><span>Please wait</span></div><div id="vv4-43_e" class="ic-err"><span>Image not available</span></div></div></div><div class="tbr-c" id="vv4-43_TB"><ul class="tbr-w1 tbr-w1"><li title="Show close up area of image"><a id="vv4-43_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-43_TB_1" href="javascript:;"><span class="ict-enl">Enlarge</span></a></li></ul></div><div id="vv4-43_zm" class="ict-no"><div id="vv4-43_zm_msk" class="z-ctr"><div class="z-mkr" id="vv4-43_zm_mrk"><div id="vv4-43_zm_mCtr"></div><div id="vv4-43_zm_msg" class="z-msg"><b id="vv4-43_zm_txt">Mouse here to zoom in</b></div></div></div><div class="z-wrp" style="height:320px;width:320px;" id="vv4-43_zm_iCtr"><div class="z-zctr" style="height:320px;width:320px;"><div id="vv4-43_zm_thr" class="z-thr"><span>Please wait</span></div><div id="vv4-43_zm_zErr" class="z-err"><span>Image not available</span></div><div id="vv4-43_zm_zCtr" style="height:800px;width:800px;"><img id="vv4-43_zm_zImg" alt="" src="http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_3.JPG"></div><iframe frameborder="0" height="320" width="320"></iframe></div></div></div></div></td></tr><tr><td id="vv4-43_sp" class="vs_w-spr">&#160;</td></tr><tr><td><div id="pD_vv4-43" class="tg-p"><div class="tg-p tg-wh" id="vv4-43_div" style="width:300px;height:86px;"><div id="b1_vv4-43_" class="tg-bdr"></div><div id="b2_vv4-43_0" class="tg-bdr2"></div><table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" class="tg-tb" id="vv4-43_tbl"><tr id="t_r_vv4-43_0"><td id="t_c_vv4-43_0" width="16%" height="42px"><img alt="" id="t_ivv4-43_0" src="http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_14.JPG"></td><td id="t_c_vv4-43_1" width="16%"><img alt="" id="t_ivv4-43_1" src="http://i.ebayimg.com/00/$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_14.JPG"></td><td id="t_c_vv4-43_2" width="16%"><img alt="" id="t_ivv4-43_2" src="http://i.ebayimg.com/00/$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_14.JPG"></td><td id="t_c_vv4-43_3" width="16%"><img alt="" id="t_ivv4-43_3" src="http://i.ebayimg.com/00/$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_14.JPG"></td><td id="t_c_vv4-43_4" width="16%"><img alt="" id="t_ivv4-43_4" src="http://i.ebayimg.com/00/$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_14.JPG"></td><td id="t_c_vv4-43_5" width="16%"><img alt="" id="t_ivv4-43_5" src="http://i.ebayimg.com/00/$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_14.JPG"></td></tr><tr id="t_r_vv4-43_1"><td id="t_c_vv4-43_6" height="42px"><img alt="" id="t_ivv4-43_6" src="http://i.ebayimg.com/00/$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_14.JPG"></td><td id="t_c_vv4-43_7" class="tg-td"></td><td id="t_c_vv4-43_8" class="tg-td"></td><td id="t_c_vv4-43_9" class="tg-td"></td><td id="t_c_vv4-43_10" class="tg-td"></td><td id="t_c_vv4-43_11" class="tg-td"></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=290543793533&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 Wool Cashmere Pale Gray Cardigan. Size Small. </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">1 day <span id="v4-25">18</span> <span id="v4-26">hours</span> </span><span><span>(Mar 15, 2011</span><span class="vi-is1-t">14:26:35 PDT)</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;_trksid=p4340.l2565&amp;item=290543793533" rel="nofollow"><span id="v4-31">0</span> <span>bids</span></a></span></span><span id="v4-32" 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-33" class="vi-is1-prcp">US $22.00</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-34">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-34" 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-35" class="vi-c-fsmt">(Enter US $22.00 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 id="dd_addToList" 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><li><a href="javascript:;" id="-96_ita_addToList" d="t" i="-96" n="Gift Ideas">Add to Gift Ideas</a></li><li><a href="javascript:;" id="-98_ita_addToList" d="t" i="-98" n="Research">Add to Research</a></li><li><a href="javascript:;" id="-97_ita_addToList" d="t" i="-97" wsh="t" n="Wish List">Add to Wish List</a></li></ul><div class="ul-sp"></div><div id="ftdv_addToList"><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItem%26item%3D290543793533%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-36">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-39"><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">$7.00</span><span><span> </span></span><span id="fshippingSvc">Expedited Shipping</span><span class="sh-nowrap"><a href="javascript:;" id="changeLocLink" class="vi-tl vi-is1-shpl vi-c-fsmt vi-is1-hideDisc"><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._7.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="1" selected="selected">United States</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-40"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-40_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-40_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-40_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-40_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-40_tab_0_srtCol_0_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-40_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls"><div>Between <span id="Mon. Mar. 21 and Tue. Mar. 22">Mon. Mar. 21 and Tue. Mar. 22</span></div></div></td><td id="v4-40_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls sh_Prcpad">$7.00</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="10chngLoc"><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 olp-xtpd" 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><a href="javascript:;" id="disPnl_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="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><b>Mon. Mar. 21 and Tue. Mar. 22</b></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" cellpadding="0" cellspacing="0" id="miyId"><tr><td class="vi-rpd-miyContent">No Returns Accepted</td></tr></table></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><td colspan="4"><div id="v4-41" 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-42" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="250"><tr id="v4-42tid"><td class="olp-tl"><p></p><a href="javascript:;" id="v4-42_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-42_olp_cnt"><div class="olp-pad" id="v4-42_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-42bid"><td class="olp-bl"><a href="javascript:;" id="v4-42_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-42arid" 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><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div><table cellpadding="0" cellspacing="0" class="s-content"><tbody><tr><td><h2 class="sit">Seller info</h2></td></tr><tr><td><div class="s-details"><div class="mbg"><a title="Member id coutureetc.inc" href="http://myworld.ebay.com/coutureetc.inc/?_trksid=p4340.l2559"><b class="g-hdn">Member id </b><b><span class="mbg-nw">coutureetc.inc</span></b></a> <span class="mbg-l"> ( <a class="mbg-fb" title="Feedback Score Of 405" href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&amp;iid=290543793533&amp;userid=coutureetc.inc&amp;ssPageName=VIP:feedback&amp;ftab=FeedbackAsSeller&amp;_trksid=p4340.l2560"><b class="g-hdn">Feedback Score Of</b> 405</a><img src="http://q.ebaystatic.com/aw/pics/icon/iconTealStar_25x25.gif" height="25" width="25" title="Teal star icon for feedback score in between 100 to 499" alt="Teal star icon for feedback score in between 100 to 499" class="mbg-star">) </span> <span class="mbg-l"></span></div><br><span class="s-gray z_a">100%&#160;Positive feedback</span></div><div class="sRlBor"></div></td></tr><tr><td><div class="bdg sl"><div class="s-f-da"><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;_trksid=p4340.l2561&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D290543793533&amp;mode=0&amp;ssPageName=STRK:MEFS:ADDVI&amp;sellerid=coutureetc.inc&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/coutureetc.inc/m.html?_trksid=p4340.l2562">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/CoutureEtc-Inc?_trksid=p4340.l2563"><img src="http://q.ebaystatic.com/aw/pics/icon/iconStoresNW_20x20.gif" height="20" width="20" alt="Ebay Stores" class="st-img">CoutureEtc.Inc</a></div></div></div></td></tr><tr></tr><tr><td><div class="s-gray"></div></td></tr></tbody></table></div></div></div><div class="spc1"></div></div></div><div><div class="c-gy-bdr cr-brd cr-bt"><div><span id="ec_span" class="vi-pla-ec-span-down"><a id="ii_arr" href="javascript:;" class="vi-pla-sI vi-pla-bD"></a></span><h3 id="ec_title" class="eciIt">Other item info</h3></div><div id="ii_lyr"><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">290543793533</td></tr><tr><td align="right" valign="top" class="inf_lab">Item location:</td><td valign="top">Texas, United States</td></tr><tr><td align="right" valign="top" class="inf_lab">Ships to:</td><td valign="top">United States </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=290543793533&amp;si=r%2FhMaDrKKtUQ7MTQRbafhJw4hj4%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;_trksid=p4340.l2566&amp;active=1&amp;itemId=290543793533&amp;seller=coutureetc.inc" rel="nofollow" class="vi-pla-vAb vi-pla-nw"><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 tb-rrsc"><table cellspacing="0" cellpadding="0" id="vi_tabs_wrp" class="tb tb-nw" width="100%"><tr role="tablist"><td class="tb-act" id="vi_tabs_0_td" width="1"><a role="tab" 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 role="tab" 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-mr10"><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=290543793533" 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%2F290543793533&amp;itm=290543793533&amp;t=J.+Crew+Wool+Cashmere+Pale+Gray+Cardigan.+Size+Small.+&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%2F290543793533&amp;itm=290543793533&amp;t=J.+Crew+Wool+Cashmere+Pale+Gray+Cardigan.+Size+Small.+&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" role="tabpanel"><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-49" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Condition: </th><td headers="v4-49" 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-47" 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-46" style="display:inline">...&#160;<a href="javascript:;" class="vi-ia-rm" id="v4-48">Read more<b class="g-hdn">about the condition</b></a></span></div></td><th nowrap="nowrap" id="v4-50" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Style: </th><td headers="v4-50" class="vi-ia-attrColPadding" width="50.0%">Cardigan</td></tr><tr><th nowrap="nowrap" id="v4-51" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Brand: </th><td headers="v4-51" class="vi-ia-attrColPadding" width="50.0%">J. Crew</td><th nowrap="nowrap" id="v4-52" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size Type: </th><td headers="v4-52" class="vi-ia-attrColPadding" width="50.0%">Misses</td></tr><tr><th nowrap="nowrap" id="v4-53" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Main Color: </th><td headers="v4-53" class="vi-ia-attrColPadding" width="50.0%">Gray</td><th nowrap="nowrap" id="v4-54" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size: </th><td headers="v4-54" 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-55" id="vi-ia-attrSectionLastRowTd" class="vi-ia-attrColPadding" width="50.0%">Wool Cashmere Nylon Blend</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:#FFFFFF;"><table width="100%"><tr><td align="left"><span style="color:#FFFFFF"><h3 class="storeTitleHeader">CoutureEtc.Inc</h3></span></td><td align="right"><span style="color:#FFFFFF;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/CoutureEtc-Inc?_trksid=p4340.l2568"><img src="http://q.ebaystatic.com/aw/pics/icon/iconStoresNW_20x20.gif" height="20" width="20" alt="CoutureEtc.Inc" border="0"></a></td></tr></table></div><div class="cr-cnt" style="background:#F9F9E2;"><div><div><table cellpadding="0" cellspacing="0" bgcolor="#F9F9E2" class="storesearchTable"><tr></tr></table><table cellpadding="0" cellspacing="0" bgcolor="#F9F9E2" width="100%"><tr><td style="width:310px; padding-left:5px; padding-right:10px"><a href="http://stores.ebay.com/CoutureEtc-Inc" class="store-logo" style="margin-left:0px"><img src="http://i.ebayimg.com/20/!!d3wFM!!nM~$(KGrHqN,!i8E1N!05Y9DBNUcw0s10!~~_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=coutureetc.inc">Add this store to favorites</a></div></td></tr></table></div></div></div></div></div></div></div><table width="100%"><tr><td valign="top" class="storeLftNavTd"><div><div class="cr-w cr-c cr-cp"><div class="cr-hr" style="background:#FFFFFF;"><div class="storeTitleDiv" style="color:#FFFFFF"><h3 class="storeTitleDiv storeTitleHeader">Store Categories</h3></div></div><div class="cr-cnt" style="background:#F9F9E2;"><div><div class="lcat"><div class="ttl"><a href="http://stores.ebay.com/CoutureEtc-Inc">Store home</a></div><ul class="lev1"><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Womens-Designer-Clothing_W0QQfsubZ409013719">Women's Designer Clothing.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Womens-Pret-a-Porter_W0QQfsubZ409013819">Women's Pret-a-Porter.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Designer-Purses_W0QQfsubZ409014019">Designer Purses.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Jewelry-Accessories_W0QQfsubZ409014119">Jewelry & Accessories.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Vintage-Couture_W0QQfsubZ409014519">Vintage Couture.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_Home-Decor_W0QQfsubZ409014619">Home Decor.</a></li><ul class="lev2"></ul><li><a href="http://stores.ebay.com/CoutureEtc-Inc_99-Cent-Auctions_W0QQfsubZ409014719">.99 Cent. Auctions.</a></li><ul class="lev2"></ul></ul><div class="spc1"></div><div class="link"></div></div></div></div></div></div></td><td valign="top" class="storeDescTd"><div><div class="item_description"><div id="ngvi_desc_div" class="d-pad"><div><div><FONT size=2 face=Arial>
7
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 18pt"><FONT face="Times New Roman">Welcome To Couture Etc. Inc<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></FONT></SPAN></I></P>
8
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 18pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
9
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><o:p><FONT size=3 face="Times New Roman">&nbsp;</FONT></o:p></P>
10
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">You are Bidding on an Adorable Little J.Crew Cardigan in a Size Small. It is a Wool, Cashmere, Nylon Blend with a Silk Sash Tie at the Neckline. The Sash&nbsp;Tie is the only Closure to the Cardigan!!! The&nbsp;Neckline is a Lovely Full Ruffle and the Style of the Cardi is a little bit Boxy,&nbsp;so&nbsp;Hangs Perfectly!!! Easily Dressed Up or Down. Is in Perfect Condition. No Holes, Piling, Snags, Stains, &nbsp;Etc. &nbsp;</FONT></SPAN></P>
11
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
12
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Please refer to the following measurements. All measurements are taken laying flat (unless otherwise stated). Please times the measurements by 2 to get the full circumference of the garment.<o:p></o:p></FONT></SPAN></P>
13
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
14
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Thank You for Your Time and Consideration. Please take a Moment to View Our Other Auctions, as We are Always Listing Something!!! Please Feel Free to Email Me with Any Questions!!! All Products come from a Pet &amp; Smoke Free Environment!!! Authenticity is Guaranteed!!!<o:p></o:p></FONT></SPAN></I></P>
15
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></I></P>
16
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">We Appreciate Your Business and Look Forward to Assisting You Again!!!<o:p></o:p></FONT></SPAN></I></P>
17
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman"><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN><o:p></o:p></FONT></SPAN></P>
18
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
19
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal align=center><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
20
+ <P style="MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal><I style="mso-bidi-font-style: normal"><U><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Measurements:<o:p></o:p></FONT></SPAN></U></I></P>
21
+ <P style="MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
22
+ <P style="MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p></o:p></SPAN><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Bust: 18"/ 46cm<o:p></o:p></FONT></SPAN></P>
23
+ <P style="TEXT-ALIGN: justify; TEXT-INDENT: 0in; MARGIN: 0in 0in 0pt; mso-pagination: none; mso-list: l0 level1 lfo1" class=MsoNormal><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Waist: 18"/ 46cm<o:p></o:p></FONT></SPAN></P>
24
+ <P style="TEXT-ALIGN: justify; TEXT-INDENT: 0in; MARGIN: 0in 0in 0pt; mso-pagination: none; mso-list: l0 level1 lfo1" class=MsoNormal><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Hips: 18"/ 46cm<o:p></o:p></FONT></SPAN></P>
25
+ <P style="TEXT-ALIGN: justify; TEXT-INDENT: 0in; MARGIN: 0in 0in 0pt; mso-pagination: none; mso-list: l0 level1 lfo1" class=MsoNormal><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Sleeves: 19"/ 48cm<o:p></o:p></FONT></SPAN></P>
26
+ <P style="TEXT-ALIGN: justify; TEXT-INDENT: 0in; MARGIN: 0in 0in 0pt; mso-pagination: none; mso-list: l0 level1 lfo1" class=MsoNormal><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Shoulders: 14"/&nbsp; 35.5cm<o:p></o:p></FONT></SPAN></P>
27
+ <P style="TEXT-ALIGN: justify; TEXT-INDENT: 0in; MARGIN: 0in 0in 0pt; mso-pagination: none; mso-list: l0 level1 lfo1" class=MsoNormal><SPAN style="FONT-FAMILY: 'WP TypographicSymbols'; FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt; mso-fareast-font-family: 'WP TypographicSymbols'; mso-bidi-font-family: 'WP TypographicSymbols'"><SPAN style="mso-list: Ignore">$</SPAN></SPAN><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Length: 21"/ 53.5cm<o:p></o:p></FONT></SPAN></P>
28
+ <P style="TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt; mso-pagination: none" class=MsoNormal><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
29
+ <P style="TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt 0.5in; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=Level1><SPAN style="FONT-SIZE: 14pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
30
+ <P style="MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal><I style="mso-bidi-font-style: normal"><U><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Payment Details:<o:p></o:p></FONT></SPAN></U></I></P>
31
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal align=center><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Payment is due within 3 days of end of auction. Please email me if you require additional time or payment arrangements. I am more than Happy to work with you <U>Provided</U> you contact me!!!<o:p></o:p></FONT></SPAN></P>
32
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal align=center><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></P>
33
+ <P style="MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal><I style="mso-bidi-font-style: normal"><U><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Shipping Information:<o:p></o:p></FONT></SPAN></U></I></P>
34
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal align=center><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Shipping Cost is a Standard $7.00. Am Happy to Combine Shipping, each additional item is $2.00. Yes, I Ship Internationally, International Shipping is $14.00. Please feel free to email me if you have any inquiries regarding shipping, I am more than happy to work with you!!! <o:p></o:p></FONT></SPAN></P>
35
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><o:p><FONT face="Times New Roman">&nbsp;</FONT></o:p></SPAN></I></P>
36
+ <P style="TEXT-ALIGN: center; MARGIN: 0in 0in 0pt; mso-pagination: none; tab-stops: .2in .4in .6in .8in 1.0in 1.2in 1.4in 1.6in 1.8in 2.0in 2.2in 2.4in 2.6in 2.8in 3.0in 3.2in 3.4in 3.6in 3.8in 4.0in 4.2in 4.4in 4.6in 4.8in 5.0in 5.2in 5.4in 5.6in 5.8in 6.0in 6.2in 6.4in 6.6in 6.8in 7.0in 7.2in 7.4in 7.6in 7.8in 8.0in" class=MsoNormal align=center><I style="mso-bidi-font-style: normal"><SPAN style="FONT-SIZE: 15pt; mso-bidi-font-size: 10.0pt"><FONT face="Times New Roman">Thank You for Your Time and Consideration. We Appreciate Your Business and look forward to Assisting You Again!!!<o:p></o:p></FONT></SPAN></I></P></FONT></div></div></div></div></div></td></tr></table><div><div><div class="vi-qa-main_qa"><div class="pnltbl"><div id="v4-58"><table cellpadding="0" cellspacing="0" class="r3 c gy-br"><thead id="v4-58h" 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-58_h"><td class="r3_hm" id="v4-58_hm_0"><h4 class="vi-qa-m0 vi-ds2-subt">Questions and answers about this item</h4></td></tr></thead><tr id="v4-58_c"><td id="v4-58cm" class="r3_c c-sgf"><div class="r3_cm po" id="v4-58_ct"><div><div class="dt" id="v4-59"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-59_tab_0"><tr><td width="1%" class="dt-spTd dt-bgColorTrans">&#160;</td><td scope="row" id="v4-59_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-58_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=290543793533&amp;ssPageName=PageSellerM2MFAQ_VI&amp;redirect=0&amp;requested=coutureetc.inc" 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><br><br><center><span id="counter" class="BasicStyle">00028</span></center></div></div></div></div></div><div id="vi_tabs_1_cnt" class="tb-cntOff" role="tabpanel"><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: Texas, United States</div><div class="sh-ShipSecTop"><div class="sh-ShipTo"><div class="sh-ShipLoc">Shipping to: United States </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="1" selected="selected">United States</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-60"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-60_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-60_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-60_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-60_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-60_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-60_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div>US $7.00</div><div></div></div></td><td id="v4-60_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-60_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-60_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>Mon. Mar. 21 and Tue. Mar. 22</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-61"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-61_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-61_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-61_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">Will usually ship within 3 business days 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="vi-rpd-rpdTitle_ vi-ds2-subt">Return policy</h3><table border="0" width="100%" cellpadding="5" cellspacing="0" class="vi-rpd-tbllyt"><tr><td class="vi-rpd-rpdContent">The seller will not accept returns for this item.<br><div class="vi-rpd-textStyle"></div></td></tr></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-62"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-62_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-62_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-62_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-62_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-62_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-62_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div id="payPref1">PayPal Preferred</div></td><td id="v4-62_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/z/qv/tyd4bj51lyyi1lsnt54gxj23o.js#SYS-ZAM_vjo_e711_1_12863631_en_US"></script><script src="http://include.ebaystatic.com/v4js/z/uv/gac5fp3kky3cjliqb3scy3wnr.js#GH-ZAM_RedesignEbayNoneFull_e711_1_12863631_en_US"></script><b style="display:none"><b id="wcItm_1">You can add ##n## more item.</b><b id="wcItm_2">You can add ##n## more items.</b><b id="wcItm_3">You’re the first person to watch this item. Don’t let it get away!</b><b id="wcItm_4">people are watching this item. Place a bid and beat them to buy this item!</b><b id="wcItm_5">##n## item can still be added to your watch list.</b><b id="wcItm_6">##n## items can still be added to your watch list.</b><b id="wcItm_7">person is watching this item. Place a bid and improve your chances to buy this item.</b><b id="wcItm_8">(##i## item)</b><b id="wcItm_9">(##i## items)</b></b></div>
37
+ <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;_trksid=p4340.l2567&amp;item=290543793533" 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://shop.ebay.com/i.html?_nkw=ugly+Christmas+Sweater">Ugly Christmas Sweater</a> | <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://clothing.shop.ebay.com/Mens-Clothing-/1059/i.html?_nkw=vintage+christmas">Christmas Sweater</a> | <a href="http://popular.ebay.com/">Popular Searches</a> | <a href="http://reviews.ebay.com/">eBay Reviews</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/-j+crew">J Crew 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/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_RedesignEbayRTM_e711_1_12863631_en_US");</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"><!--
38
+ var eBayTRPageName="TR_ViewItem";var eBayTRDisplayName="Online Auction - Item #290543793533:J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ";var eBayTREiasId="nY+sHZ2PrBmdj6wVnY+sEZ2PrA2dj6wFlIKkC5CCpwWdj6x9nY+seQ==";var eBayTRItemId="290543793533";var eBayTRItemTitle="J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ";var eBayTRListingFormat="Online Auction";var eBayTRStoreSearchTerm="";var eBayTRHomePage="";var eBayTREvent="";var eBayTRInactive=false;
39
+ //--></script><script language="JavaScript" type="text/javascript" src="http://include.ebaystatic.com/js/e711/us/features/site_catalyst/omniture/base_e7112us.js"></script><script language="JavaScript" type="text/javascript" src="http://include.ebaystatic.com/js/e711/us/features/site_catalyst/omniture/storesv4_e7112us.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."));
40
+ vjo.darwin.globalnav.util.EventReg.aggregate(vjo.Registry._bta.onRefreshHdl());
41
+ vjo.darwin.globalnav.util.EventReg.browseCategories("BrowseCategoriesMenu", "http://include.ebaystatic.com/categoryjs/96/en_US_MAIN/category_96en_US_MAIN0.js");
42
+ vjo.darwin.globalnav.util.EventReg.impression("AV+8CaEo*");
43
+ </script></div>
44
+ </div>
45
+ <!--v.rpn332,RcmdId ViewItemNext,RlogId p4%60bo7%60jtb9%3Fv%7F.rpn332-12eb257ef40--><script type="text/javascript">vjo.dsf.error.ErrorHandlerManager.register(new vjo.dsf.error.DefaultErrorHandler());
46
+ vjo.dsf.error.ErrorHandlerManager.enableOnError(true, false);
47
+ vjo.dsf.cookie.VjCookieJar.sCookieDomain = '.ebay.com';vjo.dsf.cookie.VjCookieJar.writeCookielet('ebay','js','1');
48
+ </script><script type="text/javascript">var _GlobalNavHeaderUtf8Encoding=true;
49
+
50
+ </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"}];
51
+ (function(){
52
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
53
+ _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/z/ua/or3b45jl3e5z3nzmpd0gfoxyd.js#GH-ZAM_AdSurvey_e711_1_12863631_en_US","expJsUrl":"http://include.ebaystatic.com/v4js/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_ExpAd_e711_1_12863631_en_US","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/z/mr/4mgadmxjii5ljiwf0l4dyvum0.js#GH-ZAM_PopupBox_e711_1_12863631_en_US","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=b257ef0212e0a02684a10121ffadd778&uf=0&c=1H4sIAAAAAAAAAFVTUWvbMBB%2BL%2FQ%2FCDY22NRwupNkqaCH1oQtg6QFd%2B1LYZhEtAbHLrZDluEfP1lyWwoC6fvuTvfd6fSpODRsXXZMEEO4FHBJwNbFXQBCnJ%2B9oM0cTDsIFzGA%2B7VgeeeP7KFta5aX%2FfPed57dlrVnP7ryFKhuVz2VzYIV1T%2FPin1Z1wsWL1NOSFAEoG3AgowTKkMZz5kTQqopmbDWoQUlKbOkiKKZYn5B6LJFdKKkSGh0KUi%2BX6BnmxWuGE6156%2BaeJR0d3rxfF31ve8jwQt%2B3ZXNjs%2Bl8XVZNSxv67bjU0kBD76rypp%2FrHlzqtuGXde%2B2YVsZDJ3%2F93k5bL9dn62rXZO4OMBIHQS0q4%2Bwkkh2qRUZQ4xFYbyLTBaKNVnyEmS05GECc6QWJz7EjcSWYKpJyR0gsLBIhHS5T9Xm2Wx%2FHP1O79b3WwiS7N7uCw8DqIkqyAmQKFcSAUpHoPnZwQecSQyFUMlzCoz4%2FK6HZ6r5omz4rn1PfvCrrZb3%2FdtV%2Fk%2B1fXQ7n3ztWevroktjn7qc%2F9eu5RJf8iiyWgdufS2BMbFwZGQxEPm8vYwHDq%2FHLaLVbMNpJldyd28%2BOYxIj1z4G7LJ39f%2BeNq8PuN%2FztM9Tgj07ybee6zuXXwpgB1GE9BikvBFXG0JLlApTgBGq7CslwHU1g4uZN2t52%2FaI%2BN38VfYJ0NEwpj6DVZMQqdoSY1hhfG4DyG8SepzYhZuBXESCDAgB4lSmtkUvD6K9M7I0l3YW206In5D2K%2BCcrXAwAA&ord=1300072230720","reportAdJsUrl":"http://include.ebaystatic.com/v4js/z/ut/yiudztzgte44dnmbqt212uew5.js#GH-ZAM_RtmDC_e711_1_12863631_en_US","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":["","","","","","","","",""]}));
54
+ $se(0,'RTM_CALLBACK_SERVICE',vjo.Registry.get('37'));
55
+ $se(2,function(message) {if (message.trspType == 'Remote') { message.stok = '613957015' };});
56
+ $se(2,function(message) {if (message.trspType == 'Remote') {message.pId = '4340';}});
57
+ $se(6,'Remote',function (message) {vjo.darwin.tracking.sojourner.TrackingRespHdl.handleResponse(message); });
58
+ })();
59
+ </script><script type="text/javascript">(function() {vjo.dsf.ServiceEngine.handleRequest(new vjo.dsf.Message('RTM_CALLBACK_SERVICE'));})();
60
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/qz/rkx3bkwyyy5dbcxs5hz3e1d2h.js#SYS-ZAM_Omniture_e711_5_12863631_en_US"></script><script type="text/javascript">vjo.dsf.cookie.VjCookieJar.writeCookieEx("lucky9", "1900450", 730);
61
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/i2/rgxckdvqemygdddmogsgiien5.js#BuyingApp_ViewItemATLShipping_e711_6b_12863631_en_US"></script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/ae/nbevysvlhi0zno4kivyfsyzad.js#BuyingApp_ViewItemATLShipping_e711_6_12863631_en_US"></script><script type="text/javascript">vjo.darwin.comp.utils.EventUtils.callOnLoad(["Js-v4-7","Js-vi_tabs"]);
62
+ 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);}
63
+ vjo.darwin.globalnav.util.DoctypeSupport.init();
64
+ 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");
65
+ vjo.darwin.tracking.rover.Rover.roverTrack();
66
+ (function () {
67
+ var _r = vjo.Registry;
68
+ function $o3(){return new vjo.darwin.core.overlaypanel3.PositionElement(true);};function $o4(p0,p1,p2){return new vjo.darwin.pres.buying.cmp.shippingrates.CountrySelect(p0,p1,p2,["1,0","2,0"]);};function $o5(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");};function $o13(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-37",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});};_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":true,"BKId":280,"qlTxtCntMulti":null,"atlSvc":"ONATL_SVCID","addCnt":"Add to ##1","watchListId":-99,"watchStatusCnt":"Added to your ##1","listFull":"##1 is full","nwDefCt":"Type a new list name here","signInUrl":"https://signin.ebay.com/ws/eBayISAPI.dll?SignIn","watchList":"Watch list","maxListCount":50,"itemId":null,"mskuList":null,"jitId":null,"watchListBaseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=290543793533&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=59b1c1a139dca7bd4905b44a891267eb&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","signInRedirectUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=290543793533&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=59b1c1a139dca7bd4905b44a891267eb&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","qlTxtCnt":null,"dropDownJsId":"dropdown","adddedMoreLst":"Added to ##2 lists","allListIds":[-99],"inWl":false,"newOl":"nLstOly","nwTxtId":"nLstTxt","itemVariationJsId":null,"watchLinkId":"linkTopAct","itemListIds":[],"itemEnded":false,"adddedOneLst":"Added to your ##1 list","hasWatchLink":true,"statusMsg":"statusmsg","otherListBaseUrl":"http://my.ebay.com/ws/eBayISAPI.dll?MyEbayBeta&entityInfo=290543793533^ITEM&vi=true&SubmitAction.AddToListVI=x&pItemId=290543793533","addToWatch":"Add to Watch list","maxListIds":[],"addtoListLabel":"Add to list","dynamicId":null,"savedMsg":null})); _r.put('dropdown',new vjo.darwin.pres.buying.cmp.dropdown.DropDown({"firstAddToWatch":false,"panel":"pnl_addToList","itemAnch":"_ita_addToList","charLimit":35,"cnAttrVal":"true","footerDs":false,"titleAnch":"-99_ttl_addToList","itemIdList":{"-96":false,"-97":false,"-98":false,"-99":false},"minWidth":150,"swAttrNm":"sw","ellipses":"...","titleSp":"ttlsp_addToList","pnlStrAnch":"s_addToList","ul":"ul_addToList","footer":"s","cnAttrNm":"nw","selSvcId":"D_ISID","pnlPosnId":null,"ddSpan":"dd_addToList","swAttrVal":"true","addToLstId":null,"quickLook":false,"ddDiv":null,"footerDivId":null,"createNewAvl":false,"attchEvtId":null,"dynamicId":null,"imgId":"img_addToList","pnlEndAnch":"e_addToList"})); _r.put('nLstOlyjsid',$o3()); _r.put('3nLstOly',$o13(true,true,false,"3nLstOly",-18,false,300,"nLstOlyjsid","nLstOly")); _r.put('7',$o4("clcountry","clZipCodeTextDiv","clzipCode")); _r.put('chngLocjsid',$o3()); _r.put('10chngLoc',$o13(false,false,false,"10chngLoc",20,true,334,"chngLocjsid","chngLoc")); _r.put('disPnljsid',$o5("disPnlarid")); _r.put('13disPnl',$o13(false,true,false,"13disPnl",0,false,175,"disPnljsid","disPnl"));
69
+ _r.put('hldolpjsid',$o5("hldolparid")); _r.put('16hldolp',$o13(false,true,false,"16hldolp",0,false,250,"hldolpjsid","hldolp")); _r.put('v4-42jsid',$o5("v4-42arid")); _r.put('19v4-42',$o13(false,false,true,"19v4-42",0,false,250,"v4-42jsid","v4-42")); _r.put('22',new vjo.darwin.pres.buying.cmp.watchitem.WatchItem({"watchingText":"defWatchingText","watchDiv":"linkId","upArrowImageDiv":"upArr","guestMsgs":["wcItm_1","wcItm_2"],"maxDiv":"errorDiv","itemsStr":"wcItm_9","resDiv":"middleDiv","watchBottomDiv":"watchLinkBottom","mainDiv":"masterDiv","guestDiv":"guestId","downArrowImageDiv":"dwnArr","watchingDiv":"watchButtonStatus","itemStr":"wcItm_8","baseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=290543793533&pt=US_CSA_WC_Sweaters&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=59b1c1a139dca7bd4905b44a891267eb&_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":["wcItm_3","wcItm_4","wcItm_5","wcItm_6","wcItm_7"]})); _r.put('ic_js_vv4-43',new vjo.darwin.core.imagecontainerwithtoolbar.ImageContainerWithToolbar({"mskId":"vv4-43_zm_msk","cmpId":"vv4-43","ZHt":320,"imgData":{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_35.JPG","customAttributes":{},"alt":"J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ","href":null},"loadSrvcId":"LOAD_HIRES_SRVC_ID_vv4-43","hiResImgHt":800,"ancId":"vv4-43_a","TBarId":"vv4-43_TB","DEnTxt":"Enlarge option unavailable","ZErrId":"vv4-43_zm_zErr","height":300,"hiResImgCntrId":"vv4-43_zm_zCtr","preLoad":true,"msgTxtId":"vv4-43_zm_txt","mrkCntrId":"vv4-43_zm_mCtr","bdrId":"vv4-43_bdiv","dsblZoomTitle":"Close up image unavailable","noZoomMsg":"Zoom unavailable","zoomMsg":"Zoom","hiResImgData":{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_3.JPG","customAttributes":{},"alt":null,"href":null},"reszOnLd":false,"mskImgId":"vv4-43_zm_mImg","zoomSrvcId":"MN_CLK_SVCvv4-43_TB_0","imgId":"i_vv4-43","EEnTxt":"Enlarge","IDivId":"vv4-43_idiv","hiResCntId":"vv4-43_zm_iCtr","width":300,"ZWd":320,"DEnTip":"Enlarge image option unavailable","mkrId":"vv4-43_zm_mrk","hiResImgWd":800,"zoomCntId":"vv4-43_zm","enblZoomTitle":"Show close up area of image","enIdx":1,"loadSvcId":"LOAD_IMG_SRVC_ID_vv4-43","dsblClz":"tbr-d","clkLstrKey":null,"hiResId":"vv4-43_zm_zImg","thrbId":"vv4-43_t","errId":"vv4-43_e","err":null,"zoomIdx":0,"EEnTip":"Show larger and alternate views","clkSrvId":"IMG_CNTR_CLICKED_vv4-43","zoomThrobId":"vv4-43_zm_thr","msgId":"vv4-43_zm_msg","thr":null,"enblClz":"ict-zm","enlrgSrvcId":"MN_CLK_SVCvv4-43_TB_1"})); _r.put('th_js_vv4-43',new vjo.darwin.core.thumbnailgrid.ThumbnailGrid({"instId":"th_js_vv4-43","cmpId":"vv4-43","width":32,"noOv":false,"hrSrvId":"TH_HVR_SVCvv4-43","selPfx":"sel_vv4-43_","errUrl":"http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_32x32.gif","divId":"vv4-43_div","imgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_14.JPG","customAttributes":{},"alt":"J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ","href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_14.JPG","customAttributes":{},"alt":null,"href":null}],"padding":0,"pos":2,"clkLstrKey":null,"brd1Id":"b1_vv4-43_","rows":2,"brd2Id":"b2_vv4-43_","idList":["vv4-43_div","vv4-43_tbl","t_ivv4-43_","t_c_vv4-43_","b1_vv4-43_","b2_vv4-43_","pD_vv4-43","sel_vv4-43_"],"currSelImg":"t_c_vv4-43_0","scBarId":null,"errCss":"tg-e32","forcedLoad":false,"hvrBgClr":"#3881e8","clkBgClr":"#666","noC":false,"trPfx":"t_r_vv4-43_","height":32,"cellHeight":43,"cls":["tg-tb","tg-clp","tg-td","tg-tbL","tg-tbT"],"prDivId":"pD_vv4-43","spacer":{"src":"http://q.ebaystatic.com/aw/pics/s.gif","customAttributes":{},"alt":"","href":""},"clkSrvId":"TH_CLK_SVCvv4-43","moutSrvId":"TH_OUT_SVCvv4-43","tdPfx":"t_c_vv4-43_","cols":6,"resizeOnLoad":true,"tblId":"vv4-43_tbl","imgPfx":"t_ivv4-43_"})); _r.put('vv4-43_js',new vjo.darwin.core.viewselector1.ViewSelectorWithToolbar({"DE":false,"cmpId":"vv4-43","icJsInstId":"ic_js_vv4-43","width":300,"height":300,"gtId":"gt_v4-43","mnImgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_35.JPG","customAttributes":{},"alt":"J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ","href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_35.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_35.JPG","customAttributes":{},"alt":null,"href":null}],"spTd":"vv4-43_sp","hiResImgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_3.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_3.JPG","customAttributes":{},"alt":null,"href":null}],"thWidth":0,"zoom":true,"thImgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqN,!l8E1F21K8lLBNeT+MKwBg~~0_14.JPG","customAttributes":{},"alt":"J. Crew Wool Cashmere Pale Gray Cardigan. Size Small. ","href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKpME1qk46tk7BNeT-)M1bw~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKkIE1q2cgf!-BNeT+pdIqQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKi0E12+kpszzBNeT-4uptQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqUOKn!E1S)vR130BNeT+V6(ww~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqYOKioE0sKbl8P+BNeT+fRQHQ~~0_14.JPG","customAttributes":{},"alt":null,"href":null},{"src":"http://i.ebayimg.com/00/$(KGrHqMOKkEE1vjFW+JIBNeT+DEdCg~~0_14.JPG","customAttributes":{},"alt":null,"href":null}],"scJsInstId":null,"thHeight":0,"scrollCnt":0,"mnImgId":"i_vv4-43","thJsInstId":"th_js_vv4-43"})); _r.put('26',new vjo.darwin.pres.buying.cmp.itempictures.ItemPictures({"picIdxChgSrvId":"vi-PicSelIdxValChange","trackId":"l1494","VSJsRefId":null,"priTrtValSvcId":"vi-PriTraitValChange","thmClkSrvid":null,"pageId":"p4340","noVarImgTxt":null,"noVarImgTxtAlt":null,"thmMOSrvid":null,"imgConId":null,"noImgIdx":0,"noVarImgClass":null,"varSellblId":null})); _r.put('v4-44',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-34","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%3D290543793533%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}));
70
+ _r.put('30',$o4("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-57',new vjo.darwin.pres.buying.cmp.description.HideShowIframe({"descIframeId":"b","frameUrl":null,"srcMode":null})); _r.put('36',new vjo.darwin.comp.base.Base()); })();
71
+ (function(){
72
+ var _d=vjo.dsf.EventDispatcher;
73
+ var _r=vjo.Registry;
74
+ function $6(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $8(p0){return function(event){return this.setMState(p0);};};function $10(p0,p1){return function(event){return this.olpMsg(p0,p1);};};function $11(p0){return function(event){return this.clickedServiceHandler(p0,null);};};function $12(p0){return function(event){return this.submit(p0);};};function $13(){return function(event){return this.onMin();};};function $15(p0){return function(event){return this.toggleDiv(p0,"masterDiv","dwnArr","upArr");};};function $16(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $17(){return function(event){return this.catchElement(event);};};function $18(p1){return function(event){return this.setRover("p4340",p1);};};function $19(){return function(event){return this.onMout();};};_r.put('6', new vjo.darwin.pres.buying.cmp.shippingrates.UpdateHiddenFields(["hiddenQuantity","hiddenCountry","hiddenZipCode"], ["clquantity","clcountry","clzipCode"])); _r.put('8', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("clGetRates")); _r.put('9', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "clcountry", "clquantity", "clzipCode", 290543793533, "clGetRates")); _r.put('28', new vjo.darwin.pres.buying.cmp.stores.StoreCategoriesRequest("http://promo.ebay.com/ws/eBayISAPI.dll?AutoRefreshStoreCategories&", "storeid=17671919")); _r.put('29', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", null, 290543793533, "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, 290543793533, "shGetRates")); _d.add('nLstTxt','keypress',function(event) { this.onEnter("ad_btn", event); },vjo.darwin.pres.buying.cmp.addtolist.AddToList);_d.add('v4-36','click',$10("OP_CLSnLstOly","v4-36"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('nLstOly','mouseover',$8(1),_r._3nLstOly);_d.add('nLstOly','mouseout',$8(0),_r._3nLstOly);_d.add('nLstOly','mouseover',$13(),_r._3nLstOly);_d.add('nLstOly','mouseout',$19(),_r._3nLstOly);_d.add('nLstOly_cbtn','click',$10("OP_CLSnLstOly","nLstOly_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',_r.get('6'));_d.add('changeLocLink','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2571"); });_d.add('clzipCode','keypress',_r.get('8'));
75
+ _d.add('clGetRates','click',_r.get('9'));_d.add('clGetRates','click',function(event){ return false; });_d.add('chngLoc','mouseover',$8(1),_r._10chngLoc);_d.add('chngLoc','mouseout',$8(0),_r._10chngLoc);_d.add('chngLoc','mouseover',$13(),_r._10chngLoc);_d.add('chngLoc','mouseout',$19(),_r._10chngLoc);_d.add('chngLoc_cbtn','click',$10("OP_CLSchngLoc","chngLoc_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',$10("OP_OPNchngLoc","changeLocLink"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('disPnl','mouseover',$8(1),_r._13disPnl);_d.add('disPnl','mouseout',$8(0),_r._13disPnl);
76
+ _d.add('disPnl','mouseover',$13(),_r._13disPnl);_d.add('disPnl','mouseout',$19(),_r._13disPnl);_d.add('disPnl_cbtn','click',$10("OP_CLSdisPnl","disPnl_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('seeDcnt','click',$10("OP_OPNdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$10("OP_OPNhldolp","hldhlp"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$18("l2573"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('hldolp','mouseover',$8(1),_r._16hldolp);_d.add('hldolp','mouseout',$8(0),_r._16hldolp);_d.add('hldolp','mouseover',$13(),_r._16hldolp);_d.add('hldolp','mouseout',$19(),_r._16hldolp);
77
+ _d.add('hldolp_cbtn','click',$10("OP_CLShldolp","hldolp_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('v4-41','click',$18("l2576"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('v4-41','click',function(event) { return this.onClk("http://pages.ebay.com/coverage/index.html"); },vjo.darwin.pres.buying.cmp.buyerguarantee.BuyerGuarantee);_d.add('v4-42','mouseover',$8(1),_r.get('19v4-42'));_d.add('v4-42','mouseout',$8(0),_r.get('19v4-42'));_d.add('v4-42','mouseover',$13(),_r.get('19v4-42'));_d.add('v4-42','mouseout',$19(),_r.get('19v4-42'));_d.add('dwnArr','click',$15("block"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);_d.add('upArr','click',$15("none"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);_d.add('vv4-43_a','click',function(event) { return this.clickedImgServiceHandler(); },_r.get('ic_js_vv4-43'));
78
+ _d.add('vv4-43_TB_0','click',$11("MN_CLK_SVCvv4-43_TB_0"),vjo.darwin.core.toolbar.Toolbar);_d.add('vv4-43_TB_1','click',$11("MN_CLK_SVCvv4-43_TB_1"),vjo.darwin.core.toolbar.Toolbar);_d.add('body','load',function(event) { this.placeBdr(null, "b2_vv4-43_0", 0, "click"); },_r.get('th_js_vv4-43'));_d.add('body','load',function(event) { this.startLoading(); },_r.get('th_js_vv4-43'));_d.add('body','load',_r.get('28'));_d.add('body','load',function(event) { this.setTabInfo({"desc":0,"ship":1}); },vjo.darwin.pres.buying.cmp.shared.SwitchTabs);_d.add('vv4-43_div','mouseout',function(event) { this.movingout(event); },_r.get('th_js_vv4-43'));_d.add('vv4-43_div','click',$17(),_r.get('th_js_vv4-43'));_d.add('vv4-43_div','mouseover',$17(),_r.get('th_js_vv4-43'));_d.add('b1_vv4-43_','click',$17(),_r.get('th_js_vv4-43'));
79
+ _d.add('b2_vv4-43_0','click',$17(),_r.get('th_js_vv4-43'));_d.add('b2_vv4-43_0','mouseover',$17(),_r.get('th_js_vv4-43'));_d.add('but_v4-7','click',$12("but_v4-7"),_r.get('v4-44'));_d.add('','click',$12(""),_r.get('v4-44'));_d.add('tmp-bid','click',$12("tmp-bid"),_r.get('v4-44'));_d.add('a_payId','click',function(event){ vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab(); });_d.add('a_payId','click',$18("l2575"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('ii_arr','click',$16(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','click',$16(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','mouseover',$6(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);
80
+ _d.add('ec_title','mouseout',$6(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('v4-48','click',function(event) { this.showConditionDef("v4-47", "v4-46"); },vjo.darwin.pres.buying.cmp.itemattributes.ItemAttributes);_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('_rtop','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2577"); });_d.add('v4-68','click',function(event){ vjo.dsf.Element.toggleHideShow('ngvi_desc_div'); });_d.add('v4-68','click',function(event) { this.hideShowIframe(); },_r.get('v4-57'));
81
+ })();
82
+ (function(){
83
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
84
+
85
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {_r.get('vv4-43_js').handleZoom(message); });
86
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {_r.get('vv4-43_js').detachZoom(message); });
87
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
88
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.setSelectedIdx(message); });
89
+ $se(4,'MN_CLK_SVCvv4-43_TB_0',function (message) {_r.get('ic_js_vv4-43').attachZoom(message); });
90
+ $se(4,'MN_CLK_SVCvv4-43_TB_0',function (message) {_r._26.clickTrackServiceHandler(message); });
91
+ $se(4,'D_ADDID',function (message) {_r._dropdown.addChld(message); });
92
+ $se(4,'MN_CLK_SVCvv4-43_TB_1',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 1052, 1030, -1); });
93
+ $se(4,'TH_HVR_SVCvv4-43',function (message) {_r.get('vv4-43_js').detachZoom(message); });
94
+ $se(4,'TH_HVR_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
95
+ $se(4,'D_EDID',function (message) {_r._dropdown.callEnDsbl(message); });
96
+ $se(4,'C_EDID',function (message) {_r._dropdown.chgTtl(message); });
97
+ $se(4,'BTN_SBMT_SRV_v4-7',function (message) {_r.get('Js-v4-7').disable(); });
98
+ $se(4,'IMG_CNTR_CLICKED_vv4-43',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 1052, 1030, -1); });
99
+ $se(4,'TH_OUT_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
100
+ })();
101
+ </script><script type="text/javascript">
102
+ vjo.ctype("vjo.dsf.FirePageLoad").endType();if(typeof(oGaugeInfo)!="undefined"){oGaugeInfo.iLoadST=(new Date()).getTime();}
103
+ vjo.dsf.EventDispatcher.load(document.body);
104
+
105
+ </script></body></html>
@@ -0,0 +1,68 @@
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>Awesome Crescent Down Works by J Crew Vest!!! $265!!! - eBay (item 170612954333 end time Mar-14-11 17:25:06 PDT)</title><meta name="description" content="eBay: Find Awesome Crescent Down Works by J Crew Vest!!! $265!!! in the Clothing, Shoes Accessories , Men's Clothing , Outerwear category on eBay."><meta name="keywords" content="Awesome Crescent Down Works by J Crew Vest!!! $265!!!, Clothing, Shoes Accessories, Men's Clothing, Outerwear"><link rel="canonical" href="http://cgi.ebay.com/Awesome-Crescent-Down-Works-J-Crew-Vest-265-/170612954333"><meta name="google-site-verification" content="8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg"><meta name="y_key" content=""><meta name="msvalidate.01" content=""><meta property="og:title" content="Awesome Crescent Down Works by J Crew Vest!!! $265!!!"><meta property="og:type" content="product"><meta property="og:url" content="http://cgi.ebay.com/Awesome-Crescent-Down-Works-J-Crew-Vest-265-/170612954333"><meta property="og:image" content="http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_1.JPG?set_id=8800005007"><meta property="og:site_name" content="eBay"><meta property="og:description" content="eBay: Find Awesome Crescent Down Works by J Crew Vest!!! $265!!! in the Clothing, Shoes Accessories , Men's Clothing , Outerwear 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]--><script>var pageHasRtmPlacements = true;</script><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/uj/x35tvjzjhi1vtotrclmto5df3.css#GH-ZAM_RedesignEbayNoneFull_e711_12863861_en_US"><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/yw/adod5xbn5qyd1awqeiqciyslf.css#BuyingApp_ViewItemATLShipping_e711_12863861_en_US"><!--[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}.bn-b,.bn-b input,.bn-b a,.bn-b b{background-image:url(http://p.ebaystatic.com/aw/pics/cmp/ds2/sprButtons.png)}</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}.trsTopPanel{margin-top:0}.trsBtmPanel{position:fixed}.vi-pla-ec-span{margin-top:-2px}.vi-pla-ec-span-down{margin-top:2px}</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"><!--<![endif]--><a href="#mainContent" rel="nofollow" class="g-hdn">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"></span><a id="Help" href="http://contact.ebay.com/ws/eBayISAPI.dll?CustomerSupport" _sp="l1545">Customer Support</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><a id="holidayImgS" href="http://getinthegame.event.ebay.com/" class="gh-his"><img src="http://pics.ebaystatic.com/aw/pics/holiday/doodle2011/marchmadness/img_scoreboardheaderV2_158x159.jpg" alt="Gear up – shop now"></a><span class="gh-wrap"><span class="gh-shim"></span><span class="greeting gh-ui"><!-- BEGIN: GREETING:SIGNEDOUT -->Welcome! <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></div></div><div class="gh-cl"></div><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" _sp="m570.l1673"><i>Fashion Vault</i></a><a id="gh_vnl_4" title="DEREK LAM + eBay" class="vnl-img" href="http://dereklam.ebay.com" _sp="m570.l1675"><i>DEREK LAM + eBay</i></a></div></div><img src="http://rover.ebay.com/roversync/?site=0&amp;stg=1&amp;mpt=1300076159756" alt="" width="1" height="1"><script type="text/javascript">var svrGMT = 1300076159756;</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/Mens-Clothing-/1059/i.html">Men's Clothing</a><span> &gt; </span></li><li><a href="http://shop.ebay.com/Outerwear-/57988/i.html">Outerwear</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" class="vi-tm-tpd"></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=170612954333&amp;pt=US_CSA_MC_Outerwear&amp;sourcePage=4340&amp;ssPageName=VIP:watchlink:top:en&amp;wt=d9b4e06bf6cf6c79e216bf8734fd1f77&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=170612954333&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=170612954333&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=170612954333" target="ssFrmWin" method="post"><input type="hidden" name="ssr" value="0"><input type="hidden" name="iurls" value="0#http://i.ebayimg.com/22#!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_14.JPG#!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_12.JPG|1#http://i.ebayimg.com/08#!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_14.JPG#!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_12.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="Awesome Crescent Down Works by J Crew Vest!!! $265!!!"></form><div><table border="0" cellpadding="0" cellspacing="0"><tr><td class="vs_w-a"><div class="ict-w1" id="vv4-43" title="Awesome Crescent Down Works by J Crew Vest!!! $265!!!"><div class="ic-w300 ic-cntr"><div class="ic-w300 ic-m" id="vv4-43_idiv"><center><span></span><img src="http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_35.JPG" id="i_vv4-43" alt="Awesome Crescent Down Works by J Crew Vest!!! $265!!!"></center></div><a id="vv4-43_a" class="ic-cp" href="javascript:;"></a><div id="vv4-43_bdiv" class="ic-p ic-b1" style="height:298px;width:298px;"><div id="vv4-43_t" class="ic-thr"><span>Please wait</span></div><div id="vv4-43_e" class="ic-err"><span>Image not available</span></div></div></div><div class="tbr-c" id="vv4-43_TB"><ul class="tbr-w"><li title="Show larger and alternate views" class="tbr-l"><a id="vv4-43_TB_0" href="javascript:;"><span class="ict-enl">Enlarge</span></a></li></ul></div></div></td></tr><tr><td id="vv4-43_sp" class="vs_w-spr">&#160;</td></tr><tr><td><div id="pD_vv4-43" class="tg-p"><div class="tg-p tg-wh" id="vv4-43_div" style="width:300px;height:43px;"><div id="b1_vv4-43_" class="tg-bdr"></div><div id="b2_vv4-43_0" class="tg-bdr2"></div><table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" class="tg-tb tg-clp" id="vv4-43_tbl"><tr id="t_r_vv4-43_0"><td id="t_c_vv4-43_0" width="16%" height="42px"><img alt="" id="t_ivv4-43_0" src="http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_14.JPG"></td><td id="t_c_vv4-43_1" width="16%"><img alt="" id="t_ivv4-43_1" src="http://i.ebayimg.com/08/!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_14.JPG"></td><td id="t_c_vv4-43_2" class="tg-td" width="16%"></td><td id="t_c_vv4-43_3" class="tg-td" width="16%"></td><td id="t_c_vv4-43_4" class="tg-td" width="16%"></td><td id="t_c_vv4-43_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=170612954333&amp;pt=US_CSA_MC_Outerwear&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">Awesome Crescent Down Works by J Crew Vest!!! $265!!!</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">New with tags</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"><span id="v4-25">20</span><span id="v4-26">h</span> <span id="v4-27">9</span><span id="v4-28">m</span> <span id="v4-29">6</span><span id="v4-30">s</span> </span><span><span>(Mar 14, 2011</span><span class="vi-is1-t">17:25:06 PDT)</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;_trksid=p4340.l2565&amp;item=170612954333" rel="nofollow"><span id="v4-31">5</span> <span>bids</span></a></span></span><span id="v4-32" 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">Current bid:</th><td class="vi-is1-solid vi-is1-tbll"><span><span id="v4-33" class="vi-is1-prcp">US $61.00</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-34">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-34" 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-35" class="vi-c-fsmt">(Enter US $62.00 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 id="dd_addToList" 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><li><a href="javascript:;" id="-96_ita_addToList" d="t" i="-96" n="Gift Ideas">Add to Gift Ideas</a></li><li><a href="javascript:;" id="-98_ita_addToList" d="t" i="-98" n="Research">Add to Research</a></li><li><a href="javascript:;" id="-97_ita_addToList" d="t" i="-97" wsh="t" n="Wish List">Add to Wish List</a></li></ul><div class="ul-sp"></div><div id="ftdv_addToList"><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItem%26item%3D170612954333%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-36">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-39"><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">$7.95</span><span><span> </span></span><span id="fshippingSvc">Standard Shipping</span><span class="sh-nowrap"><a href="javascript:;" id="changeLocLink" class="vi-tl vi-is1-shpl vi-c-fsmt vi-is1-hideDisc"><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._7.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="1" selected="selected">United States</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-showElement">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-showElement sh-enblBox sh-TxtCnt"><div class="sh-RateBtn"><input type="button" id="clGetRates" name="getRates" value="Get Rates" class="sh-BtnTxt sh-BtnTxt"></div><div id="zipCodeMsg" class="sh-elemStyle sh-dispZipInfoMsg"><div class="stsMsg"><div><div class="stsMsg-infoBgr stsMsg-msgInfo"><b class="b"><p tabIndex="0" id="" class="g-hdn">info</p></b><div class="stsMsg-txt"><div><div class="stsMsg-txtStyle stsMsg-normalfont stsMsg-npd">Enter Zip Code to get shipping price</div></div></div></div></div></div></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-40"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-40_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-40_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-40_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-40_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-40_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div><span class="sh-ShipDtls">Standard Shipping</span></div></td><td id="v4-40_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls"><div>Between <span id="Mon. Mar. 21 and Fri. Mar. 25">Mon. Mar. 21 and Fri. Mar. 25</span></div></div></td><td id="v4-40_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls sh_Prcpad">$7.95</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="10chngLoc"><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 olp-xtpd" 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><a href="javascript:;" id="disPnl_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="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><b>Mon. Mar. 21 and Fri. Mar. 25</b></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" cellpadding="0" cellspacing="0" id="miyId"><tr><td class="vi-rpd-miyContent">No Returns Accepted</td></tr></table></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><td colspan="4"><div id="v4-41" 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-42" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="250"><tr id="v4-42tid"><td class="olp-tl"><p></p><a href="javascript:;" id="v4-42_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-42_olp_cnt"><div class="olp-pad" id="v4-42_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-42bid"><td class="olp-bl"><a href="javascript:;" id="v4-42_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-42arid" 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><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div><table cellpadding="0" cellspacing="0" class="s-content"><tbody><tr><td><h2 class="sit">Seller info</h2></td></tr><tr><td><div class="s-details"><div class="mbg"><a title="Member id madog55" href="http://myworld.ebay.com/madog55/?_trksid=p4340.l2559"><b class="g-hdn">Member id </b><b><span class="mbg-nw">madog55</span></b></a> <span class="mbg-l"> ( <a class="mbg-fb" title="Feedback Score Of 615" href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&amp;iid=170612954333&amp;userid=madog55&amp;ssPageName=VIP:feedback&amp;ftab=FeedbackAsSeller&amp;_trksid=p4340.l2560"><b class="g-hdn">Feedback Score Of</b> 615</a><img src="http://q.ebaystatic.com/aw/pics/icon/iconPurpleStar_25x25.gif" height="25" width="25" class="mbg-star" title="Purple star icon for feedback score in between 500 to 999" alt="Purple star icon for feedback score in between 500 to 999">) </span> <span class="mbg-l"></span></div><br><span class="s-gray z_a">99.6%&#160;Positive feedback</span></div><div class="sRlBor"></div></td></tr><tr><td><div class="bdg sl"><div class="s-f-da"><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;_trksid=p4340.l2561&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D170612954333&amp;mode=0&amp;ssPageName=STRK:MEFS:ADDVI&amp;sellerid=madog55&amp;preference=0" rel="nofollow">Save this seller</a></div><div class="s-f-da"><span class="s-f-da"><a href="http://shop.ebay.com/madog55/m.html?_trksid=p4340.l2562">See other items <b class="g-hdn">from this seller</b></a></span></div></div></td></tr><tr></tr><tr><td><div class="s-gray"></div></td></tr></tbody></table></div></div></div><div class="spc1"></div></div></div><div><div class="c-gy-bdr cr-brd cr-bt"><div><span id="ec_span" class="vi-pla-ec-span-down"><a id="ii_arr" href="javascript:;" class="vi-pla-sI vi-pla-bD"></a></span><h3 id="ec_title" class="eciIt">Other item info</h3></div><div id="ii_lyr"><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">170612954333</td></tr><tr><td align="right" valign="top" class="inf_lab">Item location:</td><td valign="top">Oologah, Oklahoma, United States</td></tr><tr><td align="right" valign="top" class="inf_lab">Ships to:</td><td valign="top">N. and S. America <span style="white-space:nowrap;" class="pyOp g-nav"><a id="v4-45" href="#shId">See <b class="g-hdn">shipping location</b> exclusions</a></span></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=170612954333&amp;si=CyLWNQZ%2FrQ%2F%2Flux3zgp1Ym7GxF0%3D&amp;print=all&amp;category=57988" 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;_trksid=p4340.l2566&amp;active=1&amp;itemId=170612954333&amp;seller=madog55" rel="nofollow" class="vi-pla-vAb vi-pla-nw"><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 tb-rrsc"><table cellspacing="0" cellpadding="0" id="vi_tabs_wrp" class="tb tb-nw" width="100%"><tr role="tablist"><td class="tb-act" id="vi_tabs_0_td" width="1"><a role="tab" 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 role="tab" 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-mr10"><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=170612954333" 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%2F170612954333&amp;itm=170612954333&amp;t=Awesome+Crescent+Down+Works+by+J+Crew+Vest%21%21%21+%24265%21%21%21&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%2F170612954333&amp;itm=170612954333&amp;t=Awesome+Crescent+Down+Works+by+J+Crew+Vest%21%21%21+%24265%21%21%21&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" role="tabpanel"><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-50" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Condition: </th><td headers="v4-50" class="vi-ia-attrColPadding" width="50.0%"><div>New with tags: A brand-new, unused, and unworn item (including handmade items) in the original packaging (such as <span id="v4-48" style="display:none">the original box or bag) and/or with the original tags attached.&#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-47" style="display:inline">...&#160;<a href="javascript:;" class="vi-ia-rm" id="v4-49">Read more<b class="g-hdn">about the condition</b></a></span></div></td><th nowrap="nowrap" id="v4-51" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Style: </th><td headers="v4-51" class="vi-ia-attrColPadding" width="50.0%">Vest</td></tr><tr><th nowrap="nowrap" id="v4-52" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Material: </th><td headers="v4-52" class="vi-ia-attrColPadding" width="50.0%">Goose Down/Nylon</td><th nowrap="nowrap" id="v4-53" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size: </th><td headers="v4-53" 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">Brand: </th><td headers="v4-54" id="vi-ia-attrSectionLastRowTd" class="vi-ia-attrColPadding" width="50.0%">J Crew</td><th nowrap="nowrap" id="vi-ia-attrSectionLastRowTd" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Main Color: </th><td headers="v4-55" id="vi-ia-attrSectionLastRowTd" class="vi-ia-attrColPadding" width="50.0%">Fern Green</td></tr></table></td></tr></table></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><font class="Apple-style-span" color="#00429A" face="Arial"><b>You are bidding on an amazing Crescent Down Works by J Crew North by Northwest Vest!!! NWT!!! Crescent Down Works based out of Seattle, Washington, is credited as the best Goosedown clothing maker in the entire world! This vest, made exclusively for J Crew would be an amazing addition to your wardrobe!!! In an awesome "Fern" color!!! Don't let this rare item get away! Retails at $265, so don't pass it up!!!Perfect for winter or chilly Spring Fall/Spring days or nights!</b></font></div></div></div></div></div></td></tr></table><div><div><div class="vi-qa-main_qa"><div class="pnltbl"><div id="v4-57"><table cellpadding="0" cellspacing="0" class="r3 c gy-br"><thead id="v4-57h" 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-57_h"><td class="r3_hm" id="v4-57_hm_0"><h4 class="vi-qa-m0 vi-ds2-subt">Questions and answers about this item</h4></td></tr></thead><tr id="v4-57_c"><td id="v4-57cm" class="r3_c c-sgf"><div class="r3_cm po" id="v4-57_ct"><div><div class="dt" id="v4-58"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-58_tab_0"><tr><td width="1%" class="dt-spTd dt-bgColorTrans">&#160;</td><td scope="row" id="v4-58_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-57_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=170612954333&amp;ssPageName=PageSellerM2MFAQ_VI&amp;redirect=0&amp;requested=madog55" 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" role="tabpanel"><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: Oologah, Oklahoma, United States</div><div class="sh-ShipSecTop"><div class="sh-ShipTo"><div class="sh-ShipLoc">Shipping to: N. and S. America </div><div class="sh-excludedLocns">Excludes: Alaska/Hawaii, US Protectorates, APO/FPO, Africa, Asia, Central America and Caribbean, Europe, Middle East, North America, Oceania, Southeast Asia, South America </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._28.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="1" selected="selected">United States</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-showElement">ZIP Code:</label><div class="sh-ZipAln"><input type="text" id="shPostalCode" size="12" name="zipCode" class="sh-TxtCnt sh-showElement sh-enblBox"></div></span></div><div class="sh-RateBtn sh-InlCnt"><input type="button" value="Get Rates" id="shGetRates" name="getRates" class="sh-BtnTxt"></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-59"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-59_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-59_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-59_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-59_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-59_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-59_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div>US $7.95</div><div></div></div></td><td id="v4-59_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-59_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div><div>Standard Shipping</div></div></div></td><td id="v4-59_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>Mon. Mar. 21 and Fri. Mar. 25</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-60"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-60_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-60_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-60_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">Will usually ship within 4 business days 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="vi-rpd-rpdTitle_ vi-ds2-subt">Return policy</h3><table border="0" width="100%" cellpadding="5" cellspacing="0" class="vi-rpd-tbllyt"><tr><td class="vi-rpd-rpdContent">The seller will not accept returns for this item.<br><div class="vi-rpd-textStyle"></div></td></tr></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-61"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-61_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-61_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-61_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-61_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-61_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-61_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div id="payPref1">Accepted</div></td><td id="v4-61_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/z/qv/tyd4bj51lyyi1lsnt54gxj23o.js#SYS-ZAM_vjo_e711_1_12863631_en_US"></script><script src="http://include.ebaystatic.com/v4js/z/uv/gac5fp3kky3cjliqb3scy3wnr.js#GH-ZAM_RedesignEbayNoneFull_e711_1_12863631_en_US"></script><b style="display:none"><b id="wcItm_1">You can add ##n## more item.</b><b id="wcItm_2">You can add ##n## more items.</b><b id="wcItm_3">You’re the first person to watch this item. Don’t let it get away!</b><b id="wcItm_4">people are watching this item. Place a bid and beat them to buy this item!</b><b id="wcItm_5">##n## item can still be added to your watch list.</b><b id="wcItm_6">##n## items can still be added to your watch list.</b><b id="wcItm_7">person is watching this item. Place a bid and improve your chances to buy this item.</b><b id="wcItm_8">(##i## item)</b><b id="wcItm_9">(##i## items)</b></b></div>
7
+ <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;_trksid=p4340.l2567&amp;item=170612954333" 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://popular.ebay.com/clothing-shoes-accessories-/north-face.htm">North Face</a> | <a href="http://popular.ebay.com/misc-n-z/patagonia.htm">Patagonia</a> | <a href="http://shop.ebay.com/i.html?_nkw=north+face+jacket">North Face Jacket</a> | <a href="http://shop.ebay.com/i.html?_nkw=the+north+face">The North Face</a> | <a href="http://shop.ebay.com/i.html?_nkw=mens+leather+jacket">Mens Leather Jacket</a> | <a href="http://popular.ebay.com/">Popular Searches</a> | <a href="http://reviews.ebay.com/">eBay Reviews</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/-leather+jacket">Leather Jacket 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/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_RedesignEbayRTM_e711_1_12863631_en_US");</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 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."));
8
+ vjo.darwin.globalnav.util.EventReg.aggregate(vjo.Registry._bta.onRefreshHdl());
9
+ vjo.darwin.globalnav.util.EventReg.browseCategories("BrowseCategoriesMenu", "http://include.ebaystatic.com/categoryjs/96/en_US_MAIN/category_96en_US_MAIN0.js");
10
+ vjo.darwin.globalnav.util.EventReg.impression("Ak+LNamM*");
11
+ </script></div>
12
+ </div>
13
+ <!--v.rn77(?50hvci,RcmdId ViewItemNext,RlogId p4%60bo7%60jtb9%3Fv%7F.rn77%28%3F50hvci-12eb293e31b--><script type="text/javascript">vjo.dsf.error.ErrorHandlerManager.register(new vjo.dsf.error.DefaultErrorHandler());
14
+ vjo.dsf.error.ErrorHandlerManager.enableOnError(true, false);
15
+ vjo.dsf.cookie.VjCookieJar.sCookieDomain = '.ebay.com';vjo.dsf.cookie.VjCookieJar.writeCookielet('ebay','js','1');
16
+ </script><script type="text/javascript">var _GlobalNavHeaderUtf8Encoding=true;
17
+
18
+ </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"}];
19
+ (function(){
20
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
21
+ _r.put('35', 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/z/ua/or3b45jl3e5z3nzmpd0gfoxyd.js#GH-ZAM_AdSurvey_e711_1_12863631_en_US","expJsUrl":"http://include.ebaystatic.com/v4js/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_ExpAd_e711_1_12863631_en_US","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/z/mr/4mgadmxjii5ljiwf0l4dyvum0.js#GH-ZAM_PopupBox_e711_1_12863631_en_US","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=b293e2cd12e0a026a63248b2ff9f3dc8&uf=0&c=1H4sIAAAAAAAAAFVTbUscMRD%2BLvgfUiottPE6k8mrMB%2Fs1VpL7yyctV%2BEsj2DLp67srtytfjjm01WpWwg8zyZzDwzmX29um%2FEouoEklB4gObABHG8ONsHdwAgFCDu7typ4BjGHZAzBuDDbezb2yjmXezXsRnEp3bbiJ9td9OL3w%2Fi63iwFeexHy5ejZ%2FYU9YUM0c0jIQerPGUMJJnBBOy6RhRmzEhhsDowGLy10TFk7IGJMVuFkw2iyy0isst%2FRLB4sQhr4aHTZSjJLmq%2F0a5kouqbsS83bSd%2FBy7Rhx3MTaJHWJXVxt53LZ9zIV9WD5s2kZ%2B7KrmUpbaUlDyjm%2Fef1tWt4t3uzvr%2BpJRXdwDpK5B2c3%2FcBSiQhFrHFOYhVyy0s838xEVzZ5Ykx7N1Cq2CIVVUwPyRugKLLUT2gIx%2Bc8Ko3n%2B5WR5tDr6dfhjfnZyuswsTf4pGqW82qc%2BQ86g0HB6YoBZQcR7CmTGmXAmX9UwyXSe55t2uK6bKylW123sxRtxuF7Hvm%2B7OvalsEVs3vbiybFwp%2Fep09tYdS%2B1a130pyTGBe8zV96XwLPOGHJiP7HEp3exucjIThzw9%2BoqntdxezLE22X8M4zK2esyx36a5zTXuUh4TqZs4FSykYqkRmmcNCRVIC0JlJcmrSBtOkhLjf5keZkmfVsP12Korvo83YF1UKT0I46xgntUyjiHJid4%2BpnKiynSvJ%2FHQFnLwe3u%2FAOr004clQMAAA%3D%3D&ord=1300076159771","reportAdJsUrl":"http://include.ebaystatic.com/v4js/z/ut/yiudztzgte44dnmbqt212uew5.js#GH-ZAM_RtmDC_e711_1_12863631_en_US","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":["","","","","","","","",""]}));
22
+ $se(0,'RTM_CALLBACK_SERVICE',vjo.Registry.get('35'));
23
+ $se(2,function(message) {if (message.trspType == 'Remote') { message.stok = '-1998548686' };});
24
+ $se(2,function(message) {if (message.trspType == 'Remote') {message.pId = '4340';}});
25
+ $se(6,'Remote',function (message) {vjo.darwin.tracking.sojourner.TrackingRespHdl.handleResponse(message); });
26
+ })();
27
+ </script><script type="text/javascript">(function() {vjo.dsf.ServiceEngine.handleRequest(new vjo.dsf.Message('RTM_CALLBACK_SERVICE'));})();
28
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/qz/rkx3bkwyyy5dbcxs5hz3e1d2h.js#SYS-ZAM_Omniture_e711_5_12863631_en_US"></script><script type="text/javascript">vjo.dsf.cookie.VjCookieJar.writeCookieEx("lucky9", "1927382", 730);
29
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/i2/rgxckdvqemygdddmogsgiien5.js#BuyingApp_ViewItemATLShipping_e711_6b_12863631_en_US"></script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/ae/nbevysvlhi0zno4kivyfsyzad.js#BuyingApp_ViewItemATLShipping_e711_6_12863631_en_US"></script><script type="text/javascript">vjo.darwin.comp.utils.EventUtils.callOnLoad(["Js-v4-7","Js-vi_tabs"]);
30
+ 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);}
31
+ vjo.darwin.globalnav.util.DoctypeSupport.init();
32
+ 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");
33
+ vjo.darwin.tracking.rover.Rover.roverTrack();
34
+ (function () {
35
+ var _r = vjo.Registry;
36
+ function $o0(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");};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-37",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 $o7(p0,p1,p2){return new vjo.darwin.pres.buying.cmp.shippingrates.CountrySelect(p0,p1,p2,["1,1","2,0","1,1"]);};function $o13(){return new vjo.darwin.core.overlaypanel3.PositionElement(true);};_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":true,"BKId":280,"qlTxtCntMulti":null,"atlSvc":"ONATL_SVCID","addCnt":"Add to ##1","watchListId":-99,"watchStatusCnt":"Added to your ##1","listFull":"##1 is full","nwDefCt":"Type a new list name here","signInUrl":"https://signin.ebay.com/ws/eBayISAPI.dll?SignIn","watchList":"Watch list","maxListCount":50,"itemId":null,"mskuList":null,"jitId":null,"watchListBaseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=170612954333&pt=US_CSA_MC_Outerwear&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=d9b4e06bf6cf6c79e216bf8734fd1f77&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","signInRedirectUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=170612954333&pt=US_CSA_MC_Outerwear&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=d9b4e06bf6cf6c79e216bf8734fd1f77&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","qlTxtCnt":null,"dropDownJsId":"dropdown","adddedMoreLst":"Added to ##2 lists","allListIds":[-99],"inWl":false,"newOl":"nLstOly","nwTxtId":"nLstTxt","itemVariationJsId":null,"watchLinkId":"linkTopAct","itemListIds":[],"itemEnded":false,"adddedOneLst":"Added to your ##1 list","hasWatchLink":true,"statusMsg":"statusmsg","otherListBaseUrl":"http://my.ebay.com/ws/eBayISAPI.dll?MyEbayBeta&entityInfo=170612954333^ITEM&vi=true&SubmitAction.AddToListVI=x&pItemId=170612954333","addToWatch":"Add to Watch list","maxListIds":[],"addtoListLabel":"Add to list","dynamicId":null,"savedMsg":null})); _r.put('dropdown',new vjo.darwin.pres.buying.cmp.dropdown.DropDown({"firstAddToWatch":false,"panel":"pnl_addToList","itemAnch":"_ita_addToList","charLimit":35,"cnAttrVal":"true","footerDs":false,"titleAnch":"-99_ttl_addToList","itemIdList":{"-96":false,"-97":false,"-98":false,"-99":false},"minWidth":150,"swAttrNm":"sw","ellipses":"...","titleSp":"ttlsp_addToList","pnlStrAnch":"s_addToList","ul":"ul_addToList","footer":"s","cnAttrNm":"nw","selSvcId":"D_ISID","pnlPosnId":null,"ddSpan":"dd_addToList","swAttrVal":"true","addToLstId":null,"quickLook":false,"ddDiv":null,"footerDivId":null,"createNewAvl":false,"attchEvtId":null,"dynamicId":null,"imgId":"img_addToList","pnlEndAnch":"e_addToList"})); _r.put('nLstOlyjsid',$o13()); _r.put('3nLstOly',$o5(true,true,false,"3nLstOly",-18,false,300,"nLstOlyjsid","nLstOly")); _r.put('7',$o7("clcountry","clZipCodeTextDiv","clzipCode")); _r.put('chngLocjsid',$o13()); _r.put('10chngLoc',$o5(false,false,false,"10chngLoc",20,true,334,"chngLocjsid","chngLoc")); _r.put('disPnljsid',$o0("disPnlarid")); _r.put('13disPnl',$o5(false,true,false,"13disPnl",0,false,175,"disPnljsid","disPnl"));
37
+ _r.put('hldolpjsid',$o0("hldolparid")); _r.put('16hldolp',$o5(false,true,false,"16hldolp",0,false,250,"hldolpjsid","hldolp")); _r.put('v4-42jsid',$o0("v4-42arid")); _r.put('19v4-42',$o5(false,false,true,"19v4-42",0,false,250,"v4-42jsid","v4-42")); _r.put('22',new vjo.darwin.pres.buying.cmp.watchitem.WatchItem({"watchingText":"defWatchingText","watchDiv":"linkId","upArrowImageDiv":"upArr","guestMsgs":["wcItm_1","wcItm_2"],"maxDiv":"errorDiv","itemsStr":"wcItm_9","resDiv":"middleDiv","watchBottomDiv":"watchLinkBottom","mainDiv":"masterDiv","guestDiv":"guestId","downArrowImageDiv":"dwnArr","watchingDiv":"watchButtonStatus","itemStr":"wcItm_8","baseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=170612954333&pt=US_CSA_MC_Outerwear&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=d9b4e06bf6cf6c79e216bf8734fd1f77&_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":["wcItm_3","wcItm_4","wcItm_5","wcItm_6","wcItm_7"]})); _r.put('ic_js_vv4-43',new vjo.darwin.core.imagecontainerwithtoolbar.ImageContainerWithToolbar({"mskId":null,"cmpId":"vv4-43","ZHt":0,"imgData":{"src":"http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_35.JPG","customAttributes":{},"alt":"Awesome Crescent Down Works by J Crew Vest!!! $265!!!","href":null},"loadSrvcId":null,"hiResImgHt":0,"ancId":"vv4-43_a","TBarId":null,"DEnTxt":null,"ZErrId":null,"height":300,"hiResImgCntrId":null,"preLoad":false,"msgTxtId":null,"mrkCntrId":null,"bdrId":"vv4-43_bdiv","dsblZoomTitle":null,"noZoomMsg":null,"zoomMsg":null,"hiResImgData":null,"reszOnLd":false,"mskImgId":null,"zoomSrvcId":null,"imgId":"i_vv4-43","EEnTxt":null,"IDivId":"vv4-43_idiv","hiResCntId":null,"width":300,"ZWd":0,"DEnTip":null,"mkrId":null,"hiResImgWd":0,"zoomCntId":null,"enblZoomTitle":null,"enIdx":0,"loadSvcId":"LOAD_IMG_SRVC_ID_vv4-43","dsblClz":null,"clkLstrKey":null,"hiResId":null,"thrbId":"vv4-43_t","errId":"vv4-43_e","err":null,"zoomIdx":-1,"EEnTip":null,"clkSrvId":"IMG_CNTR_CLICKED_vv4-43","zoomThrobId":null,"msgId":null,"thr":null,"enblClz":null,"enlrgSrvcId":"MN_CLK_SVCvv4-43_TB_0"})); _r.put('th_js_vv4-43',new vjo.darwin.core.thumbnailgrid.ThumbnailGrid({"instId":"th_js_vv4-43","cmpId":"vv4-43","width":32,"noOv":false,"hrSrvId":"TH_HVR_SVCvv4-43","selPfx":"sel_vv4-43_","errUrl":"http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_32x32.gif","divId":"vv4-43_div","imgData":[{"src":"http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_14.JPG","customAttributes":{},"alt":"Awesome Crescent Down Works by J Crew Vest!!! $265!!!","href":null},{"src":"http://i.ebayimg.com/08/!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_14.JPG","customAttributes":{},"alt":null,"href":null}],"padding":0,"pos":2,"clkLstrKey":null,"brd1Id":"b1_vv4-43_","rows":1,"brd2Id":"b2_vv4-43_","idList":["vv4-43_div","vv4-43_tbl","t_ivv4-43_","t_c_vv4-43_","b1_vv4-43_","b2_vv4-43_","pD_vv4-43","sel_vv4-43_"],"currSelImg":"t_c_vv4-43_0","scBarId":null,"errCss":"tg-e32","forcedLoad":false,"hvrBgClr":"#3881e8","clkBgClr":"#666","noC":false,"trPfx":"t_r_vv4-43_","height":32,"cellHeight":43,"cls":["tg-tb","tg-clp","tg-td","tg-tbL","tg-tbT"],"prDivId":"pD_vv4-43","spacer":{"src":"http://q.ebaystatic.com/aw/pics/s.gif","customAttributes":{},"alt":"","href":""},"clkSrvId":"TH_CLK_SVCvv4-43","moutSrvId":"TH_OUT_SVCvv4-43","tdPfx":"t_c_vv4-43_","cols":6,"resizeOnLoad":true,"tblId":"vv4-43_tbl","imgPfx":"t_ivv4-43_"})); _r.put('vv4-43_js',new vjo.darwin.core.viewselector1.ViewSelector({"DE":false,"cmpId":"vv4-43","icJsInstId":"ic_js_vv4-43","width":300,"height":300,"gtId":"gt_v4-43","mnImgData":[{"src":"http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_35.JPG","customAttributes":{},"alt":"Awesome Crescent Down Works by J Crew Vest!!! $265!!!","href":null},{"src":"http://i.ebayimg.com/08/!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_35.JPG","customAttributes":{},"alt":null,"href":null}],"spTd":"vv4-43_sp","hiResImgData":null,"thWidth":0,"zoom":false,"thImgData":[{"src":"http://i.ebayimg.com/22/!CEbp5nwBWk~$(KGrHqEOKkUE0TjJF!dMBNR2TdE)tw~~0_14.JPG","customAttributes":{},"alt":"Awesome Crescent Down Works by J Crew Vest!!! $265!!!","href":null},{"src":"http://i.ebayimg.com/08/!CEbp65g!2k~$(KGrHqMOKi8EzwNljqhCBNR2TglWlg~~0_14.JPG","customAttributes":{},"alt":null,"href":null}],"scJsInstId":null,"thHeight":0,"scrollCnt":0,"mnImgId":"i_vv4-43","thJsInstId":"th_js_vv4-43"})); _r.put('v4-44',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-34","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%3D170612954333%26pt%3DUS_CSA_MC_Outerwear","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('28',$o7("shCountry","shZipCodeTextDiv","shPostalCode"));
38
+ _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-56',new vjo.darwin.pres.buying.cmp.description.HideShowIframe({"descIframeId":"b","frameUrl":null,"srcMode":null})); _r.put('34',new vjo.darwin.comp.base.Base()); })();
39
+ (function(){
40
+ var _d=vjo.dsf.EventDispatcher;
41
+ var _r=vjo.Registry;
42
+ function $6(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $8(p0){return function(event){return this.setMState(p0);};};function $10(p0,p1){return function(event){return this.olpMsg(p0,p1);};};function $12(p0){return function(event){return this.submit(p0);};};function $13(){return function(event){return this.onMin();};};function $15(p0){return function(event){return this.toggleDiv(p0,"masterDiv","dwnArr","upArr");};};function $16(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $17(){return function(event){return this.catchElement(event);};};function $18(p1){return function(event){return this.setRover("p4340",p1);};};function $19(){return function(event){return this.onMout();};};_r.put('6', new vjo.darwin.pres.buying.cmp.shippingrates.UpdateHiddenFields(["hiddenQuantity","hiddenCountry","hiddenZipCode"], ["clquantity","clcountry","clzipCode"])); _r.put('8', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("clGetRates")); _r.put('9', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "clcountry", "clquantity", "clzipCode", 170612954333, "clGetRates")); _r.put('27', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", "shPostalCode", 170612954333, "shGetRates")); _r.put('29', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("shGetRates")); _r.put('30', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", "shPostalCode", 170612954333, "shGetRates")); _d.add('nLstTxt','keypress',function(event) { this.onEnter("ad_btn", event); },vjo.darwin.pres.buying.cmp.addtolist.AddToList);_d.add('v4-36','click',$10("OP_CLSnLstOly","v4-36"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('nLstOly','mouseover',$8(1),_r._3nLstOly);_d.add('nLstOly','mouseout',$8(0),_r._3nLstOly);_d.add('nLstOly','mouseover',$13(),_r._3nLstOly);_d.add('nLstOly','mouseout',$19(),_r._3nLstOly);_d.add('nLstOly_cbtn','click',$10("OP_CLSnLstOly","nLstOly_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',_r.get('6'));_d.add('changeLocLink','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2571"); });_d.add('clzipCode','keypress',_r.get('8'));
43
+ _d.add('clGetRates','click',_r.get('9'));_d.add('clGetRates','click',function(event){ return false; });_d.add('chngLoc','mouseover',$8(1),_r._10chngLoc);_d.add('chngLoc','mouseout',$8(0),_r._10chngLoc);_d.add('chngLoc','mouseover',$13(),_r._10chngLoc);_d.add('chngLoc','mouseout',$19(),_r._10chngLoc);_d.add('chngLoc_cbtn','click',$10("OP_CLSchngLoc","chngLoc_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',$10("OP_OPNchngLoc","changeLocLink"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('disPnl','mouseover',$8(1),_r._13disPnl);_d.add('disPnl','mouseout',$8(0),_r._13disPnl);
44
+ _d.add('disPnl','mouseover',$13(),_r._13disPnl);_d.add('disPnl','mouseout',$19(),_r._13disPnl);_d.add('disPnl_cbtn','click',$10("OP_CLSdisPnl","disPnl_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('seeDcnt','click',$10("OP_OPNdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$10("OP_OPNhldolp","hldhlp"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$18("l2573"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('hldolp','mouseover',$8(1),_r._16hldolp);_d.add('hldolp','mouseout',$8(0),_r._16hldolp);_d.add('hldolp','mouseover',$13(),_r._16hldolp);_d.add('hldolp','mouseout',$19(),_r._16hldolp);
45
+ _d.add('hldolp_cbtn','click',$10("OP_CLShldolp","hldolp_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('v4-41','click',$18("l2576"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('v4-41','click',function(event) { return this.onClk("http://pages.ebay.com/coverage/index.html"); },vjo.darwin.pres.buying.cmp.buyerguarantee.BuyerGuarantee);_d.add('v4-42','mouseover',$8(1),_r.get('19v4-42'));_d.add('v4-42','mouseout',$8(0),_r.get('19v4-42'));_d.add('v4-42','mouseover',$13(),_r.get('19v4-42'));_d.add('v4-42','mouseout',$19(),_r.get('19v4-42'));_d.add('dwnArr','click',$15("block"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);_d.add('upArr','click',$15("none"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);_d.add('vv4-43_a','click',function(event) { return this.clickedImgServiceHandler(); },_r.get('ic_js_vv4-43'));
46
+ _d.add('vv4-43_TB_0','click',function(event) { this.clickedServiceHandler("MN_CLK_SVCvv4-43_TB_0", null); },vjo.darwin.core.toolbar.Toolbar);_d.add('body','load',function(event) { this.placeBdr(null, "b2_vv4-43_0", 0, "click"); },_r.get('th_js_vv4-43'));_d.add('body','load',function(event) { this.startLoading(); },_r.get('th_js_vv4-43'));_d.add('body','load',function(event) { this.setTabInfo({"desc":0,"ship":1}); },vjo.darwin.pres.buying.cmp.shared.SwitchTabs);_d.add('vv4-43_div','mouseout',function(event) { this.movingout(event); },_r.get('th_js_vv4-43'));_d.add('vv4-43_div','click',$17(),_r.get('th_js_vv4-43'));_d.add('vv4-43_div','mouseover',$17(),_r.get('th_js_vv4-43'));_d.add('b1_vv4-43_','click',$17(),_r.get('th_js_vv4-43'));_d.add('b2_vv4-43_0','click',$17(),_r.get('th_js_vv4-43'));_d.add('b2_vv4-43_0','mouseover',$17(),_r.get('th_js_vv4-43'));
47
+ _d.add('but_v4-7','click',$12("but_v4-7"),_r.get('v4-44'));_d.add('','click',$12(""),_r.get('v4-44'));_d.add('tmp-bid','click',$12("tmp-bid"),_r.get('v4-44'));_d.add('v4-45','click',function(event){ vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab(); });_d.add('v4-45','click',$18("l2579"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('a_payId','click',function(event){ vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab(); });_d.add('a_payId','click',$18("l2575"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('ii_arr','click',$16(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','click',$16(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','mouseover',$6(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);
48
+ _d.add('ec_title','mouseout',$6(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('v4-49','click',function(event) { this.showConditionDef("v4-48", "v4-47"); },vjo.darwin.pres.buying.cmp.itemattributes.ItemAttributes);_d.add('shCountry','change',_r.get('27'));_d.add('shCountry','change',function(event){ return false; });_d.add('shPostalCode','keypress',_r.get('29'));_d.add('shGetRates','click',_r.get('30'));_d.add('shGetRates','click',function(event){ return false; });_d.add('_rtop','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2577"); });_d.add('v4-67','click',function(event){ vjo.dsf.Element.toggleHideShow('ngvi_desc_div'); });_d.add('v4-67','click',function(event) { this.hideShowIframe(); },_r.get('v4-56'));
49
+ })();
50
+ (function(){
51
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
52
+
53
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
54
+ $se(4,'TH_CLK_SVCvv4-43',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.setSelectedIdx(message); });
55
+ $se(4,'MN_CLK_SVCvv4-43_TB_0',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 732, 710, -1); });
56
+ $se(4,'D_ADDID',function (message) {_r._dropdown.addChld(message); });
57
+ $se(4,'TH_HVR_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
58
+ $se(4,'D_EDID',function (message) {_r._dropdown.callEnDsbl(message); });
59
+ $se(4,'C_EDID',function (message) {_r._dropdown.chgTtl(message); });
60
+ $se(4,'BTN_SBMT_SRV_v4-7',function (message) {_r.get('Js-v4-7').disable(); });
61
+ $se(4,'IMG_CNTR_CLICKED_vv4-43',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 732, 710, -1); });
62
+ $se(4,'TH_OUT_SVCvv4-43',function (message) {_r.get('vv4-43_js').UpdateImgContainer(message); });
63
+ })();
64
+ </script><script type="text/javascript">
65
+ vjo.ctype("vjo.dsf.FirePageLoad").endType();if(typeof(oGaugeInfo)!="undefined"){oGaugeInfo.iLoadST=(new Date()).getTime();}
66
+ vjo.dsf.EventDispatcher.load(document.body);
67
+
68
+ </script></body></html>
@@ -0,0 +1,66 @@
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>ACNE Hep slim straight Black jeans 28 skinny - eBay (item 190510549653 end time Mar-14-11 13:10:47 PDT)</title><meta name="description" content="eBay: Find ACNE Hep slim straight Black jeans 28 skinny in the Clothing, Shoes Accessories , Women's Clothing , Jeans category on eBay."><meta name="keywords" content="ACNE Hep slim straight Black jeans 28 skinny, Clothing, Shoes Accessories, Women's Clothing, Jeans, Clothing, Shoes Accessories, Men's Clothing, Jeans"><link rel="canonical" href="http://cgi.ebay.com/ACNE-Hep-slim-straight-Black-jeans-28-skinny-/190510549653"><meta name="google-site-verification" content="8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg"><meta name="y_key" content=""><meta name="msvalidate.01" content=""><meta property="og:title" content="ACNE Hep slim straight Black jeans 28 skinny"><meta property="og:type" content="product"><meta property="og:url" content="http://cgi.ebay.com/ACNE-Hep-slim-straight-Black-jeans-28-skinny-/190510549653"><meta property="og:image" content="http://i.ebayimg.com/00/$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_1.JPG?set_id=8800005007"><meta property="og:site_name" content="eBay"><meta property="og:description" content="eBay: Find ACNE Hep slim straight Black jeans 28 skinny in the Clothing, Shoes Accessories , Women's Clothing , Jeans 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]--><script>var pageHasRtmPlacements = true;</script><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/uj/x35tvjzjhi1vtotrclmto5df3.css#GH-ZAM_RedesignEbayNoneFull_e711_12863861_en_US"><link rel="stylesheet" type="text/css" href="http://include.ebaystatic.com/v4css/z/yw/adod5xbn5qyd1awqeiqciyslf.css#BuyingApp_ViewItemATLShipping_e711_12863861_en_US"><!--[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}.bn-b,.bn-b input,.bn-b a,.bn-b b{background-image:url(http://p.ebaystatic.com/aw/pics/cmp/ds2/sprButtons.png)}</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}.trsTopPanel{margin-top:0}.trsBtmPanel{position:fixed}.vi-pla-ec-span{margin-top:-2px}.vi-pla-ec-span-down{margin-top:2px}</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"><!--<![endif]--><a href="#mainContent" rel="nofollow" class="g-hdn">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"></span><a id="Help" href="http://contact.ebay.com/ws/eBayISAPI.dll?CustomerSupport" _sp="l1545">Customer Support</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><a id="holidayImgS" href="http://getinthegame.event.ebay.com/" class="gh-his"><img src="http://pics.ebaystatic.com/aw/pics/holiday/doodle2011/marchmadness/img_scoreboardheaderV2_158x159.jpg" alt="Gear up – shop now"></a><span class="gh-wrap"><span class="gh-shim"></span><span class="greeting gh-ui"><!-- BEGIN: GREETING:SIGNEDOUT -->Welcome! <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></div></div><div class="gh-cl"></div><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" _sp="m570.l1673"><i>Fashion Vault</i></a><a id="gh_vnl_4" title="DEREK LAM + eBay" class="vnl-img" href="http://dereklam.ebay.com" _sp="m570.l1675"><i>DEREK LAM + eBay</i></a></div></div><img src="http://rover.ebay.com/roversync/?site=0&amp;stg=1&amp;mpt=1300076137267" alt="" width="1" height="1"><script type="text/javascript">var svrGMT = 1300076137267;</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/Jeans-/11554/i.html">Jeans</a></li></ul></div></div></td></tr><tr><td class="vi-ih-bc-label">Also Listed in:</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/Mens-Clothing-/1059/i.html">Men's Clothing</a><span> &gt; </span></li><li><a href="http://shop.ebay.com/Jeans-/11483/i.html">Jeans</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" class="vi-tm-tpd"></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=190510549653&amp;pt=US_CSA_MC_Jeans&amp;sourcePage=4340&amp;ssPageName=VIP:watchlink:top:en&amp;wt=82bbdd09a0b71c458df2bb66a22c11c2&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=190510549653&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=190510549653&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=190510549653" target="ssFrmWin" method="post"><input type="hidden" name="ssr" value="0"><input type="hidden" name="iurls" value="0#http://i.ebayimg.com/00#$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_14.JPG#$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_12.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="ACNE Hep slim straight Black jeans 28 skinny"></form><div><table border="0" cellpadding="0" cellspacing="0"><tr><td class="vs_w-a"><div class="ict-w1" id="vv4-44" title="ACNE Hep slim straight Black jeans 28 skinny"><div class="ic-w300 ic-cntr"><div class="ic-w300 ic-m" id="vv4-44_idiv"><center><span></span><img src="http://i.ebayimg.com/00/$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_35.JPG" id="i_vv4-44" alt="ACNE Hep slim straight Black jeans 28 skinny"></center></div><a id="vv4-44_a" class="ic-cp" href="javascript:;"></a><div id="vv4-44_bdiv" class="ic-p ic-b1" style="height:298px;width:298px;"><div id="vv4-44_t" class="ic-thr"><span>Please wait</span></div><div id="vv4-44_e" class="ic-err"><span>Image not available</span></div></div></div><div class="tbr-c" id="vv4-44_TB"><ul class="tbr-w"><li title="Show larger and alternate views" class="tbr-l"><a id="vv4-44_TB_0" href="javascript:;"><span class="ict-enl">Enlarge</span></a></li></ul></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=190510549653&amp;pt=US_CSA_MC_Jeans&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">ACNE Hep slim straight Black jeans 28 skinny</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"><span id="v4-25">15</span><span id="v4-26">h</span> <span id="v4-27">55</span><span id="v4-28">m</span> <span id="v4-29">11</span><span id="v4-30">s</span> </span><span><span>(Mar 14, 2011</span><span class="vi-is1-t">13:10:47 PDT)</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;_trksid=p4340.l2565&amp;item=190510549653" rel="nofollow"><span id="v4-31">2</span> <span>bids</span></a></span></span><span id="v4-32" 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">Current bid:</th><td class="vi-is1-solid vi-is1-tbll"><span><span id="v4-33" class="vi-is1-prcp">US $10.00</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-34">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-34" 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-35" class="vi-c-fsmt">(Enter US $10.50 or more)</span></td></tr><tr><td colspan="4" height="10" class="vi-is1-solid"><span><table width="100%"><tr><td width="50%"><hr class="vi-is1-hr"></td><td class="vi-is1-hrOr">or</td><td width="50%"><hr class="vi-is1-hr"></td></tr></table></span></td></tr><tr><th class="vi-is1-lblp vi-is1-solidBg">Price:</th><td class="vi-is1-solid vi-is1-tbll"><span class="vi-is1-prcp"><span id="v4-36">US $35.00</span></span></td><td colspan="2" class="vi-is1-solid vi-is1-tblb"><div><b id="v4-5" class="bn-w bn-pad psb-S"><i>Buy It Now</i><span id="spn_v4-5" class="bn-b psb-b psb-S"><a id="but_v4-5" href="http://offer.ebay.com/ws/eBayISAPI.dll?BinController&amp;_trksid=p4340.l1356&amp;rev=0&amp;item=190510549653&amp;pt=US_CSA_MC_Jeans&amp;fromPage=4340&amp;quantity=1&amp;gch=1&amp;fb=1" title="">Buy It Now</a><b id="txt_v4-5">Buy It Now</b></span></b></div></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 id="dd_addToList" 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><li><a href="javascript:;" id="-96_ita_addToList" d="t" i="-96" n="Gift Ideas">Add to Gift Ideas</a></li><li><a href="javascript:;" id="-98_ita_addToList" d="t" i="-98" n="Research">Add to Research</a></li><li><a href="javascript:;" id="-97_ita_addToList" d="t" i="-97" wsh="t" n="Wish List">Add to Wish List</a></li></ul><div class="ul-sp"></div><div id="ftdv_addToList"><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItem%26item%3D190510549653%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-37">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-40"><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">$10.00</span><span><span> </span></span><span id="fshippingSvc">Standard Shipping</span><span class="sh-nowrap"><a href="javascript:;" id="changeLocLink" class="vi-tl vi-is1-shpl vi-c-fsmt vi-is1-hideDisc"><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._8.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="1" selected="selected">United States</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-41"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-41_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-41_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-41_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-41_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-41_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div><span class="sh-ShipDtls">Standard Shipping</span></div></td><td id="v4-41_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls"><div>Between <span id="Fri. Mar. 18 and Thu. Mar. 24">Fri. Mar. 18 and Thu. Mar. 24</span></div></div></td><td id="v4-41_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft sh-RowBrdr" rowspan="1" colspan="1"><div class="sh-ShipDtls sh_Prcpad">$10.00</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="11chngLoc"><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 olp-xtpd" 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><a href="javascript:;" id="disPnl_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="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><b>Fri. Mar. 18 and Thu. Mar. 24</b></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" cellpadding="0" cellspacing="0" id="miyId"><tr><td class="vi-rpd-miyContent">No Returns Accepted</td></tr></table></div></td></tr><tr><td colspan="4" height="10"></td></tr><tr><td colspan="4"><div id="v4-42" 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-43" class="olp-mn"><table cellpadding="0" cellspacing="0" border="0" width="250"><tr id="v4-43tid"><td class="olp-tl"><p></p><a href="javascript:;" id="v4-43_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-43_olp_cnt"><div class="olp-pad" id="v4-43_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-43bid"><td class="olp-bl"><a href="javascript:;" id="v4-43_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-43arid" 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><div class="cr-w cr-bt c-gy-bdr"><div class="cr-cnt"><div><table cellpadding="0" cellspacing="0" class="s-content"><tbody><tr><td><h2 class="sit">Seller info</h2></td></tr><tr><td><div class="s-details"><div class="mbg"><a title="Member id radicalizor" href="http://myworld.ebay.com/radicalizor/?_trksid=p4340.l2559"><b class="g-hdn">Member id </b><b><span class="mbg-nw">radicalizor</span></b></a> <span class="mbg-l"> ( <a class="mbg-fb" title="Feedback Score Of 263" href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&amp;iid=190510549653&amp;userid=radicalizor&amp;ssPageName=VIP:feedback&amp;ftab=FeedbackAsSeller&amp;_trksid=p4340.l2560"><b class="g-hdn">Feedback Score Of</b> 263</a><img src="http://q.ebaystatic.com/aw/pics/icon/iconTealStar_25x25.gif" height="25" width="25" title="Teal star icon for feedback score in between 100 to 499" alt="Teal star icon for feedback score in between 100 to 499" class="mbg-star">) </span> <span class="mbg-l"></span></div><br><span class="s-gray z_a">100%&#160;Positive feedback</span></div><div class="sRlBor"></div></td></tr><tr><td><div class="bdg sl"><div class="s-f-da"><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&amp;_trksid=p4340.l2561&amp;ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D190510549653&amp;mode=0&amp;ssPageName=STRK:MEFS:ADDVI&amp;sellerid=radicalizor&amp;preference=0" rel="nofollow">Save this seller</a></div><div class="s-f-da"><span class="s-f-da"><a href="http://shop.ebay.com/radicalizor/m.html?_trksid=p4340.l2562">See other items <b class="g-hdn">from this seller</b></a></span></div></div></td></tr><tr></tr><tr><td><div class="s-gray"></div></td></tr></tbody></table></div></div></div><div class="spc1"></div></div></div><div><div class="c-gy-bdr cr-brd cr-bt"><div><span id="ec_span" class="vi-pla-ec-span-down"><a id="ii_arr" href="javascript:;" class="vi-pla-sI vi-pla-bD"></a></span><h3 id="ec_title" class="eciIt">Other item info</h3></div><div id="ii_lyr"><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">190510549653</td></tr><tr><td align="right" valign="top" class="inf_lab">Item location:</td><td valign="top">Austin, TX, United States</td></tr><tr><td align="right" valign="top" class="inf_lab">Ships to:</td><td valign="top">United States </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=190510549653&amp;si=Hex3G%2BUiyp1WncDfp3ZCkZgI6FA%3D&amp;print=all&amp;category=11554" 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;_trksid=p4340.l2566&amp;active=1&amp;itemId=190510549653&amp;seller=radicalizor" rel="nofollow" class="vi-pla-vAb vi-pla-nw"><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 tb-rrsc"><table cellspacing="0" cellpadding="0" id="vi_tabs_wrp" class="tb tb-nw" width="100%"><tr role="tablist"><td class="tb-act" id="vi_tabs_0_td" width="1"><a role="tab" 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 role="tab" 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-mr10"><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=190510549653" 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%2F190510549653&amp;itm=190510549653&amp;t=ACNE+Hep+slim+straight+Black+jeans+28+skinny&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%2F190510549653&amp;itm=190510549653&amp;t=ACNE+Hep+slim+straight+Black+jeans+28+skinny&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" role="tabpanel"><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-50" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Condition: </th><td headers="v4-50" 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-48" 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-47" style="display:inline">...&#160;<a href="javascript:;" class="vi-ia-rm" id="v4-49">Read more<b class="g-hdn">about the condition</b></a></span></div></td><th nowrap="nowrap" id="v4-51" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Style: </th><td headers="v4-51" class="vi-ia-attrColPadding" width="50.0%">Slim, Skinny, Straight Leg</td></tr><tr><th nowrap="nowrap" id="v4-52" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size: </th><td headers="v4-52" class="vi-ia-attrColPadding" width="50.0%">28</td><th nowrap="nowrap" id="v4-53" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Size Type: </th><td headers="v4-53" class="vi-ia-attrColPadding" width="50.0%">By Waist Size</td></tr><tr><th nowrap="nowrap" id="vi-ia-attrSectionLastRowTd" align="left" class="vi-ia-hdAl vi-ia-attrLabel vi-ia-attrColPadding">Waist Size: </th><td headers="v4-54" id="vi-ia-attrSectionLastRowTd" class="vi-ia-attrColPadding" width="50.0%">28</td><td class="vi-ia-attrColPadding">&#160;</td><td width="50.0%">&#160;</td></tr></table></td></tr></table></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><FONT face=Arial size=2>Acne Hep Black stretch jeans. slim/straight fit but still snug on the body. near new condition, never worn out of the house. size 28w 34L but hemmed to about a 32.</FONT></div></div></div></div></div></td></tr></table><div><div><div class="vi-qa-main_qa"><div class="pnltbl"><div id="v4-56"><table cellpadding="0" cellspacing="0" class="r3 c gy-br"><thead id="v4-56h" 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-56_h"><td class="r3_hm" id="v4-56_hm_0"><h4 class="vi-qa-m0 vi-ds2-subt">Questions and answers about this item</h4></td></tr></thead><tr id="v4-56_c"><td id="v4-56cm" class="r3_c c-sgf"><div class="r3_cm po" id="v4-56_ct"><div><div class="dt" id="v4-57"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-57_tab_0"><tr><td width="1%" class="dt-spTd dt-bgColorTrans">&#160;</td><td scope="row" id="v4-57_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-56_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=190510549653&amp;ssPageName=PageSellerM2MFAQ_VI&amp;redirect=0&amp;requested=radicalizor" 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><br><br><center><span id="counter" class="BasicStyle">00108</span></center></div></div></div></div></div><div id="vi_tabs_1_cnt" class="tb-cntOff" role="tabpanel"><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: Austin, TX, United States</div><div class="sh-ShipSecTop"><div class="sh-ShipTo"><div class="sh-ShipLoc">Shipping to: United States </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._28.handle(&quot;change&quot;);"><option value="0">Show all available</option><option value="1" selected="selected">United States</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-58"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-58_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-58_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-58_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-58_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-58_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-58_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div>US $10.00</div><div></div></div></td><td id="v4-58_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-58_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt"><div><div>Standard Shipping</div></div></div></td><td id="v4-58_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>Fri. Mar. 18 and Thu. Mar. 24</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-59"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-59_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-59_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-59_tab_0_srtCol_0_0" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div class="sh-TblCnt">Will usually ship within 3 business days 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="vi-rpd-rpdTitle_ vi-ds2-subt">Return policy</h3><table border="0" width="100%" cellpadding="5" cellspacing="0" class="vi-rpd-tbllyt"><tr><td class="vi-rpd-rpdContent">The seller will not accept returns for this item.<br><div class="vi-rpd-textStyle"></div></td></tr></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-60"><div class="dt-dtbl"><table border="0" cellpadding="0" cellspacing="0" width="100%" id="v4-60_tab_0"><thead><tr class="dt-tblHdr"><th scope="col" id="v4-60_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-60_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-60_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-60_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-60_tab_0_srtCol_0_1" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><div id="payPref1">Accepted</div></td><td id="v4-60_tab_0_srtCol_0_2" class="dt-colCnt dt-alignLft" rowspan="1" colspan="1"><b>&#160;</b></td></tr></table></div></div></div><div><h3 class="pay-hed vi-ds2-subt">Immediate payment required for this item</h3><div class="pay-det">Immediate payment of US $35.00 is required.</div></div><div><h3 class="pay-hed vi-ds2-subt">Seller's payment instructions</h3><div class="pay-inst-details" style="word-wrap:break-word;overflow:hidden">Please make payment within 3 days of auction end.</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/z/qv/tyd4bj51lyyi1lsnt54gxj23o.js#SYS-ZAM_vjo_e711_1_12863631_en_US"></script><script src="http://include.ebaystatic.com/v4js/z/uv/gac5fp3kky3cjliqb3scy3wnr.js#GH-ZAM_RedesignEbayNoneFull_e711_1_12863631_en_US"></script><b style="display:none"><b id="wcItm_1">You can add ##n## more item.</b><b id="wcItm_2">You can add ##n## more items.</b><b id="wcItm_3">You’re the first person to watch this item. Don’t let it get away!</b><b id="wcItm_4">people are watching this item. Place a bid and beat them to buy this item!</b><b id="wcItm_5">##n## item can still be added to your watch list.</b><b id="wcItm_6">##n## items can still be added to your watch list.</b><b id="wcItm_7">person is watching this item. Place a bid and improve your chances to buy this item.</b><b id="wcItm_8">(##i## item)</b><b id="wcItm_9">(##i## items)</b></b></div>
7
+ <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;_trksid=p4340.l2567&amp;item=190510549653" 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://shop.ebay.com/i.html?_nkw=miss+me+jeans">Miss Me Jeans</a> | <a href="http://clothing.shop.ebay.com/Jeans-/11483/i.html?_nkw=true+religion">True Religion</a> | <a href="http://clothing.shop.ebay.com/Jeans-/11554/i.html?_nkw=silver">Silver Jeans</a> | <a href="http://clothing.shop.ebay.com/Mens-Clothing-/1059/i.html?_nkw=american+eagle+jeans">American Eagle Jeans</a> | <a href="http://shop.ebay.com/i.html?_nkw=miss+me">Miss Me</a> | <a href="http://popular.ebay.com/">Popular Searches</a> | <a href="http://reviews.ebay.com/">eBay Reviews</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/-miss+me+jeans">Miss Me Jeans 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/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_RedesignEbayRTM_e711_1_12863631_en_US");</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 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."));
8
+ vjo.darwin.globalnav.util.EventReg.aggregate(vjo.Registry._bta.onRefreshHdl());
9
+ vjo.darwin.globalnav.util.EventReg.browseCategories("BrowseCategoriesMenu", "http://include.ebaystatic.com/categoryjs/96/en_US_MAIN/category_96en_US_MAIN0.js");
10
+ vjo.darwin.globalnav.util.EventReg.impression("Ak4sEaz4*");
11
+ </script><script type="text/javascript">var cn = 0,intv;function timer(){ intv = setInterval(publish,100);} function publish(){ if(isRTMReady()){ sendMsg(); window.clearInterval(intv); return; } if(cn++ >= 5) window.clearInterval(intv);}function isRTMReady(){ var r = vjo.Registry.get('GlobalRtmInstance'); if((typeof(r) != 'undefined') && r.bRespRet) { return true; }else return false;}function sendMsg(){ var msg = new vjo.dsf.Message('RTM_LOAD_PIDS'); msg.pids = ['825','827','829','813','283','911']; vjo.dsf.ServiceEngine.handleRequest(msg);}vjo.dsf.EventDispatcher.addEventListener(window,'load',timer,this)</script></div>
12
+ </div>
13
+ <!--v.rn77(676}?eb,RcmdId ViewItemNext,RlogId p4%60bo7%60jtb9%3Fv%7F.rn77%28676%7D%3Feb-12eb2938b43--><script type="text/javascript">vjo.dsf.error.ErrorHandlerManager.register(new vjo.dsf.error.DefaultErrorHandler());
14
+ vjo.dsf.error.ErrorHandlerManager.enableOnError(true, false);
15
+ vjo.dsf.cookie.VjCookieJar.sCookieDomain = '.ebay.com';vjo.dsf.cookie.VjCookieJar.writeCookielet('ebay','js','1');
16
+ </script><script type="text/javascript">var _GlobalNavHeaderUtf8Encoding=true;
17
+
18
+ </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"}];
19
+ (function(){
20
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
21
+ _r.put('35', new vjo.darwin.core.rtm.RTMInit({"contentTypes":[null,null,null,null,null,null,null,null,null],"triggerEvent":["0","0","0","1","1","1","1","1","1"],"onload":false,"defaultUrls":["","collapse","collapse","","","","","",""],"pids":["1595","973","974","825","827","829","813","283","280"],"adSurveyJsUrl":"http://include.ebaystatic.com/v4js/z/ua/or3b45jl3e5z3nzmpd0gfoxyd.js#GH-ZAM_AdSurvey_e711_1_12863631_en_US","expJsUrl":"http://include.ebaystatic.com/v4js/z/qt/tguu2pfbkeymtgr1d2cpvo3dv.js#GH-ZAM_ExpAd_e711_1_12863631_en_US","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/z/mr/4mgadmxjii5ljiwf0l4dyvum0.js#GH-ZAM_PopupBox_e711_1_12863631_en_US","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:825:827:829:813:283:280&ph=0:0:0:0:0:0:0&ev=0:1:1:1:1:1:1&g=b2938b0412e0a026b3e59405ff98f81c&uf=0&c=1H4sIAAAAAAAAAFVT22rbQBB9D%2BQfFlpaKHKZy15d9iExpklpnIDS5iVQhLM4ahzZWAqpgz6%2Bq13FaUGwO2dmZ87MHL0rnxpxUe0EsiCcopqyEV8vridgpgCCAPH4aEvOeBhOQJ9sAH8yW8zFWdiKdl0%2FirbbVfXqvhOn62r5IH6HqmkFWdE%2B1E2zTymUZ8POWWQZbWTrURnKd%2BMRpRpKoHMeHSgEJZ1WnNycqiKTR%2FicojgTQU0%2Bv5JvGTSOGPqy269DUUaGhSgTlS%2BifKX6PayKsn4J4nq%2FDcXpXtxUdduJAUp4Qbb4ByIbk7I1%2FkG28%2BpFfjo%2BWtZ3Hun2CSDOCfKp%2FjcHIuQyWVKZmDKHPkgeEiQP5wjLXrIcroxxTtGdUBrnkA5GM6b1OVBnE1%2BTM0o%2FOztfzMv5r5Mfs%2Bvzy0VCeYyP2TjWZZbS5AqEysfdQn5PMfI9QZHsBJjcgISRprF%2Btt5093WzivO934RWfBAny2Vo282uDm1u7GbzGJqPrXgNzei3QSJvnUuZ2ccSiEolWci8ZAbrsw2prB1R9pfb0NwmS48Y%2BKtqFX7W4fm8C4%2BL8KcbeHsrs3ztKGPjWaUe4VCNtPOxY1VILBQX5FgWSFrGvVtVMEQxqPi5Qkd%2F%2FGh4w9pf7cJk89yEuyRy57VzTsvekgTQPWqtjcQeDSBZ2ROi1Q76eNeWdE%2BOTNR1zzLKVtmeHWmLmY8Z%2F7W8X2LpJ84ljx6Qv0lbah67AwAA&ord=1300076137283","reportAdJsUrl":"http://include.ebaystatic.com/v4js/z/ut/yiudztzgte44dnmbqt212uew5.js#GH-ZAM_RtmDC_e711_1_12863631_en_US","merchPrefix":"ME","onDemandPids":[],"onScrollPids":["973","974"],"expandSecurityTokens":null,"th":{"rtm_html_973":100,"rtm_html_974":200},"showPH":["0","0","0","0","0","0","0","0","0"],"allowExpandOnPageLoad":null,"delayedContent":[null,null,null,null,null,null,null,null,null],"dblclkUrls":["","","","","","","","",""]}));
22
+ $se(0,'RTM_CALLBACK_SERVICE',vjo.Registry.get('35'));
23
+ $se(2,function(message) {if (message.trspType == 'Remote') { message.stok = '1606315387' };});
24
+ $se(2,function(message) {if (message.trspType == 'Remote') {message.pId = '4340';}});
25
+ $se(6,'Remote',function (message) {vjo.darwin.tracking.sojourner.TrackingRespHdl.handleResponse(message); });
26
+ })();
27
+ </script><script type="text/javascript">(function() {vjo.dsf.ServiceEngine.handleRequest(new vjo.dsf.Message('RTM_CALLBACK_SERVICE'));})();
28
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/qz/rkx3bkwyyy5dbcxs5hz3e1d2h.js#SYS-ZAM_Omniture_e711_5_12863631_en_US"></script><script type="text/javascript">vjo.dsf.cookie.VjCookieJar.writeCookieEx("lucky9", "3564578", 730);
29
+ </script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/i2/rgxckdvqemygdddmogsgiien5.js#BuyingApp_ViewItemATLShipping_e711_6b_12863631_en_US"></script><script type="text/javascript" src="http://include.ebaystatic.com/v4js/z/ae/nbevysvlhi0zno4kivyfsyzad.js#BuyingApp_ViewItemATLShipping_e711_6_12863631_en_US"></script><script type="text/javascript">vjo.darwin.comp.utils.EventUtils.callOnLoad(["Js-v4-7","Js-v4-5","Js-vi_tabs"]);
30
+ 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);}
31
+ vjo.darwin.globalnav.util.DoctypeSupport.init();
32
+ 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");
33
+ vjo.darwin.tracking.rover.Rover.roverTrack();
34
+ (function () {
35
+ var _r = vjo.Registry;
36
+ function $o0(p0,p1,p2){return new vjo.darwin.pres.buying.cmp.shippingrates.CountrySelect(p0,p1,p2,["1,0","2,0"]);};function $o1(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");};function $o5(p0_4,p0_5,p0_6,p0_7,p0_9){return new vjo.darwin.comp.button.Button({FName:null,BT:"psb-S",subScope:"psb",scope:"bn",LId:p0_4,svcId:p0_5,tp:p0_6,BId:p0_7,dis:false,SId:p0_9});};function $o6(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-38",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 $o13(){return new vjo.darwin.core.overlaypanel3.PositionElement(true);};_r.put('Js-v4-7',$o5("txt_v4-7","BTN_SBMT_SRV_v4-7",1,"but_v4-7","spn_v4-7")); _r.put('Js-v4-5',$o5("txt_v4-5","BTN_SBMT_SRV_v4-5",2,"but_v4-5","spn_v4-5")); _r.put('addLst_js',new vjo.darwin.pres.buying.cmp.addtolist.AddToList({"mskuItem":false,"defList":true,"BKId":280,"qlTxtCntMulti":null,"atlSvc":"ONATL_SVCID","addCnt":"Add to ##1","watchListId":-99,"watchStatusCnt":"Added to your ##1","listFull":"##1 is full","nwDefCt":"Type a new list name here","signInUrl":"https://signin.ebay.com/ws/eBayISAPI.dll?SignIn","watchList":"Watch list","maxListCount":50,"itemId":null,"mskuList":null,"jitId":null,"watchListBaseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=190510549653&pt=US_CSA_MC_Jeans&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=82bbdd09a0b71c458df2bb66a22c11c2&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","signInRedirectUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=190510549653&pt=US_CSA_MC_Jeans&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=82bbdd09a0b71c458df2bb66a22c11c2&_trksid=p4340.l1360&SubmitAction.AddToListVI=x","qlTxtCnt":null,"dropDownJsId":"dropdown","adddedMoreLst":"Added to ##2 lists","allListIds":[-99],"inWl":false,"newOl":"nLstOly","nwTxtId":"nLstTxt","itemVariationJsId":null,"watchLinkId":"linkTopAct","itemListIds":[],"itemEnded":false,"adddedOneLst":"Added to your ##1 list","hasWatchLink":true,"statusMsg":"statusmsg","otherListBaseUrl":"http://my.ebay.com/ws/eBayISAPI.dll?MyEbayBeta&entityInfo=190510549653^ITEM&vi=true&SubmitAction.AddToListVI=x&pItemId=190510549653","addToWatch":"Add to Watch list","maxListIds":[],"addtoListLabel":"Add to list","dynamicId":null,"savedMsg":null})); _r.put('dropdown',new vjo.darwin.pres.buying.cmp.dropdown.DropDown({"firstAddToWatch":false,"panel":"pnl_addToList","itemAnch":"_ita_addToList","charLimit":35,"cnAttrVal":"true","footerDs":false,"titleAnch":"-99_ttl_addToList","itemIdList":{"-96":false,"-97":false,"-98":false,"-99":false},"minWidth":150,"swAttrNm":"sw","ellipses":"...","titleSp":"ttlsp_addToList","pnlStrAnch":"s_addToList","ul":"ul_addToList","footer":"s","cnAttrNm":"nw","selSvcId":"D_ISID","pnlPosnId":null,"ddSpan":"dd_addToList","swAttrVal":"true","addToLstId":null,"quickLook":false,"ddDiv":null,"footerDivId":null,"createNewAvl":false,"attchEvtId":null,"dynamicId":null,"imgId":"img_addToList","pnlEndAnch":"e_addToList"})); _r.put('nLstOlyjsid',$o13()); _r.put('4nLstOly',$o6(true,true,false,"4nLstOly",-18,false,300,"nLstOlyjsid","nLstOly")); _r.put('8',$o0("clcountry","clZipCodeTextDiv","clzipCode")); _r.put('chngLocjsid',$o13()); _r.put('11chngLoc',$o6(false,false,false,"11chngLoc",20,true,334,"chngLocjsid","chngLoc")); _r.put('disPnljsid',$o1("disPnlarid"));
37
+ _r.put('14disPnl',$o6(false,true,false,"14disPnl",0,false,175,"disPnljsid","disPnl")); _r.put('hldolpjsid',$o1("hldolparid")); _r.put('17hldolp',$o6(false,true,false,"17hldolp",0,false,250,"hldolpjsid","hldolp")); _r.put('v4-43jsid',$o1("v4-43arid")); _r.put('20v4-43',$o6(false,false,true,"20v4-43",0,false,250,"v4-43jsid","v4-43")); _r.put('23',new vjo.darwin.pres.buying.cmp.watchitem.WatchItem({"watchingText":"defWatchingText","watchDiv":"linkId","upArrowImageDiv":"upArr","guestMsgs":["wcItm_1","wcItm_2"],"maxDiv":"errorDiv","itemsStr":"wcItm_9","resDiv":"middleDiv","watchBottomDiv":"watchLinkBottom","mainDiv":"masterDiv","guestDiv":"guestId","downArrowImageDiv":"dwnArr","watchingDiv":"watchButtonStatus","itemStr":"wcItm_8","baseUrl":"http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&item=190510549653&pt=US_CSA_MC_Jeans&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=82bbdd09a0b71c458df2bb66a22c11c2&_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":["wcItm_3","wcItm_4","wcItm_5","wcItm_6","wcItm_7"]})); _r.put('ic_js_vv4-44',new vjo.darwin.core.imagecontainerwithtoolbar.ImageContainerWithToolbar({"mskId":null,"cmpId":"vv4-44","ZHt":0,"imgData":{"src":"http://i.ebayimg.com/00/$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_35.JPG","customAttributes":{},"alt":"ACNE Hep slim straight Black jeans 28 skinny","href":null},"loadSrvcId":null,"hiResImgHt":0,"ancId":"vv4-44_a","TBarId":null,"DEnTxt":null,"ZErrId":null,"height":300,"hiResImgCntrId":null,"preLoad":false,"msgTxtId":null,"mrkCntrId":null,"bdrId":"vv4-44_bdiv","dsblZoomTitle":null,"noZoomMsg":null,"zoomMsg":null,"hiResImgData":null,"reszOnLd":false,"mskImgId":null,"zoomSrvcId":null,"imgId":"i_vv4-44","EEnTxt":null,"IDivId":"vv4-44_idiv","hiResCntId":null,"width":300,"ZWd":0,"DEnTip":null,"mkrId":null,"hiResImgWd":0,"zoomCntId":null,"enblZoomTitle":null,"enIdx":0,"loadSvcId":"LOAD_IMG_SRVC_ID_vv4-44","dsblClz":null,"clkLstrKey":null,"hiResId":null,"thrbId":"vv4-44_t","errId":"vv4-44_e","err":null,"zoomIdx":-1,"EEnTip":null,"clkSrvId":"IMG_CNTR_CLICKED_vv4-44","zoomThrobId":null,"msgId":null,"thr":null,"enblClz":null,"enlrgSrvcId":"MN_CLK_SVCvv4-44_TB_0"})); _r.put('vv4-44_js',new vjo.darwin.core.viewselector1.ViewSelector({"DE":false,"cmpId":"vv4-44","icJsInstId":"ic_js_vv4-44","width":300,"height":300,"gtId":"gt_v4-44","mnImgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_35.JPG","customAttributes":{},"alt":"ACNE Hep slim straight Black jeans 28 skinny","href":null}],"spTd":"vv4-44_sp","hiResImgData":null,"thWidth":0,"zoom":false,"thImgData":[{"src":"http://i.ebayimg.com/00/$(KGrHqZ,!lQE1F6J!Mg-BNd92)SvW!~~0_14.JPG","customAttributes":{},"alt":"ACNE Hep slim straight Black jeans 28 skinny","href":null}],"scJsInstId":null,"thHeight":0,"scrollCnt":0,"mnImgId":"i_vv4-44","thJsInstId":null})); _r.put('v4-45',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-34","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%3D190510549653%26pt%3DUS_CSA_MC_Jeans","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('28',$o0("shCountry","shZipCodeTextDiv","shPostalCode"));
38
+ _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-55',new vjo.darwin.pres.buying.cmp.description.HideShowIframe({"descIframeId":"b","frameUrl":null,"srcMode":null})); _r.put('34',new vjo.darwin.comp.base.Base()); })();
39
+ (function(){
40
+ var _d=vjo.dsf.EventDispatcher;
41
+ var _r=vjo.Registry;
42
+ function $4(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $6(p0){return function(event){return this.setMState(p0);};};function $8(p0,p1){return function(event){return this.olpMsg(p0,p1);};};function $10(p0){return function(event){return this.submit(p0);};};function $11(){return function(event){return this.onMin();};};function $12(p0){return function(event){return this.toggleDiv(p0,"masterDiv","dwnArr","upArr");};};function $14(){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:"vi-pla-ec-span-down",rspanCls:"vi-pla-ec-span"});};};function $15(p1){return function(event){return this.setRover("p4340",p1);};};function $16(){return function(event){return this.onMout();};};_r.put('7', new vjo.darwin.pres.buying.cmp.shippingrates.UpdateHiddenFields(["hiddenQuantity","hiddenCountry","hiddenZipCode"], ["clquantity","clcountry","clzipCode"])); _r.put('9', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("clGetRates")); _r.put('10', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "clcountry", "clquantity", "clzipCode", 190510549653, "clGetRates")); _r.put('27', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", null, 190510549653, "shGetRates")); _r.put('29', new vjo.darwin.pres.buying.cmp.shippingrates.OnEnterUpdate("shGetRates")); _r.put('30', new vjo.darwin.pres.buying.cmp.shippingrates.ShippingRequest("http://frame.ebay.com/ws/eBayISAPI.dll?NextGenGetItemShippingCost&", null, 1, "shCountry", "shQuantity", null, 190510549653, "shGetRates")); _d.add('but_v4-5','click',function(event) { return this.onSubmit("BTN_SBMT_SRV_v4-5", event); },vjo.darwin.comp.button.Button);_d.add('nLstTxt','keypress',function(event) { this.onEnter("ad_btn", event); },vjo.darwin.pres.buying.cmp.addtolist.AddToList);_d.add('v4-37','click',$8("OP_CLSnLstOly","v4-37"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('nLstOly','mouseover',$6(1),_r._4nLstOly);_d.add('nLstOly','mouseout',$6(0),_r._4nLstOly);_d.add('nLstOly','mouseover',$11(),_r._4nLstOly);_d.add('nLstOly','mouseout',$16(),_r._4nLstOly);_d.add('nLstOly_cbtn','click',$8("OP_CLSnLstOly","nLstOly_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',_r.get('7'));_d.add('changeLocLink','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2571"); });
43
+ _d.add('clzipCode','keypress',_r.get('9'));_d.add('clGetRates','click',_r.get('10'));_d.add('clGetRates','click',function(event){ return false; });_d.add('chngLoc','mouseover',$6(1),_r._11chngLoc);_d.add('chngLoc','mouseout',$6(0),_r._11chngLoc);_d.add('chngLoc','mouseover',$11(),_r._11chngLoc);_d.add('chngLoc','mouseout',$16(),_r._11chngLoc);_d.add('chngLoc_cbtn','click',$8("OP_CLSchngLoc","chngLoc_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('changeLocLink','click',$8("OP_OPNchngLoc","changeLocLink"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('disPnl','mouseover',$6(1),_r._14disPnl);
44
+ _d.add('disPnl','mouseout',$6(0),_r._14disPnl);_d.add('disPnl','mouseover',$11(),_r._14disPnl);_d.add('disPnl','mouseout',$16(),_r._14disPnl);_d.add('disPnl_cbtn','click',$8("OP_CLSdisPnl","disPnl_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('seeDcnt','click',$8("OP_OPNdisPnl","seeDcnt"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$8("OP_OPNhldolp","hldhlp"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('hldhlp','click',$15("l2573"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('hldolp','mouseover',$6(1),_r._17hldolp);_d.add('hldolp','mouseout',$6(0),_r._17hldolp);_d.add('hldolp','mouseover',$11(),_r._17hldolp);
45
+ _d.add('hldolp','mouseout',$16(),_r._17hldolp);_d.add('hldolp_cbtn','click',$8("OP_CLShldolp","hldolp_cbtn"),vjo.darwin.core.overlaypanel3.OverlayPanel);_d.add('v4-42','click',$15("l2576"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('v4-42','click',function(event) { return this.onClk("http://pages.ebay.com/coverage/index.html"); },vjo.darwin.pres.buying.cmp.buyerguarantee.BuyerGuarantee);_d.add('v4-43','mouseover',$6(1),_r.get('20v4-43'));_d.add('v4-43','mouseout',$6(0),_r.get('20v4-43'));_d.add('v4-43','mouseover',$11(),_r.get('20v4-43'));_d.add('v4-43','mouseout',$16(),_r.get('20v4-43'));_d.add('dwnArr','click',$12("block"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);_d.add('upArr','click',$12("none"),vjo.darwin.pres.buying.cmp.watchitem.WatchItem);
46
+ _d.add('vv4-44_a','click',function(event) { return this.clickedImgServiceHandler(); },_r.get('ic_js_vv4-44'));_d.add('vv4-44_TB_0','click',function(event) { this.clickedServiceHandler("MN_CLK_SVCvv4-44_TB_0", null); },vjo.darwin.core.toolbar.Toolbar);_d.add('but_v4-7','click',$10("but_v4-7"),_r.get('v4-45'));_d.add('','click',$10(""),_r.get('v4-45'));_d.add('tmp-bid','click',$10("tmp-bid"),_r.get('v4-45'));_d.add('a_payId','click',function(event){ vjo.darwin.pres.buying.cmp.shared.SwitchTabs.toShippingTab(); });_d.add('a_payId','click',$15("l2575"),vjo.darwin.pres.buying.cmp.utils.RoverUtils);_d.add('ii_arr','click',$14(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','click',$14(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('ec_title','mouseover',$4(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);
47
+ _d.add('ec_title','mouseout',$4(),vjo.darwin.pres.buying.cmp.iteminfo.ItemInfoHideShow);_d.add('v4-49','click',function(event) { this.showConditionDef("v4-48", "v4-47"); },vjo.darwin.pres.buying.cmp.itemattributes.ItemAttributes);_d.add('shCountry','change',_r.get('27'));_d.add('shCountry','change',function(event){ return false; });_d.add('shPostalCode','keypress',_r.get('29'));_d.add('shGetRates','click',_r.get('30'));_d.add('shGetRates','click',function(event){ return false; });_d.add('body','load',function(event) { this.setTabInfo({"desc":0,"ship":1}); },vjo.darwin.pres.buying.cmp.shared.SwitchTabs);_d.add('_rtop','click',function(event){ vjo.darwin.pres.buying.cmp.utils.RoverUtils.setRover("p4340", "l2577"); });_d.add('v4-66','click',function(event){ vjo.dsf.Element.toggleHideShow('ngvi_desc_div'); });
48
+ _d.add('v4-66','click',function(event) { this.hideShowIframe(); },_r.get('v4-55'));})();
49
+ (function(){
50
+ var _s=vjo.dsf.ServiceEngine, $se=_s.register;var _r=vjo.Registry;
51
+
52
+ $se(4,'MN_CLK_SVCvv4-44_TB_0',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 732, 710, -1); });
53
+ $se(4,'null',function (message) {_r.get('vv4-44_js').UpdateImgContainer(message); });
54
+ $se(4,'null',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.setSelectedIdx(message); });
55
+ $se(4,'D_ADDID',function (message) {_r._dropdown.addChld(message); });
56
+ $se(4,'BTN_SBMT_SRV_v4-5',function (message) {_r.get('Js-v4-5').disable(); });
57
+ $se(4,'D_EDID',function (message) {_r._dropdown.callEnDsbl(message); });
58
+ $se(4,'C_EDID',function (message) {_r._dropdown.chgTtl(message); });
59
+ $se(4,'BTN_SBMT_SRV_v4-7',function (message) {_r.get('Js-v4-7').disable(); });
60
+ $se(4,'IMG_CNTR_CLICKED_vv4-44',function (message) {vjo.darwin.pres.buying.cmp.itempictures.ItemPictures1.getSuperSize("ssFrm", "ssFrmWin", 732, 710, -1); });
61
+ })();
62
+ </script><script type="text/javascript">
63
+ vjo.ctype("vjo.dsf.FirePageLoad").endType();if(typeof(oGaugeInfo)!="undefined"){oGaugeInfo.iLoadST=(new Date()).getTime();}
64
+ vjo.dsf.EventDispatcher.load(document.body);
65
+
66
+ </script></body></html>