-
Notifications
You must be signed in to change notification settings - Fork 6
/
oldnews.html
1441 lines (942 loc) · 103 KB
/
oldnews.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
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>
#### ได้รู้ความจริง ได้ยิ่งกว่าฟุตบอล อ่าน soccersuck.com#### </title>
<link rel="shortcut icon" href="/img/web/ss_logo_f_16.ico" />
<meta name="apple-itunes-app" content="app-id=1042191005">
<meta name="google-play-app" content="app-id=com.soccersuck.devtab.com.soccersuck">
<link rel="stylesheet" href="http://www.soccersuck.com/css/jquery.smartbanner.css" type="text/css" media="screen">
<meta name="description" content="soccer,football,soccer news,english soccer,italy soccer,spain soccer,germany soccer,football program,football result,soccer program,soccer result,เธ" />
<meta name="keyword" content="soccer,news,football,news,tded,premier," />
<meta content='NTViMzdjNWMyNzBlNWQ4NGM3OTNlNDg2ZDc5OGMwMWQ=' name='thstats-verify'/>
<meta property="og:title" content="SoccerSuck" />
<meta property="og:image" content="http://www.soccersuck.com/img/web/ss_main_h_logo_ss.png" />
<meta property="og:description" content="ได้รู้ความจริงยิ่งกว่าฟุตบอล" />
<meta property="og:url" content="http://www.soccersuck.com/" />
<link rel="image_src" href="http://www.soccersuck.com/img/web/ss_main_h_logo_ss.png" />
<link rel="stylesheet" type="text/css" href="/css/cake.generic.css" /><link rel="stylesheet" type="text/css" href="/css/header.css" /><link rel="stylesheet" type="text/css" href="/css/home.css" /><script type="text/javascript" src="/js/jquery.js"></script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65318217-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="fb-root"></div>
<script type="text/javascript" src="https://connect.facebook.net/en_US/all.js"></script> <script type="text/javascript" src="/js/fb_init.js"></script> <div id="header">
<div class="header_layout">
<a href="http://www.soccersuck.com/" style="color:#000;" ><div class="logo"></div></a>
<div class="header_offline">
<div style="float: right;">
<a href="http://www.soccersuck.com/users/register/" style="text-decoration: none;">
<div class="header_register" >Register</div>
</a>
</div>
<div style="float: right;">
<div class="header_login" >Login</div>
</div>
<div style="float:right;">
<div style="float: left;margin: 3px 10px 0px 0px; ">
<div class="header_label">Username</div>
<div class="header_input" ><input type="text" id="header_email" autofocus="autofocus" /></div>
</div>
<div style="float: left;margin: 3px 10px 0px 0px;">
<div class="header_label">Password</div>
<div class="header_input"><input type="password" id="header_pass" /></div>
</div>
<div class="clear"></div>
<div style="float: left;margin: 0px 10px 0px 0px;">
<div class="header_label"><input type="checkbox" id="header_ckemail" style="" checked /> จำรหัสผ่าน</div>
</div>
<div style="float: left;margin: 0px 0px 0px 11px;">
<a href="http://www.soccersuck.com/users/forgotpassword" style="color:#000;text-decoration: none;" >
<div class="header_label">ลืมรหัสผ่าน?</div>
</a>
</div>
<div class="clear"></div>
</div>
<div style="float: right;">
<div style="margin: 9px 10px 0px 0px;float: left;" ><a target="_blank" style="text-decoration: none;color: #FFF;" href="http://www.soccersuck.com/boards/topic/875245"><div class="bthowto"></div></a></div>
<div style="margin: 15px 5px 0px 5px;float: left;" ><a target="_blank" style="text-decoration: none;color: #FFF;" href="http://www.soccersuck.com/users/jail"><div class="btprisoner"></div></a></div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div class="loaddingHeader" style="display: none;background: #FFF;position: fixed;padding: 20px;top: 50%;left: 50%;margin:-45px 0px 0px -45px;box-shadow: 4px 4px 4px #888;"><img src="/img/web/loading_50.gif" /></div>
<script type="text/javascript" src="/js/login.js"></script>
</div>
<div id="container">
<div class="content_left">
<div style="margin: 0px 0px 2px 10px;">
</div>
<ul class="menu_left">
<a target="_blank" href="http://www.soccersuck.com/shop" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/top_item.png?1" style="width: 90px;margin: 4px 21px;" alt="">
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_29.png" style="width:25px;margin: 8px -2px -7px 2px;" alt="" /> <span>หน้าแรก</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/boards/oldnews/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_33.png" style="width:25px;margin: 9px 0px -4px 1px;" alt="" /> <span>ข่าวเก่า</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/boards/matchreport/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_55.png" style="width:25px;margin: 6px -4px -7px 4px;" alt="" /> <span>ผลบอลย้อนหลัง</span>
</li>
</a>
<!-- <a target="_blank" href="http://www.polballss.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_38.png" style="width:25px;margin: 7px -4px -5px 1px;" alt="" /> <span>ทีเด็ด เบนฟรีคิก</span>
</li>
</a>-->
<!--<a target="_blank" href="http://www.guideball.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_41.png" style="width:25px;margin: 9px -4px -6px 1px;" alt="" /> <span>รายงานสดผลบอล</span>
</li>
</a>-->
<a target="_blank" href="http://www.soccersuck.com/boards/topic/1232930" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_43.png" style="width:25px;margin: 12px -4px -3px 2px;" alt="" /> <span style="font-size: 11px;">โปรแกรมถ่ายทอดสด</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/boards/topic/1232930" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_45.png" style="width:25px;margin: 10px -4px -4px 2px;" alt="" /> <span style="font-size: 11px;">โปรแกรมบอลล่วงหน้า</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/boards/topic/994224" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_49.png" style="width:25px;margin: 8px -3px -6px 2px;" alt="" /> <span>สรุปผลย้อนหลัง</span>
</li>
</a>
<a target="_blank" href="http://www.hugball.com/last-goal.html" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_52.png" style="width:25px;margin: 7px -4px -7px 2px;" alt="" /> <span>ไฮไลท์ฟุตบอลล่าสุด</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/menu/column" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_55.png" style="width:25px;margin: 6px -4px -7px 5px;" alt="" /> <span>คอลัมน์+สกู๊ป</span>
</li>
</a>
<!--<li>
<img src="/img/web/ss_main_icon_menu_59.png" style="width:25px;margin: 8px -1px -5px 3px;" alt="" /> <span>ตารางคะแนน</span>
</li>
<li class="sub_menu_left_pate" style="height: 156px;background: none;display: none;">
<ul class="sub_menu_left" >
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>ไทยพรีเมียร์ลีก</span>
</li>
</a>
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>อังกฤษ</span>
</li>
</a>
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>สเปน</span>
</li>
</a>
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>อิตาลี</span>
</li>
</a>
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>เยอรมัน</span>
</li>
</a>
<a target="_blank" href="http://www.ssballthai.com/" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_62.png" style="margin:0px 0px -1px 28px;" alt="" /> <span>ฝรั่งเศส</span>
</li>
</a>
</ul>
</li>-->
<a target="_blank" href="http://www.soccersuck.com/boards" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_66.png" style="margin: 7px -1px -7px 5px;" alt="" /> <span>เว็บบอร์ด</span>
</li>
</a>
<a target="_blank" href="http://www.soccersuck.com/menu/history" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_68.png" style="width:25px;margin: 4px -1px -11px 5px;" alt="" /> <span>ประวัติ soccersuck</span>
</li>
</a>
<!-- <a target="_blank" href="http://www.soccersuck.com/boards/topic/0" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_71.png" style="width:25px;margin: 9px -1px -7px 5px;" alt="" /> <span>พาร์ทเนอร์</span>
</li>
</a>-->
<a target="_blank" href="http://www.soccersuck.com/users/contact" style="color: #FFF;text-decoration: none;">
<li>
<img src="/img/web/ss_main_icon_menu_w.png" style="width:25px;margin: 9px 0px -4px 5px;" alt="" /> <span>ติดต่อโฆษณา</span>
</li>
</a>
</ul>
<script type="text/javascript">
$('.menu_left li').click(function(){
$('.menu_left li').removeClass('menu_left_selected');
$(this).addClass('menu_left_selected');
var inxmenu = $(this).index();
$('.sub_menu_left_pate').hide();
if(!$('.menu_left li:eq('+(inxmenu+1)+')').is(':visible')){
$('.menu_left li:eq('+(inxmenu+1)+')').show();
}
});
</script> </div>
<div class="content_main" >
<div class="adv_A">
</div>
<div class="headline_head" >
ได้รู้ความจริงยิ่งกว่าฟุตบอล อ่านซ๊อกเกอร์ซัค
</div>
<div style="border-top: 3px solid #f36523;width: 727px;margin: 0px 0px 0px 2px;"></div>
<div class="headline" style="padding:1px 0px;">
<div class="oldnew_p_thead">
<img src="/img/web/ss_latest_new_icon_ca.png" style="margin:5px 5px -6px 5px;" alt="" />24/11/15 </div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300047">
'เรือ'เตรียมเปลี่ยนโลโก้กลับไปใช้แบบวงกลมหลังปรึกษ... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ita.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300043">
ซอฟท์ไป!เปอตีต์ชี้"ป็อกบา"ต้องดุดันกว่านี้ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300039">
LVG เฟิร์มรูน,มาร์กซิยาลฟิตรอชนพีเอสวี-ชไวนี่ก็พร้อม </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/turkey.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300036">
RVP ดับข่าว'สิงห์,ต่างดาว'ตามจีบยืนหอก </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300034">
มิลเนอร์รับแข้งหงส์เห็นด้วย'คล็อปป์'ต้องปรับเกมในบ... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300030">
เจ้าของค้อนโต้ข่าวเปล่ามีปัญหาขัดแย้งกับ'เลวี่' </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300028">
'หน้าง่วง'เดี้ยงวืดช่วยต่างดาวบู๊หมาป่า </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300027">
ลามะเชื่อ"เม็มฟิส"คืนฟอร์มเก่งเกมฉะทีมเก่า </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300026">
กุนซือซุปตาร์!ตำนานหยอด JK แข้งคนที่ 12 ของหงส์ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300024">
'ราฮีม'เปลี่ยนแนวถอยเปียโนหัดดีเพลงพริ้ม </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300022">
ราคิติชรับเอ็นจอยกับสามประสาน MSN-ชี้ซีซั่นนี้ยากยิ่งขึ้นกว่... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300016">
'ยาย่า'กระตุ้นเรืออัดม้าลายจองแชมป์กลุ่ม ดี </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300013">
P$G เตรียมใส่เสื้อข้อความ Je Suis Paris สดุดีเหยื่อโจมตีปารี... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300010">
มิโยเลต์เผยกอดของ JK มีส่วนทำทีมผลงานดี </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300006">
เซดอร์ฟชี้'คางทูม'ไม่น่าโดนไล่แต่ตอนนี้ต้องเซฟ... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1300001">
เตรียมเปลี่ยนฟีล!เหี่ยวยันปืนเต็มที่หากร่วงเตะยูโรป้า </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299996">
ได้เวลาเลือก!ยูฟ่าเปิดโหวตทีมยอดเยี่ยมประจำปี 2015 </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299990">
สนทนาภาษาปิเก้ : ลุงอ้วนผลัก, ย้ายซบผี, ภาพสวีทอิบรา & เ... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299986">
ตำนานเลี่ยนซูฮก'เมสซี่'เหนือกว่า'เสือเตี้ย�... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299984">
ผียิ้มได้'เสี่ยหมู,มาร์กซิยาล'คืนทัพร่วมลงซ้อมก่อน... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299982">
'ลาบบาเดีย'แนะโยกี้เรียกลาซ็อกก้าติดทัพอินทรีเหล็ก </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/fifa.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299976">
ล้างบาง!เผย'พลาตินี่'มีสิทธิ์โดนแบนจากโลกลูกหนังตล... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299975">
จบที่เดิม! เทโรฯ ฟ้องศาลปกครองร้องความยุติธรรม </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /><img src="http://www.soccersuck.com/img/web/icon_official.png" style="margin: -10px 2px -6px 2px;width: 25px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299958">
ไม่รอดจนได้!ซอร์นิเกอร์โดนเด้งพ้นกุนซือม้าขาว </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299943">
หริดชี้รักไอบ์เหมือนน้อง-ตั้งเป้าช่วยอัพเวล </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299942">
ใครหว่า? สตูลแฉมีอดีตเปามาสนามแต่นั่งในรถ, จับ 7 ชายฉกรรณ์ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299939">
"น้ามู"เชื่ออาซาร์เล่นปีกซ้ายดีกว่าตรงกลาง </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299935">
ปรีวิวไทยลีก - บุรีรัมย์ชนะจ่อแชมป์, “กูปรี” เฝ้ารังหนีตาย </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299933">
แค่ร้อยล้าน! ตปท.ทุ่มซื้อ 2 แข้งบุรีรัมย์แต่ “เนวิน” ไม่ขาย </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299931">
'พอช'ชี้เร็วเกินไป'ไก่'ท้าชิงแชมป์ลีก </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299925">
ทำมาแล้ว!น้ามู'เชื่อ'สิงห์มีลุ้นคว้าแชมป์ UCL </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ita.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299908">
'ม่วงมหากาฬ'พร้อมทุ่ม 10 ลย.ดึง'อิตูร์เบ้... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299905">
บาลาเก้ฟันฉับ'โด้','ราฟา'เจอ'ราชัน&... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299902">
JK หมายหัว"มิดฟิลด์ตราหมา"ช่วยปั้นเกมหงส์ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299900">
"อีที"เปรยสนคุมทัพยูงทอง </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299896">
'คางทูม'ชี้เมสซี่กลับมาข่าวร้ายหมาป่า-เนย์มาร์,หม่... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299889">
หล่อมาก!ฮุมเมิ่ลส์รับพลาดเยอะทำเสือเหลืองพังพาบ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299887">
อย่านานนะ!'คูตี้'เจ็บพลาดลงฟัดบอร์กโดซ์ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299863">
'ถั่วน้อย'ทุบสถิติแข้งเม็กซิกันคนแรกยิง 7 นัดติดเว... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299855">
เจ้าสัวหมู!ซันเผยลีกจีนเล็งทุ่มข้อเสนอมหาศาลคว้าตัว'รูน... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299853">
เอฟร่าเผยความในใจโด้จิ๋ว'โคตรรักผีเลย' </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299852">
ขิงรับพยายาม edit ค่าพลังแต่แซง"เหยิน"ไม่ไหว </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299851">
เสื้อปีหน้า ! "ลำพูน"เผยชุดแข่ง2016 โชว์เป็นทีมแรก </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299849">
ทีพีแอล ฟัน พรปรีชา-ปลาทู ชูของลับปรับฝั่งละ 3 หมื่น </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299845">
หายไปไหน ! ไร้ชื่อ"ฝีมือช่าง"เป่าไทยลีก </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299826">
ศึกคนรวย!สิงห์ฟัดเรือแย่ง"กรีซมันน์" </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299819">
ปืนล็อคเป้านำเข้า"เบนเดอร์,คาร์วัลโญ่"ทดแทนโกเกอแล... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299817">
ลาก่อน!เผย"โด้จิ๋ว"ถอดชุดขาวหลังเปเรซหนุนหลังราฟา </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299814">
อดีตโค้ชชุดใหญ่ผีอวย"ลินการ์ด"เป็นอิเนียสต้าผู้ดี </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299812">
จบในปีนี้ทีพีแอลยื่นอุทธรณ์คำสั่งศาลคุ้มครองสุโขทัย! </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299805">
"อดีตแข้งสิงห์"ติดโผคุมทัพหงส์ขาวแทนมังค์ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299804">
บลินด์ยก"หมู"กองหน้าเจ๋งสุดที่เคยเล่นด้วย </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299803">
“ศาลเตี้ย” !!! </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299801">
เนื้อหอม!ปืนรายล่าเอาด้วยหวังซิว"อิคาร์ดี้" </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/fifa.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299800">
มีมูล!ปธ.โบค่ารับอาจต้องปล่อย"คัลเลรี่" </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /><img src="http://www.soccersuck.com/img/web/icon_official.png" style="margin: -10px 2px -6px 2px;width: 25px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299776">
ลีกกินโค้ช!"บีจี"ปลด"ริคาร์โด"ตั้ง"... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299771">
เชือกวิเศษ!ไม่รั้ง"เมธี"วางมือจากรองปธ.สตูลฯ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299753">
ปรีวิวปืนขอล้างตา,สิงห์เยือน,ต่างดาวซดหมาป่า </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299743">
อันเช่เขย่า'ราฟา'หนุน"ซีดาน"คุมราชันตอนน... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299739">
'กุน'ซูฮก"คล็อปป์"ยอดโค้ชทำพรีเมียร์ร้อน... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299736">
เดอะค็อปฟิน!'หัวขิง'คอนเฟิร์มสวมเสื้อหงส์เจอกันมกร... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299732">
ซะงั้น!แข้งราโยเหมายิงบุกเจ๊าเคตาเฟ่1-1...สรุปผล+ตาราง"... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299731">
คล็อปป์ไม่รับปากหงส์ติดท็อปโฟร์ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299730">
'คิเอล'ระแวงซิตี้ยังอันตรายเผลอไม่ได้ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299726">
การ์เซียสวนกระแสใครบอกต่างดาวไร้เทียนทาน </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299723">
เอ็นริเก้ปรามต่างดาวอย่าเหลิงระวังหมาป่า </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299722">
พี่แพร์สุดมั่นปืนล้างแค้นซาเกรบกรุยทางUCL </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299721">
เหี่ยววัดใจปืนเจอบททดสอบฝ่าด่านซาเกรบ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299720">
"น้ามู"เอาคืนแขวะ'เลอ โซ'แข้งใจมด-เร้าลู... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299716">
"เปเรซ"โร่ปัดโด้จิ๋วแกนนำขับไล่ราฟา-อัดสื่อป้ายสีเ... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299715">
แดนน์พลาดมหันต์!เดโฟซัดท้ายเกมแมวดำบุกเชือดพาเลซ 1-0 </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299701">
เซฟสำเร็จ!!!เปเรซแถลงยัน"ราฟา"เก้าอี้กุนซือสตรองงง... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299698">
แต่ขาดทุน..."เชลซี"แถลงโกยเงินซีซั่นก่อนทะลุ300ลป. </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299693">
หึ่งLVGขอ'ปูโยล'ตัวช่วยฉุด"บาร์ตร้า"ลงหล... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299688">
"หงส์"รุกคืบปาดหน้าสิงห์ดูด"อิคาร์ดี้"เข... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299685">
ผีอย่าช้า!สิงห์แจมล่า"มาเน่"เติมจี๊ด </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /><img src="http://www.soccersuck.com/img/web/icon_official.png" style="margin: -10px 2px -6px 2px;width: 25px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299679">
ไม่เบี้ยว!ต่างดาวซื้อใจ"ราฟินญ่า"จับเซ็นถึง2020 </a>
</div>
<div class="oldnew_p_thead" style="margin:20px 0px 0px 2px;">
<img src="/img/web/ss_latest_new_icon_ca.png" style="margin:5px 5px -6px 5px;" alt="" />23/11/15 </div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299673">
มูชื่นชม'จิ้งจอก'ผลงานอเมซซิ่ง-เชื่อรับได้หากบอกไม... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299670">
"อันเช่"เปิดกว้างคัมแบ็คราชัน-ระบุแข้งเป้าหลังคืนว... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299666">
เอาให้หนัก!มาร์ก้าปูด"อิสโก้"ไม่ปลื้มสำรองกลาซิโก้ </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299655">
ซี้บ๋อยอ้วนฟันธงเปเรซแถลง"#SaveRafa" </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299654">
เดี๋ยวเฮียช่วย!คล็อปป์เตือน'ชาน'อยากเก่งต้องมีวินั... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299648">
อัลเวสชี้ต่างดาวสอยชุดขาวได้ยิ่งต้องระวัง-เชื่อโด้จิ๋วเด่นมา... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299641">
ไม่ได้แดกตูหร๊อก!น้ามูปัดคอมเมนท์ข่าวปัญหาภายในชุดขาว </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299638">
เหี่ยวกางปีกหนุน'ราฟา'คุมชุดขาวต่อ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299634">
ยังรักกันดี..."อาร์ซา"เผยปรึกษามูช่วยคืนฟอร์ม-ตั้ง... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299628">
คล็อปป์เผยเหตุหงส์จำใจเด้ง'ตาหวาน'พ้นเก้าอี้ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/fra.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299627">
อดีตแข้งฝรั่งเศสแนะ PSG หันหา'หม่อมกัด','เนย์... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299615">
เมอร์สันชี้'พันเชียน'คู่ควรติดธงสิงโต </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ucl.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299614">
มาต้าเน้นผีระเบิดแข้งอัดพีเอสวีตีตั๋วน็อคเอาท์ CL </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299607">
'ลูคาคู'หวั่นความปลอดภัยย้ายครอบครัวหนีเมืองในเบลเ... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299604">
ลาห์มไม่ห่วงสัญญา'เป๊ป'-โวยอดโค้ชต่อคิวรอคุมพี่เสื... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299601">
ไม่ต่อได้ไง!สิงห์ยื่นแสนปอนด์/วีครอ'วิลเลี่ยน'ลงน้... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299599">
คางทูมช่วยเฟิร์ม'โด้จิ๋ว'เปล่าซดเกาเหลา'ราฟา&... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299597">
ลอฟเรนอวย JK เติมความมั่นใจหงส์เต็มเปี่ยม </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299595">
ดิ๊กคอฟเชื่อ'จิ้งจอก'รั้งวาร์ดี้ยากหากทีมใหญ่สนจริ... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/fifa.jpg" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299592">
ปู่เซ็ปป์โอดเครียดจัดเกือบตายคาโรงหมอ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299587">
ตูเร่ลั่นรักมั่น"เรือ"ตั้งเป้าพาทีมเป็นเบอร์ 1 โลก </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299585">
แทนใครดี!?'เฮนโด้'แย้มจ่อคัมแบ็คช่วยหงส์เต็มที </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299575">
เสธ.โต ยันแก้ไขข้อบังคับไม่ได้ ! รอฟีฟ่า-กกท.สั่งฉลุยวีคหน้า </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299568">
ดับเทียน!เมนเดสยัน'โด้'ไม่มีทางไป PSG </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299566">
ข่าวร้ายบ้าง...เหี่ยวเผย'โกเกอแล็ง'พักอย่างน้อย 2 ... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/eng.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299559">
ทันเวลา!ปืนพอมีข่าวดี'แรมซี่ย์'คัมแบ็คร่วมซ้อมกับท... </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/esp.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299555">
ราฟาแอบสะดุ้ง...ราชันเผย'เปเรซ'เตรียมตั้งโต๊ะแถลงข... </a>
</div>
<div class="oldnew_p_tr" style="background: #99C45F;">
<img src="http://www.soccersuck.com/images/ger.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299552">
ใจเย็น!เกิตเซ่ลั่นรอฟิตช่วยพี่เสือเต็มถังหลังปีใหม่ </a>
</div>
<div class="oldnew_p_tr" style="background: #C4E29B;">
<img src="http://www.soccersuck.com/images/thailand.gif" style="margin: 0px 5px -1px 2px;width: 20px;" alt="" /> <a target="_blank" href ="http://www.soccersuck.com/boards/topic/1299525">
"สตูล"แถลงข่าวขอโทษทั้งประเทศ ! รอผลลงโทษจาก ส.บอล </a>
</div>