forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcricket.com.au1.html
More file actions
1322 lines (1176 loc) · 80.6 KB
/
Copy pathcricket.com.au1.html
File metadata and controls
1322 lines (1176 loc) · 80.6 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>
<html lang="en">
<head>
<!--START NINEMSN KIT - LOADER BLOCK 1-->
<script type="text/javascript">
// Ninemsn Third Party Kit - Loader
// Partner site name configuration goes here. You will be emailed the correct value to use.
var MSNAU_SiteName = 'cricket.com.au';
(function () {
var LOADER_SCRIPT_URL = 'http://shared.9msn.com.au/share/short_cache/js/third_party/loaders/au.thirdparty.loader-latest.min.js';
var LOADER_SCRIPT_URL_SECURE = 'https://secure.ninemsn.com.au/share/short_cache/js/third_party/loaders/au.thirdparty.loader-latest.min.js';
var loaderScriptUrl = (window.location.protocol == 'https:') ? LOADER_SCRIPT_URL_SECURE : LOADER_SCRIPT_URL;
document.write('<scr' + 'ipt type="text/javascript" src="' + loaderScriptUrl + '"></scr' + 'ipt>');
}());
</script>
<!--END NINEMSN KIT - LOADER BLOCK 1-->
<!--START NINEMSN KIT - LOADER BLOCK 2-->
<script type="text/javascript">
//Ninemsn Third Party Kit - Configuration
MSNAU_Loader.setup();
MSNAU_Config.setSectionName('news');
MSNAU_Config.setSubsectionName('articles');
//Third Party Kit - Partner Configuration Block Start
////////////////////////////////////////////////////////////
// Partner configuration options go here... //
// You will be emailed the correct values to use here. //
////////////////////////////////////////////////////////////
//Third Party Kit - Partner Configuration Block End
MSNAU_ThirdParty.initialize();
</script>
<!--END NINEMSN KIT - LOADER BLOCK 2--><!-- Google Analytics -->
<meta name="google-site-verification" content="VxtWzdLStGIGQf3OSYnzuHHw4F0cMHCPkU_VwbN51iw" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq .push(
['_setAccount', 'UA-7949310-1'],
['_setDomainName', 'cricket.com.au'],
['_addIgnoredRef', 'cricket.com.au'],
['_trackPageview'],
['rollup._setAccount', 'UA-7949310-22'],
['rollup._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>
<script src="//cdn.optimizely.com/js/2288570633.js"></script>
<!-- Meta Tags -->
<meta name="description" content="Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy " />
<link rel="canonical" href="http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30" />
<title>Aussies seal series win in MCG draw | cricket.com.au</title>
<!-- TWITTER CARDS -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@cricketaus">
<meta name="twitter:title" content="Aussies seal series win in MCG draw">
<meta name="twitter:description" content="Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy ">
<meta name="twitter:image:src" content="http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx">
<!-- FACEBOOK OPEN GRAPH -->
<meta property="og:title" content="Aussies seal series win in MCG draw" />
<meta property="og:site_name" content="cricket.com.au" />
<meta property="og:url" content="http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30" />
<meta property="og:description" content="Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy " />
<meta property="og:image" content="http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx" />
<meta property="fb:app_id" content="652653588100808" />
<meta property="og:type" content="article" />
<meta property="article:publisher" content="https://www.facebook.com/cricketcomau" />
<!-- PARSE.LEY META TAGS -->
<meta name="parsely-title" content="Aussies seal series win in MCG draw" />
<meta name="parsely-link" content="http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30" />
<meta name="parsely-type" content="post" />
<meta name="parsely-image-url" content="http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx" />
<meta name="parsely-pub-date" content="2014-12-30T07:44:00Z" />
<meta name="parsely-author" content="Andrew Ramsey" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"><script type="text/javascript">window.NREUM||(NREUM={});NREUM.info = {"beacon":"beacon-5.newrelic.com","errorBeacon":"bam.nr-data.net","licenseKey":"ea190e6af2","applicationID":"4965716","transactionName":"YAdUMkJWD0ZVVBJdDVlNYxRZGA9QQ0RJWQNDAV5LQlIRWkZDSR4=","queueTime":0,"applicationTime":64,"ttGuid":"8F48231A66797475","agent":"js-agent.newrelic.com/nr-476.min.js"}</script><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=u(e),f=c.length,s=i(a,o,r),p=0;f>p;p++)c[p].apply(s,n);return s}function a(t,e){f[t]=u(t).concat(e)}function u(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:u,_events:f}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=l.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){l.proto="https"===p.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=l.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),u=window,c=u.document,f="addEventListener",s="attachEvent",p=(""+location).split("?")[0],l=e.exports={offset:i(),origin:p,features:{}};c[f]?(c[f]("DOMContentLoaded",o,!1),u[f]("load",n,!1)):(c[s]("onreadystatechange",r),u[s]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}]},{},["G9z0Bl"]);</script>
<meta name="viewport" content="width =device-width, initial-scale=1">
<link rel="icon" href="/Content/cricketcomau/img/favicon/favicon.ico" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/Content/cricketcomau/img/favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/Content/cricketcomau/img/favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/Content/cricketcomau/img/favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/Content/cricketcomau/img/favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="/Content/cricketcomau/img/favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/Content/cricketcomau/img/favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/Content/cricketcomau/img/favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/Content/cricketcomau/img/favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="/Content/cricketcomau/img/favicon/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="/Content/cricketcomau/img/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="/Content/cricketcomau/img/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/Content/cricketcomau/img/favicon/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/Content/cricketcomau/img/favicon/favicon-128.png" sizes="128x128" />
<meta name="application-name" content=" " />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="/Content/cricketcomau/img/favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="/Content/cricketcomau/img/favicon/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="/Content/cricketcomau/img/favicon/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="/Content/cricketcomau/img/favicon/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="/Content/cricketcomau/img/favicon/mstile-310x310.png" />
<!-- Font awesome -->
<link href="/Content/cricketcomau/css/font-awesome.min.css" rel="stylesheet">
<!-- Custom styles -->
<link href="/Content/cricketcomau/css/global.min_page_1.css" rel="stylesheet">
<link href="/Content/cricketcomau/css/global.min_page_2.css" rel="stylesheet">
<!-- Responsive tables -->
<link href="/Content/cricketcomau/css/responsive-tables.css" rel="stylesheet" type="text/css" media="screen" />
<!-- google fonts -->
<link href='//fonts.googleapis.com/css?family=Merriweather:400,700' rel='stylesheet' type='text/css'>
<!--[if IE]>
<link href="/Content/cricketcomau/css/ie-style.css" rel="stylesheet">
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/Content/cricketcomau/css/ie8.css" />
<![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Bundled JS -->
<script src="/bundles/cricketcomau/head.js?v=GmezDHH1wyQsssIz8Nf-nLLgdYjmYpOHenjyFyMYfPs1"></script>
<!-- Load Adobe Typekit Fonts -->
<script type="text/javascript" src="//use.typekit.net/wke5yfr.js"></script>
<script type="text/javascript">try { Typekit.load(); } catch (e) { }</script>
<!-- gigya.js script should only be included once -->
<script type="text/javascript" lang="javascript" src="https://cdns.gigya.com/JS/socialize.js?apikey=3_6e1TaLjsahR5uCGp6nJmypWQgKhar8MTTeP5j482U-WZN0XVjYvw6eLlZjxxMLwV">
{
enabledProviders: 'facebook,twitter,google'
}
</script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!--Configuration settings-->
<script>
var ca_settings = {};
ca_settings.avs_setting = "live";
ca_settings.avs_enabled = "enabled";
ca_settings.UnlimitedCricket365PassID = "21";
</script>
</head>
<body class="ad-bg-color">
<div id="full-content">
<!--START top placeholder-->
<div class="container">
<div class="row row-ad row-leaderboard-only-desktop">
<div class="col-lg-12 col-md-12">
<div class="ads-styled w980">
<div id="msnau_ad_banner_header" class="advert" data-ad-type="BannerTop"><!-- Ad will render here --></div>
<div id="msnau_ad_masthead_top" class="advert" data-ad-type="MastheadTop"><!-- Ad will render here --></div>
</div>
</div>
</div>
</div>
<!--End top placeholder-->
<div id="nav-ca">
<div class="navbar-ca">
<div class="container container-nav-ca">
<div class="login-social-gigya">
<ul id="login-header">
<li id="login-link" class="login-link"><a href="#" class="login" tabindex="11" title="australian cricket family login"><i class="fa fa-users"></i> Australian Cricket Family</a></li>
<li id="username" style="display: none;"><a href="/account" tabindex="12" class="edit-profile"></a></li>
<li id="subscription"><a href="/account/subscribe" tabindex="13"><span class="icon-controller btn-subscribe-header"><span class="icon-ca icon-ca-CA-Icon-Subscribe-Default"></span>Live Pass</span></a></li>
</ul>
</div>
<div id="btn-nav-list-ca" class="hamburger">
<a href="#"><i class="fa fa-bars"></i></a>
</div>
<div class="navbar-branding-ca">
<a href="/" tabindex="1" class="client-logo" id="logo-header" title="cricket.com.au homepage"></a>
</div><!-- end navbar-branding -->
<div class="feature-panel match-centre match-centre-sticky"><a href="http://live.cricket.com.au/#/fixture">LIVE SCORES</a></div>
<div class="nav-wrapper noBounce" id="nav-container">
<div class="mobile-nav-close">
<button type="button" class="close-flyout-btn"></button>
</div>
<div class="navbar-collapse-ca noBounce">
<ul class="nav-list-ca">
<div class="account-info">
<li id="mobile-login-link-item" class="login-link"><a id="mobile-login-link" href="#" class="login" id="mobile-login"><i class="fa fa-users"></i> ACF</a></li>
<li><a id="mobile-username" style="display:none;" href="/account" class="edit-profile" id="mobile-edit-profile"><span class="ca-fixture ca-fixture-user-logged-in"></span></a>
<li><a id="mobile-register" href="/account/subscribe"><span class="icon-controller btn-subscribe-header"><span class="icon-ca icon-ca-CA-Icon-Subscribe-Default"></span>Live Pass</span></a></li>
</div>
<li><a tabindex="2" href="/news" class=active>News</a></li><li><a tabindex="3" href="/video" >Videos</a></li><li><a tabindex="4" href="/fixtures" >Fixtures</a></li><li><a tabindex="5" href="/series" >Series & Tournaments</a></li><li><a tabindex="6" href="/players" >Players</a></li><li><a tabindex="7" href="/stats" >Stats</a></li>
<li id="nav-shop"><a href="http://shop.cricket.com.au/" tabindex="8"><i class="fa fa-shopping-cart"></i>Shop</a></li>
<li id="nav-tickets"><a href="/tickets"><i class="fa fa-ticket"></i>Tickets</a></li>
</ul>
</div><!-- end navbar-collapse-ca -->
<div class="feature-links">
<div class="feature-panel tickets"><a href="/tickets" tabindex="9">BUY TICKETS</a></div>
<div class="feature-panel match-centre"><a href="http://live.cricket.com.au/#/fixture" tabindex="10">LIVE SCORES</a></div>
</div>
</div>
</div><!-- end container -->
<div id="mask" class="nav-overlay noBounce"></div>
</div><!-- end navbar-ca -->
</div><!-- end nav-ca -->
<section id="score-module">
</section>
<div id="all-content" class="all-content">
<!-- Start SubHead : Created for -->
<div class="container">
<div class="row row-ad row-leaderboard-only-tablet">
<div class="col-lg-12 col-md-12">
<div class="ads-styled add-border w728">
<p>Advertisement</p>
<!--START NINEMSN KIT - BannerTab Ad-->
<div id="msnau_ad_banner_tabheader" class="advert" data-ad-type="BannerTop"><!-- Ad will render here --></div>
</div>
</div>
</div>
</div>
<!-- End SubHead -->
<div class="container white-bg main-content">
<div class="row">
<!-- Master -->
<div id="column-content" class="col-lg-8 col-md-8 col-sm-12">
<div class="row row-ad row-ad-mobile hidden-lg hidden-md hidden-sm">
<!-- start row mobile ad -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mobile-no-gutter">
<!-- start column main article -->
<div class="ads-styled add-border w320">
<div class="text-container">
<p>Advertisement</p>
<div id="msnau_ad_banner_mobile" class="advert" data-ad-type="MbannerTop"></div>
</div>
</div>
</div><!-- end column main article -->
</div>
<div class="row">
<div class="col-lg-3 col-md-3">
<!-- column for social articles -->
<div class="column-social">
<div>
<span class="icon-ca icon-ca-CA-Icon-Match-Report-Active match-report-icon-large">
<h4>Match</br>Report</h4>
</span>
<p class="news-page-article-date">30 December 2014</p>
<p></p>
<ul class="news-article-author">
<li>
<a href="#" id="shareFacebookVertical4086" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"facebook","description":"Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy ","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-medium icon-ca-CA-Icon-Facebook-Default"></span></a>
</li>
<li>
<a href="#" id="shareTwitterVertical1057" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"twitter","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-medium icon-ca-CA-Icon-Twitter-Default"></span></a>
</li>
<li>
<a href="#" id="shareGooglePlusVertical2144" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"googleplus","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-medium icon-ca-CA-Icon-Google-Default"></span></a>
</li>
</ul>
</div><!-- end new-article-author -->
</div>
</div><!-- end column for social articles "col-lg-3" -->
<div class="col-lg-9 col-md-9">
<!-- column for main news articles -->
<section class="news">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 tablet-mobile-no-gutter">
<div id="BrightCoveOuterContainerId" class="brightcove-outer-container"><div id="brightcoveplayer_635559220026190683642" class="brightcove-video-player"></div></div>
<script>jQuery(function($){$("#brightcoveplayer_635559220026190683642" ).brightcoveVideo({"@videoPlayer":"3965126004001","playerID":"3769582751001","autoStart":"False"});});</script>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p class="article-tag">
<a href="/series/test-series-v-india/uVO2j7qg3kCNJo2viwUn_A">
CommBank Test Series v India
</a>
</p>
<h1 class="news-main-title">Aussies seal series win in MCG draw</h1>
<div class="article-info article-info-news-page">
<div class="author-social news-article">
<p>Andrew Ramsey, Melbourne Cricket Ground</p>
<ul class="hidden-lg hidden-md">
<li>
<p class="news-page-article-date hidden-lg hidden-md">30 December 2014</p>
</li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count6829").html("0");
} else {
$("#fb-count6829").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count6829">0</span></li> </ul>
</div>
<div class="hidden-lg hidden-md">
<div class="btn-group share">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="icon-ca icon-ca-CA-Icon-Share-Default"></span>
</button>
<div class="dropdown-menu share-pop-up" role="menu">
<a id="shareTwitter8351" href="#" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"twitter","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-CA-Icon-Twitter-Default"></span></a><a id="shareFacebook7830" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"facebook","description":"Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy ","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Facebook-Default"></span></a><a id="shareGooglePlus4957" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"googleplus","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Google-Default"></span></a>
</div>
</div> </div>
</div>
<p class="news-intro">Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy </p>
<section>
<div class="live-match-panel">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<p class="match">CommBank Test Series v India, Third Test</p>
<div class="match-wrapper">
<div class="team n01">
<div class="team-wrapper">
<img src="/~/media/Logos/Teams/International/Australia.ashx" title="" alt=""><p class="teamName" style=color:#c8a000>AUS</p>
</div>
</div>
<img src="/~/media/Logos/Series/2014/Series-Commonwealth-Bank-Test.ashx" title="" alt="" class="matchType">
<div class="team n02">
<div class="team-wrapper">
<p class="teamName" style=color:#0099cc>IND</p><img src="/~/media/Logos/Teams/International/India.ashx" title="" alt="">
</div>
</div>
</div>
<div class="btn-wrapper">
<a href="http://live.cricket.com.au/#/5008/3"><i class="fa fa-table"></i>SCORECARD</a>
</div>
</div>
</div>
</div>
</section>
<div class="article-text">
<p>The series win that brings the Border-Gavaskar Trophy back to Australia after almost two years in India arrived courtesy of a mutually agreed draw rather than the emphatic statement the home team seemed primed to deliver.</p>
<p>When rival captains Steve Smith and MS Dhoni decided no result was possible at 6.24pm this evening, Australia had a further four of their compulsory 15 final-hour overs to bowl and India was nowhere close to their notional victory target of 384 from a minimum 70 overs at 6-174.</p>
<p>While the unassailable two-nil lead that Australia now takes into the last of the four Tests in Sydney next week was undoubtedly a factor in Smith opting to bat through today’s morning session and setting the improbable target, it raised more than a few questions due to its conservatism.</p>
<p>The captain and his brains trust will doubtless argue there was nothing to gain by setting India a goal they might conceivably attain, regardless of the spectacle it might have yielded and the availability of an extra dozen overs or more might have made.</p>
<p>And if the logic for delaying the declaration was to instil in India’s batsmen a sense of futility before the pursuit began, then the incident-laden first half hour of their second innings offered emphatic if ultimately premature vindication.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3964390545001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3964390545001">
</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>
<p>With his second delivery Ryan Harris did for Shikhar Dhawan whose duck had him briefly being mentioned as a possible omission for next week’s final Commonwealth Bank Test in Sydney.</p>
<p>That was until the man being mooted as his potential replacement – Lokesh Rahul – completed his debut Test with a second innings less meritorious than his forgettable first.</p>
<p>On day three, the highly rated top-order batsman came in at No.6, lasted eight balls from which he was dropped once before holing out to an ugly slog sweep having scored three.</p>
<p>Today, promoted to No.3 in place of out-of-favour and form Cheteshwar Pujara and endured just five deliveries for a single scored before an ambitious pull shot to a ball from Mitchell Johnson that was too full, too close and too fast landed in the hands of Shane Watson running back from slip.</p>
<p>When India’s in-form opener Murali Vijay (11) was pinned lbw to a ball that the video review technology – being used as a novelty rather than a tool in this series – showed would have snuck past leg stump, the tourists were surging towards defeat at 3-19.</p>
<p>And in light of the contribution the bottom half of India’s batting has managed thus far in the series, the end was realistically just one more breakthrough away.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3964390575001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3964390575001">
</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>
<p>For almost two hours, the Australians searched for it only to fumble when it fell their way.</p>
<p>Kohli should have been run out on four, his anxiety to get his innings underway failing to factor in Australia’s even stronger urge to restrain him as he pushed to mid-off and followed through for a single.</p>
<p>It was only due to a badly-bruised right forearm that David Warner was fielding there rather than his customary spot in the cordon, and it was that same injury that invariably saved Kohli as the return Warner fired after a diving save with Kohli stranded mid-pitch failed to threaten the stumps.</p>
<p>A more straightforward chance was offered by Rahane when he was on 22 and failed to get on top of a cut shot off Johnson that flew above head height to Chris Rogers at point who jumped, clutched and then jogged after the spill which meant his back was turned to the bowler’s displeasure.</p>
<p>In the over prior to tea, Kohli’s impetuosity almost cost him again when he defied old-fashioned cricket wisdom and tried to steal an overthrow that Pujara clearly didn’t believe existed, and was this time spared by Nathan Lyon’s inability to gather the searing throw and break the stumps.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3964390579001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3964390579001">
</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>
<p>But when the Australians finally secured the wicket they so desperately sought – the in-form, in-your-face Kohli – it came amid such anti-climactic circumstances that the home team couldn’t find it in themselves to give their pantomime villain a send-off.</p>
<p>Perhaps they felt the Indian star was suffering enough, his shock at gently flicking the first ball after tea softly to an equally surprised Joe Burns at square leg reflected in the look he gave the pitch as if he had been done cold by one of those day five grubbers the MCG was once infamous for.</p>
<p>However, the final key that was supposed to unlock India’s dysfunctional lower-order batting took a while to turn.</p>
<p>And when it did, that turn came from an unlikely source.</p>
<p>After shaking Pujara with a bouncer that slammed into the grille of his protective helmet and then another that soared over the batsman’s head, Johnson slipped in the sucker punch in the form of a ‘slow’ (125kph – gentle by his standards) orthodox spinner that would have done Derek Underwood proud.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3965125987001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3965125987001">
</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>
<p>Delivered from wide with the bowler’s fingers dragged down the side of the ball to impart turn, it pitched on the perfect length to lure Pujara forward and turned sufficiently to beat the bat but not off stump.</p>
<p>Four overs later Harris claimed the other prized scalp when Rahane aimed one of his few false strokes of this Test with a pull that hit high on the bat and looped to midwicket, leaving the Indian tail that had proved so hopelessly inadequate over the past year 15 overs to survive.</p>
<p>But Dhoni and spinner Ravi Ashwin defied both recent history and the Australian attack to survive a final hour and eliminate the prospect of a series whitewash.</p>
<p>The talking point at day’s beginning was at what stage of the morning Smith would shut down his second innings and let his bowlers loose on the tourists.</p>
<p>As it transpired, it was so far into the afternoon the players were on their way to the lunch room beneath the MCC Members’ Stand when the flag was waved, the tourists handed an unappetising order of 384 runs from a minimum of 70 overs to keep the series afloat.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3965125998001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3965125998001">
</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>
<p>The tardiness of Smith’s declaration had become topical to the point of obsession during a morning session that began 24 minutes early, lost 40 minutes to Melbourne’s traditional festive season drizzle and came within a few centimetres of delivering a highlight.</p>
<p>That came when Shaun Marsh’s three-year wait to score a Test century on home soil was scuttled as he dived to complete his hundredth run, found short by Kohli (of course) who swooped, gathered and hit the stumps from close range as he sensed the Australian’s desperation for the milestone.</p>
<p>A polarising figure due to the vast, unexplained fluctuations between his successes and failures, Marsh is unlikely to finish with a Bradman-esque average.</p>
<p>But given how close he was to completing the run that distinguishes a very good innings from a great one he should perhaps be listed in the scorebook as ‘run out (Kohli) 99.94’.</p>
<div class="brightcove-outer-container "><!-- 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="myExperience3964390540001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF">
<param name="width" value="100%">
<param name="height" value="270">
<param name="playerID" value="3944763523001">
<param name="playerKey" value="AQ~~,AAAAu-f-8Kk~,XmIdfJLsQzC3w5TzzwsCGgJ9yfsymPdw">
<param name="isVid" value="true">
<param name="isUI" value="true">
<param name="dynamicStreaming" value="true">
<param name="@videoPlayer" value="3964390540001">
</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>
<p>The mean-spiritedness of declaring on a batsman who has fought a long and public battle to forge an international career just as a definitive moment beckoned was one mitigating reason for Smith opting to bat India out of the series before declaring.</p>
<p>The effect of the damp outfield on his bowlers’ capacity to grip the ball another.</p>
<p>As was the prospect of India taking the second new-ball early in the day, thus raising the hope of a lift in the miserable scoring rate above the barely-two-runs-per-over the seemingly aimless session eventually yielded.</p>
<p>And maybe even the tidal fluctuations of the nearby Yarra River.</p>
<p>Whatever the rationale, Smith was so often and so closely scrutinised by television cameras as he sat in the dressing room casually tossing a ball from hand to hand he could have been excused for thinking he had become a Big Brother inmate.</p>
<p>While the simple explanation – that in holding a two-nil series lead and having been bowled out twice in the first three Tests there was no conceivable reason to gift India the remotest chance of winning – was also the most credible, the morning’s tactics remained curious.</p>
<p>Once the prospect of losing an early wicket and having the tailenders face a new ball had passed, why not up the tempo and grant yourself more than two sessions – albeit extended ones due to poor weather – to seal the series with a win rather than a damp draw?</p>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<!-- start row for disclaimer social -->
<div class="col-lg-3 col-md-3">
</div>
<div class="col-lg-9 col-md-9">
<!-- column for main news articles -->
<div class="social-block-news-page">
<p>The opinions expressed here are the views of the writer and do not necessarily reflect the views and opinions of Cricket Australia.</p>
<ul>
<li><a id="shareFacebookHorizontal3881" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"facebook","description":"Heroics from Johnson, Harris not enough but Australia still regain Border-Gavaskar Trophy ","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" href="#" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-large icon-ca-CA-Icon-Facebook-Default"></span></a></li>
<li><a id="shareTwitterHorizontal7781" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"twitter","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" href="#" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-large icon-ca-CA-Icon-Twitter-Default"></span></a></li>
<li><a id="shareGooglePlusHorizontal1669" data-ca-package-social="{"url":"http://www.cricket.com.au/news/match-report/third-test-day-five-australia-v-india-mcg/2014-12-30","provider":"googleplus","title":"Aussies seal series win in MCG draw","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2014/12/30draw.ashx"}}" href="#" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-large icon-ca-CA-Icon-Google-Default"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<!-- start row for filed under news -->
<article class="row-articles-filed-under">
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs">
<hr>
</div>
<div class="col-lg-3 col-md-3">
<h2 class="filed-under">Filed Under</h2>
</div>
<div class="col-lg-9 col-md-9">
<div class="btn-filed-under">
<p>Australia</p>
<p>India</p>
<a href="/series/test-series-v-india/uVO2j7qg3kCNJo2viwUn_A">CommBank Test Series v India</a>
</div>
</div>
</article>
</div>
<div class="row row-ad">
<div class="hidden-lg hidden-md hidden-sm col-xs-12 mobile-no-gutter">
<div class="ad-top-padding">
<div class="ads-styled w300 add-border">
<p>Advertisement</p>
<div id="msnau_ad_banner_MRecAdBelowFileunder" class="advert" data-ad-type="MediumMobile"><!-- Ad will render here --></div>
</div>
</div>
</div>
</div><!-- end row-ad --><div class="row">
<article id="row-articles-news-top-news">
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs">
<hr>
</div>
<div class="col-lg-3 col-md-3 mobile-no-gutter">
<h2 class="top-news">Top Stories</h2>
</div>
<div class="col-lg-9 col-md-9">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 mobile-no-gutter">
<article class="article-b article-b-video top-stories-video-a">
<div class="article-b-wrapper wrapper-video">
<div class="video-top video-article-b">
<a href="/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03" class="img-link">
<img src="/~/media/News/2015/01/3Mitch.ashx?mw=768" title="" class="img-responsive" alt="">
</a>
</div>
<div class="article-b-article-info">
<p class="article-tag">
<a href="/series/test-series-v-india/uVO2j7qg3kCNJo2viwUn_A">
CommBank Test Series v India
</a>
</p>
<h3><a href="/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03">Johnson an injury worry for Aussies</a></h3>
<div class="article-info">
<div class="author-social">
<p>AAP</p>
<ul>
<li class="icon-default icon-default-first"><i class="fa fa-clock-o"></i></li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count9945").html("0");
} else {
$("#fb-count9945").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count9945">0</span></li>
</ul>
</div>
<div class="btn-group share">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="icon-ca icon-ca-CA-Icon-Share-Default"></span>
</button>
<div class="dropdown-menu share-pop-up" role="menu">
<a id="shareTwitter9457" href="#" data-ca-package-social="{"url":"http://www.cricket.com.au/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03","provider":"twitter","title":"Johnson an injury worry for Aussies","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/3Mitch.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-CA-Icon-Twitter-Default"></span></a><a id="shareFacebook5705" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03","provider":"facebook","description":"Pace spearhead misses training session with right hamstring soreness ahead of fourth Test","title":"Johnson an injury worry for Aussies","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/3Mitch.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Facebook-Default"></span></a><a id="shareGooglePlus739" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/mitchell-johnson-hamstring-injury-misses-training-doubt-for-fourth-test-v-india-at-scg/2015-01-03","provider":"googleplus","title":"Johnson an injury worry for Aussies","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/3Mitch.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Google-Default"></span></a>
</div>
</div>
</div>
</div>
</div>
</article>
<div class="video-primary-key-line">
<hr>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<article class="article-b article-b-video top-stories-video-b">
<div class="article-b-wrapper wrapper-video">
<div class="video-top video-article-b">
<a href="#" class="img-link img-article-c video-link">
<img src="/~/media/News/2015/01/03WatsonPink.ashx?mw=768" class="img-video-frame img-responsive img-align-top" alt="Shane Watson" title="Shane Watson">
</a>
</div>
<div class="article-b-article-info">
<p class="article-tag">
<a href="/series/test-series-v-india/uVO2j7qg3kCNJo2viwUn_A">
CommBank Test Series v India
</a>
</p>
<h3><a href="/news/shane-watson-says-memory-of-phillip-hughes-still-with-him-and-teammates-upon-return-to-scg/2015-01-03">Watson ready for emotional SCG return</a></h3>
<div class="article-info">
<div class="author-social">
<p>Andrew Ramsey</p>
<ul>
<li class="icon-default icon-tablet-mobile"><i class="fa fa-play-circle"></i>2:02</li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/shane-watson-says-memory-of-phillip-hughes-still-with-him-and-teammates-upon-return-to-scg/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count3442").html("0");
} else {
$("#fb-count3442").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count3442">0</span></li>
</ul>
</div>
<div class="btn-group share">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="icon-ca icon-ca-CA-Icon-Share-Default"></span>
</button>
<div class="dropdown-menu share-pop-up" role="menu">
<a id="shareTwitter2446" href="#" data-ca-package-social="{"url":"http://www.cricket.com.au/news/shane-watson-says-memory-of-phillip-hughes-still-with-him-and-teammates-upon-return-to-scg/2015-01-03","provider":"twitter","title":"Watson ready for emotional SCG return","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/03WatsonPink.ashx"}}" class="icon-default ca-socialShare-btn"><span class="icon-ca icon-ca-CA-Icon-Twitter-Default"></span></a><a id="shareFacebook4028" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/shane-watson-says-memory-of-phillip-hughes-still-with-him-and-teammates-upon-return-to-scg/2015-01-03","provider":"facebook","description":"Allrounder prepared for difficult memories in first match back after Hughes\u0027s passing","title":"Watson ready for emotional SCG return","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/03WatsonPink.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Facebook-Default"></span></a><a id="shareGooglePlus3613" href="#" class="icon-default ca-socialShare-btn" data-ca-package-social="{"url":"http://www.cricket.com.au/news/shane-watson-says-memory-of-phillip-hughes-still-with-him-and-teammates-upon-return-to-scg/2015-01-03","provider":"googleplus","title":"Watson ready for emotional SCG return","userAction":{"thumbnailURL":"http://www.cricket.com.au/~/media/News/2015/01/03WatsonPink.ashx"}}"><span class="icon-ca icon-ca-CA-Icon-Google-Default"></span></a>
</div>
</div>
</div>
</div>
</div>
</article><!-- end of article-3 -->
<div class="news-key-line">
<hr>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<section>
<h3><a href="/news/match-report/melbourne-renegades-v-melbourne-stars-ig-bash-league-match-report/2015-01-03">Stars soar, Renegades hit record low</a></h3>
<div class="social">
<ul>
<li class="icon-default"><i class="fa fa-clock-o"></i>3h ago</li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/match-report/melbourne-renegades-v-melbourne-stars-ig-bash-league-match-report/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count4668").html("0");
} else {
$("#fb-count4668").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count4668">0</span></li>
</ul>
</div>
</section>
<div class="news-key-line">
<hr>
</div>
<section>
<h3><a href="/news/ryan-harris-backs-peter-siddle-for-test-return-but-likes-the-look-of-josh-hazlewood/2015-01-03">Harris backs Siddle return to Test cricket</a></h3>
<div class="social">
<ul>
<li class="icon-default"><i class="fa fa-play-circle"></i>2:02</li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/ryan-harris-backs-peter-siddle-for-test-return-but-likes-the-look-of-josh-hazlewood/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count5099").html("0");
} else {
$("#fb-count5099").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count5099">0</span></li>
</ul>
</div>
</section>
<div class="news-key-line">
<hr>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<section>
<h3><a href="/news/brad-hodge-to-miss-remainder-of-big-bash-league-season-for-adelaide-striker-with-arm-injury/2015-01-03">Hodge likely to miss rest of BBL|04</a></h3>
<div class="social">
<ul>
<li class="icon-default"><i class="fa fa-play-circle"></i>1:23</li>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/brad-hodge-to-miss-remainder-of-big-bash-league-season-for-adelaide-striker-with-arm-injury/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count9274").html("0");
} else {
$("#fb-count9274").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count9274">0</span></li>
</ul>
</div>
</section>
<div class="news-key-line">
<hr>
</div>
<section>
<h3><a href="/news/kumar-sangakkara-fastest-player-to-12000-test-match-runs-sri-lanka-v-new-zealand/2015-01-03">Sangakkara fastest to 12,000 Test runs</a></h3>
<div class="social">
<ul>
<script type="text/javascript">
$(function () {
var url = 'http://graph.facebook.com/?id=' + 'http://www.cricket.com.au/news/kumar-sangakkara-fastest-player-to-12000-test-match-runs-sri-lanka-v-new-zealand/2015-01-03';
$.ajax({
cache: false,
type: 'GET',
crossDomain: true,
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
if (data.shares === undefined) {
$("#fb-count2976").html("0");
} else {
$("#fb-count2976").html(data.shares);
}
}
});
});
</script>
<li class="icon-default"><i class="fa fa-facebook-square"></i><span id="fb-count2976">0</span></li>
</ul>
</div>
</section>
<div class="news-key-line">
<hr>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
<!-- Aside -->
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="row row-ad hidden-sm hidden-xs">
<div class="col-lg-12">
<div class="ads-styled w300 add-border">
<p>Advertisement</p>
<div id="msnau_ad_banner_firstMRecAd1" class="advert" data-ad-type="MediumTop"><!-- Ad will render here --></div>
</div>
</div>
</div><!-- end row-ad --><article>
<div class="feature-widget feature-widget-limit">
<div class="most-popular-header">
<h2>Most Popular</h2>
</div>
<div class="most-popular-content">
<div class="list-item">
<div>
<span class="bullet">1</span>
</div><div class="item">
<h3 class="plus">
<a href="http://www.cricket.com.au/video/jake-reed-slip-first-ball-for-hobart-hurricanes-brisbane-heat-big-bash-league/2015-01-02">Reed debuts with big crash</a>
</h3>
</div>
</div>
<div class="list-item">
<div>
<span class="bullet">2</span>
</div><div class="item">
<h3 class="plus">
<a href="http://www.cricket.com.au/news/match-report/south-africa-west-indies-third-test-day-one/2015-01-03">Ramdin leads Windies fightback in Cape Town</a>
</h3>
</div>
</div>
<div class="list-item">
<div>
<span class="bullet">3</span>
</div><div class="item">
<h3 class="plus">