forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdailystar.co.uk2.html
More file actions
1403 lines (1327 loc) · 98.5 KB
/
Copy pathdailystar.co.uk2.html
File metadata and controls
1403 lines (1327 loc) · 98.5 KB
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><!--OVOLABS_1 START-->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="http://images.dailystar-uk.co.uk/js/jquery.min.js"><\/script>');</script>
<script src='http://cdn.gigya.com/JS/socialize.js?apiKey=3_X9kTtJid0XPDQF-hGyrUNQzw17dkd4R4JN_hPZWT07ppRKkhxAOjte0w7k6v4Blr' type='text/javascript'></script>
<title>Helen Wood cheating boyfriend | Celebs | Showbiz and TV | Latest Celeb Gossip, TV, Film, Pop and Celeb News | Daily Star | Daily Star</title>
<meta name="description" content="Merry belated Christmas, 'tis the season to be jolly 'nd all that. And 'tis the season for all the dirty dawgs to get up to no good.">
<link rel="canonical" href="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column">
<meta name="og:description" content="Merry belated Christmas, 'tis the season to be jolly 'nd all that. And 'tis the season for all...">
<meta name="twitter:description" content="Merry belated Christmas, 'tis the season to be jolly 'nd all that....">
<meta property="og:title" content="'I found cheap eyelashes and texts' Helen Wood speaks out on cheating boyfriend">
<meta name="twitter:title" content="'I found cheap eyelashes and texts' Helen Wood speaks out on cheating boyfriend">
<meta property="twitter:account_id" content="20442930" />
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:url" content="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column">
<meta name="twitter:url" content="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column">
<meta property="og:image" content="http://images.dailystar-uk.co.uk/dynamic/140/photos/474000/173x216/180474.jpg">
<meta name="twitter:image:src" content="http://images.dailystar-uk.co.uk/dynamic/140/photos/474000/620x/180474.jpg">
<meta property="og:site_name" content="Dailystar.co.uk">
<meta property="twitter:domain" content="dailystar.co.uk">
<meta property="og:language" content="en"/>
<meta name="news_keywords" content="entertainment, celebrities, tv, helen wood, helen wood column, helen wood rooney, helen wood daily star" />
<meta property="og:tags" content="entertainment, celebrities, tv, helen wood, helen wood column, helen wood rooney, helen wood daily star"/>
<meta property="article:tag" content="entertainment"/>
<meta property="article:tag" content="celebrities"/>
<meta property="article:tag" content="tv"/>
<meta property="article:tag" content="helen wood"/>
<meta property="article:tag" content="helen wood column"/>
<meta property="article:tag" content="helen wood rooney"/>
<meta property="article:tag" content="helen wood daily star"/>
<meta property="og:section" content="Celebs"/>
<meta property="article:published_time" content="2014-12-29"/>
<meta property="article:modified_time" content="2014-12-31"/>
<meta property="article:expiration_time" content="2015-01-30"/>
<meta property="article:section" content="Celebs"/>
<link href='https://chrome.google.com/webstore/detail/onhilelbkklcedgpkkmobnkfljelgpdj' rel='chrome-webstore-item'/><meta name='parsely-page' content='{"title":"\u0027I found cheap eyelashes and texts\u0027 Helen Wood speaks out on cheating boyfriend","link":"http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column","image_url":"http://images.dailystar-uk.co.uk/dynamic/140/photos/474000/173x216/180474.jpg","type":"post","post_id":"417443","pub_date":"2014-12-29T09:50:00+00:00","section":"Celebs","author":"Helen Wood","tags":["helen wood","helen wood column","helen wood rooney","helen wood daily star"]}'><script type="text/javascript">var ChannelName = 'celebs,showbiz_&_tv,helen_wood,helen_wood_column,helen_wood_rooney,helen_wood_daily_star';</script> <meta name="author" content="Nadia Mendoza"/>
<meta name="msvalidate.01" content="E11C91F3522244AD728A407C255512DF">
<link rel="canonical" href="http://www.dailystar.co.uk/" />
<link href="http://cdn.images.dailystar-uk.co.uk/betafavicon.ico" type="image/x-icon" rel="icon" />
<link href="http://cdn.images.dailystar-uk.co.uk/betafavicon.ico" type="image/x-icon" rel="shortcut icon" />
<link rel="apple-touch-icon" href="http://cdn.images.dailystar-uk.co.uk/appletouch.png" />
<link rel="apple-touch-icon" sizes="72x72" href="http://cdn.images.dailystar-uk.co.uk/appletouch72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="http://cdn.images.dailystar-uk.co.uk/appletouch114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="http://cdn.images.dailystar-uk.co.uk/appletouch144.png" />
<link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/foundation.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/app20141219.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/gigya20141219.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato:400,700,700italic,900,900italic" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-545303-2']);
_gaq.push(['_setCustomVar', 1, 'article type', 'Celebs', 3]);
_gaq.push(['_setLocalRemoteServerMode']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type =
'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://'
: 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
var windowOnload=window.onload||function(){};window.onload=function(){windowOnload();};
</script> <!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
<script>
window.expressoOptions = {
brand: "DS",
headerBackgroundColor: "#282425",
messageBackgroundColor: "#eeeeee",
apiUrl: 'https://api.crm.northernandshell.co.uk/',
contentUrl: "http://cdn.crm.northernandshell.co.uk/cdn/",
sdkVersion: "rc16",
brandOptIn: " Yes, keep me up to date with breaking news, offers, promotions and exclusive content from Daily Star by email.",
nsOptIn: "Yes, I'd like to be contacted by Northern & Shell Companies about their offers, goods and services by email.",
thirdPartyOptIn: "Yes, I'd like to be contacted by selected 3rd parties about their offers, goods and services by email.",
preferencesLink: "/preferences",
promptToOptIn: "You need to opt-in to receive emails from the Daily Star before you can start receiving daily news emails - Click here to opt-in now.",
termsOfUseLink: "http://www.dailystar.co.uk/terms-and-conditions",
privacyPolicyLink: "http://www.dailystar.co.uk/privacy",
screens: {
register: {
caption: 'Register for a Daily Star account',
benefits: [
'Get involved with the discussion and comment on Daily Star articles',
'Get access to exclusive competitions and promotions',
'Get access to daily news emails and receive news you care about directly to your inbox'
]
},
login: {
caption: 'Sign into your Daily Star account'
},
forgotpassword: {
caption: 'Forgotten password'
},
preferencecentre: {
welcomeMessage: "Welcome to the email news preference center. Here you can subscribe to receive daily news emails about topics you care about directly to your inbox."
},
registrationnewsletters: {
caption: 'Thank you for registering!'
},
linkaccounts: {
caption: 'Already a member'
}
},
modules: {
acquisitionModule: {
moduleBackgroundColor: '#ea052c',
headerBackgroundColor: '#d90000',
headerCornerColor: '#9f021e'
}
},
specialInterest: {
label: 'Which football team do you support?',
options: [
{ value: 'Arsenal', displayText: 'Arsenal' },
{ value: 'Aston-Villa', displayText: 'Aston Villa' },
{ value: 'Burnley', displayText: 'Burnley' },
{ value: 'Chelsea', displayText: 'Chelsea' },
{ value: 'Crystal-Palace' , displayText: 'Crystal Palace' },
{ value: 'Everton', displayText: 'Everton' },
{ value: 'Hull-City', displayText: 'Hull City' },
{ value: 'Leicester-City', displayText: 'Leicester City' },
{ value: 'Liverpool', displayText: 'Liverpool' },
{ value: 'Manchester-City', displayText: 'Manchester City' },
{ value: 'Manchester-United', displayText: 'Manchester United' },
{ value: 'Newcastle-United', displayText: 'Newcastle United' },
{ value: 'Queens-Park-Rangers', displayText: 'Queens Park Rangers' },
{ value: 'Southampton', displayText: 'Southampton' },
{ value: 'Stoke-City', displayText: 'Stoke City' },
{ value: 'Sunderland', displayText: 'Sunderland' },
{ value: 'Swansea-City', displayText: 'Swansea City' },
{ value: 'Tottenham-Hotsupur', displayText: 'Tottenham Hotspurs' },
{ value: 'West-Bromwich-Albion', displayText: 'West Bromwich Albion' },
{ value: 'West-Ham', displayText: 'West Ham' }
]
}
};
</script>
<script src="http://cdn.crm.northernandshell.co.uk/cdn/js/expresso-0.1.min.js?rc16"></script><!-- BEGIN Krux Control Tag for "Daily Star" -->
<!-- Source: /snippet/controltag?confid=I34AE6UY&site=Daily%20Star&edit=1 -->
<script class="kxct" data-id="I34AE6UY" data-timing="async" data-version="1.9" type="text/javascript">
window.Krux||((Krux=function(){Krux.q.push(arguments)}).q=[]);
(function(){
var k=document.createElement('script');k.type='text/javascript';k.async=true;
var m,src=(m=location.href.match(/\bkxsrc=([^&]+)/))&&decodeURIComponent(m[1]);
k.src = /^https?:\/\/([^\/]+\.)?krxd\.net(:\d{1,5})?\//i.test(src) ? src : src === "disable" ? "" :
(location.protocol==="https:"?"https:":"http:")+"//cdn.krxd.net/controltag?confid=I34AE6UY"
;
var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(k,s);
}());
</script>
<!-- END Krux Controltag -->
<!-- Start: GPT Async -->
<script type='text/javascript'>
var gptadslots=[];
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
function ISMScreenRes() {
if(screen.width >= 1280 ) {
return( "true" );
} else {
return( "false" );
}
}
</script>
<script>
window.Krux||((Krux=function(){Krux.q.push(arguments);}).q=[]);
(function(){
function retrieve(n){
var m, k='kx'+n;
if (window.localStorage) {
return window.localStorage[k] || "";
} else if (navigator.cookieEnabled) {
m = document.cookie.match(k+'=([^;]*)');
return (m && unescape(m[1])) || "";
} else {
return '';
}
}
Krux.user = retrieve('user');
Krux.segments = retrieve('segs') && retrieve('segs').split(',') || [];
})();
</script>
<script type="text/javascript">
var crtg_content = crtg_content || '';
//Adslot 1 declaration
gptadslots[1]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[1,1],[970,250],[900,250],[728,90]],'div-gpt-ad-732015591060082986-1').setTargeting('pos',['top']).addService(googletag.pubads());
//Adslot 2 declaration
gptadslots[2]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[300,250],[300,600]],'div-gpt-ad-732015591060082986-2').setTargeting('pos',['right']).addService(googletag.pubads());
//Adslot 3 declaration
gptadslots[3]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[300,250]],'div-gpt-ad-732015591060082986-3').setTargeting('pos',['right1']).addService(googletag.pubads());
//Adslot 4 declaration
gptadslots[4]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[300,250]],'div-gpt-ad-732015591060082986-4').setTargeting('pos',['right2']).addService(googletag.pubads());
//Adslot 5 declaration
gptadslots[5]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[970,250],[900,250],[728,90]],'div-gpt-ad-732015591060082986-5').setTargeting('pos',['top1']).addService(googletag.pubads());
//Adslot 6 declaration
gptadslots[6]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[1,1]],'div-gpt-ad-732015591060082986-6').setTargeting('pos',['middle']).addService(googletag.pubads());
//Adslot 7 declaration
gptadslots[7]= googletag.defineSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', [[620,80]],'div-gpt-ad-732015591060082986-7').setTargeting('pos',['centre']).addService(googletag.pubads());
//Adslot oop declaration
gptadslots[0] = googletag.defineOutOfPageSlot('/34722903/DailyStar/Showbiz_TV/Showbiz', 'div-gpt-ad-732015591060082986-oop').setTargeting('pos',['outofpage']).addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.pubads().setTargeting('pagetype',['article']).setTargeting('articleid',['417443']).setTargeting('keywords',['entertainment','celebrities','tv','helen wood','helen wood column','helen wood rooney','helen wood daily star']).setTargeting('device',['Desktop']).setTargeting('inskin_yes', ISMScreenRes());
googletag.pubads().setTargeting("ksg", Krux.segments);
googletag.pubads().setTargeting("kuid", Krux.user);
googletag.pubads().setTargeting("khost", encodeURIComponent(location.hostname));
var crtg_split = crtg_content.split(';');
for (var i=1;i<crtg_split.length;i++){
googletag.pubads().setTargeting ("" + (crtg_split[i-1].split('='))[0] + "", "" + (crtg_split[i-1].split('='))[1] + "");
};
googletag.pubads().enableSyncRendering();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
</script>
<!-- End: GPT --></head>
<body itemscope itemtype="http://schema.org/WebPage">
<!-- Beginning Async AdSlot oop for Ad unit DailyStar/Showbiz_TV/Showbiz ### size: -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[0]]) -->
<div id='div-gpt-ad-732015591060082986-oop'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-732015591060082986-oop');
</script>
</div>
<!-- End AdSlot oop -->
<!-- container -->
<div class="container" id="maincontainer">
<div style="text-align:center;margin:0 auto;" id="superbanner">
<!-- Beginning Async AdSlot 1 for Ad unit DailyStar/Showbiz_TV/Showbiz ### size: [[1,1],[728,90],[900,250],[970,250]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[1]]) -->
<div id='div-gpt-ad-732015591060082986-1' style="display:inline-block;">
<script type='text/javascript'>
googletag.display('div-gpt-ad-732015591060082986-1');
</script>
</div>
<!-- End AdSlot 1 -->
</div>
<!--OVOLABS_1 END-->
<header class="row page-header">
<div class="twelve columns">
<div class="row">
<div class="top-header clearfix">
<div class="columns three">
<h1 class="logo">
<a href="/">
<img src="http://cdn.images.dailystar-uk.co.uk/img/static/daily-star.png" alt="DailyStar" title="Daily Star">
</a>
</h1>
</div>
<nav class="columns nine">
<ul class="header-small-nav right">
<li class="site-search right">
<form action="http://www.dailystar.co.uk/search" id="header_search_form">
<input class="left" type="search" name="query" placeholder="Search...">
<button class="left link-button search-button" type="submit"><i class="icon-magnifier"></i></button>
</form>
</li>
<li class="right">
<div id="nse-widget"></div>
</li> <li class="hide-on-phones right"><a href="http://www.dailystar.co.uk/feeds" class="link-button rss"><i class="icon-rss"></i></a></li>
<li class="right"><a href="https://plus.google.com/102878321884201520955/posts" class="link-button google" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://plus.google.com/102878321884201520955/posts')"><i class="icon-google-plus"></i></a></li>
<li class="right"><a href="https://twitter.com/daily_star" class="link-button twitter" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://twitter.com/daily_star')"><i class="icon-twitter"></i></a></li>
<li class="right"><a href="https://www.facebook.com/thedailystar" class="link-button facebook" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://www.facebook.com/thedailystar')"><i class="icon-facebook"></i></a></li>
</ul>
<ul class="clearRight header-small-nav right">
<li class="sep right"><a href="http://www.dailystar.co.uk/our-paper">Our Paper</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/paper-archive">Paper Archive</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/apps">Our Apps</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/horoscopes">Daily Horoscope</a></li>
<li class="weather right">
<a href="http://www.dailystar.co.uk/weather" style="background: url('http://cdn.images.dailystar-uk.co.uk/img/weather/png/52x52/28.png') no-repeat scroll 0 0;">
<span>London, UK</span>
<b>14°</b>
</a>
</li>
</ul>
</nav>
</div>
</div>
<nav class="row sections main-navi">
<div class="wrapper">
<ul class="main-nav has-sub-nav">
<li><a href="/" class="item"><span>Home</span></a></li>
<li><a href="/news" class="item"><span>News</span></a></li>
<li><a href="/sport" class="item"><span>Sport</span></a></li>
<li><a href="/showbiz-and-tv" class="active item"><span>Showbiz & TV</span></a></li>
<li><a href="/travel" class="item"><span>Travel</span></a></li>
<li><a href="/life-style" class="item"><span>Life & Style</span></a></li>
<li><a href="/pics" class="item"><span>Pics</span></a></li>
<li><a href="/vids" class="item"><span>Vids</span></a></li>
<li><a href="http://games.dailystar.co.uk" class="item" rel="nofollow" target="_blank"><span>Games</span></a></li>
</ul>
</div>
<div class="sub-wrapper">
<ul class="sub-nav">
<li><a href="/showbiz" class="active item"><span>Celebs</span></a></li>
<li><a href="/showbiz-tv/hot-tv" class="item"><span>Hot TV</span></a></li>
<li><a href="/tv/x-factor" class="item"><span>X Factor</span></a></li>
<li><a href="/strictly" class="item"><span>Strictly</span></a></li>
<li><a href="/showbiz-tv/im-a-celebrity-get-me-out-of-here" class="item"><span>I'm A Celebrity</span></a></li>
<li><a href="/showbiz/towie" class="item"><span>TOWIE</span></a></li>
<li><a href="/showbiz/goss" class="item"><span>Off The Record</span></a></li>
<li><a href="/showbiz-tv/music" class="item"><span>Music</span></a></li>
<li><a href="/movies" class="item"><span>Movies</span></a></li>
<li><a href="/showbiz/rehab" class="item"><span>Rehab</span></a></li>
</ul>
</div>
</nav>
</div>
<div class="twelve columns" style="background-color:#f7f5f5; margin:0 auto;"></div>
<div class="twelve columns breadcrumbsShell">
<ul class="breadcrumbs" id="breadCrumb"><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="first"><a href="/" itemprop="url"><span itemprop="title">Home</span></a></li><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/showbiz-and-tv" itemprop="url"><span itemprop="title">Showbiz & TV</span></a><span class="breadcrumbs-sep"></span></li><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/showbiz" itemprop="url"><span itemprop="title">Celebs</span></a><span class="breadcrumbs-sep"></span></li><li class="last">'I found cheap eyelashes and texts' Helen Wood speaks out on cheating boyfriend<span class="breadcrumbs-sep"></span></li></ul> </div>
</header>
<!--OVOLABS_2 START-->
<div class="row page-content">
<!--OVOLABS_2 END-->
<div class="twelve columns flash-msg"> <div class="OUTBRAIN" data-widget-id="AR_21" data-src="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column" data-ob-template="DailyStar"></div>
</div>
<!--OVOLABS_3 START-->
<div class="row">
<!--OVOLABS_3 END-->
<!--OVOLABS_4 START-->
<article class="eight four-mobile columns story" style="margin-left:0;" id="singleArticle" itemscope itemtype="http://schema.org/Article" itemprop="mainContentOfPage" role="main">
<header>
<!--OVOLABS_4 END-->
<!--OVOLABS_5 START-->
<h1 class="clear" itemprop="headline">'I found cheap eyelashes and texts' Helen Wood speaks out on cheating boyfriend</h1>
<p class="lead" class="clearfix">Merry belated Christmas, 'tis the season to be jolly 'nd all that. And 'tis the season for all the dirty dawgs to get up to no good.</p>
<!--OVOLABS_5 END-->
<div class="social-panel">
<div id="componentDiv2"></div>
</div>
<!--OVOLABS_6 START-->
<div class="byline publication-date">
By <a class="author" href="/journalists/nadia-mendoza">Helen Wood</a>
<span class="sep">/</span>
<time pubdate datetime="2014-12-29T09:50:00Z">Published <span itemprop="datePublished">29th December 2014</span></time>
</div>
</header>
<div class="story-content clearfix">
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/140/photos/471000/180471.jpg" alt="helen wood">
<span class="caption">GET SOME RESPECT! Helen Wood says NEVER tolerate a cheat [DS] </span>
</p>
</section>
<section class="text-description">
<p>The holidays come with many positives – families, no work, copious amounts of cheese (literally, eating it and the corny movies variety) – but they also come with a lot of naughtiness.</p><p>When I say naughtiness, I don’t mean kids unwrapping their pressies early. I mean the parties where everyone is obliterated and mauling one another (with a wedding ring on their finger).</p><p>Last week, I was sat in the local as an office party was going on beside me and my mates, just minding our own biz.</p><p>Then a lad, about 25, sits down on the stool next to us before a rather trollied lass plonked her unsteady behind down on his knee.</p><p>They were both slurring their words when we overheard the girl say, "Weeeell, you've got a girlfriend and I'm not single, but so what?!" Lovely.</p><p>I especially loved her discretion, slap bang in the middle of the pub. She's basically got a wide-on over another guy while her other half was probably at home stuffing the turkey.</p><p>Stats show that cheating increases at this time of year, instead of secret Santa we have the secret s***gers too. Jokes aside, I think it's disgusting.</p><p>The classic excuse, 'it meant nothing'. Well, that's more of a f***ing insult! If someone is going to cheat, there must be some feelings or strong attraction, surely.</p><p>Another lame backtrack is blaming dropping your chinos or lifting your skirt on being drunk.</p></section>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/140/photos/475000/180475.jpg" alt="helen wood">
<span class="caption">BEACH BABE: Helen snaps a selfie in Thailand [DS] </span>
</p>
</section>
<section class="text-description">
<p>I don’t understand how anyone in their right mind gets THAT wasted that they don’t know what they're doing.</p><p>Coming from someone who every time they go out they get sloshed, I still don’t wake up the next morning thinking, 'Oh my God, who have I slept with?'</p><p>I've also never woken up after a night out thinking, 'S**t, did I s**g someone behind my partner's back last night?'</p><p>I think if I ever did wake up after doing that, I'd give up alcohol altogether and reassess my morals.</p><p>Alcohol is just used as an excuse, b*****ks do people only get these urges to cheat when under the influence. If you're going to cheat, you'll do it sober or drunk.</p><p>Despite the trolls (who really should make getting out more their primary new year resolution) blasting me with 'You can't talk, homewrecker/s**g/blah blah' – I CAN talk.</p><p>My views on cheating are extremely strong and always have been. Yeah, I've done my fair share of messing around and one-night stands, but I was never hurting anyone.</p><p>When I was younger, it didn’t really bother me if I knew a guy had a girlfriend, if I didn’t know the girl, it didn’t effect me. That was my opinion at the time.</p></section>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/140/photos/470000/180470.jpg" alt="helen wood">
<span class="caption">CHRISTMAS ONESIE: Helen celebrated in style [DS] </span>
</p>
</section>
<section class="text-description">
<p>Since getting older, my feelings have changed. I think if I gave my number out knowing that the lad has a chick, it'll bite me back on the a**e at some point in life.</p><p>Although I've been the girl to cheat with men that are occupied, I'd never be able to do that myself.</p><p>Having found cheap eyelashes, texts and lip-glosses in and around my ex’s things, it didn’t take a genius to work out what he’d been up to. Let's just say I've put that one to bed now.</p></section>
<section class="related-articles">
<header>Related articles</header>
<ul>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/showbiz/416610/Helen-Wood-domestic-violence-column" itemprop="name">'He tried to strangle me' Helen Wood opens up on domestic violence </a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/showbiz/415383/Helen-Wood-column-fetish-couple-treat-teddy-as-child" itemprop="name">'They changed its nappy' Helen Wood on fetish duo who treat teddy as CHILD</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/showbiz/412117/A-day-in-the-life-of-Helen-Wood-Killing-Kittens" itemprop="name">A day in the life of: Inside the 'sexual elite' swingers club with Helen Wood </a>
</li>
</ul>
</section>
<div class="jsElement"><!-- Start of Brightcove Player -->
<div style="display:none">
</div>
<!--
By use of this code snippet, I agree to the Brightcove Publisher T and C
found at https://accounts.brightcove.com/en/terms-and-conditions/.
-->
<script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>
<object id="myExperience3613800351001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="640" />
<param name="height" value="360" />
<param name="playerID" value="2762778358001" />
<param name="playerKey" value="AQ~~,AAACT2hWexE~,QV-ElXQT89VR0gsF5K_BsVW0r8KEzjyr" />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
<param name="dynamicStreaming" value="true" />
<param name="@videoPlayer" value="3613800351001" />
</object>
<!--
This script tag will cause the Brightcove Players defined above it to be created as soon
as the line is read by the browser. If you wish to have the player instantiated only after
the rest of the HTML is processed and the page load is complete, remove the line.
-->
<script type="text/javascript">brightcove.createExperiences();</script>
<!-- End of Brightcove Player --></div>
<section class="text-description">
<p>If I felt in any way sexual towards another guy, and I don’t mean looking at a fittie in a bar, it's time to leave. Wanting to bed another man clearly means my current partner is not the one I want to have sex with for the rest of my life – SO WHAT IS THE POINT IN BEING THERE?!</p><p>One thing that actually grates on me, is when a couple 'move on' from cheating: how the f**k do you move on?</p><p>I don’t care if it's texting, kissing, s***ging whatever, it's all still cheating. A text usually leads to sex, otherwise why else do people do this?</p><p>You don’t start the ball rolling for a hot chocolate in Starbucks.</p></section>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/140/photos/476000/180476.jpg" alt="helen wood">
<span class="caption">STAY DIGNIFIED! Helen has fallen victim to cheating [DS] </span>
</p>
</section>
<section class="text-description">
<p>I pity girls that stick with guys that mess around, I mean, I can never ever imagine getting back into bed with a bloke who had his penis in another girl. What do you talk about?</p><p>'So, erm, did she have a Brazilian or a Hollywood?' 'Does she spit or swallow?' 'Who went on top?'</p><p>It's just bizarre, get a grip! I couldn’t even speak to a guy who had cheated on me, who had stripped me of dignity, trampled on my respect and took me for a fool.</p><p>There is no moving on from there.</p><p>With so many guys and girls in the world who are loyal, why waste your time on one who can't even keep an eyeball on you without the other wandering.</p><p>We’re approaching a new year, thank God I'm approaching it single, unlike some of the desperadoes I know who will celebrate being a mug through to 2016 and onwards, not me thanks.</p><p>Have a fab new year and keep it in your pants if you're otherwise engaged. Or if you're the victim of someone doing the dirty, you're worth more than that. Time to skedaddle.</p><p>Love always, Hels Bels xxx</p></section> </div>
<script>Expresso.Acquisition.createFor({ metaTag: 'keywords' });</script>
<footer>
<!-- AdSlot 6 Called -->
<!--OVOLABS_6 END-->
<div class="social-panel">
<div id="componentDiv"></div>
</div>
<!--OVOLABS_7 START-->
<section class="outbrain-news">
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column" data-widget-id="AR_16" data-ob-template="DailyStar" ></div>
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column" data-widget-id="AR_17" data-ob-template="DailyStar" ></div>
</section>
<section class="outbrain-news">
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column" data-widget-id="AR_18" data-ob-template="DailyStar" ></div>
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/showbiz/417443/Helen-Wood-cheating-boyfriend-column" data-widget-id="AR_19" data-ob-template="DailyStar" ></div>
<script type="text/javascript" src="http://widgets.outbrain.com/outbrain.js"></script>
</section>
<!--OVOLABS_7 END-->
<div class="p402_premium"></div>
<a name="comments" id="comments"></a>
<div id="gigyacomments">
<header class="box-header">
<span class="main-label">Comments</span>
</header> <div id='commentsDiv'></div>
</div>
<!--OVOLABS_8 START-->
</footer>
</article>
<aside id="rhSide" class="rh-side four three-mobile columns">
<div class="rh type1">
<!-- Beginning Async AdSlot 2 for Ad unit DailyStar/Showbiz_TV/Showbiz ### size: [[300,250],[300,600]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[2]]) -->
<div id='div-gpt-ad-732015591060082986-2'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-732015591060082986-2');
</script>
</div>
<!-- End AdSlot 2 -->
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/932000/300x200/181932.jpg" alt="Myleen Klass"> <h4 class="caption"itemprop="name">SIZZLING celeb babes beat the January blues by jetting to warmer climes</h4>
</div>
<p class="lead">IT’S the most depressing time of the year. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type1">
<!-- Beginning Async AdSlot 3 for Ad unit DailyStar/Showbiz_TV/Showbiz ### size: [[300,250]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[3]]) -->
<div id='div-gpt-ad-732015591060082986-3'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-732015591060082986-3');
</script>
</div>
<!-- End AdSlot 3 --> </div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/908000/300x200/181908.jpg" alt="Rita Ora"> <h4 class="caption"itemprop="name">Blonde bombshell Rita Ora is ready to spice up The Voice</h4>
</div>
<p class="lead">RITA Ora is set to join the judging panel on The Voice but it is her knockout body that is stealing the show right now. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/904000/300x200/181904.jpg" alt="Gwyneth Paltrow"> <h4 class="caption"itemprop="name">Lose 840 pounds a week on Gwyneth's crazy new diet... That's £ NOT lb</h4>
</div>
<p class="lead">GWYNETH Paltrow has unveiled a New Year detox diet that would blow an average family’s food budget. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/849000/300x200/181849.jpg" alt="Ray Winstone"> <h4 class="caption"itemprop="name">Ray Winstone reveals his wardrobe fav: A pair of 15-year-old skintight gold trunks</h4>
</div>
<p class="lead">HARD man actor Ray Winstone has revealed his wardrobe favourite... a pair of skintight gold trunks he has worn for nearly fifteen years.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/876000/300x200/181876.jpg" alt="Madonna's Rebel Heart album cover and Martin Luther King"> <h4 class="caption"itemprop="name">‘It’s pathetic and disrespectful’ Fans turn on Madonna over controversial Luther King pic</h4>
</div>
<p class="lead">MADONNA has sparked outrage after using altered images of Martin Luther King and Nelson Mandela to promote her new album. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/861000/300x200/181861.jpg" alt="Katie Hopkins"> <h4 class="caption"itemprop="name">‘My time at A&E was not alcohol related’ Katie Hopkins in New Year hospital dash</h4>
</div>
<p class="lead">RENT-A-GOB Katie Hopkins has revealed she spent New Year’s Day in hospital.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/816000/300x200/181816.jpg" alt=""> <h4 class="caption"itemprop="name">Next step nudist beach? Jodie Marsh continues boobylicious bikini display</h4>
</div>
<p class="lead">IF you have been hiding underneath a rock for the last week – you may be unaware that Jodie Marsh's bikini body has set the world alight.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type1">
<!-- Beginning Async AdSlot 4 for Ad unit DailyStar/Showbiz_TV/Showbiz ### size: [[728,90],[900,250],[970,250]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[4]]) -->
<div id='div-gpt-ad-732015591060082986-4'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-732015591060082986-4');
</script>
</div>
<!-- End AdSlot 4 -->
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/815000/300x200/181815.jpg" alt="Paula Lane as Kylie Platt in Coronation Street"> <h4 class="caption"itemprop="name">Baby joy for Corrie’s Kylie as actress Paula Lane welcomes first child</h4>
</div>
<p class="lead">CORONATION Street babe Paula Lane has given birth to a baby boy. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type1">
<script type="text/javascript"
src="http://cloud.topfox.co.uk/a/site/40/widget_38.js"></script> </div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/782000/300x200/181782.jpg" alt="Kim Kardashian sex tape with Ray J"> <h4 class="caption"itemprop="name">Kim Kardashian sex tape co-star calls 911 in murder-suicide scare</h4>
</div>
<p class="lead">THE man who made Kim Kardashian famous, musician Ray J, lodged a desperate call to emergency services in a murder-suicide scare.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/750000/300x200/181750.jpg" alt=""> <h4 class="caption"itemprop="name">RiRi's ripped! Rihanna flaunts sexy six-pack in teeny bikini</h4>
</div>
<p class="lead">CHART-TOPPING star Rihanna has just provided fans with a whole lot of gymspiration thanks to her washboard abs.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/708000/300x200/181708.jpg" alt=""> <h4 class="caption"itemprop="name">Happy NUDE year! Tara Reid shares completely starkers selfie</h4>
</div>
<p class="lead">WHILE Tara Reid is no stranger to scantily-clad solo snaps – she does normally shield her modesty with a skimpy bikini.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type3">
<section class="aside single-story">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="relative" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/689000/300x200/181689.jpg" alt=""> <h4 class="caption"itemprop="name">'One Direction to lose fans & Kimye will split' Horseface Hopkins' 2015 predictions</h4>
</div>
<p class="lead">SAY what you want about the moaning old horseface, but at least Katie Hopkins is consistent.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</div>
</section>
</div>
<div class="rh type1">
<div class="OUTBRAIN" data-src="DROP_PERMALINK_HERE" data-widget-id="SB_1" data-ob-template="DailyStar" ></div>
<script type="text/javascript" async="async" src="http://widgets.outbrain.com/outbrain.js"></script> </div>
<div class="rh type1">
<div class="OUTBRAIN" data-widget-id="SB_2" data-src="INSERT_PERMALINK_HERE" data-ob-template="DailyStar"></div>
<script type="text/javascript" src="http://widgets.outbrain.com/outbrain.js"></script> </div>
<div class="rh type6">
<section class="aside section-stories">
<header>
<h4 class="section-title">
<span class="left">Most popular today</span>
</h4>
</header>
<ul class="stories2">
<li itemscope itemtype="http://schema.org/Article">
<span class="number">#1</span>
<a class="story" href="http://www.dailystar.co.uk/sport/football/418138/Man-Utd-News-Big-announcement-40m-Hummels-torn-Ronaldo-offer-Jones-demands-more">
<span class="photo size-100x100">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/58/photos/859000/100x100/181859.jpg" alt="Man Utd News: Big announcement, £40m Hummels torn, Ronaldo offer, Jones demands more"> </span>
<h5 class="title" itemprop="name">Man Utd News: Big announcement, £40m Hummels torn, Ronaldo offer, Jones demands more</h5>
</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<span class="number">#2</span>
<a class="story" href="http://www.dailystar.co.uk/news/latest-news/418174/So-Long-Stevie-Gerrard-says-GOODBYE-Liverpool-HELLO-90-million">
<span class="photo size-100x100">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/1/photos/899000/100x100/181899.jpg" alt="So Long Stevie! Gerrard says GOODBYE Liverpool, HELLO £90 million"> </span>
<h5 class="title" itemprop="name">So Long Stevie! Gerrard says GOODBYE Liverpool, HELLO £90 million</h5>
</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<span class="number">#3</span>
<a class="story" href="http://www.dailystar.co.uk/sport/football/418183/TRANSFER-NEWS-Man-Utd-target-s-deal-Arsenal-and-Chelsea-EXITS-Liverpool-eye-PSG-ace">
<span class="photo size-100x100">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/58/photos/910000/100x100/181910.jpg" alt="TRANSFER NEWS: Man Utd target's deal, Arsenal and Chelsea EXITS, Liverpool eye PSG ace"> </span>
<h5 class="title" itemprop="name">TRANSFER NEWS: Man Utd target's deal, Arsenal and Chelsea EXITS, Liverpool eye PSG ace</h5>
</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<span class="number">#4</span>
<a class="story" href="http://www.dailystar.co.uk/sport/football/418197/EXCLUSIVE-Ex-Chelsea-star-Frank-Lampard-in-talks-over-long-term-deal-at-Man-City">
<span class="photo size-100x100">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/58/photos/939000/100x100/181939.jpg" alt="EXCLUSIVE: Ex-Chelsea star Frank Lampard in talks over long-term deal at Man City"> </span>
<h5 class="title" itemprop="name">EXCLUSIVE: Ex-Chelsea star Frank Lampard in talks over long-term deal at Man City</h5>
</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<span class="number">#5</span>
<a class="story" href="http://www.dailystar.co.uk/tech/418136/GTA-5-featured-playlists-Rockstar-double-cash-all-weekend">
<span class="photo size-100x100">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/23/photos/852000/100x100/181852.jpg" alt="GTA 5 featured playlists Rockstar double cash all weekend"> </span>
<h5 class="title" itemprop="name">GTA 5 featured playlists Rockstar double cash all weekend</h5>
</a>
</li>
</ul>
</section>
</div>
</aside>
<img src="/trackings/addview/417443/140/0/0/0/0/180474/19867/1" border="0" />
<!--OVOLABS_8 END-->
<!--OVOLABS_9 START-->
</div>
</div>
<div class="SegmentPixel">
</div> <!--OVOLABS_9 END-->
<footer class="row page-footer">
<section class="twelve columns">
<div class="row sections-container">
<div class="twelve columns">
<section class="sections in-row-7">
<div class="section-header">
<a href="/">Home</a>
</div>
<div class="daily-star-cover">
<a href="/our-paper"><img src="http://images.dailystar-uk.co.uk/dynamic/pixfeed/covers/81x101/front_2015-01-03.jpg" alt="daily-star-paper-front" width="80" height="101"></a>
</div>
<nav class="section-nav">
<ul class="subsections">
<li>
<a href="/paper-archive">Paper Archive</a>
</li>
<li>
<a href="/weather">Weather</a>
</li>
<li>
<a href="/our-paper">Our Paper</a>
</li>
<li>
<a href="/sitemap">Sitemap</a>
</li>
<li><a href="http://www.dailystar.co.uk/contact">Contact</a></li>
<li><a href="http://www.dailystar.co.uk/advertise">Advertise</a></li>
<li><a href="http://www.dailystar.co.uk/sitearchive">Site Archive</a></li>
</ul>
</nav>
</section>
<section class="sections in-row-7">
<div class="section-header">
<a href="/news">News</a>
</div>
<nav class="section-nav">
<ul class="subsections">
<li>
<a href="/news/latest-news">Latest News</a>
</li>
<li>
<a href="/news/weird-news">Weird News</a>
</li>
<li>
<a href="/sunday">Daily Star Sunday</a>
</li>
<li>
<a href="/columnists">Columnists</a>
</li>
<li>
<a href="/journalists">Journalists</a>
</li>
</ul>
</nav>
</section>
<section class="sections in-row-7">
<div class="section-header">
<a href="/sport">Sport</a>
</div>
<nav class="section-nav">
<ul class="subsections">
<li>
<a href="/sport/football">Football</a>
</li>
<li>
<a href="/rugby-league">Rugby League</a>
</li>
<li>
<a href="/sport/horse-racing">Racing</a>
</li>
<li>
<a href="/sport/motorsport">Motorsport</a>
</li>
<li>
<a href="/boxing">Boxing</a>
</li>
<li>
<a href="/sport/other-sports">Other</a>
</li>
<li>
<a href="/darts">Darts</a>
</li>
</ul>
</nav>
</section>
<section class="sections in-row-7">
<div class="section-header">
<a href="/showbiz-and-tv">Showbiz & TV</a>
</div>
<nav class="section-nav">
<ul class="subsections">
<li>
<a href="/showbiz">Celebs</a>
</li>
<li>
<a href="/showbiz-tv/hot-tv">Hot TV</a>
</li>
<li>
<a href="/tv/x-factor">X Factor</a>
</li>
<li>
<a href="/strictly">Strictly</a>
</li>
<li>
<a href="/showbiz-tv/im-a-celebrity-get-me-out-of-here">I'm A Celebrity</a>
</li>
<li>
<a href="/showbiz/towie">TOWIE</a>
</li>
<li>
<a href="/tv/big-brother">Big Brother</a>
</li>
<li>
<a href="/showbiz/goss">Off The Record</a>
</li>
<li>
<a href="/showbiz-tv/music">Music</a>