forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobalnews.ca2.html
More file actions
1874 lines (1766 loc) · 111 KB
/
Copy pathglobalnews.ca2.html
File metadata and controls
1874 lines (1766 loc) · 111 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>
<!--[if IE 6]><html class="is_ie6 is_ie" lang="en"><![endif]-->
<!--[if IE 7]><html class="is_ie7 is_ie" lang="en"><![endif]-->
<!--[if IE 8]><html class="is_ie8 is_ie" lang="en"><![endif]-->
<!--[if IE 9]><html class="is_ie9 is_ie enhanced" lang="en"><![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) | !(IE 9) ]><!--><html lang="en" class="enhanced" ><!--<![endif]-->
<head>
<script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>
<meta charset="UTF-8" />
<meta name="robots" content="noodp">
<meta name="msvalidate.01" content="3D2267A5B4A24BDBB6BC2B814502958A" />
<meta name="p:domain_verify" content="5f93bd32b1e65381fb7e5f011b09a343"/>
<meta id="metaViewport" name="viewport" content="width=device-width, initial-scale=1">
<link href="https://plus.google.com/+GlobalnewsCaHeadlines/posts" rel="publisher"/>
<title>‘Quad Squad’ born in Utah | Watch News Videos Online</title>
<meta name="title" content="‘Quad Squad’ born in Utah | Watch News Videos Online" />
<link href="http://globalnews.ca/video/1747659/quad-squad-born-in-utah" rel="canonical"/>
<meta name="description" content="Watch ‘Quad Squad’ born in Utah Video Online, on GlobalNews.ca" />
<meta property="fb:app_id" content="318812448281278"/>
<link type="image/jpg" rel="image_src" href="http://i0.wp.com/media.globalnews.ca/videostatic/140/479/quads_born_qtp_640x360_378103875844.jpg?w=500"/>
<!-- og: starts here -->
<meta property="og:title" content="‘Quad Squad’ born in Utah | Watch News Videos Online"/>
<meta property="og:description" content="Watch ‘Quad Squad’ born in Utah Video Online, on GlobalNews.ca"/>
<meta property="og:type" content="video"/>
<meta property="og:url" content="http://globalnews.ca/video/1747659/quad-squad-born-in-utah/"/>
<meta property="og:site_name" content="Global News"/>
<meta property="og:image" content="http://i0.wp.com/media.globalnews.ca/videostatic/140/479/quads_born_qtp_640x360_378103875844.jpg?w=500"/>
<!-- og: ends here -->
<!-- twitter: starts here -->
<meta name="twitter:title" content="‘Quad Squad’ born in Utah | Watch News Videos Online"/>
<meta name="twitter:url" content="http://globalnews.ca/video/1747659/quad-squad-born-in-utah/"/>
<meta name="twitter:description" content="Watch ‘Quad Squad’ born in Utah Video Online, on GlobalNews.ca"/>
<meta name="twitter:card" content="player"/>
<meta name="twitter:player" content="http://globalnews.ca/video/embed/1747659/"/>
<meta name="twitter:player:width" content="1280"/>
<meta name="twitter:player:height" content="720"/>
<meta name="twitter:image" content="http://i0.wp.com/media.globalnews.ca/videostatic/140/479/quads_born_qtp_640x360_378103875844.jpg?w=500"/>
<!-- twitter: ends here -->
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="http://globalnews.ca/xmlrpc.php">
<script src='//r-login.wordpress.com/remote-login.php?action=js&host=globalnews.ca&id=43869434&t=1420285680&back=http%3A%2F%2Fglobalnews.ca%2Fvideo%2F1747659%2Fquad-squad-born-in-utah%2F' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
/* ]]> */
</script>
<link rel='stylesheet' id='all-css-0' href='http://s2.wp.com/_static/??-eJx9juEKwyAMhF9oLhRG2z9jz2I1s7bRyIzz9WcHZYXC/l2S+y4HNSnDUTAKhKISFedjBvIrZlhQkjar+k5Xk/MFDvaJ2P0Adg4tF1FPJuIK1VuHcoIOPwy/sO1D0rI5AlqvkTA02z8spH6nNjm3guduMrecDG+fIM+6Kkc8aYpYM/hoqNh23AOlIoqeCA9yC3yEe3frxq4fxqFfPnPfbv0=' type='text/css' media='all' />
<link rel='stylesheet' id='screen-css-0' href='http://s0.wp.com/_static/??-eJytlE1OxDAMhS9EG41gkLpALFiPxBXc1J0aEjtKnKmG02PBiiVyF0mk/Hx68bMd9jJEYUXWoBtmbOFGJbQN9uGaZIbEuLcQmw3hCBpYaoZEXzgmmsdMPNrhQ/g3Z4ZGcYSUHIzf3eakJLhLVyekUNRecSWj+AKToXnFZOTuRJCt3sCuIorV647YTMIXKE5ShCq9YbJnOQsfRVOE5v5lU6n3iyw9oZOkFXkhvnoFFfNfKi5OzlwRPv1ywKtDdB1g8Wa07qT+lF6thXqVFLHnPsQmdilWRG8p3GhBOaqcjoD9MN6tr7ut6mUBxTfp7Le9SST4Y9prfjk9nabH8/N0nj6+AYQY128=' type='text/css' media='screen' />
<link rel='stylesheet' id='screenandmin-width36em-css-0' href='http://s0.wp.com/_static/??-eJytzkEOgkAMheELCQ1BiS6MJ/AQA1NgdKYl08KE28vWpamLt3rJlx/KUg1MiqSgMyYU2MICMrtSTZF7FwmLwCDHmAankJxoXYLHOgWqj+MEPxvR7byalYS0Wo2RWTFbFVHO+5P9GtFKaUbygSZz0sIknNFboT6je/8hyJlLRs5JvpBHujfnprt11/bSvj5xpAz6' type='text/css' media='screen and (min-width:36em)' />
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-normalize-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/normalize.lib.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-basic-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/basic.all.ie.css?m=1387384043g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-globals-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/globals.all.ie.css?m=1419272657g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-layout-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/layout.all.ie.css?m=1417186355g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-picturefill-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/picturefill.lib.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-mast-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/mast.all.ie.css?m=1414508106g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-menu-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/menu.all.ie.css?m=1408718143g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-icons-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/icons.all.ie.css?m=1412792190g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-footer-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/footer.all.ie.css?m=1414093693g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-locationMap-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/locationMap.all.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-carousel-common-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/carousel-common.all.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-carousel-teaser-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/carousel-teaser.all.ie.css?m=1415776743g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-storyModule-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/storyModule.all.ie.css?m=1419356959g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-trending-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/trending.all.ie.css?m=1398373374g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-sponsored-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/sponsored.all.ie.css?m=1392051275g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-breaking-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/breaking.all.ie.css?m=1395250584g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-ad-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/ad.all.ie.css?m=1395854650g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-otf-ads-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/otf-ads.all.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-twitter-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/twitter.all.ie.css?m=1414787124g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-forms-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/forms.all.ie.css?m=1411569315g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-poll-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/poll.all.ie.css?m=1394217690g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-homescreen-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/homescreen.all.ie.css?m=1417555925g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-video-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/video.all.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-carousel-video-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/carousel-video.all.ie.css?m=1393600670g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-videoPlayer-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/videoPlayer.all.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-updateCounter-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/updateCounter.all.ie.css?m=1386948619g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-social-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/social.all.ie.css?m=1417533936g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-mast-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/mast.wide.ie.css?m=1414508106g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-layout-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/layout.wide.ie.css?m=1416968353g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-menu-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/menu.wide.ie.css?m=1393521981g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-footer-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/footer.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-storyModule-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/storyModule.wide.ie.css?m=1393424603g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-trending-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/trending.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-sponsored-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/sponsored.wide.ie.css?m=1389020413g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-breaking-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/breaking.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-ad-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/ad.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-forms-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/forms.wide.ie.css?m=1389036436g&ver=1' type='text/css' media='screen' />
<![endif]-->
<link rel='stylesheet' id='gnca-gotham-lib-css' href='http://cloud.typography.com/646222/618420/css/fonts.css?ver=1' type='text/css' media='all' />
<link rel='stylesheet' id='gnca-fontawesome-lib-css' href='//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css?ver=1' type='text/css' media='all' />
<link rel='stylesheet' id='screen-css-78' href='http://s1.wp.com/_static/??-eJzTLy/QTc7PK0nNK9EvyUjNTS3WL8ss0C/OSCzXTc/JT0rMyUstL9ZPLgbi/LzkxBKgdEpqfkhqYnFqkV5iTo5ebmaeHlBaR588k5yK8svRjLLPtTU0MbQ0Mjc1NLPIAgCEuTua' type='text/css' media='screen' />
<link rel='stylesheet' id='screenandmin-width36em-css-78' href='http://s1.wp.com/_static/??-eJydjEkKgDAMAD+kDSJuBxF8gx+oNdiKTcQU83179uhhYGBgQK/SMSWkBMljRIEnXCDearmfvNqTUAWcZJicTTlvyAtawdtodhMDmdwL+Leab9bva4pjVfft0Dbd0B0vCSg8iw==' type='text/css' media='screen and (min-width:36em)' />
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-videoTeaser-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/videoTeaser.all.ie.css?m=1419275168g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-videoBrowser-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/videoBrowser.all.ie.css?m=1419275168g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-videoTeaser-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/videoTeaser.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-36em-videoBrowser-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/videoBrowser.wide.ie.css?m=1385049069g&ver=1' type='text/css' media='screen' />
<![endif]-->
<link rel='stylesheet' id='screen-css-86' href='http://s0.wp.com/_static/??-eJylkksOwjAMRC9EErUCKhaIszip1RryU2w14vaYJUuUhTf26Gk0Y9erCSULZnGyY0J2B1XHO3SzxeIhZuzsAuuUHEAcv5MvkVFsJG8TZavHk/ubk4DF6NJCjAMYKdWwlEbIg6QgMEjAldQJm0rhNeqGaUUPbZQS1cogoyOosJlO66atD9ZFCSNlHMUc39fRpFvZGqSfsB/pPp2n27zM18vy/AD/BRRV' type='text/css' media='screen' />
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-symbolset-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/symbolset.lib.ie.css?m=1414093693g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-mast-new-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/mast-new.all.ie.css?m=1418829521g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-top-stories-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/top-stories.all.ie.css?m=1416968250g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-cta-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/cta.all.ie.css?m=1414744378g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-editors-picks-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/editors-picks.all.ie.css?m=1417718057g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-sidebar-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/sidebar.all.ie.css?m=1414787124g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-slick-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/slick.all.ie.css?m=1416527860g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-weather-widget-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/weather-widget.all.ie.css?m=1419272657g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-timeline-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/timeline.all.ie.css?m=1416313316g&ver=1' type='text/css' media='screen' />
<![endif]-->
<!--[if lte IE 8]>
<link rel='stylesheet' id='gnca-IE8-tv-news-programs-css' href='http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/css/concat/tv-news-programs.all.ie.css?m=1416932841g&ver=1' type='text/css' media='screen' />
<![endif]-->
<link rel='stylesheet' id='all-css-106' href='http://s0.wp.com/_static/??-eJx9i0EKg0AMRS/kGEQRN6VnGYcYUzITcSJe33QjLYXyN+/B+8BQ1DhpqTe0qdYGzi24GBaDfIRNDmJvCDWIpmis5UvCIpH3f9cdZ1FyJPDqQ39OtmLGCusAJDpHeQfP/OgGXz9N4/i6AM2NQxk=' type='text/css' media='all' />
<script type='text/javascript'>
/* <![CDATA[ */
var LoggedOutFollow = {"invalid_email":"Your subscription did not succeed, please try again with a valid email address."};
/* ]]> */
</script>
<script type='text/javascript'>
/* <![CDATA[ */
var wpcom_geo_settings = {"geolocation_endpoint":"https:\/\/public-api.wordpress.com\/geo\/","locations":["gnca-national","gnca-toronto","gnca-montreal","gnca-winnipeg","gnca-halifax","gnca-new-brunswick","gnca-okanagan","gnca-bc","gnca-edmonton","gnca-lethbridge","gnca-calgary","gnca-regina","gnca-saskatoon","gnca-national"],"default_location":"gnca-national","cookie_name":"_wpcom_geo","expiry_date":"Sat, 10 Jan 2015 11:48:00 UTC","expiry_time":"604800"};
/* ]]> */
</script>
<script type='text/javascript'>
/* <![CDATA[ */
var gncaGetInTouch = {"ajaxurl":"https:\/\/shawglobalnews.wordpress.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript'>
/* <![CDATA[ */
var gncaPageVars = {"queryType":"frontPage"};
/* ]]> */
</script>
<script type='text/javascript' src='http://s2.wp.com/_static/??-eJylV1ty2zAMvFARJU762elRPBAJSXBIQiUpqfbpCylW2rSepCHHH+bAwBIAFw83ywhGQqaQm1NqvLTsCKZEEXuVAYdO7k7pS6N6HIybLKVV8fRjoni+fn2oAJ77iJnuPIdd+Y9bR0nZU0p65Y1f317FYWZaPlQ7UR7RPEOkxJd/UFsnPYxu6jmkRs89WZkydOKcLM3Ctqf8t00eSH1sZh6b3XIZjXjoSWAKrPdugb8K3wFIAy7QO2nRBVo2s88ZvGZ6d6UPBo8zW5Lj6PBMcZPAJgFPObJJNfgOL2dwgnY7rQdw3H4uRDVolABNcmyeb1Hh/8yvlDIiz3yTUe/DrBBW/Op9sQssCcQMGHqCjn+WOaE08RLKbCP1LAHMIKKlWobxwo0XtpQheEy5zDIRRjOUP8BGboNRtFO5SpgkhrECRDNoCO1MMXNSg1CQkx3LUkZ2CUZx545dhVdeLMXAl4Knfa1Tb3sYNDSKMD9VuILZDJ4sY0WS2eQpUllOVgDU1zE62hy2pYxhSgPPn7/6t+SYjkbfpSwCyR2gTWXGOtB0PEOWyQxwHXBlQGvJ5IVzVlZscBU4eMKC5vmmejk4DvQy6Cqh9MA17XAQVTCR6E1Tv7EUTbyvKRPfUdeRqXkMxzNtZbomooAeew4ijgOSgwM8wKEe5iK6Bt3rp6BzbAVrtcE7V8h3L5HWtbK0XLbErlvOClRTKbi30NJAdMaCCiqs01Sx6iyEqhirekbGtjD6MYr+cfCpPANX/wsdn9eLdRxf3ShPI3bFe2LS1tbiHsF3/+3h6XB/ePz6eP94+gWCEiao'></script>
<script type='text/javascript' src='//cdn.optimizely.com/js/295848415.js?ver=4.1-beta2-30797'></script>
<script type='text/javascript' src='http://s1.wp.com/_static/??-eJyNzEEKhDAMQNELWYNYnNkMs/AkrQZNaZvSBIueXo/g9sP70IpZOCtmBd0xocBBBWR3zWyRvYsZm0AQiOQhUYYLK8+RimdX1/4pfZAOXm8Wbw5akY1odYrb+fB/+g12GO3nO0423AFgNbU='></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://shawglobalnews.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://s1.wp.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='http://wp.me/2Y4rw' />
<link rel="shortcut icon" type="image/x-icon" href="http://1.gravatar.com/blavatar/37cef602b5b54d05533ea477943e87b6?s=16" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="http://1.gravatar.com/blavatar/37cef602b5b54d05533ea477943e87b6?s=16" sizes="16x16" />
<link rel="apple-touch-icon-precomposed" href="http://1.gravatar.com/blavatar/134ef81f5668dc78080f6bd19ca2310b?s=114" />
<link rel='openid.server' href='http://shawglobalnews.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='http://shawglobalnews.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="http://globalnews.ca/osd.xml" title="Global News" />
<link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
<!-- wp-parsely Plugin Version 1.6 -->
<meta name='wp-parsely_version' id='wp-parsely_version' content='1.6' />
<meta name='parsely-page' id='parsely-page' content='{"type":"frontpage","title":"Global News","link":"http:\/\/globalnews.ca"}' />
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<link rel="stylesheet" href="http://disqus.com/stylesheets/globalnewsprod/disqus.css?v=2.0" type="text/css" media="screen" /><link rel="alternate" type="application/rss+xml" title="Global News » Feed" href="http://globalnews.ca/feed/" />
<script type="text/javascript">
var AamGpt={lameDecode:function(e){return decodeURIComponent(e).replace(/%252C/gi,',').replace(/%2c/gi,','); },strictEncode:function(e){ return encodeURIComponent(e).replace(/[!'()]/g,escape).replace(/\*/g,"%2A")},getCookie:function(e){var t,n,r,i=document.cookie.split(";");for(t=0;t<i.length;t++){n=i[t].substr(0,i[t].indexOf("="));r=i[t].substr(i[t].indexOf("=")+1);n=n.replace(/^\s+|\s+$/g,"");if(n==e){return unescape(r)}}},getKey:function(e){var t=this.getCookie(e);t=this.strictEncode(t);if(typeof t!="undefined"&&t.match(/\w+%3D/)){var n=t.split("%3D");if(typeof n[0]!="undefined"&&n[0].match(/\w+/)){return n[0]}}},getValues:function(e){var t=this.getCookie(e);t=this.strictEncode(t);if(typeof t!="undefined"&&t.match(/\w+%3D\w+/)){var n=t.split("%3D");if(typeof n[1]!="undefined"&&n[1].match(/\w+/)){var r=n[1].split("%2C");if(typeof r[0]!="undefined"){return r}else{return null}}else{return null}}else{return null}}}
</script>
<script type='text/javascript'>
var googletag = googletag || {}; googletag.cmd = googletag.cmd || [];
(function() { var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; var useSSL = 'https:' == document.location.protocol; gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(gads, node); })();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/6872/shaw.globalnews.ca', [[300,600],[300,250]], 'div-gpt-gnca-ads-6872-300250-1').addService(googletag.companionAds()).addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'div-gpt-gnca-ads-6872-300250-2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'div-gpt-gnca-ads-6872-300250-3').addService(googletag.pubads()).setTargeting("pos","3");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'div-gpt-gnca-ads-6872-300250-4').addService(googletag.pubads()).setTargeting("pos","4");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,100], 'div-gpt-gnca-ads-6872-300100-1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [140,100], 'div-gpt-gnca-ads-6872-140100-1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [500,300], 'div-gpt-gnca-ads-6872-500300-1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [500,300], 'div-gpt-gnca-ads-6872-500300-2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [500,300], 'div-gpt-gnca-ads-6872-500300-3').addService(googletag.pubads()).setTargeting("pos","3");
googletag.defineSlot('/6872/shaw.globalnews.ca', [1,1], 'div-gpt-gnca-ads-6872-11-1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [1,1], 'div-gpt-gnca-ads-6872-11-2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [1,1], 'div-gpt-gnca-ads-6872-11-3').addService(googletag.pubads()).setTargeting("pos","3");
googletag.defineSlot('/6872/shaw.globalnews.ca', [1,1], 'div-gpt-gnca-ads-6872-11-4').addService(googletag.pubads()).setTargeting("pos","4");
googletag.defineSlot('/6872/shaw.globalnews.ca', [1,1], 'div-gpt-gnca-ads-6872-11-5').addService(googletag.pubads()).setTargeting("pos","5");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page1-pos1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page1-pos2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page2-pos1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page2-pos2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page3-pos1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page3-pos2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page4-pos1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page4-pos2').addService(googletag.pubads()).setTargeting("pos","2");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page5-pos1').addService(googletag.pubads()).setTargeting("pos","1");
googletag.defineSlot('/6872/shaw.globalnews.ca', [300,250], 'load-more-page5-pos2').addService(googletag.pubads()).setTargeting("pos","2");
// Network targets
googletag.pubads().setTargeting("site","globalnews").setTargeting("network","shaw");
if( typeof AamGpt !== "undefined" ) {
if( typeof AamGpt.getCookie( "shawgpt" ) != "undefined" && typeof AamGpt.getCookie("aam_uuid") != "undefined" ){
var key1 = AamGpt.lameDecode( AamGpt.getKey("shawgpt") );
var val1 = AamGpt.lameDecode( AamGpt.getValues("shawgpt") ); var key2 = "u";
var val2 = AamGpt.lameDecode( AamGpt.getCookie("aam_uuid") );
if(val1.indexOf( ',' )>-1){val1=val1.split( ',' )}
googletag.pubads().setTargeting( key1 , val1 ); googletag.pubads().setTargeting( key2 , val2 );
}
}
// Page targets
googletag.pubads().setTargeting("userregion","national").setTargeting("contentregion","national").setTargeting("page","1747659").setTargeting("template","single-video").setTargeting("weathertemp","-2");
//SRA not enabled
//googletag.pubads().enableSingleRequest();
//googletag.pubads().enableSyncRendering();
googletag.companionAds().setRefreshUnfilledSlots(true);
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
});
</script>
<script type="text/javascript">
function gnca_load_late_ads(){
jQuery(".gnca_late_ads").each(function(){
var par_div = jQuery(this).parent();
if( par_div.attr('data-lateprocessed') == '1' ){
return;
}
var my_id = par_div.attr("id");
if( !my_id ){ return; }
if(my_id.indexOf('{pgno}')) {
var bd_no = document.body.getAttribute( 'data-page-num' );
if( bd_no && parseInt( bd_no ) > 1 && parseInt( bd_no ) < 7 ){
bd_no = parseInt( bd_no ) - 1;
my_id = my_id.replace( '{pgno}', bd_no );
par_div.attr( 'id', my_id );
} else { par_div.css( 'display', 'none' ); return; }
}
googletag.display( my_id );
par_div.attr('data-lateprocessed','1');
});
googletag.enableServices();
}
var gnca_ads_page_ad_targets = "userregion=national<br/>contentregion=national<br/>page=1747659<br/>template=single-video<br/>weathertemp=-2";
</script>
<style type="text/css">
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
border: 0px;
margin: 0;
}
table.recentcommentsavatartop a, table.recentcommentsavatarend a {
border: 0px !important;
background-color: transparent !important;
}
td.recentcommentsavatarend, td.recentcommentsavatartop {
padding: 0px 0px 1px 0px;
margin: 0px;
}
td.recentcommentstextend {
border: none !important;
padding: 0px 0px 2px 10px;
}
.rtl td.recentcommentstextend {
padding: 0px 10px 2px 0px;
}
td.recentcommentstexttop {
border: none;
padding: 0px 0px 0px 10px;
}
.rtl td.recentcommentstexttop {
padding: 0px 10px 0px 0px;
}
</style>
<meta name="application-name" content="Global News" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://globalnews.ca/feed/;icon-uri=http://1.gravatar.com/blavatar/37cef602b5b54d05533ea477943e87b6?s=16" /> <script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37934458-1']);
_gaq.push(['_setDomainName', 'globalnews.ca']);
_gaq.push(['_setCustomVar', 1, 'UserRegion', 'national' , 1]);
_gaq.push(['_setCustomVar', 2, 'ContentRegion', 'national' , 3]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<style type="text/css" id="syntaxhighlighteranchor"></style>
<script type="text/javascript">
if( document.location.href.indexOf("https") === 0 ) {
document.location = document.location.href.replace( 'https', 'http' );
}
</script>
<!--Visual Revenue Reader Response Tracking Script (v6) -->
<script type="text/javascript">
var _vrq = _vrq || [];
_vrq.push(['id', 523]);
_vrq.push(['automate', true]);
_vrq.push(['track', function(){}]);
(function(d, a){
var s = d.createElement(a),
x = d.getElementsByTagName(a)[0];
s.async = true;
s.src = 'http://a.visualrevenue.com/vrs.js';
x.parentNode.insertBefore(s, x);
})(document, 'script');
</script>
<!-- End of VR RR Tracking Script - All rights reserved -->
</head>
<body class="home blog mp6 typekit-enabled gnca-national reskin-enabled highlander-enabled highlander-light" data-page-num="1">
<div class="contain">
<header class="mast" role="banner">
<nav role="navigation">
<ul class="primary clearfix">
<li class="logo top-item">
<a href="http://globalnews.ca">
<img src="http://s0.wp.com/wp-content/themes/vip/shaw-globalnews/_img/logos/news_2x.png" alt="Global">
</a>
</li>
<li class="mobile-toggles top-item">
<a href class="menu-toggle" data-toggle="menu">
<i class="menu-icon"></i>
<span>Menu</span>
</a><!-- Hack to fix inline-block space issue. http://css-tricks.com/fighting-the-space-between-inline-block-elements/
--><a class="social-toggle" href="http://globalnews.ca/pages/twitter/">
<i class="ss-social ss-twitter"></i>
</a><!--
--><a class="social-toggle" href="http://globalnews.ca/pages/facebook/">
<i class="ss-social ss-facebook"></i>
</a><!--
--><a href class="search-toggle" data-toggle="search">
<i class="ss-standard ss-search"></i>
</a>
</li>
<li class="regions top-item parent" data-toggle-open="menu">
<a href="http://globalnews.ca/national/">
<span>
<h3>National <i class="ss-standard ss-navigatedown"></i>
<span class="change-location"><i class="ss-standard ss-navigate"></i>Change Location</span>
</h3>
<p>Change Location</p>
</span>
</a>
<h3 class="change-location">Select Location<i class="ss-standard ss-delete"></i></h3>
<ul id="regions-menu" class="child"><li id="menu-item-1560848" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560848"><a href="http://globalnews.ca/bc/">BC</a></li>
<li id="menu-item-1560878" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560878"><a href="http://globalnews.ca/calgary/">Calgary</a></li>
<li id="menu-item-1560880" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560880"><a href="http://globalnews.ca/edmonton/">Edmonton</a></li>
<li id="menu-item-1560887" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560887"><a href="http://globalnews.ca/halifax/">Halifax</a></li>
<li id="menu-item-1560888" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560888"><a href="http://globalnews.ca/lethbridge/">Lethbridge</a></li>
<li id="menu-item-1560882" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560882"><a href="http://globalnews.ca/montreal/">Montreal</a></li>
<li id="menu-item-1560851" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560851"><a href="http://globalnews.ca/new-brunswick/">New Brunswick</a></li>
<li id="menu-item-1560881" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560881"><a href="http://globalnews.ca/okanagan/">Okanagan</a></li>
<li id="menu-item-1560889" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560889"><a href="http://globalnews.ca/regina/">Regina</a></li>
<li id="menu-item-1560885" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560885"><a href="http://globalnews.ca/saskatoon/">Saskatoon</a></li>
<li id="menu-item-1560877" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560877"><a href="http://globalnews.ca/toronto/">Toronto</a></li>
<li id="menu-item-1560884" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-regions menu-item-1560884"><a href="http://globalnews.ca/winnipeg/">Winnipeg</a></li>
</ul> <ul id="locality-menu" class="child"><li id="menu-item-1260874" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1260874"><a href="/invisible-wounds/1257394/invisible-wounds/">Introduction</a></li>
<li id="menu-item-1258625" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258625"><a href="/invisible-wounds/1203097/invisible-wounds-master-corporal-jonathan-woolvett/">Jonathan</a></li>
<li id="menu-item-1255762" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255762"><a href="/invisible-wounds/1189154/invisible-wounds-captain-wayne-johnston">Wayne</a></li>
<li id="menu-item-1255754" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255754"><a href="/invisible-wounds/1225770/invisible-wounds-malcolm-williams">Malcolm</a></li>
<li id="menu-item-1258635" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258635"><a href="/invisible-wounds/1206284/invisible-wounds-unnamed-sergeant">Unnamed Sgt.</a></li>
<li id="menu-item-1255745" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255745"><a href="/invisible-wounds/1225383/invisible-wounds-stephan-monreau">Stephan</a></li>
<li id="menu-item-1255770" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255770"><a href="/invisible-wounds/1254729/invisible-wounds-mental-health-resources-for-canadian-soliders">Mental health support</a></li>
<li id="menu-item-1255784" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255784"><a href="/invisible-wounds/1255407/invisible-wounds-recommendations-to-new-veterans-charter-expected-this-spring">What now?</a></li>
<li id="menu-item-1255779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255779"><a href="/invisible-wounds/1255468/invisible-wounds-funding-for-veterans-programs-on-downward-trend">Veterans funding</a></li>
<li id="menu-item-1258653" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258653"><a href="/invisible-wounds/1257083/list-community-and-online-resources-for-soldiers-veterans-in-crisis">Need help?</a></li>
</ul> </li>
<li class="programs top-item parent" data-toggle-open="menu">
<a href="http://globalnews.ca/national/tv-news-program/">
<span>
<h3>TV News Programs <i class="ss-standard ss-navigatedown"></i></h3>
<p>Newscasts & Videos</p>
</span>
</a>
<ul id="programs-menu" class="child"><li id="menu-item-1564339" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1564339"><a href="#">Global National</a>
<ul class="sub-menu">
<li id="menu-item-1564346" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-program menu-item-1564346"><a href="http://globalnews.ca/national/program/global-national/">Global National</a></li>
<li id="menu-item-1564347" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-program menu-item-1564347"><a href="http://globalnews.ca/national/program/the-west-block/">The West Block</a></li>
<li id="menu-item-1564348" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-program menu-item-1564348"><a href="http://globalnews.ca/national/program/16x9/">16×9</a></li>
<li id="menu-item-1564349" class="menu-item menu-item-type-taxonomy menu-item-object-gnca-program menu-item-1564349"><a href="http://globalnews.ca/national/program/the-morning-show/">The Morning Show</a></li>
<li id="menu-item-1564351" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1564351"><a href="/national/programs/">More …</a></li>
</ul>
</li>
<li id="menu-item-1564352" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1564352"><a href="#">Personalities</a>
<ul class="sub-menu">
<li id="menu-item-1564353" class="menu-item menu-item-type-post_type menu-item-object-gnca-staff menu-item-1564353"><a href="http://globalnews.ca/author/dawna-friesen/">Dawna Friesen</a></li>
<li id="menu-item-1564354" class="menu-item menu-item-type-post_type menu-item-object-gnca-staff menu-item-1564354"><a href="http://globalnews.ca/author/carolyn-jarvis/">Carolyn Jarvis</a></li>
<li id="menu-item-1564355" class="menu-item menu-item-type-post_type menu-item-object-gnca-staff menu-item-1564355"><a href="http://globalnews.ca/author/liza-fromer/">Liza Fromer</a></li>
<li id="menu-item-1564357" class="menu-item menu-item-type-post_type menu-item-object-gnca-staff menu-item-1564357"><a href="http://globalnews.ca/author/tom-clark/">Tom Clark</a></li>
<li id="menu-item-1564360" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1564360"><a href="/national/staff/personalities/">More …</a></li>
</ul>
</li>
<li id="menu-item-1564364" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1564364"><a href="/national/videos/">Video Centre</a></li>
</ul> </li>
<li class="search top-item" data-toggle-open="search">
<form class="search-form" method="get" action="http://globalnews.ca/">
<input type="text" name="s" placeholder="Search" class="nav-input">
<i class="ss-standard ss-search"></i>
</form>
</li>
</ul>
<h3 class="topics-header topics" data-toggle-open="menu"><span>Topics</span></h3>
<ul id="topics-menu" class="topics clearfix" data-toggle-open="menu"><li id="menu-item-1560662" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560662"><a href="http://globalnews.ca/world/">World</a></li>
<li id="menu-item-1560663" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560663"><a href="http://globalnews.ca/canada/">Canada</a></li>
<li id="menu-item-1560690" class="local-news parent menu-item menu-item-type-custom menu-item-object-custom menu-item-1560690"><a href="http://globalnews.ca/national/">Local</a><ul id="topics-sub-menu" class="child"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1260874"><a href="/invisible-wounds/1257394/invisible-wounds/">Introduction</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258625"><a href="/invisible-wounds/1203097/invisible-wounds-master-corporal-jonathan-woolvett/">Jonathan</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255762"><a href="/invisible-wounds/1189154/invisible-wounds-captain-wayne-johnston">Wayne</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255754"><a href="/invisible-wounds/1225770/invisible-wounds-malcolm-williams">Malcolm</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258635"><a href="/invisible-wounds/1206284/invisible-wounds-unnamed-sergeant">Unnamed Sgt.</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255745"><a href="/invisible-wounds/1225383/invisible-wounds-stephan-monreau">Stephan</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255770"><a href="/invisible-wounds/1254729/invisible-wounds-mental-health-resources-for-canadian-soliders">Mental health support</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255784"><a href="/invisible-wounds/1255407/invisible-wounds-recommendations-to-new-veterans-charter-expected-this-spring">What now?</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1255779"><a href="/invisible-wounds/1255468/invisible-wounds-funding-for-veterans-programs-on-downward-trend">Veterans funding</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1258653"><a href="/invisible-wounds/1257083/list-community-and-online-resources-for-soldiers-veterans-in-crisis">Need help?</a></li>
</ul></li>
<li id="menu-item-1560702" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560702"><a href="http://globalnews.ca/politics/">Politics</a></li>
<li id="menu-item-1560689" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560689"><a href="http://globalnews.ca/money/">Money</a></li>
<li id="menu-item-1560894" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560894"><a href="http://globalnews.ca/entertainment/">Entertainment</a></li>
<li id="menu-item-1560897" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560897"><a href="http://globalnews.ca/health/">Health</a></li>
<li id="menu-item-1560900" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560900"><a href="http://globalnews.ca/lifestyle/">Lifestyle</a></li>
<li id="menu-item-1655407" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1655407"><a href="http://globalnews.ca/tech/">Tech</a></li>
<li id="menu-item-1655501" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1655501"><a href="http://globalnews.ca/science/">Science</a></li>
<li id="menu-item-1560931" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1560931"><a href="http://globalnews.ca/sports/">Sports</a></li>
<li id="menu-item-1560934" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1560934"><a href="/videos">Video</a></li>
<li id="menu-item-1560935" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1560935"><a href="/contests">Contests</a></li>
<li class="social">
<a href="http://globalnews.ca/pages/facebook/">
<i class="ss-social ss-facebook"></i>
<span>Like</span>
</a>
</li>
<li class="social">
<a href="http://globalnews.ca/pages/twitter/">
<i class="ss-social ss-twitter"></i>
<span>Follow</span>
</a>
</li>
</ul> </nav>
</header>
<div class="layout-header clearfix">
<!-- /.breaking-news-site -->
<section class='gnca_empty_weatherbug'>
</section>
</div>
<div class="header-sponsored otf-simple" id="div-gpt-gnca-ads-6872-140100-1" style="display:none;" >
<div class="header-sponsor">
<a href="#" target="_blank" class="header-sponsored-text otf-link otf-title"></a>
<br />
<a href="#" target="_blank" class="header-sponsored-link otf-link">
<img src="" style="max-height:38px;max-width:76px;" class="sponsored-logo-hd otf-image">
</a>
</div>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.display("div-gpt-gnca-ads-6872-140100-1");
});
</script>
</div>
<div class="layout-contain video-contain">
<div class="video-teaser showing">
<div class="video-player">
<section>
<article>
<div class="meta-bar">
<div class="meta-bar-cat">
<a href="#">
News </a>
</div>
<div class="date-and-time">
December 29 2014 9:11pm </div>
<div class="stats">
<div class="views"><span class="icon icon-eye-white"></span> <span class="gnca_views_theplatform the_platform_id_378103363629" data-v_count_id="378103363629" style="display:none;"></span>
</div>
<div class="time-submitted">
<span class="icon icon-clock-black"></span>
<span>
00:35 </span>
</div>
</div>
</div><!-- /.meta-bar -->
<div class="top-story">
<div class="video-controls">
<!-- <a class="play-btn" href="#">Play</a> -->
<div id="gnca_video_player_E57F86F0-E0A0-C0FC-521F-98F6673B00D3" class="adplayer js" style="max-height:460px;">
<style>
#videoContainer {
width: 100%;
height: 100%;
color: #000;
background-color: #000;
z-index: 9999999999;
}
#loadMessage{
color: #FFFFFF;
width:100%;
position: absolute;
text-align: center;
margin-top:20%;
}
#videoContainer .nextUp {
color:#ffffff;
}
#videoContainer .share {
display:none;
}
</style>
<div id="videoContainer">
<div id="loadMessage"><p>Loading...</p></div>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="http://s0.2mdn.net/instream/html5/ima3.js"></script>
<script type="text/javascript" src="http://static.smdg.ca/videoPlayer/html5/1.0.14/shawvideo.min.js"></script>
<script type="text/javascript">
var svp = new ShawVideoPlayer("newsPlayer");
svp['gncaId'] = '1747659';
svp['gncaRid'] = '378103363629';
window['_cbv_strategies'] = window['_cbv_strategies'] || [];
window['_cbv_strategies'].push( cb_video_strategy );
var _cbv = window._cbv || (window._cbv = []);
_cbv.push(svp);
var parent_window = window.parent.location + '';
if( parent_window.indexOf('globalnews') === -1 ) {
parent_window = document.location.href;
}
// GLOBAL NEWS Site Specific settings!!
svp.googleCmsId = 911;
svp.googleIMA3Url = "http://pubads.g.doubleclick.net/gampad/ads?ad_rule=1&sz=320x240&iu=/6872/shaw.globalnews.ca&ciu_szs=1x1,120x60,122x62,300x250,728x90&impl=s&gdfp_req=1&env=vp&output=xml_vast2&unviewed_position_start=1&url=" + encodeURIComponent(parent_window) + "&correlator={timestamp}&cmsid={cms_id}&vid={contentid}&cust_params=userregion%3Dnational%26contentregion%3Dnational%26page%3D1747659%26template%3Dsingle-video%26weathertemp%3D-2";
svp.rootCategory = "";
svp.comscoreC4 = "12329516";
svp.omnitureAccount = "canglobaltvnews";
svp.omnitureNamespace = "canglobaltvnews";
svp.debugging = false;
svp.platformAccount = "dtjsEC/";
svp.feedId = "FCT_FJTDVpVT";
svp.upNextCountdown = -1;
// Force HTML5 for android
var user_agent = navigator.userAgent.toLowerCase();
if( user_agent.indexOf( 'android' ) > -1 ) {
svp.playerType = 'html5';
}
svp.autoPlay = true;
svp.videoSMILUrl = "http://link.theplatform.com/s/dtjsEC/{releasepid}?format=SMIL&mbr=true";
svp.metadataUrl = "http://feed.theplatform.com/f/dtjsEC/FCT_FJTDVpVT?form=json&byId={contentid}&callback=?";
svp.mediaPlayList = [378137667650,376534083649,373570115866]; if( user_agent.indexOf( 'iphone' ) > -1 || user_agent.indexOf( 'ipod' ) > -1 ) {
svp.mediaPlayList = null;
}
// set the content id that we want to play back
svp.setContentId( "378103363629", loadCallback );
function loadCallback() {
IE_inline_video_fix();
svp.omnitureTrackingServer = "tr.globalnews.ca";
// inject video player!
svp.inject("videoContainer");
setTimeout("post_inject_fix()",1500);
}
var ctr_rack = 60;
function IE_inline_video_fix() {
var do_ie_fix = jQuery.browser.msie && jQuery.browser.version > 8;
var ua = navigator.userAgent.toLowerCase();
var do_saf_fix = swfobject.hasFlashPlayerVersion("1") && ( ua.indexOf('safari') > -1 || ua.indexOf('maxathon') > -1 || ua.indexOf('chrome') > -1 );
if ( do_ie_fix || do_saf_fix ) {
var full_wd = jQuery("#videoContainer").parent().width();
var full_ht = ( full_wd * 9 )/ 16;
jQuery("#videoContainer,.svpContainer").height( full_ht + ctr_rack );
jQuery("#videoContainer,.svpContainer").width( full_wd );
jQuery(".svpContainer object").css("display","block");
svp.wmode = "opaque"
} else if (jQuery.browser.mozilla) {
var full_wd = jQuery("#videoContainer").parent().width();
var full_ht = ( full_wd * 9 )/ 16;
jQuery("#videoContainer").css( "height", (full_ht+ ctr_rack) + "px" );
jQuery(window).resize(function() {
var ht_x = ( ( jQuery("#videoContainer").parent().width() * 9) / 16 ) ;
jQuery("#videoContainer").css("height", (ht_x+ctr_rack) + "px" );
jQuery(".svpContainer").css("height", (ht_x+ctr_rack) + "px");
});
}
}
function post_inject_fix(){
var ua = navigator.userAgent.toLowerCase();
var do_ch_fix = swfobject.hasFlashPlayerVersion("1") && ua.indexOf('chrome') > -1;
var jq = jQuery("#videoContainer div.svpContainer object");
if( parseInt( svp.playerVersion.replace( /\./gi, '' ) ) > 1010 && do_ch_fix ) {
jQuery("#videoContainer").css( "width", "100%" );
} else if( jq.length > 0 && do_ch_fix ){
jq.attr('height','99%');
}
jQuery(".svpContainer object").css("display","block");
}
</script>
</div>
<h1>
‘Quad Squad’ born in Utah </h1>
</div>
<div class="story">
<div>
<p>After a six-month roller-coaster ride that has taken them to parenthood — not to mention around the world in the news media — the Tyson and Ashley Gardner of Utah County celebrated the arrival of their highly-anticipated quadruplets on Sunday.</p>
</div>
<!--
-->
<div class="socialShare"
data-socialshare="embed,facebook,twitter,google,whatsapp,email,linkedin,reddit,pinterest,tumblr,stumbleupon"
data-socialshare-collapsable="true"
data-socialshare-title="‘Quad Squad’ born in Utah"
data-socialshare-url="http://globalnews.ca/video/1747659/quad-squad-born-in-utah"></div>
<div class="gnca_embed_box">
<textarea class="gnca_embed_select"><iframe width='670' height='437' frameborder='0' allowfullscreen src='http://globalnews.ca/video/embed/1747659/'>Your browser does not support frames. <a href="http://globalnews.ca/video/1747659/quad-squad-born-in-utah">Click here to view the frameless video.</a>.</iframe></textarea>
</div>
</div> <!--/.story -->
</div><!--/.top-story -->
</article>
<script language="javascript">
/*
jQuery(document).ready(function(){
jQuery("div.video-player").find("iframe").each(function(idx){
var ifr_src = jQuery(this).attr("src");
if( ifr_src.indexOf( document.domain + '/video/') > -1 ) {
jQuery(this).addClass('gnca_fit_vid_class_to_resize');
}
});
jQuery("div.video-player").fitVids({customSelector: ".gnca_fit_vid_class_to_resize" });
});
*/
</script>
<script language="javascript" type="text/javascript">
jQuery(document).ready(function($){
setTimeout("gnca_checktoremove_poster_image()",1000);
});
function gnca_checktoremove_poster_image(){
if(svp) {
if( !svp.html5Player )
return;
if( svp.isPlaying || svp.adPlaying ) {
jQuery("div.posterImage").css("display","none");
return;
}
}
setTimeout("gnca_checktoremove_poster_image()",1000);
}
// declare video share-button callbacks
var gnca_social_share_collection = typeof( gnca_social_share_collection ) == "undefined" ? [] : gnca_social_share_collection;
function gnca_videoShareCallback() {
// call new sharing functions to draw, and populate sharing controls
jQuery().gnca_socialShare('init');
if( svp.gncaRid === svp.releaseInfo.contentId ) {
jQuery('#videoContainer').gnca_socialVideoShare('init', {
'title':'‘Quad Squad’ born in Utah',
'url':'http://globalnews.ca/video/1747659/quad-squad-born-in-utah/',
'embed':'<iframe src="http://globalnews.ca/video/embed/1747659/" width="670" height="437" frameborder="0" allowfullscreen></iframe>'
});
} else {
var rel_id = svp.releaseInfo.contentId+"";
if( typeof gnca_social_share_collection[rel_id] != "object" ) {
var resp = jQuery.parseJSON( jQuery.ajax({
url: "/gnca-ajax/videoshare-links/{\"id\":\"" + svp.releaseInfo.contentId + "\"}/",
async: false
}).responseText);
gnca_social_share_collection[rel_id] = resp;
}
jQuery('#videoContainer').gnca_socialVideoShare('init', gnca_social_share_collection[rel_id] );
}
};
// don't do on IE, doesn't work yet
if ( !gNews.Common.isIE && !gNews.Common.isTrident && gNews.Common.isFlash ) {
var gnca_videoShareCallbackInterval = window.setInterval(
function() {
//console.log(' !!! gnca_shareVideoCallback REGISTRATION !!! ');
// exit if required obj isn't set yet
try {
if ( !svp || !svp.setShareFunction || !svp.flashPlayerObjectId )
return;
// still here?? svp object must exist, register share-button callback
svp.setShareFunction( gnca_videoShareCallback);
// remove interval
window.clearInterval( gnca_videoShareCallbackInterval );
gnca_videoShareCallbackInterval = false;
} catch (e) {};
},
1000
);
};
</script>
</section>
</div>
<div class="video-promotion">
<div class="ad-container" id="video-ad-companion-rectangle">
<section id="div-gpt-gnca-ads-6872-300250-1">
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.display("div-gpt-gnca-ads-6872-300250-1");
});
</script>
</section>
</div>
<div class="upcoming">
<section>
<h3 class="section-h-new"><span>More Videos</span></h3>
<ul>
<li>
<a class="video-thumb" href="http://globalnews.ca/video/1747789/utah-couples-dream-of-parenthood-comes-true-in-the-form-of-quadruplets/">
<img src="http://i0.wp.com/media.globalnews.ca/videostatic/173/187/quads_pkg_qtp_640x360_378137667806.jpg?w=150" alt="Utah couple’s dream of parenthood comes true in the form of quadruplets">
<h5>
Utah couple’s dream of parenthood comes true in the form of quadruplets </h5>
<div class="stats">
<div class="time-submitted">
<span class="icon icon-clock-grey"></span>
<span>02:00</span>
</div>
</div>
</a>
</li>
<li>
<a class="video-thumb" href="http://globalnews.ca/video/1742332/eggnog-chugging-contest-sends-man-to-hospital/">
<img src="http://i2.wp.com/media.globalnews.ca/videostatic/691/907/eggnog_qtp_640x360_376534595849.jpg?w=150" alt="Eggnog chugging contest sends man to hospital">
<h5>
Eggnog chugging contest sends man to hospital </h5>
<div class="stats">
<div class="time-submitted">
<span class="icon icon-clock-grey"></span>
<span>01:40</span>
</div>
</div>
</a>
</li>
<li>
<a class="video-thumb" href="http://globalnews.ca/video/1730947/3d-printing-used-in-medicine-is-saving-lives/">
<img src="http://i1.wp.com/s1.wp.com/wp-content/themes/vip/shaw-globalnews/includes/plugins/gnca_video_player/images/square-global-logo.jpg?w=150" alt="3D printing used in medicine is saving lives">
<h5>
3D printing used in medicine is saving lives </h5>
<div class="stats">
<div class="time-submitted">
<span class="icon icon-clock-grey"></span>
<span>03:30</span>
</div>
</div>
</a>
</li>
</ul> </section>
</div> <!--/.upcoming -->
</div>
</div> <!-- /.video-teaser -->
<div class="video-browse-container">
<div class="video-search-container">
<section>
<form class="search-form" action="/national/videos/">
<input type="search" id="video-search" name="video-search" autocomplete="off" placeholder="Search Videos" spellcheck="false" value="">
<input type="submit" class="search-submit icon icon-search-black" value="Search">
</form>
</section>
</div>
<div class="video-browse">
<section>
<h3><a href="http://globalnews.ca/national/videos/">Video Home</a></h3>
<ul class="video-browse-container">
<li> <a class="video-thumb" href="http://globalnews.ca/video/1753443/trageted-shooting-in-delta" title="Trageted Shooting in Delta" data-vid_id="1753443"
>
<img src="http://i0.wp.com/media.globalnews.ca/videostatic/487/575/GBCNHF150102URQUHART.jpg?w=300" alt="Trageted Shooting in Delta">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753443/trageted-shooting-in-delta" title="Trageted Shooting in Delta" data-vid_id="1753443">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379541059826" data-v_count_id="379541059826" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>01:16</span></div>
</div>
<h4>News Hour Final BC</h4>
<h5>Trageted Shooting in Delta</h5>
</div>
</a>
</li><li> <a class="video-thumb" href="http://globalnews.ca/video/1753441/sinkhole-in-port-moody" title="Sinkhole in Port Moody" data-vid_id="1753441"
>
<img src="http://i1.wp.com/media.globalnews.ca/videostatic/487/575/GBCNHF150102REHMAN.jpg?w=300" alt="Sinkhole in Port Moody">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753441/sinkhole-in-port-moody" title="Sinkhole in Port Moody" data-vid_id="1753441">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379541059825" data-v_count_id="379541059825" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>01:53</span></div>
</div>
<h4>News Hour Final BC</h4>
<h5>Sinkhole in Port Moody</h5>
</div>
</a>
</li><li> <a class="video-thumb" href="http://globalnews.ca/video/1753424/terrible-road-conditions-in-and-around-calgary" title="Terrible road conditions in and around Calgary" data-vid_id="1753424"
>
<img src="http://i1.wp.com/media.globalnews.ca/videostatic/476/339/GC150102_Jill_NHF_848x480_379532355574.jpg?w=300" alt="Terrible road conditions in and around Calgary">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753424/terrible-road-conditions-in-and-around-calgary" title="Terrible road conditions in and around Calgary" data-vid_id="1753424">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379529283588" data-v_count_id="379529283588" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>01:45</span></div>
</div>
<h4>News Hour Final Calgary</h4>
<h5>Terrible road conditions in and around Calgary</h5>
</div>
</a>
</li><li> <a class="video-thumb" href="http://globalnews.ca/video/1753387/news-hour-final-jan-2-2" title="News Hour Final: Jan 2" data-vid_id="1753387"
>
<img src="http://i1.wp.com/media.globalnews.ca/videostatic/462/175/GTNF0102newsFINAL.png?w=300" alt="News Hour Final: Jan 2">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753387/news-hour-final-jan-2-2" title="News Hour Final: Jan 2" data-vid_id="1753387">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379514435995" data-v_count_id="379514435995" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>21:50</span></div>
</div>
<h4>News Hour Final Toronto</h4>
<h5>News Hour Final: Jan 2</h5>
</div>
</a>
</li><li> <a class="video-thumb" href="http://globalnews.ca/video/1753375/canadians-cheer-on-team-canada-at-the-world-juniors" title="Canadians cheer on Team Canada at the World Juniors" data-vid_id="1753375"
>
<img src="http://i2.wp.com/media.globalnews.ca/videostatic/463/151/Kimpkg-GTNF-010215.jpg?w=300" alt="Canadians cheer on Team Canada at the World Juniors">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753375/canadians-cheer-on-team-canada-at-the-world-juniors" title="Canadians cheer on Team Canada at the World Juniors" data-vid_id="1753375">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379515459638" data-v_count_id="379515459638" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>02:12</span></div>
</div>
<h4>News Final Toronto</h4>
<h5>Canadians cheer on Team Canada at the World Juniors</h5>
</div>
</a>
</li><li> <a class="video-thumb" href="http://globalnews.ca/video/1753372/snowmobilers-save-moose-from-avalanche" title="Snowmobilers save moose from avalanche" data-vid_id="1753372"
>
<img src="http://i2.wp.com/media.globalnews.ca/videostatic/463/151/moose_qtp_640x360_379513923628.jpg?w=300" alt="Snowmobilers save moose from avalanche">
</a>
<a class="video-thumb " href="http://globalnews.ca/video/1753372/snowmobilers-save-moose-from-avalanche" title="Snowmobilers save moose from avalanche" data-vid_id="1753372">
<div>
<div class="stats">
<div class="views" style="display:none;"><span class="icon icon-eye-grey"></span> <span class="gnca_views_theplatform the_platform_id_379515459623" data-v_count_id="379515459623" style="display:none;"></span>
</div>
<div class="time-submitted"><span class="icon icon-clock-grey"></span><span>01:33</span></div>