-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfashion-vault.html
991 lines (956 loc) · 85.4 KB
/
fashion-vault.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
<!DOCTYPE html>
<!-- saved from url=(0136)http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398 -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="layout" content="main">
<title>Fashion Vault: One-of-a-kind fashion events from vintage to runway. Designer sale events for eBay members only.</title>
<meta name="keywords" content="Fashion, Women's Clothing, Men's Clothing, Shoes, Accessories, Designer Brands, Designer Clothes, Designer Clothing, Designer Jeans, Trendy Clothing, Designer Shirts, Designer Wear, Designer Shirt, Designer Clothing, Designer Apparel, Designer Jackets, Designer Clothing Accessories, Cheap Designer Clothes, Designer Clothing Shoes, Designer Clothes Discount, Discount Designer Clothing, Women's Designer Clothing, Men's Designer Clothing">
<meta name="description" content="Dad can always use a new watch—surprise him with pre-owned timepieces by Rolex and Cartier, presented by Beckertime.">
<link rel="canonical" href="http://www.ebay.com/rpp/fashionvault/">
<meta property="og:title" content="Fashion Vault: One-of-a-kind fashion events from vintage to runway. Designer sale events for eBay members only.">
<meta property="og:type" content="website">
<meta property="og:site_name" content="eBay events">
<meta property="og:image" content="http://pics.ebaystatic.com/aw/pics/buy/csa/logos/logoFbFashionVault.png">
<meta property="fb:admins" content="1291131070,100003749300183">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=1,maximum-scale=1.0">
<link href="./fashion-vault_files/ysx0zpudda2nrcjdu5clbq5ep.css" type="text/css" rel="stylesheet"><link href="./fashion-vault_files/all.min" type="text/css" rel="stylesheet"><script id="ebay-scShare" async="" defer="" src="./fashion-vault_files/14wflfybny3pnejygcab00jqg.js"></script><style type="text/css">.scShareIcon {width:16px;height:20px;background:url('http://p.ebaystatic.com/aw/pics/social/spr_share_widget_DS3.png');float:left;cursor:pointer;font-size:20px;overflow:hidden;padding-right:7px;text-decoration:none !important;}.scShareText {font:13px arial,verdana;color:black;height:19px;float:left;padding-right:3px;}.scShareTextDropDown {font:13px arial,verdana;color: #002398;height:19px;float:left;padding-right:6px;}.scSharePointer {cursor:pointer;}.scShare_facebook {background-position: 0px -22px;}.scShare_twitter {background-position: 0px -43px;}.scShare_email {background-position: 0px -1px;}.scShare_pinterest {background-position: 0px -85px;}.scShareFbLike {width:65px;height:21px;float:left;padding-right: 10px;padding-left:3px;position:relative;top:-2px;}.scSharePlusOne {width:49px;height:21px;float:left;padding-right:3px;padding-left:3px;position:relative;top:1px;}.scSharePlusOneNoCount {overflow:hidden;width:23px;height:21px;float:left;padding-left:3px;padding-right:5px;position:relative;top:1px;}.scShare7 {width: 2px;float:left;}.scShare {float: left;}.scShareFbLikeNoCount {overflow:hidden;width:45px;height:21px;float:left;padding-right:7px;padding-left:3px;position:relative;top:-2px;}</style><style id="wrc-middle-css" type="text/css">.wrc_whole_window{ display: none; position: fixed; z-index: 2147483647; background-color: rgba(40, 40, 40, 0.9); word-spacing: normal !important; margin: 0px !important; padding: 0px !important; border: 0px !important; left: 0px; top: 0px; width: 100%; height: 100%; line-height: normal !important; letter-spacing: normal !important; overflow: hidden;}.wrc_bar_window{ display: none; position: fixed; z-index: 2147483647; background-color: rgba(60, 60, 60, 1.0); word-spacing: normal !important; font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; margin: 0px !important; padding: 0px !important; border: 0px !important; left: 0px; top: 0px; width: 100%; height: 40px; line-height: normal !important; letter-spacing: normal !important; color: white !important; font-size: 13px !important;}.wrc_middle { display: table-cell; vertical-align: middle; width: 100%;}.wrc_middle_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 14px; width: 600px; height: auto; background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top; background-color: rgb(39, 53, 62); position: relative; margin-left: auto; margin-right: auto; text-align: left;}.wrc_middle_tq_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 16px; width: 615px; height: 460px; background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-sitecorrect.png) no-repeat; background-color: white; color: black !important; position: relative; margin-left: auto; margin-right: auto; text-align: center;}.wrc_middle_logo { background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom; width: 140px; height: 42px; color: orange; display: table-cell; text-align: right; vertical-align: middle;}.wrc_icon_warning { margin: 20px 10px 20px 15px; float: left; background-color: transparent;}.wrc_middle_title { color: #b6bec7; height: auto; margin: 0px auto; font-size: 2.2em; white-space: nowrap; text-align: center;}.wrc_middle_hline { height: 2px; width: 100%; display: block;}.wrc_middle_description { text-align: center; margin: 15px; font-size: 1.4em; padding: 20px; height: auto; color: white; min-height: 3.5em;}.wrc_middle_actions_main_div { margin-bottom: 15px; text-align: center;}.wrc_middle_actions_blue_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white; font-size: 1.2em; font-weight: bold;}.wrc_middle_actions_blue_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-color: rgb(0, 173, 223) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #00dddd; padding: 0px 20px 0px 20px;}.wrc_middle_actions_blue_button:hover { background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active { background-color: rgb(0, 146, 200) !important; border: 2px solid #00aaaa;}.wrc_middle_actions_grey_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white !important; font-size: 15px; font-weight: bold;}.wrc_middle_actions_grey_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-color: rgb(100, 100, 100) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #aaaaaa; text-decoration: none; padding: 0px 20px 0px 20px;}.wrc_middle_actions_grey_button:hover { background-color: rgb(120, 120, 120) !important;}.wrc_middle_actions_grey_button:active { background-color: rgb(130, 130, 130) !important; border: 2px solid #00aaaa;}.wrc_middle_action_low { font-size: 0.9em; white-space: nowrap; cursor: Pointer; color: grey !important; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action_low:hover { color: #aa4400 !important;}.wrc_middle_actions_rest_div { padding-top: 5px; white-space: nowrap; text-align: center;}.wrc_middle_action { white-space: nowrap; cursor: Pointer; color: red !important; font-size: 1.2em; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action:hover { color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){ var regExp = new RegExp('[0-9]{4}'); return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three '-' symbols or exactly 16 digits without any dividers*/function isCreditCardNumber(val){ if(val.length == 19) { var regExp = new RegExp('[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}'); return (val.search(regExp) == 0); } else if(val.length == 16) { var regExp = new RegExp('[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}'); return (val.search(regExp) == 0); } return false;}function CheckInputOnCreditNumber(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'text') { if(is4DigitsCardNumber(value)) { var cont = true; for(i = 0; i < g_inputsCnt; i++) if(g_InputThis[i] == self) cont = false; if(cont && g_inputsCnt < 4) { g_InputThis[g_inputsCnt] = self; g_inputsCnt++; } } g_alerted = (g_inputsCnt == 4); if(g_alerted) g_inputsCnt = 0; else g_alerted = isCreditCardNumber(value); } return g_alerted;}function CheckInputOnPassword(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'password') { g_alerted = (value.length > 0); } return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){ var bCreditNumber = CheckInputOnCreditNumber(self); var bPassword = CheckInputOnPassword(self); if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) ) { var warnDiv = document.getElementById("wrcinputdiv"); if(warnDiv) { /* show the warning div in the middle of the screen */ warnDiv.style.left = "0px"; warnDiv.style.top = "0px"; warnDiv.style.width = "100%"; warnDiv.style.height = "100%"; document.getElementById("wrc_warn_fs").style.display = 'none'; document.getElementById("wrc_warn_cn").style.display = 'none'; if(bFishingSite) document.getElementById("wrc_warn_fs").style.display = 'block'; else document.getElementById("wrc_warn_cn").style.display = 'block'; warnDiv.style.display = 'table'; } }}</script><link href="./fashion-vault_files/still" media="screen" type="text/css" rel="stylesheet"></head>
<body id="body" class="sz1200"><div id="gh-gb"></div>
<div class="gchd">
<a class="gh-hdn" href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398#mainContent">Skip to main content</a><div id="gh" class="gh-w gh-site-0"><table class="gh-tbl"><tbody><tr><td class="gh-td"><a id="gh-la" _sp="m570.l2586" class="iclg" href="http://www.ebay.com/">eBay<img border="0" width="117" height="92" id="gh-logo" src="./fashion-vault_files/spr6.png" alt="" style="clip:rect(43px, 118px, 93px, 0px); position:absolute; top:-44px;left:0"></a></td><td class="gh-td"><div id="gh-shop" aria-controls="gh-sbc-o"><a id="gh-shop-a" href="http://www.ebay.com/sch/allcategories/all-categories?_trksid=m570.l3694">Shop by<br>category<i id="gh-shop-ei"></i></a></div></td><td class="gh-td-s"><form action="http://www.ebay.com/sch/i.html" method="get" id="gh-f"><input type="hidden" value="m570.l1313" name="_trksid"><table class="gh-tbl2"><tbody><tr><td class="gh-td-s"><div id="gh-ac-box"><div id="gh-ac-box2"><label class="gh-hdn g-hdn" for="gh-ac">Enter your search keyword</label><input autocomplete="off" name="_nkw" id="gh-ac" placeholder="Search... " maxlength="300" size="50" class="gh-tb ui-autocomplete-input" type="text"><span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span></div></div></td><td class="gh-td" id="gh-cat-td"><div id="gh-cat-box"><select name="_sacat" id="gh-cat" size="1" class="gh-sb" title="Select a category for search"><option value="0" selected="selected">All Categories </option><option value="20081">Antiques</option><option value="550">Art</option><option value="2984">Baby</option><option value="267">Books</option><option value="12576">Business & Industrial</option><option value="625">Cameras & Photo</option><option value="15032">Cell Phones & Accessories</option><option value="11450">Clothing, Shoes & Accessories</option><option value="11116">Coins & Paper Money</option><option value="1">Collectibles</option><option value="58058">Computers/Tablets & Networking</option><option value="293">Consumer Electronics</option><option value="14339">Crafts</option><option value="237">Dolls & Bears</option><option value="11232">DVDs & Movies</option><option value="6000">eBay Motors</option><option value="45100">Entertainment Memorabilia</option><option value="172008">Gift Cards & Coupons</option><option value="26395">Health & Beauty</option><option value="11700">Home & Garden</option><option value="281">Jewelry & Watches</option><option value="11233">Music</option><option value="619">Musical Instruments & Gear</option><option value="1281">Pet Supplies</option><option value="870">Pottery & Glass</option><option value="10542">Real Estate</option><option value="316">Specialty Services</option><option value="888">Sporting Goods</option><option value="64482">Sports Mem, Cards & Fan Shop</option><option value="260">Stamps</option><option value="1305">Tickets</option><option value="220">Toys & Hobbies</option><option value="3252">Travel</option><option value="1249">Video Games & Consoles</option><option value="99">Everything Else</option></select></div></td> <td class="gh-td"><input value="Search" id="gh-btn" class="btn btn-prim" type="submit" style="display: inline-block;"></td><td class="gh-td"><div id="gh-as"><a title="Advanced Search" id="gh-as-a" _sp="m570.l2614" class="thrd" href="http://www.ebay.com/sch/ebayadvsearch/?rt=nc">Advanced</a></div></td> </tr></tbody></table><input type="hidden" name="_from" value="R40"></form></td></tr></tbody></table><div id="gh-top"><ul id="gh-topl" style="display: block;"><li id="gh-eb-u" class="gh-t" aria-controls="gh-eb-u-o"><a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398#" id="gh-ug" class="gh-ua">Hi, <b>praveen</b>!<img alt="" src="./fashion-vault_files/s.gif" id="gh-uga" border="0"></a></li><li class="gh-t"><a id="gh-p1" _sp="m570.l3188" href="http://deals.ebay.com/">Daily Deals</a></li></ul><noscript class="gh-t" id="_nkw">Hi, (<a class="gh-a" href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&_trksid=m570.l3348">Sign in</a> to bid or buy)</noscript><ul id="gh-eb" class="gh-clearfix" role="menubar"><li class="gh-eb-li" id="gh-eb-My"><a _sp="m570.l2919" class="gh-eb-li-a" href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&gbh=1">My eBay</a></li><li class="gh-eb-li" id="gh-eb-Sell"><a _sp="m570.l1528" class="gh-eb-li-a" href="http://cgi5.ebay.com/ws/eBayISAPI.dll?aidZ153=&MfcISAPICommand=SellHub3">Sell</a></li><li class="gh-eb-li" id="gh-eb-Comm"><a _sp="m570.l1540" class="gh-eb-li-a" href="http://community.ebay.com/">Community</a></li><li class="gh-eb-li" id="gh-eb-Cust"><a _sp="m570.l1545" class="gh-eb-li-a" href="http://ocs.ebay.com/ws/eBayISAPI.dll?CustomerSupport">Customer Support</a></li><li class="gh-eb-li gh-eb-li-last" id="gh-cart"><a _sp="m570.l2633" class="gh-eb-li-a" href="http://cart.payments.ebay.com/sc/view"><i class="gspr icsc"></i>Cart</a></li></ul></div></div><a name="mainContent"></a> <!--ts:2013.05.22.18:38--><!--rq:--></div>
<div id="gssh" class="gssh">
<div class="bc-ltMgn">
<ul id="bc" _sp="p2051542.m2158">
<li><a href="http://www.ebay.com/" class="thrd">eBay</a></li>
<li class="gspr right">></li>
<li><a href="http://www.ebay.com/fashion" class="thrd">Fashion</a></li>
<li class="gspr right">></li>
<li><a href="http://www.ebay.com/rpp/fashionvault/" class="thrd">Fashion Vault</a></li>
<li class="gspr right">></li>
<li>BECKERTIME PRESENTS WATCHES FOR HIM</li>
</ul>
<div class="share-fsh">
<div class="sharecmp" data-spid="2051542" data-url="http://www.ebay.com/rpp/fashionvault" data-imageurl="" data-destinations="facebook,twitter,email,pinterest" data-language="en_US" data-share="Share"><div id="ebayShare_1"><div class="scShareText">Share</div><a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ShareLink&swd=2&du=http%3A%2F%2Fwww.ebay.com%2Frpp%2Ffashionvault&rt=nc&shorten=0&t=Fashion%20Vault%3A%20One-of-a-kind%20fashion%20events%20from%20vintage%20to%20runway.%20Designer%20sale%20events%20for%20eBay%20members%20only.&spid=2051542" title="Share on Facebook - opens in a new window or tab" class="scShareIcon scShare_facebook" data-destination="facebook" target="_blank"> </a><a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ShareLink&swd=3&du=http%3A%2F%2Fwww.ebay.com%2Frpp%2Ffashionvault&rt=nc&t=Look%20what%20I%20found%20on%20%40eBay!&spid=2051542&lang=en" title="Share on Twitter - opens in a new window or tab" class="scShareIcon scShare_twitter" data-destination="twitter" target="_blank"> </a><a href="javascript:void(0);" etafshareurl="http://www.ebay.com/rpp/fashionvault" onclick="ebayShare.launchEtaf(ebayShare.nonEtafScript,this)" title="Email to friends" class="scShareIcon scShare_email" data-destination="email"> </a><a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ShareLink&swd=11&du=http%3A%2F%2Fwww.ebay.com%2Frpp%2Ffashionvault&rt=nc&t=undefined&spid=2051542&media=http://pics.ebaystatic.com/aw/pics/buy/csa/logos/logoFbFashionVault.png" title="Share on Pinterest - opens in a new window or tab" class="scShareIcon scShare_pinterest" data-destination="pinterest" target="_blank"> </a></div></div>
<div class="fbbtn">
<iframe class="fb" frameborder="0" allowtransparency="true" scrolling="no" src="./fashion-vault_files/like.html"></iframe>
</div>
</div>
<div class="subtn">
<a href="http://www.ebay.com/rpp/subscribe/?src=fashionvault">Join Fashion Vault</a>
</div>
</div>
<div class="ff-clear" id="ff-clear"></div>
<div class="phdr">
<div id="e0" class="stickyHdrBcg srpBrandHdr"> <div class="hdr-wrp" style="border:none;" _sp="p2051542.m2162">
<div class="hdr-sec ">
<a href="http://www.ebay.com/fashion">
<img class="img-sec" src="./fashion-vault_files/img_FashionLogo.png" alt="" style="background-color:transparent">
</a>
</div>
<div class="hdr-main hdrMainLeftAlign" style="">
<a href="http://www.ebay.com/rpp/fashionvault">
<img class="img-main" src="./fashion-vault_files/1x1_transparent.png" alt="">
</a>
</div>
</div>
<div class="dropShadow">
<div class="leftcorner"></div>
<div class="rightcorner"></div>
</div>
</div>
<div class="ff-clear" id="ff-clear"></div>
</div>
</div>
<div class="gcbd ">
<div class="gcrt">
<div class="gclr lnav">
<div class="leftnavSaleNm" id="leftnavSaleNm">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him/" class="evtName leftnavHead">BECKERTIME PRESENTS WATCHES FOR HIM</a>
<div class="hlist" _sp="p2051542.m2155">
<div class="hnode"><h1><div class="hlink">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him/watches" class="toplevel anchlink" nodeid="">Watches</a></div>
</h1></div>
<div class="hnode"><h1><div class="hlink">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him/accessories" class="toplevel anchlink" nodeid="">Accessories</a></div>
</h1></div>
</div>
</div>
<div class="asp-sep"></div>
<div class="aspects" _sp="p2051542.m2156">
<div class="rlp" id="e1" _sp="">
<div class="rlp-h"><b class="gspr rlp-i"></b><h3>Brand</h3></div>
<div class="rlp-b">
<div class="asp-v">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&Brand=Cartier&_trkparms=%26clkid%3D7850120509358800398">
<b class="gspr"></b>Cartier</a></div>
<div class="asp-v">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&Brand=Omega&_trkparms=%26clkid%3D7850120509358800398">
<b class="gspr"></b>Omega</a></div>
<div class="asp-v">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&Brand=Pulsar&_trkparms=%26clkid%3D7850120509358800398">
<b class="gspr"></b>Pulsar</a></div>
<div class="asp-v">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&Brand=Rolex&_trkparms=%26clkid%3D7850120509358800398">
<b class="gspr"></b>Rolex</a></div>
<div class="asp-v">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&Brand=Tiffany%2520%2526%2520Co%252E&_trkparms=%26clkid%3D7850120509358800398">
<b class="gspr"></b>Tiffany & Co.</a></div>
</div>
</div></div>
</div>
<div class="gcmc">
<div class="sale-banner">
<div class="bnr-row">
<img src="./fashion-vault_files/$T2eC16h,!zEE9s3!Z)qdBRlk4R(MIQ~~60_57.JPG" alt="BECKERTIME PRESENTS WATCHES FOR HIM">
</div>
<div class="bnr-row bnr-tmr">
<div class="cnt-wrp cd-hori">
<div class="bnr-ticker"></div>
<label class="cnt-lbl">ENDS IN</label>
<div id="e3" class="cd-cntdwn">
<div class="cd-block">
<span id="e3dd" class="cd-time">3</span>
<div class="blkHText">DAYS</div>
</div>
<div class="cd-block">
<span id="e3hr" class="cd-time">23</span>
<div class="blkHText">HRS</div>
</div>
<div class="cd-block">
<span id="e3mm" class="cd-time">10</span>
<div class="blkHText">MIN</div>
</div>
<div class="cd-block cd-hide">
<span id="e3ss" class="cd-time">2</span>
<div class="blkHText">SECS</div>
</div>
</div>
</div>
</div>
</div>
<div class="glr-top">
<div class="gtop-left">
<span class="itmcnt">131</span>
items</div>
<div class="gtop-right">
<div class="sop-wrp" _sp="p2051542.m2160">
<span class="sop-lb">Sort By :</span>
<div class="dropdown sop-dd medium">
<button class="btn btn-m btn-ter dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">Featured items<span class="caret-dn"></span></button>
<ul class="dropdown-menu dropdown-menu-lg" id="menu1" role="menu">
<li role="menuitem"><a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_sop=0&_trkparms=%26clkid%3D7850120509358800398">Featured items</a></li>
<li role="menuitem"><a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_sop=1&_trkparms=%26clkid%3D7850120509358800398">Price: lowest first</a></li>
<li role="menuitem"><a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_sop=2&_trkparms=%26clkid%3D7850120509358800398">Price: highest first</a></li>
</ul>
</div>
</div>
</div>
<div class="gtop-center">
<div class="ipp-wrp" id="e5" _sp="p2051542.m2159">
<div class="ipp-lb">Items per page:</div>
<div class="itmpp pagn">
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_ipg=24&_trkparms=%26clkid%3D7850120509358800398" class="xxx">24</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_ipg=48&_trkparms=%26clkid%3D7850120509358800398" class="curr">48</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_ipg=96&_trkparms=%26clkid%3D7850120509358800398" class="xxx">96</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_ipg=192&_trkparms=%26clkid%3D7850120509358800398" class="xxx">192</a>
</div>
</div>
</div>
<div style="clear:both"></div>
</div>
<div class="itm-gallery" _sp="p2051542.m2154" id="e6">
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Stainless-Steel-Balmer-Mercury-Automatic-Visible-Balance-Watch-Silver-/140977166538" title="Mens Stainless Steel Balmer Mercury / Automatic Visible Bala...">
<img src="./fashion-vault_files/$T2eC16dHJGIE9nnWrdEFBRLP7BhEe!~~60_62.JPG" alt="Mens Stainless Steel Balmer Mercury / Automatic Visible Bala..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Stainless-Steel-Balmer-Mercury-Automatic-Visible-Balance-Watch-Silver-/140977166538" title="Mens Stainless Steel Balmer Mercury / Automatic Visible Bala..."> Mens Stainless Steel Balmer Mercury / Automatic Visible Bala...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,141.66</p>
<span class="gl-pr-txt">54 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Integral-Jubilee-w-Black-Dial-17014-/140977166535" title="Mens Rolex Datejust Stainless Steel Integral Jubilee w/ Blac...">
<img src="./fashion-vault_files/$(KGrHqN,!qcFF+yDfk82BRjJ-OqP1g~~60_62.JPG" alt="Mens Rolex Datejust Stainless Steel Integral Jubilee w/ Blac..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Integral-Jubilee-w-Black-Dial-17014-/140977166535" title="Mens Rolex Datejust Stainless Steel Integral Jubilee w/ Blac..."> Mens Rolex Datejust Stainless Steel Integral Jubilee w/ Blac...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,725.00</p>
<span class="gl-pr-txt">15 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-2Tone-18K-SS-Datejust-Black-Diamond-Dial-Watch-/140977166536" title="Mens Rolex 2Tone 18K/SS Datejust Black Diamond Dial Watch">
<img src="./fashion-vault_files/$T2eC16R,!zEE9s3!((3,BRiY(sIG)!~~60_62.JPG" alt="Mens Rolex 2Tone 18K/SS Datejust Black Diamond Dial Watch" class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-2Tone-18K-SS-Datejust-Black-Diamond-Dial-Watch-/140977166536" title="Mens Rolex 2Tone 18K/SS Datejust Black Diamond Dial Watch"> Mens Rolex 2Tone 18K/SS Datejust Black Diamond Dial Watch</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,525.00</p>
<span class="gl-pr-txt">36 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Gold-Brown-Leather-w-Silver-Dial-1601-/140977166540" title="Mens Rolex Datejust Gold Brown Leather w/ Silver Dial 1601">
<img src="./fashion-vault_files/$T2eC16RHJGUFFh2BnEEbBRjJ9-tbC!~~60_62.JPG" alt="Mens Rolex Datejust Gold Brown Leather w/ Silver Dial 1601" class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Gold-Brown-Leather-w-Silver-Dial-1601-/140977166540" title="Mens Rolex Datejust Gold Brown Leather w/ Silver Dial 1601"> Mens Rolex Datejust Gold Brown Leather w/ Silver Dial 1601</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,625.00</p>
<span class="gl-pr-txt">50 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-GMT-Master-18k-Yellow-Gold-Date-Watch-w-Black-Dial-16758-/140977166541" title="Mens Rolex GMT-Master 18k Yellow Gold Date Watch w/Black Dia...">
<img src="./fashion-vault_files/$(KGrHqN,!lMFEzJi2cN0BRjJ9eLKO!~~60_62.JPG" alt="Mens Rolex GMT-Master 18k Yellow Gold Date Watch w/Black Dia..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-GMT-Master-18k-Yellow-Gold-Date-Watch-w-Black-Dial-16758-/140977166541" title="Mens Rolex GMT-Master 18k Yellow Gold Date Watch w/Black Dia..."> Mens Rolex GMT-Master 18k Yellow Gold Date Watch w/Black Dia...</a>
<div class="gl-bid">
<p class="gl-cpr2">$7,000.00</p>
<span class="gl-pr-txt">28 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-2Tone-18K-Yellow-Gold-Stainless-Steel-Datejust-Watch-ref-16233-/140977166542" title="Mens Rolex 2Tone 18K Yellow Gold/Stainless Steel Datejust Wa...">
<img src="./fashion-vault_files/$T2eC16N,!y0E9s2S5uC+BRiY(zwpZ!~~60_62.JPG" alt="Mens Rolex 2Tone 18K Yellow Gold/Stainless Steel Datejust Wa..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-2Tone-18K-Yellow-Gold-Stainless-Steel-Datejust-Watch-ref-16233-/140977166542" title="Mens Rolex 2Tone 18K Yellow Gold/Stainless Steel Datejust Wa..."> Mens Rolex 2Tone 18K Yellow Gold/Stainless Steel Datejust Wa...</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,650.00</p>
<span class="gl-pr-txt">27 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/MENS-ROLEX-14K-YELLOW-GOLD-SHELL-DATE-WATCH-w-BLACK-LEATHER-STRAP-/140977166543" title="Mens Rolex 14K Yellow Gold Shell Date Watch w/Black Leather ...">
<img src="./fashion-vault_files/$(KGrHqJ,!r!FEzmPkg,EBRjTy)Lfog~~60_62.JPG" alt="Mens Rolex 14K Yellow Gold Shell Date Watch w/Black Leather ..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/MENS-ROLEX-14K-YELLOW-GOLD-SHELL-DATE-WATCH-w-BLACK-LEATHER-STRAP-/140977166543" title="Mens Rolex 14K Yellow Gold Shell Date Watch w/Black Leather ..."> Mens Rolex 14K Yellow Gold Shell Date Watch w/Black Leather ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,310.00</p>
<span class="gl-pr-txt">24 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-2tone-14k-Gold-Stainless-Steel-Date-Watch-w-Black-Dial-/140977166544" title="Mens Rolex Datejust 2tone 14k Gold/Stainless Steel Date Watc...">
<img src="./fashion-vault_files/$T2eC16F,!y8E9s2fjEjSBRksKv()+Q~~60_62.JPG" alt="Mens Rolex Datejust 2tone 14k Gold/Stainless Steel Date Watc..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-2tone-14k-Gold-Stainless-Steel-Date-Watch-w-Black-Dial-/140977166544" title="Mens Rolex Datejust 2tone 14k Gold/Stainless Steel Date Watc..."> Mens Rolex Datejust 2tone 14k Gold/Stainless Steel Date Watc...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,474.00</p>
<span class="gl-pr-txt">20 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-18K-Yellow-Gold-Day-Date-President-Watch-W-Diamond-Dial-Bezel-/140977166547" title="Mens Rolex 18K Yellow Gold Day-Date President Watch W/Diamon...">
<img src="./fashion-vault_files/$T2eC16ZHJFoE9nh6pN!fBRItPu(uS!~~60_62.JPG" alt="Mens Rolex 18K Yellow Gold Day-Date President Watch W/Diamon..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-18K-Yellow-Gold-Day-Date-President-Watch-W-Diamond-Dial-Bezel-/140977166547" title="Mens Rolex 18K Yellow Gold Day-Date President Watch W/Diamon..."> Mens Rolex 18K Yellow Gold Day-Date President Watch W/Diamon...</a>
<div class="gl-bid">
<p class="gl-cpr2">$5,350.00</p>
<span class="gl-pr-txt">20 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Watch-w-Dark-Brown-Leather-Band-Gold-Dial-ref-6605-/140977166548" title="Mens Rolex Datejust Watch w/Dark Brown Leather Band & Gold D...">
<img src="./fashion-vault_files/$T2eC16RHJGEFFmq3NqSGBRkpvHmN7!~~60_62.JPG" alt="Mens Rolex Datejust Watch w/Dark Brown Leather Band & Gold D..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Watch-w-Dark-Brown-Leather-Band-Gold-Dial-ref-6605-/140977166548" title="Mens Rolex Datejust Watch w/Dark Brown Leather Band & Gold D..."> Mens Rolex Datejust Watch w/Dark Brown Leather Band & Gold D...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,125.00</p>
<span class="gl-pr-txt">44 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-18k-Datejust-Quickset-Date-w-Salmon-Roman-Dial-16234-/140977166549" title="Mens Rolex Stainless Steel/18k Datejust Quickset Date w/Salm...">
<img src="./fashion-vault_files/$T2eC16NHJHEE9ny2qT,pBQnVZB6LMw~~60_62.JPG" alt="Mens Rolex Stainless Steel/18k Datejust Quickset Date w/Salm..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-18k-Datejust-Quickset-Date-w-Salmon-Roman-Dial-16234-/140977166549" title="Mens Rolex Stainless Steel/18k Datejust Quickset Date w/Salm..."> Mens Rolex Stainless Steel/18k Datejust Quickset Date w/Salm...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,675.00</p>
<span class="gl-pr-txt">17 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Balmer-Gemini-Automatic-Date-GMT-Stainless-Steel-Blue-Dial-Watch-/140977166550" title="Mens Balmer Gemini Automatic Date GMT Stainless Steel Blue D...">
<img src="./fashion-vault_files/$T2eC16hHJHwE9n8ikLyeBRksY9QK(Q~~60_62.JPG" alt="Mens Balmer Gemini Automatic Date GMT Stainless Steel Blue D..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Balmer-Gemini-Automatic-Date-GMT-Stainless-Steel-Blue-Dial-Watch-/140977166550" title="Mens Balmer Gemini Automatic Date GMT Stainless Steel Blue D..."> Mens Balmer Gemini Automatic Date GMT Stainless Steel Blue D...</a>
<div class="gl-bid">
<p class="gl-cpr2">$790.00</p>
<span class="gl-pr-txt">70 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Midsize-Rolex-Yellow-Gold-Date-Silver-Dial-w-Oyster-Band-/140977166551" title="Midsize Rolex Yellow Gold Date Silver Dial w/ Oyster Band">
<img src="./fashion-vault_files/$(KGrHqF,!qsFF71S+iH,BRkpwQm+bw~~60_62.JPG" alt="Midsize Rolex Yellow Gold Date Silver Dial w/ Oyster Band" class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Midsize-Rolex-Yellow-Gold-Date-Silver-Dial-w-Oyster-Band-/140977166551" title="Midsize Rolex Yellow Gold Date Silver Dial w/ Oyster Band"> Midsize Rolex Yellow Gold Date Silver Dial w/ Oyster Band</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,275.00</p>
<span class="gl-pr-txt">38 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-18k-Yellow-Gold-Date-Watch-w-Diamond-Dial-President-Band-/140977166552" title="Mens Rolex Datejust 18k Yellow Gold Date Watch w/Diamond Dia...">
<img src="./fashion-vault_files/$T2eC16d,!)0E9s37HlwFBRkS5DTrLw~~60_62.JPG" alt="Mens Rolex Datejust 18k Yellow Gold Date Watch w/Diamond Dia..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-18k-Yellow-Gold-Date-Watch-w-Diamond-Dial-President-Band-/140977166552" title="Mens Rolex Datejust 18k Yellow Gold Date Watch w/Diamond Dia..."> Mens Rolex Datejust 18k Yellow Gold Date Watch w/Diamond Dia...</a>
<div class="gl-bid">
<p class="gl-cpr2">$5,000.00</p>
<span class="gl-pr-txt">29 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Date-Stainless-Steel-Watch-w-White-Roman-Dial-15000-/140977166554" title="Mens Rolex Date Stainless Steel Watch w/White Roman Dial 150...">
<img src="./fashion-vault_files/$T2eC16dHJFwFFZtLYJHwBRkS46yBnw~~60_62.JPG" alt="Mens Rolex Date Stainless Steel Watch w/White Roman Dial 150..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Date-Stainless-Steel-Watch-w-White-Roman-Dial-15000-/140977166554" title="Mens Rolex Date Stainless Steel Watch w/White Roman Dial 150..."> Mens Rolex Date Stainless Steel Watch w/White Roman Dial 150...</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,025.00</p>
<span class="gl-pr-txt">47 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-18K-Yellow-Gold-Day-Date-President-Watch-w-Anniversary-Diamond-Dial-/140977932993" title="Mens Rolex 18K Yellow Gold Day-Date President Watch w/Annive...">
<img src="./fashion-vault_files/$(KGrHqR,!rYFGQ1WnmiMBRlZ6okdV!~~60_62.JPG" alt="Mens Rolex 18K Yellow Gold Day-Date President Watch w/Annive..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-18K-Yellow-Gold-Day-Date-President-Watch-w-Anniversary-Diamond-Dial-/140977932993" title="Mens Rolex 18K Yellow Gold Day-Date President Watch w/Annive..."> Mens Rolex 18K Yellow Gold Day-Date President Watch w/Annive...</a>
<div class="gl-price">
<span class="gl-cpr2">$10,999.99</span>
<span class="gl-pr-txt"> Buy It Now</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Jubilee-w-Slate-Dial-1600-/140977166556" title="Mens Rolex Datejust Stainless Steel Jubilee w/ Slate Dial 16...">
<img src="./fashion-vault_files/$T2eC16N,!ygE9s7HHq,eBRjJ7uZ!2Q~~60_62.JPG" alt="Mens Rolex Datejust Stainless Steel Jubilee w/ Slate Dial 16..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Jubilee-w-Slate-Dial-1600-/140977166556" title="Mens Rolex Datejust Stainless Steel Jubilee w/ Slate Dial 16..."> Mens Rolex Datejust Stainless Steel Jubilee w/ Slate Dial 16...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,225.00</p>
<span class="gl-pr-txt">36 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-2tone-Yellow-Gold-Stainless-Steel-Datejust-Jubilee-w-Gold-Dial-/140977166971" title="Mens Rolex 2tone Yellow Gold Stainless Steel Datejust Jubile...">
<img src="./fashion-vault_files/$(KGrHqN,!l0FFzmCf)KsBRiWbIuODw~~60_62.JPG" alt="Mens Rolex 2tone Yellow Gold Stainless Steel Datejust Jubile..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-2tone-Yellow-Gold-Stainless-Steel-Datejust-Jubilee-w-Gold-Dial-/140977166971" title="Mens Rolex 2tone Yellow Gold Stainless Steel Datejust Jubile..."> Mens Rolex 2tone Yellow Gold Stainless Steel Datejust Jubile...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,175.00</p>
<span class="gl-pr-txt">35 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-Air-King-No-Date-Watch-Blue-/140977166975" title="Mens Rolex Stainless Steel Air-King No Date Watch Blue">
<img src="./fashion-vault_files/$T2eC16R,!zcE9s4g3IvWBRjK!bQyDg~~60_62.JPG" alt="Mens Rolex Stainless Steel Air-King No Date Watch Blue" class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-Air-King-No-Date-Watch-Blue-/140977166975" title="Mens Rolex Stainless Steel Air-King No Date Watch Blue"> Mens Rolex Stainless Steel Air-King No Date Watch Blue</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,075.00</p>
<span class="gl-pr-txt">25 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-Yellow-Gold-Stainless-Steel-Jubilee-w-Gold-Dial-/140977174260" title="Mens Rolex Date 2tone Yellow Gold & Stainless Steel Jubilee ...">
<img src="./fashion-vault_files/$T2eC16FHJGQFFh8Yon+2BRjJ73K7ng~~60_62.JPG" alt="Mens Rolex Date 2tone Yellow Gold & Stainless Steel Jubilee ..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-Yellow-Gold-Stainless-Steel-Jubilee-w-Gold-Dial-/140977174260" title="Mens Rolex Date 2tone Yellow Gold & Stainless Steel Jubilee ..."> Mens Rolex Date 2tone Yellow Gold & Stainless Steel Jubilee ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,370.00</p>
<span class="gl-pr-txt">45 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-ROLEX-2Tone-14k-Gold-Stainless-Steel-DATEJUST-Watch-Arabic-Quickset-Date-/140977174261" title="Mens Rolex 2Tone 14k Gold/Stainless Steel DATEJUST Watch Ara...">
<img src="./fashion-vault_files/$(KGrHqN,!lcFCfNGOoghBQoss+Urig~~60_62.JPG" alt="Mens Rolex 2Tone 14k Gold/Stainless Steel DATEJUST Watch Ara..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-ROLEX-2Tone-14k-Gold-Stainless-Steel-DATEJUST-Watch-Arabic-Quickset-Date-/140977174261" title="Mens Rolex 2Tone 14k Gold/Stainless Steel DATEJUST Watch Ara..."> Mens Rolex 2Tone 14k Gold/Stainless Steel DATEJUST Watch Ara...</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,075.00</p>
<span class="gl-pr-txt">23 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Date-Stainless-Steel-Watch-w-Blue-MOP-Diamond-Dial-Bezel-/200924834997" title="Mens Rolex Date Stainless Steel Watch w/Blue MOP Diamond Dia...">
<img src="./fashion-vault_files/$T2eC16JHJIYE9qUcNbUqBRkSqSyp0!~~60_62.JPG" alt="Mens Rolex Date Stainless Steel Watch w/Blue MOP Diamond Dia..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Date-Stainless-Steel-Watch-w-Blue-MOP-Diamond-Dial-Bezel-/200924834997" title="Mens Rolex Date Stainless Steel Watch w/Blue MOP Diamond Dia..."> Mens Rolex Date Stainless Steel Watch w/Blue MOP Diamond Dia...</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,025.00</p>
<span class="gl-pr-txt">38 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Air-King-Stainless-Steel-Watch-w-Jubilee-Band-Silver-Dial-FV12A-/200924834998" title="Mens Rolex Air-King Stainless Steel Watch w/Jubilee Band & S...">
<img src="./fashion-vault_files/$T2eC16NHJHQE9nzE)jP!BQS3KNje6w~~60_62.JPG" alt="Mens Rolex Air-King Stainless Steel Watch w/Jubilee Band & S..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Air-King-Stainless-Steel-Watch-w-Jubilee-Band-Silver-Dial-FV12A-/200924834998" title="Mens Rolex Air-King Stainless Steel Watch w/Jubilee Band & S..."> Mens Rolex Air-King Stainless Steel Watch w/Jubilee Band & S...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,625.00</p>
<span class="gl-pr-txt">28 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-18k-Gold-Stainless-Steel-Watch-w-Gold-Dial-1505-/200924834999" title="Mens Rolex Date 2tone 18k Gold/Stainless Steel Watch w/Gold ...">
<img src="./fashion-vault_files/$T2eC16JHJHoE9n3Kd6utBRjVOWrZl!~~60_62.JPG" alt="Mens Rolex Date 2tone 18k Gold/Stainless Steel Watch w/Gold ..." class="gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-18k-Gold-Stainless-Steel-Watch-w-Gold-Dial-1505-/200924834999" title="Mens Rolex Date 2tone 18k Gold/Stainless Steel Watch w/Gold ..."> Mens Rolex Date 2tone 18k Gold/Stainless Steel Watch w/Gold ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,475.00</p>
<span class="gl-pr-txt">45 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-RARE-Grey-Dial-/200924835000" title="Mens Rolex Datejust Stainless Steel Date Watch w/RARE Grey D...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/YLwAAMXQaOVRkSqj/$T2eC16hHJGUFFhu59l4!BRkSqjKM5g~~60_62.JPG" alt="Mens Rolex Datejust Stainless Steel Date Watch w/RARE Grey D..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-RARE-Grey-Dial-/200924835000" title="Mens Rolex Datejust Stainless Steel Date Watch w/RARE Grey D..."> Mens Rolex Datejust Stainless Steel Date Watch w/RARE Grey D...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,600.00</p>
<span class="gl-pr-txt">47 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-Silver-Dial-Oyster-Band-16200-/200924835001" title="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/h6kAAMXQTX5RkS5-/$T2eC16R,!)!E9s2fCG6tBRkS5942vg~~60_62.JPG" alt="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-Silver-Dial-Oyster-Band-16200-/200924835001" title="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial..."> Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,525.00</p>
<span class="gl-pr-txt">30 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-ROLEX-2-Tone-14k-Yellow-Gold-Stainless-Steel-DATEJUST-Date-Leather-Roman-/200924835003" title="Mens Rolex 2-Tone 14k Yellow Gold & Stainless Steel DATEJUST...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/$T2eC16N,!zcE9s4g09m3BQkELNLqIg~~60_62.JPG" alt="Mens Rolex 2-Tone 14k Yellow Gold & Stainless Steel DATEJUST..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-ROLEX-2-Tone-14k-Yellow-Gold-Stainless-Steel-DATEJUST-Date-Leather-Roman-/200924835003" title="Mens Rolex 2-Tone 14k Yellow Gold & Stainless Steel DATEJUST..."> Mens Rolex 2-Tone 14k Yellow Gold & Stainless Steel DATEJUST...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,175.00</p>
<span class="gl-pr-txt">55 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Omega-Seamaster-Professional-300m-Date-Watch-Stainless-Steel-w-Black-Dial-/200924835005" title="Mens Omega Seamaster Professional 300m Date Watch Stainless ...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/gOoAAOxy8hNRkpeA/$T2eC16VHJHQFFhfCPP4oBRkpd+oj6w~~60_62.JPG" alt="Mens Omega Seamaster Professional 300m Date Watch Stainless ..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Omega-Seamaster-Professional-300m-Date-Watch-Stainless-Steel-w-Black-Dial-/200924835005" title="Mens Omega Seamaster Professional 300m Date Watch Stainless ..."> Mens Omega Seamaster Professional 300m Date Watch Stainless ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,200.00</p>
<span class="gl-pr-txt">46 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Oyster-Perpetual-Stainless-Steel-Watch-w-Blue-Dial-ref-1002-/200924835006" title="Mens Rolex Oyster Perpetual Stainless Steel Watch w/Blue Dia...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/brwAAOxyu1FRkS4y/$T2eC16Z,!w0E9szNZtt3BRkS4)FGlg~~60_62.JPG" alt="Mens Rolex Oyster Perpetual Stainless Steel Watch w/Blue Dia..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Oyster-Perpetual-Stainless-Steel-Watch-w-Blue-Dial-ref-1002-/200924835006" title="Mens Rolex Oyster Perpetual Stainless Steel Watch w/Blue Dia..."> Mens Rolex Oyster Perpetual Stainless Steel Watch w/Blue Dia...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,350.00</p>
<span class="gl-pr-txt">23 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Submariner-Date-2tone-18k-Gold-Stainless-Steel-Blue-Sub-16613-/200924835183" title="Mens Rolex Submariner Date 2tone 18k Gold/Stainless Steel Bl...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/pOgAAMXQoiJRiYNX/$T2eC16F,!)sE9swm(sciBRiYNWu6hw~~60_62.JPG" alt="Mens Rolex Submariner Date 2tone 18k Gold/Stainless Steel Bl..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Submariner-Date-2tone-18k-Gold-Stainless-Steel-Blue-Sub-16613-/200924835183" title="Mens Rolex Submariner Date 2tone 18k Gold/Stainless Steel Bl..."> Mens Rolex Submariner Date 2tone 18k Gold/Stainless Steel Bl...</a>
<div class="gl-bid">
<p class="gl-cpr2">$4,600.00</p>
<span class="gl-pr-txt">37 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-2tone-14k-Stainless-Steel-Date-Watch-w-Gold-Dial-/200924835184" title="Mens Rolex 2tone 14k/Stainless Steel Date Watch w/ Gold Dial">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/OTE0WDEwMjQ=/z/eNoAAMXQoiJRiX0F/$(KGrHqF,!rEFF9iZw+C3BRi(0E0S7g~~60_62.JPG" alt="Mens Rolex 2tone 14k/Stainless Steel Date Watch w/ Gold Dial" class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-2tone-14k-Stainless-Steel-Date-Watch-w-Gold-Dial-/200924835184" title="Mens Rolex 2tone 14k/Stainless Steel Date Watch w/ Gold Dial"> Mens Rolex 2tone 14k/Stainless Steel Date Watch w/ Gold Dial</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,525.00</p>
<span class="gl-pr-txt">36 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Solid-18K-Yellow-Gold-Rolex-Day-Date-President-Watch-w-Roman-Leather-Band-/200924835186" title="Mens Solid 18K Yellow Gold Rolex Day-Date President Watch w/...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/4cQAAOxybLpRiX6s/$(KGrHqZ,!mIFGH(56LnUBRi(6sE6Z!~~60_62.JPG" alt="Mens Solid 18K Yellow Gold Rolex Day-Date President Watch w/..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Solid-18K-Yellow-Gold-Rolex-Day-Date-President-Watch-w-Roman-Leather-Band-/200924835186" title="Mens Solid 18K Yellow Gold Rolex Day-Date President Watch w/..."> Mens Solid 18K Yellow Gold Rolex Day-Date President Watch w/...</a>
<div class="gl-bid">
<p class="gl-cpr2">$3,370.00</p>
<span class="gl-pr-txt">22 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-Datejust-Date-Watch-w-Black-Dial-/200924835187" title="Mens Rolex Stainless Steel Datejust Date Watch w/Black Dial">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/ODgwWDEwMjQ=/z/8AgAAOxyo4lRjKAD/$T2eC16ZHJH8E9qSEWzRLBRjK!Dn8Tw~~60_62.JPG" alt="Mens Rolex Stainless Steel Datejust Date Watch w/Black Dial" class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Stainless-Steel-Datejust-Date-Watch-w-Black-Dial-/200924835187" title="Mens Rolex Stainless Steel Datejust Date Watch w/Black Dial"> Mens Rolex Stainless Steel Datejust Date Watch w/Black Dial</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,575.00</p>
<span class="gl-pr-txt">22 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Men-ROLEX-2Tone-14k-Yellow-Gold-Stainless-Steel-Datejust-Date-Watch-w-Black-Dial-/200924838432" title="Men Rolex 2Tone 14k Yellow Gold/Stainless Steel Datejust Dat...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/z/ngcAAMXQySpRMSKz/$T2eC16RHJG8E9nyfnTutBRMSKy6Fy!~~60_62.JPG" alt="Men Rolex 2Tone 14k Yellow Gold/Stainless Steel Datejust Dat..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Men-ROLEX-2Tone-14k-Yellow-Gold-Stainless-Steel-Datejust-Date-Watch-w-Black-Dial-/200924838432" title="Men Rolex 2Tone 14k Yellow Gold/Stainless Steel Datejust Dat..."> Men Rolex 2Tone 14k Yellow Gold/Stainless Steel Datejust Dat...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,525.00</p>
<span class="gl-pr-txt">30 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Explorer-II-Date-Watch-Stainless-Steel-w-Black-Dial-16570-40mm-/200924838433" title="Mens Rolex Explorer II Date Watch Stainless Steel w/Black Di...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTUwMFgxNTAw/$(KGrHqZ,!rYE-T+wDZF8BQKwfW8CDw~~60_62.JPG" alt="Mens Rolex Explorer II Date Watch Stainless Steel w/Black Di..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Explorer-II-Date-Watch-Stainless-Steel-w-Black-Dial-16570-40mm-/200924838433" title="Mens Rolex Explorer II Date Watch Stainless Steel w/Black Di..."> Mens Rolex Explorer II Date Watch Stainless Steel w/Black Di...</a>
<div class="gl-bid">
<p class="gl-cpr2">$3,550.00</p>
<span class="gl-pr-txt">34 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Submariner-Stainless-Steel-Watch-Black-Sub-14060-FV12A-/200924838435" title="Mens Rolex Submariner Stainless Steel Watch Black Sub 14060 ...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/$(KGrHqV,!k8E+rCZTg-JBQN4pJQcfQ~~60_62.JPG" alt="Mens Rolex Submariner Stainless Steel Watch Black Sub 14060 ..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Submariner-Stainless-Steel-Watch-Black-Sub-14060-FV12A-/200924838435" title="Mens Rolex Submariner Stainless Steel Watch Black Sub 14060 ..."> Mens Rolex Submariner Stainless Steel Watch Black Sub 14060 ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$4,049.00</p>
<span class="gl-pr-txt">32 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Daytona-Cosmograph-2Tone-18k-Gold-Stainless-Steel-Slate-116523-/360657759680" title="Mens Rolex Daytona Cosmograph 2Tone 18k Gold & Stainless Ste...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/$T2eC16J,!ygE9s7HHp1TBQhZmtM0Pg~~60_62.JPG" alt="Mens Rolex Daytona Cosmograph 2Tone 18k Gold & Stainless Ste..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Daytona-Cosmograph-2Tone-18k-Gold-Stainless-Steel-Slate-116523-/360657759680" title="Mens Rolex Daytona Cosmograph 2Tone 18k Gold & Stainless Ste..."> Mens Rolex Daytona Cosmograph 2Tone 18k Gold & Stainless Ste...</a>
<div class="gl-bid">
<p class="gl-cpr2">$7,300.00</p>
<span class="gl-pr-txt">24 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-ROLEX-Stainless-Steel-DATE-Watch-w-Silver-Dial-ref-1500-/360657759681" title="Mens Rolex Stainless Steel DATE Watch w/Silver Dial - ref #1...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/$(KGrHqRHJBwFCQ3Y9tVqBQnC,fvwC!~~60_62.JPG" alt="Mens Rolex Stainless Steel DATE Watch w/Silver Dial - ref #1..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-ROLEX-Stainless-Steel-DATE-Watch-w-Silver-Dial-ref-1500-/360657759681" title="Mens Rolex Stainless Steel DATE Watch w/Silver Dial - ref #1..."> Mens Rolex Stainless Steel DATE Watch w/Silver Dial - ref #1...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,375.00</p>
<span class="gl-pr-txt">14 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-14k-Yellow-Gold-Stainless-Steel-Watch-w-Silver-Dial-/360657759684" title="Mens Rolex Date 2tone 14k Yellow Gold & Stainless Steel Watc...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/icEAAOxycERRjJ9M/$T2eC16VHJIQE9qUHtHjcBRjJ9L0NkQ~~60_62.JPG" alt="Mens Rolex Date 2tone 14k Yellow Gold & Stainless Steel Watc..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Date-2tone-14k-Yellow-Gold-Stainless-Steel-Watch-w-Silver-Dial-/360657759684" title="Mens Rolex Date 2tone 14k Yellow Gold & Stainless Steel Watc..."> Mens Rolex Date 2tone 14k Yellow Gold & Stainless Steel Watc...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,725.00</p>
<span class="gl-pr-txt">24 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Solid-14K-Yellow-Gold-Rolex-Datejust-Date-Watch-w-Diamonds-Leather-Band-/360657759685" title="Mens Solid 14K Yellow Gold Rolex Datejust Date Watch w/Diamo...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/z/YV0AAMXQgb1RMPub/$T2eC16NHJGkE9no8gFnyBRMPu,tmjw~~60_62.JPG" alt="Mens Solid 14K Yellow Gold Rolex Datejust Date Watch w/Diamo..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Solid-14K-Yellow-Gold-Rolex-Datejust-Date-Watch-w-Diamonds-Leather-Band-/360657759685" title="Mens Solid 14K Yellow Gold Rolex Datejust Date Watch w/Diamo..."> Mens Solid 14K Yellow Gold Rolex Datejust Date Watch w/Diamo...</a>
<div class="gl-bid">
<p class="gl-cpr2">$2,026.00</p>
<span class="gl-pr-txt">17 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Men-Rolex-2tone-14k-Gold-SS-Datejust-Date-Gold-Linen-Dial-/360657759687" title="Men Rolex 2tone 14k Gold/SS Datejust Date Gold Linen Dial">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/thUAAOxyo4lRjVPB/$T2eC16VHJHgFFlv0KbtcBRjVPBeJqQ~~60_62.JPG" alt="Men Rolex 2tone 14k Gold/SS Datejust Date Gold Linen Dial" class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Men-Rolex-2tone-14k-Gold-SS-Datejust-Date-Gold-Linen-Dial-/360657759687" title="Men Rolex 2tone 14k Gold/SS Datejust Date Gold Linen Dial"> Men Rolex 2tone 14k Gold/SS Datejust Date Gold Linen Dial</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,395.00</p>
<span class="gl-pr-txt">25 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Milgauss-Green-Anniversary-Stainless-Steel-Watch-w-Black-Dial-116400V-/360657759688" title="Mens Rolex Milgauss Green Anniversary Stainless Steel Watch ...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY3WDEwMjQ=/z/xM4AAOxyu1FRkQUG/$(KGrHqN,!rEFF9gfUiywBRkQUG(b9w~~60_62.JPG" alt="Mens Rolex Milgauss Green Anniversary Stainless Steel Watch ..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Milgauss-Green-Anniversary-Stainless-Steel-Watch-w-Black-Dial-116400V-/360657759688" title="Mens Rolex Milgauss Green Anniversary Stainless Steel Watch ..."> Mens Rolex Milgauss Green Anniversary Stainless Steel Watch ...</a>
<div class="gl-bid">
<p class="gl-cpr2">$4,850.00</p>
<span class="gl-pr-txt">10 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-Silver-Dial-1603-/360657759689" title="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/2KwAAMXQgPhRkpvW/$T2eC16NHJGIFFoyJzKT6BRkpvWYrjg~~60_62.JPG" alt="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Datejust-Stainless-Steel-Date-Watch-w-Silver-Dial-1603-/360657759689" title="Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial..."> Mens Rolex Datejust Stainless Steel Date Watch w/Silver Dial...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,275.00</p>
<span class="gl-pr-txt">28 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Day-Date-18K-Yellow-Gold-Pave-Diamond-President-w-Blue-Roman-/360657759691" title="Mens Rolex Day-Date 18K Yellow Gold Pave Diamond President w...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/3HUAAOxyQyJRkS5N/$T2eC16hHJHEFFmTbvO6cBRkS5MOKCw~~60_62.JPG" alt="Mens Rolex Day-Date 18K Yellow Gold Pave Diamond President w..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Day-Date-18K-Yellow-Gold-Pave-Diamond-President-w-Blue-Roman-/360657759691" title="Mens Rolex Day-Date 18K Yellow Gold Pave Diamond President w..."> Mens Rolex Day-Date 18K Yellow Gold Pave Diamond President w...</a>
<div class="gl-bid">
<p class="gl-cpr2">$7,200.00</p>
<span class="gl-pr-txt">18 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Tiffany-and-Co-LED-Pulsar-P2-Stainless-Steel-/360657759692" title="Mens Tiffany and Co. LED Pulsar P2 Stainless Steel">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/DS4AAMXQuu9RksH1/$T2eC16R,!yUE9s6NFIJdBRksH1c6ig~~60_62.JPG" alt="Mens Tiffany and Co. LED Pulsar P2 Stainless Steel" class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Tiffany-and-Co-LED-Pulsar-P2-Stainless-Steel-/360657759692" title="Mens Tiffany and Co. LED Pulsar P2 Stainless Steel"> Mens Tiffany and Co. LED Pulsar P2 Stainless Steel</a>
<div class="gl-bid">
<p class="gl-cpr2">$390.00</p>
<span class="gl-pr-txt">24 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-14K-Yellow-Gold-Leather-w-Silver-Dial-/360657759693" title="Mens Rolex 14K Yellow Gold Leather w/ Silver Dial">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/aCEAAOxyu1FRjTyo/$T2eC16dHJH8E9qSEW9I,BRjTyoH80Q~~60_62.JPG" alt="Mens Rolex 14K Yellow Gold Leather w/ Silver Dial" class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-14K-Yellow-Gold-Leather-w-Silver-Dial-/360657759693" title="Mens Rolex 14K Yellow Gold Leather w/ Silver Dial"> Mens Rolex 14K Yellow Gold Leather w/ Silver Dial</a>
<div class="gl-bid">
<p class="gl-cpr2">$961.01</p>
<span class="gl-pr-txt">52 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Mens-Rolex-Solid-14k-Yellow-Gold-Date-Watch-w-Leather-Band-Black-Dial-/360657759694" title="Mens Rolex Solid 14k Yellow Gold Date Watch w/Leather Band &...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/z/m-EAAMXQ-3NRjJ-H/$(KGrHqUOKooFF0rH,237BRjJ-HHdIw~~60_62.JPG" alt="Mens Rolex Solid 14k Yellow Gold Date Watch w/Leather Band &..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Mens-Rolex-Solid-14k-Yellow-Gold-Date-Watch-w-Leather-Band-Black-Dial-/360657759694" title="Mens Rolex Solid 14k Yellow Gold Date Watch w/Leather Band &..."> Mens Rolex Solid 14k Yellow Gold Date Watch w/Leather Band &...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,700.99</p>
<span class="gl-pr-txt">43 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
<div class="gl-itm">
<span class="l-shad lftd i225"> <span> <span class="imgc"> <i></i> <a class="gl-imgHld" href="http://www.ebay.com/itm/Midsize-Cartier-Santos-Octagon-2Tone-18k-Gold-Stainless-Steel-Date-Watch-Quartz-/360657759696" title="Midsize Cartier Santos Octagon 2Tone 18k Gold/Stainless Stee...">
<img src="./fashion-vault_files/imgLoading.gif" xsrc="http://i.ebayimg.com/00/s/MTIwMFgxNjAw/z/k1oAAOxyzHxRJ5NU/$(KGrHqV,!rEFEJ5EYu59BRJ5NUgcSQ~~60_62.JPG" alt="Midsize Cartier Santos Octagon 2Tone 18k Gold/Stainless Stee..." class="no-load gl-pImg">
<b class="gl-qll btnDefault"><i></i></b>
</a>
</span>
</span> </span>
<img class="gl-brandImg" src="./fashion-vault_files/s(1).gif">
<a class="gl-title" href="http://www.ebay.com/itm/Midsize-Cartier-Santos-Octagon-2Tone-18k-Gold-Stainless-Steel-Date-Watch-Quartz-/360657759696" title="Midsize Cartier Santos Octagon 2Tone 18k Gold/Stainless Stee..."> Midsize Cartier Santos Octagon 2Tone 18k Gold/Stainless Stee...</a>
<div class="gl-bid">
<p class="gl-cpr2">$1,155.00</p>
<span class="gl-pr-txt">32 Bids</span>
<span class="gl-tl">3d 23h</span>
</div>
</div>
</div>
<div class="pgn-wrp" _sp="p2051542.m2161">
<div class="pagn">
<span class="pgtxt">Page<span class="pgnum">1</span>of<span class="pgnum">3</span></span>
<a class="gspr prev-d" aria-disabled="true" alt="No previous page" style="padding:0px;"></a>
<a class="curr">1</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398&_pgn=2">2</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398&_pgn=3">3</a>
<a href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398&_pgn=2" class="gspr next" alt="Next page of results" style="padding:0px;"></a>
</div>
</div>
</div>
</div>
<a id="" class="priceDisclaimer ftrContent" href="" style="color:#ccc;font-weight:normal"></a>
</div>
<div class="ff-clear" id="ff-clear"></div>
<div id="quicklook"><script type="text/javascript">$df.set('ph_quicklook','quicklook')</script><div id="qll">
<div class="quicklook_layer_main"><div class="quicklook_layer_outer"><div class="quicklook_layer_inner"><div class="quicklook_layer-container"><div class="content"><div class="ql_item" id="ql_item"><div class="stage-wrapper lfloat"><div class="stage" id="stage"><!--set image templaets using inner html--></div><a title="Previous" href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398#" id="quicklook-prev" class="quicklook-arrow prev btnDefault" name="quicklook-prev"><i></i></a><a title="next" href="http://www.ebay.com/rpp/fashionvault/beckertime-presents-watches-for-him?_trksid=p2050601.m1256&_trkparms=%26clkid%3D7850120509358800398#" id="quicklook-next" class="quicklook-arrow next btnDefault" name="quicklook-next"><i></i></a></div><div id="itemThumbs" class="item-thumbs-wrp scb"></div><div class="item-details lfloat scb" id="item-details"><!--set item details template using inner html--></div><div class="clearfix"></div></div><div id="ql_itembar" class="ql_itembar"><!--set breadcrumb template using inner html--><div class="filmstrip" domobjid="fsqll"><div class="filmstrip-top"><span id="fsTopTitle" class="title">More Results</span><div class="breadcrumb" id="breadcrumb"></div></div><div class="larrow" id="larrow"><span></span></div><div class="fs-content"> <ul id="fs-img-wrapper"><li><span class="dumspan"></span><img itemid="" sellerid="" src="./fashion-vault_files/jpg"></li></ul></div><div class="rarrow" id="rarrow"><span></span></div></div></div></div><div id="ql_close" class="close"></div></div></div></div></div></div>
</div><div class="gsft">
<div id="glbfooter" class="gh-w"><div><div id="rtm_html_1650" style="height:0px;display:none;"></div><div id="rtm_html_1651" style="height:0px;display:none;"></div></div><table class="gf-t"><tbody><tr><td class="g-pipe" colspan="2"><ul role="directory" id="gf-l">
<li><a _exsp="m571.l2602" role="link" class="thrd" href="http://www.ebayinc.com/">About eBay</a></li><li><a _exsp="m571.l3329" role="link" class="thrd" href="http://community.ebay.com/index.jspa">Community</a></li><li><a _sp="m571.l3330" role="link" class="thrd" href="http://announcements.ebay.com/">Announcements</a></li><li><a _sp="m571.l2616" role="link" class="thrd" href="http://pages.ebay.com/securitycenter/index.html">Security Center</a></li><li><a _sp="m571.l2604" role="link" class="thrd" href="http://pages.ebay.com/help/policies/overview.html">Policies</a></li><li><a _sp="m571.l1625" role="link" class="thrd" href="http://pages.ebay.com/sitemap.html">Site Map</a></li><li><a _sp="m571.l2606" role="link" class="thrd" href="http://viv.ebay.com/ws/eBayISAPI.dll?EbayTime">eBay official time</a></li><li><a _sp="m571.l1617" role="link" class="thrd" href="http://garden.ebay.com/">Preview new features</a></li><li><a _sp="m571.l2911" role="link" class="thrd" href="http://ocs.ebay.com/ws/eBayISAPI.dll?CustomerSupport">Contact us</a></li><li><a id="gh-surveyLink" _sp="m571.l2628" target="eBaySurvey" class="thrd gh-survey" rel="nofollow" href="http://qu.ebay.com/survey?srvName=globalheader+%28footer-US%29">Tell us what you think</a><form class="gh-none g-hdn" target="eBaySurvey" method="post" id="gh-surveyForm" action="http://qu.ebay.com/survey?srvName=globalheader+%28footer-US%29"><input value="" name="domContent"></form></li></ul></td></tr><tr valign="top"><td class="gf-legal">Copyright © 1995-2013 eBay Inc. All Rights Reserved. <a _sp="m571.l2612" class="thrd" href="http://pages.ebay.com/help/policies/user-agreement.html?rt=nc">User Agreement</a> and <a _sp="m571.l2613" class="thrd" href="http://pages.ebay.com/help/policies/privacy-policy.html?rt=nc">Privacy Policy</a>.</td></tr></tbody></table>
<div id="cobrandFooter"></div></div><!--ts:2013.05.22.18:37--><!--rq:--></div>
<!-- RcmdId sale_results,RlogId t6evgkfvqba%3F%3Ctof2e34e*ba17-13ecf13b2b5-0x97 -->
<script src="./fashion-vault_files/plmto4mrcay51flitd3w4b4gr.js" type="text/javascript"></script><script type="text/javascript" src="./fashion-vault_files/roverlv.js"></script>
<script src="./fashion-vault_files/2wsjqgst1e3n1oze1eggg12js.js" type="text/javascript"></script><script src="./fashion-vault_files/dcuv4x0deqyrzm4qhokci3v12.js" type="text/javascript"></script><script src="./fashion-vault_files/rpt.min" type="text/javascript"></script><script type="text/javascript">
var spm = raptor.require("js.comp.sharedcomponent.SeoPageMeta");
new spm();
(function() {
var Context = raptor.require('ebay.context.Context');
Context.call(Context,{"site":0,"errors":{"enabled":true},"app":"fsalesweb","domain":".ebay.com","pool":"production","cobrand":2,"locale":"en_US_MAIN","features":{},"pid":2051542});
})();
if (typeof GH != "undefined" && GH) { GH_config = { siteId:"0", algo:"1369237562", catId:"0", sin:1,pageId:2051542,userMsgConfig:['18','500'],notifCfg:{"b3":[4,4,380619325383],"d":1,"n":4},ct:0};GH.init();}
(function(d){
var js, id = 'ebay-scShare';
if (d.getElementById(id)) {return;}
js = d.createElement('script');
js.id = id;
js.async = true;
js.defer = true;
js.src = "http://ir.ebaystatic.com/z/ij/14wflfybny3pnejygcab00jqg.js";
d.getElementsByTagName('head')[0].appendChild(js);}(document));
var hdr = raptor.require("js.comp.sharedcomponent.Header");
new hdr(true);
(new raptor.require('js.comp.sharedcomponent.CSAAspectRollup'))({elem:'e1'});
var cntDwn = raptor.require("js.comp.sharedcomponent.CountDown");
new cntDwn('e3', 'false', {"days":"DAYS","day":"DAY",
"hrs":"HRS","hr":"HR","minutes":"MIN","min":"MIN","secs":"SECS","sec":"SEC",
"reload":"false"});
var qllModel = {}, qllContent = {}
qllContent.survey = "Tell us what you think of this Quick Look";
qllContent.moreResults = "More Results";
qllContent.seeDetails = "See Full Details";
qllContent.bin = "Buy It Now";
qllContent.orp = "Compare at";
qllContent.orpOn = "";
qllContent.orpOff = "";
qllContent.bids = "Bids";
qllContent.handlingTime = "Handling Time";
qllContent.shipping = "Shipping";
qllContent.now = "Now";
qllContent.savings = "Savings";
qllContent.off = "off";
qllContent.or = "or";
qllModel.content = qllContent;
qllModel.moduleId = 1990;
qllModel.siteId = 0;
var glGrid = raptor.require("js.comp.sharedcomponent.GalleryGrid");
new glGrid({"lazyLoadClassName":"no-load","id":'e6',"isQll":'true','qllModel':qllModel});
var siteId = 0;
var ftrPriceDiscExec = raptor.require("js.comp.ruelala.Footer");
new ftrPriceDiscExec({"":""},0,550);
var ftrExec = raptor.require("js.comp.ruelala.Footer");
new ftrExec({}, 0, 0);
var _fsp = raptor.require("js.common.FSP");
var _fspRover = raptor.require("js.common.Rover");
_fspRover.trackFunc(2051542);
new (raptor.require('raptor.tracking.core.Tracker'))({"psi":"AE7KVAAE*","rover":{"clk":"/roverclk/0/0/9","imp":"/roverimp/0/0/9","uri":"http://rover.ebay.com"},"pid":"p2051542"});raptor.require('raptor.tracking.idmap.IdMap').roverService("http://rover.ebay.com/idmap/0?footer");</script><script type="text/javascript">$df={set:function(a,b){a=document.getElementById(a);b=document.getElementById(b);if(a&&b){a.parentNode.replaceChild(b,a)}}}</script><link href="./fashion-vault_files/p20gsbel0m2vlnhli142icht2.css" type="text/css" rel="stylesheet"><div id="t_quicklook" style="display:none"></div><script src="./fashion-vault_files/je0ebwe5mq1mdaxysrmlhehao.js" type="text/javascript"></script>
<div id="gAC"><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content ui-corner-all" id="ui-id-1" tabindex="0" style="display: none;"></ul></div></body></html>