forked from appium-boneyard/sample-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRottenTomatoesSnapshot.html
More file actions
2192 lines (1347 loc) · 200 KB
/
RottenTomatoesSnapshot.html
File metadata and controls
2192 lines (1347 loc) · 200 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>
<!-- saved from url=(0045)http://www.rottentomatoes.com/browse/opening/ -->
<html lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" class="desktop landscape"><head prefix="og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/apps/flixstertomatoes#"><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <link rel="stylesheet" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/saved_resource" type="text/css"> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="google-site-verification" content="VPPXtECgUUeuATBacnqnCm4ydGO99reF-xgNklSbNbc"> <meta name="msvalidate.01" content="034F16304017CA7DCF45D43850915323"> <link href="http://d3biamo577v4eu.cloudfront.net/static/images/icons/apple-touch-icon.png" rel="apple-touch-icon"> <link href="http://d3biamo577v4eu.cloudfront.net/static/images/icons/favicon.ico" rel="shortcut icon" type="image/x-icon"> <link href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rt_bootstrap.css" rel="stylesheet"> <script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/get"></script><script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/optout_check"></script><script src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/quant.js" async="" type="text/javascript"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/init"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/bid"></script><script src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/init(1)"></script><script async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/controltag.js.95db9116da372b5f419ecb216e624266"></script><script src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/yieldbot.intent.js"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/linkid.js"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/controltag"></script><script src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/quant.js" async="" type="text/javascript"></script><script async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/beacon.js"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/analytics.js"></script><script async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/gtm.js"></script><script>
var dataLayer = dataLayer || [];
</script> <script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/require.js"></script> <script>
require.config({paths:{jquery:"https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min"}});</script> <script>
require.config({baseUrl:"//d3biamo577v4eu.cloudfront.net/static/js/",waitSeconds:60,config:{text:{useXhr:function(C,D,B,A){return true}}},paths:{facebook:"//connect.facebook.net/en_US/all",backbone:"//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.2.1/backbone-min",bootstrap:"//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min",clamp:"lib/clamp.min",device:"//cdnjs.cloudflare.com/ajax/libs/device.js/0.2.7/device.min",marionette:"//cdnjs.cloudflare.com/ajax/libs/backbone.marionette/2.4.3/backbone.marionette.min",moment:"//cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min",slick:["//cdn.jsdelivr.net/jquery.slick/latest/slick.min","lib/slick.min"],jqueryui:"//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min",text:"//cdnjs.cloudflare.com/ajax/libs/require-text/2.0.12/text.min",typeahead:"//cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.10.5/typeahead.bundle.min",underscore:"//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min",select2:"//cdnjs.cloudflare.com/ajax/libs/select2/3.5.2/select2.min",jwplayer:"//jwpsrv.com/library/1h4VDLs_EeOAlSIACi0I_Q",googletag:"//www.googletagservices.com/tag/js/gpt",domReady:"//cdnjs.cloudflare.com/ajax/libs/require-domReady/2.0.1/domReady.min","jquery-cookie":"//cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min",URIjs:"lib/URIjs",scrollTo:"//cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/1.4.14/jquery.scrollTo.min",nouislider:"//cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min",swiper:"lib/swiper.jquery.min",hammer:"//cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.4/hammer.min",masonry:"//cdnjs.cloudflare.com/ajax/libs/masonry/3.3.2/masonry.pkgd.min",pointroll:"//speed.pointroll.com/PointRoll/Media/Asset/RespLib/201296/resp.lib",dotdotdot:"//cdnjs.cloudflare.com/ajax/libs/jQuery.dotdotdot/1.7.4/jquery.dotdotdot.min",readmore:"//cdnjs.cloudflare.com/ajax/libs/Readmore.js/2.0.5/readmore.min",outbrain:"//widgets.outbrain.com/outbrain",omniture:"tracking/omniture",cohorts:"lib/cohorts",openx:"//optimizedby.openx.com/meta-rt.min",},shim:{bootstrap:{deps:["jquery"]},clamp:{deps:["jquery"],exports:"$clamp"},slick:{deps:["jquery"],exports:"slick"},text:{deps:["backbone"]},marionette:{deps:["jquery","underscore","backbone"],exports:"Marionette"},jwplayer:{exports:"jwplayer"},select2:{deps:["jquery"]},googletag:{exports:"googletag"},"domReady!":{exports:"domReady!"},facebook:{exports:"FB"},scrollTo:{deps:["jquery"]},"jquery-cookie":{deps:["jquery"]},jqueryui:{deps:["jquery"]},touchSwipe:{deps:["jquery"]},typeahead:{deps:["jquery","bootstrap"],exports:"typeahead"},swiper:{deps:["jquery"]},nouislider:{deps:["jquery"]},pointroll:{exports:"pointroll"},outbrain:{exports:"outbrain"},readmore:{deps:["jquery"]},dotdotdot:{deps:["jquery"]},cohorts:{deps:[],exports:"Cohorts"},openx:{exports:"openx"}}});</script> <script>
define("globals",["jquery","backbone","//d3biamo577v4eu.cloudfront.net/static/js/globalInit.js"],function(B,E,C){console.log("initializing RT globals object");var D={accountUrl:null,profileUrl:null,facebookId:null,facebookShareRatingEnabled:false,flixsterId:null,firstName:null,lastName:null,userType:"anon",friendCount:0,ratingCount:0,wtsCount:0,registerDate:"",userPlatformCode:"Unknown",userSourceTypeCode:"Unknown",loginPlatformCode:"Unknown",trackingSeassionType:"Anon",trackingSessionInfo:"handleAjaxFacebookLogin",emailStatusId:"",thumbnailUrl:""};var A=A||{};B.extend(true,A,C("http://d3biamo577v4eu.cloudfront.net/static","",""));A.Host="http://www.rottentomatoes.com";A.EditorialHost="http://editorial.rottentomatoes.com";A.CloudfrontHost="//d3biamo577v4eu.cloudfront.net";A.ForumHost="http://forum.rottentomatoes.com";A.EditorialImageHost="http://editorial.rottentomatoes.com";A.NewsThrottle={homepage:false,celebrity:false,newsAndFeature:false,episode:false,season:false,header:false,movie:"Tomatometer"};A.LoginStatusModel.set(D);console.log("Preloading LoginStatusModel");return A});require(["openx"]);require(["googletag"]);require(["pointroll"]);flix_user_id="";</script><script>console.info("require:" + window.performance.now());</script> <script>
function endsWith(str, suffix) {
return str.indexOf(suffix, str.length - suffix.length) !== -1;
}
define("gpt-setup", ["jquery", "googletag"], function($, googletag){
console.log("GPT - global setup");
/* Keep track of slots defined to googletag */
googletag.definedSlots = {};
/* Add hook for setting external targeting */
googletag.readyToFetch = $.Deferred();
googletag.registeredPlugins = {};
googletag.registerPlugin = function(name){
console.log("GPT Registering plugin - " + name);
this.registeredPlugins[name] = $.Deferred();
};
googletag.pluginReady = function(name){
console.log("GPT Plugin Ready - " + name);
this.registeredPlugins[name].resolve();
};
googletag.cmd.push(function() {
googletag.pubads()
.setTargeting("env", "prod")
.setTargeting("url", "/browse/opening/")
;
googletag.pubads().collapseEmptyDivs();
googletag.pubads().enableSingleRequest();
//googletag.pubads().enableAsyncRendering(); Async should be enabled by default
googletag.pubads().addEventListener('slotRenderEnded', function(event) {
console.log('Slot rendered:' + event.slot.getAdUnitPath() + (event.slot.getTargeting("pos")? " pos=" + event.slot.getTargeting("pos") : '') + " - " + event.size + ' Creative Id:' + event.creativeId);
if (!event.isEmpty) {
if (endsWith(event.slot.getAdUnitPath(), '/interstitial')) {
var pageViewCount = "pvc";
var pageViewCountCookieValue = $.cookie(pageViewCount);
var date = new Date();
var minutes = 60;
date.setTime(date.getTime() + (minutes * 60 * 1000));
if (pageViewCountCookieValue == null) {
$.cookie(pageViewCount, "1", {path: '/', expires : date});
}
}
if (endsWith(event.slot.getAdUnitPath(), '/sticky_leaderboard') && (event.slot.getTargeting("pos") == "top")) {
var leaderboardHeight = event.size[1];
if (leaderboardHeight > 50 && leaderboardHeight != 90){
$("#top_leaderboard_wrapper").animate({height:(leaderboardHeight+10)},1000);
}
}
if (event.size == "504,40") {
// Only show Tomatometer Sponsorship div if rendered
$("#tomatometer_sponsorship_ad").show();
}
if (event.size == "330,25") {
//Hide Trending bar social section
$("#trending_bar_social").hide();
}
}
});
});
return googletag;
});
</script><script>console.info("gpt-global:" + window.performance.now());</script> <script>
var dataLayer=dataLayer||[];dataLayer.push({deviceType:"Computer"});dataLayer.push({viewportType:window.innerWidth>=768?"desktop_view":"mobile_view"});</script> <link rel="canonical" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/Top Movies - Opening in Theaters _ Rotten Tomatoes.html"> <link rel="alternate" href="android-app://net.flixster.android/flixster/intheaters"> <title id="tabPageTitle">Top Movies - Opening in Theaters | Rotten Tomatoes</title> <meta id="pageDescription" name="description" content="Find movies opening in theaters near you. Sort by critic rating, get movie times, buy tickets, and watch trailers and interviews."> <link rel="stylesheet" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/saved_resource(1)" type="text/css"><link rel="stylesheet" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/saved_resource(2)" type="text/css"><link rel="stylesheet" type="text/css" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery.nouislider.min.css"> <script>
dataLayer.push({"listType" : "opening"});
</script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="openx" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/meta-rt.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="googletag" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/gpt.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="pointroll" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/resp.lib.js"></script> <script>console.info("after page specific head tag content:" + window.performance.now());</script> <noscript> <iframe src="//www.googletagmanager.com/ns.html?id=GTM-TW7ZFZ" height="0" width="0" style="display: none; visibility: hidden"></iframe> </noscript> <script>
require(["jquery"],function(A){(function(C,I,G,B,F){C[B]=C[B]||[];C[B].push({"gtm.start":new Date().getTime(),event:"gtm.js"});var H=I.getElementsByTagName(G)[0],E=I.createElement(G),D=B!="dataLayer"?"&l="+B:"";E.async=true;E.src="//www.googletagmanager.com/gtm.js?id="+F+D;H.parentNode.insertBefore(E,H)})(window,document,"script","dataLayer","GTM-TW7ZFZ")});</script> <script>console.info("gtm:" + window.performance.now());</script> <script>console.info("bottom of head tag: " + window.performance.now());</script> <script src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/pubads_impl_75.js" async=""></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="backbone" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/backbone-min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="//d3biamo577v4eu.cloudfront.net/static/js/globalInit.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/globalInit.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="domReady" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/domReady.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="facebook" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/all.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery-cookie" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery.cookie.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bootstrap" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/bootstrap.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="underscore" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/underscore-min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/jspjs/modalTrailer.jsp.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/modalTrailer.jsp.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/startingPoint/listBrowserStart.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/listBrowserStart.js"></script><script type="text/javascript" charset="UTF-8" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/8qJ7ExwQHPgcTJwTtypNFEIsVLbRZOE8r13Dqw8Uc1s.js"></script><style type="text/css">.fb_hidden{position:absolute;top:-10000px;z-index:10001}.fb_reposition{overflow-x:hidden;position:relative}.fb_invisible{display:none}.fb_reset{background:none;border:0;border-spacing:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal}.fb_reset>div{overflow:hidden}.fb_link img{border:none}
.fb_dialog{background:rgba(82, 82, 82, .7);position:absolute;top:-10000px;z-index:10001}.fb_reset .fb_dialog_legacy{overflow:visible}.fb_dialog_advanced{padding:10px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.fb_dialog_content{background:#fff;color:#333}.fb_dialog_close_icon{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;_background-image:url(https://static.xx.fbcdn.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif);cursor:pointer;display:block;height:15px;position:absolute;right:18px;top:17px;width:15px}.fb_dialog_mobile .fb_dialog_close_icon{top:5px;left:5px;right:auto}.fb_dialog_padding{background-color:transparent;position:absolute;width:1px;z-index:-1}.fb_dialog_close_icon:hover{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent;_background-image:url(https://static.xx.fbcdn.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif)}.fb_dialog_close_icon:active{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent;_background-image:url(https://static.xx.fbcdn.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif)}.fb_dialog_loader{background-color:#f6f7f8;border:1px solid #606060;font-size:24px;padding:20px}.fb_dialog_top_left,.fb_dialog_top_right,.fb_dialog_bottom_left,.fb_dialog_bottom_right{height:10px;width:10px;overflow:hidden;position:absolute}.fb_dialog_top_left{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 0;left:-10px;top:-10px}.fb_dialog_top_right{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -10px;right:-10px;top:-10px}.fb_dialog_bottom_left{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -20px;bottom:-10px;left:-10px}.fb_dialog_bottom_right{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -30px;right:-10px;bottom:-10px}.fb_dialog_vert_left,.fb_dialog_vert_right,.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{position:absolute;background:#525252;filter:alpha(opacity=70);opacity:.7}.fb_dialog_vert_left,.fb_dialog_vert_right{width:10px;height:100%}.fb_dialog_vert_left{margin-left:-10px}.fb_dialog_vert_right{right:0;margin-right:-10px}.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{width:100%;height:10px}.fb_dialog_horiz_top{margin-top:-10px}.fb_dialog_horiz_bottom{bottom:0;margin-bottom:-10px}.fb_dialog_iframe{line-height:0}.fb_dialog_content .dialog_title{background:#6d84b4;border:1px solid #3a5795;color:#fff;font-size:14px;font-weight:bold;margin:0}.fb_dialog_content .dialog_title>span{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;float:left;padding:5px 0 7px 26px}body.fb_hidden{-webkit-transform:none;height:100%;margin:0;overflow:visible;position:absolute;top:-10000px;left:0;width:100%}.fb_dialog.fb_dialog_mobile.loading{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/ya/r/3rhSv5V8j3o.gif) white no-repeat 50% 50%;min-height:100%;min-width:100%;overflow:hidden;position:absolute;top:0;z-index:10001}.fb_dialog.fb_dialog_mobile.loading.centered{width:auto;height:auto;min-height:initial;min-width:initial;background:none}.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner{width:100%}.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content{background:none}.loading.centered #fb_dialog_loader_close{color:#fff;display:block;padding-top:20px;clear:both;font-size:18px}#fb-root #fb_dialog_ipad_overlay{background:rgba(0, 0, 0, .45);position:absolute;left:0;top:0;width:100%;min-height:100%;z-index:10000}#fb-root #fb_dialog_ipad_overlay.hidden{display:none}.fb_dialog.fb_dialog_mobile.loading iframe{visibility:hidden}.fb_dialog_content .dialog_header{-webkit-box-shadow:white 0 1px 1px -1px inset;background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#738ABA), to(#2C4987));border-bottom:1px solid;border-color:#1d4088;color:#fff;font:14px Helvetica, sans-serif;font-weight:bold;text-overflow:ellipsis;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0;vertical-align:middle;white-space:nowrap}.fb_dialog_content .dialog_header table{-webkit-font-smoothing:subpixel-antialiased;height:43px;width:100%}.fb_dialog_content .dialog_header td.header_left{font-size:12px;padding-left:5px;vertical-align:middle;width:60px}.fb_dialog_content .dialog_header td.header_right{font-size:12px;padding-right:5px;vertical-align:middle;width:60px}.fb_dialog_content .touchable_button{background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#4966A6), color-stop(.5, #355492), to(#2A4887));border:1px solid #2f477a;-webkit-background-clip:padding-box;-webkit-border-radius:3px;-webkit-box-shadow:rgba(0, 0, 0, .117188) 0 1px 1px inset, rgba(255, 255, 255, .167969) 0 1px 0;display:inline-block;margin-top:3px;max-width:85px;line-height:18px;padding:4px 12px;position:relative}.fb_dialog_content .dialog_header .touchable_button input{border:none;background:none;color:#fff;font:12px Helvetica, sans-serif;font-weight:bold;margin:2px -12px;padding:2px 6px 3px 6px;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog_content .dialog_header .header_center{color:#fff;font-size:16px;font-weight:bold;line-height:18px;text-align:center;vertical-align:middle}.fb_dialog_content .dialog_content{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;border:1px solid #555;border-bottom:0;border-top:0;height:150px}.fb_dialog_content .dialog_footer{background:#f6f7f8;border:1px solid #555;border-top-color:#ccc;height:40px}#fb_dialog_loader_close{float:left}.fb_dialog.fb_dialog_mobile .fb_dialog_close_button{text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon{visibility:hidden}#fb_dialog_loader_spinner{animation:rotateSpinner 1.2s linear infinite;background-color:transparent;background-image:url(https://static.xx.fbcdn.net/rsrc.php/v2/yD/r/t-wz8gw1xG1.png);background-repeat:no-repeat;background-position:50% 50%;height:24px;width:24px}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.fb_iframe_widget{display:inline-block;position:relative}.fb_iframe_widget span{display:inline-block;position:relative;text-align:justify}.fb_iframe_widget iframe{position:absolute}.fb_iframe_widget_fluid_desktop,.fb_iframe_widget_fluid_desktop span,.fb_iframe_widget_fluid_desktop iframe{max-width:100%}.fb_iframe_widget_fluid_desktop iframe{min-width:220px;position:relative}.fb_iframe_widget_lift{z-index:1}.fb_hide_iframes iframe{position:relative;left:-10000px}.fb_iframe_widget_loader{position:relative;display:inline-block}.fb_iframe_widget_fluid{display:inline}.fb_iframe_widget_fluid span{width:100%}.fb_iframe_widget_loader iframe{min-height:32px;z-index:2;zoom:1}.fb_iframe_widget_loader .FB_Loader{background:url(https://static.xx.fbcdn.net/rsrc.php/v2/y9/r/jKEcVPZFk-2.gif) no-repeat;height:32px;width:32px;margin-left:-16px;position:absolute;left:50%;z-index:4}</style><script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rta.js" async=""></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="marionette" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/backbone.marionette.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="//d3biamo577v4eu.cloudfront.net/static/js/jspjs/bodyScript.tag.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/bodyScript.tag.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="omniture" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/omniture.js"></script><style type="text/css">
.recaptcha_is_showing_audio .recaptcha_only_if_image,.recaptcha_isnot_showing_audio .recaptcha_only_if_audio,.recaptcha_had_incorrect_sol .recaptcha_only_if_no_incorrect_sol,.recaptcha_nothad_incorrect_sol .recaptcha_only_if_incorrect_sol{display:none !important}</style><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="device" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/device.min.js"></script><script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/reload"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/App.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/App.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/routers/ListBrowserRouter.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ListBrowserRouter.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/controllers/ListBrowserController.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ListBrowserController.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/ListBrowserView.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ListBrowserView.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/models/ListBrowserModel.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ListBrowserModel.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="lib/s_code_rottentomatoes" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/s_code_rottentomatoes.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="text" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/text.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/PageHeader.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/PageHeader.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/models/NewsModel.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/NewsModel.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/models/PageHeaderModel.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/PageHeaderModel.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/PageHeaderNewsView.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/PageHeaderNewsView.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/search.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/search.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/SocialTool.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/SocialTool.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="clamp" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/clamp.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jqueryui" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery-ui.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="nouislider" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery.nouislider.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="dotdotdot" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/jquery.dotdotdot.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/HoverBubble.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/HoverBubble.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://d3biamo577v4eu.cloudfront.net/static/js/app/views/RatingV2.js" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/RatingV2.js"></script><script type="text/javascript" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/osd.js"></script><script type="text/javascript" defer="" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/initcb"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ortcstandalonegz.js"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/swfobject.js"></script><script type="text/javascript" async="" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/ws-4.4.7i_cc.js"></script></head><body class="body "> <script>console.info("body-top:" + window.performance.now());</script> <div id="emptyPlaceholder"></div> <div id="fb-root" class=" fb_reset"><div style="position: absolute; top: -10000px; height: 0px; width: 0px;"><div><iframe name="fb_xdm_frame_http" frameborder="0" allowtransparency="true" allowfullscreen="true" scrolling="no" title="Facebook Cross Domain Communication Frame" aria-hidden="true" tabindex="-1" id="fb_xdm_frame_http" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/wjDNIDNrTQG.html" style="border: none;"></iframe><iframe name="fb_xdm_frame_https" frameborder="0" allowtransparency="true" allowfullscreen="true" scrolling="no" title="Facebook Cross Domain Communication Frame" aria-hidden="true" tabindex="-1" id="fb_xdm_frame_https" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/wjDNIDNrTQG(1).html" style="border: none;"></iframe></div></div><div style="position: absolute; top: -10000px; height: 0px; width: 0px;"><div></div></div></div> <script>
require(["jquery","facebook","globals"],function(C,B,A){B.init({appId:"326803741017",version:"v2.2",status:true,cookie:true,xfbml:true,});A.fb_ready.resolve();B.Event.subscribe("auth.statusChange",function(D){if(D.status=="connected"){C.post("/login/fb_ajax",{fb_id:D.authResponse.userID,fb_access_token:D.authResponse.accessToken,token_expires:D.authResponse.expiresIn}).success(function(F,E){C(document).ready(function(){A.LoginStatusModel.set(F);A.social_init.resolve();A.fb_connected.resolve();console.log("fb_ajax returns. RT.social_init:"+A.social_init.state()+" RT.fb_connected:"+A.fb_connected.state())})})}});B.getLoginStatus(function(D){if(D.status=="connected"){A.fb_connected.done(function(E){B.api("/me","get",{fields:"gender"},function(F){window.gender=F.gender;if("Krux" in window){Krux("page:load",function(G){if(G){console.log("Krux error="+G)}},{pageView:false})}})})}})});</script> <script>console.info("facebook:" + window.performance.now());</script> <div id="overlay" style="height: 0px; display: none;"><div id="google_ads_iframe_/55153744/rottentomatoes/movie/interstitial_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/interstitial_0" name="google_ads_iframe_/55153744/rottentomatoes/movie/interstitial_0" width="1" height="1" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div></div> <script>
require(["gpt-setup", "jquery", "jquery-cookie"], function(googletag){
var pageViewCount = $.cookie("pvc");
if (pageViewCount == null || (parseInt(pageViewCount) == 0) || (parseInt(pageViewCount) % 3 == 0)) {
googletag.cmd.push(function() {
var slot=googletag.defineOutOfPageSlot('/55153744/rottentomatoes/movie/interstitial', 'overlay').addService(googletag.pubads());
googletag.definedSlots['overlay']=slot;
});
}
});
</script> <div id="signup" class="modal fade"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span><span class="sr-only">Close</span> </button> <h4 class="modal-title">Sign up for Rotten Tomatoes</h4> </div> <div class="modal-body"> <p class="text-center"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rtlogo.png" style="height: 50px;"> </p> <div class="container-fluid"> <div class="row"> <div class="col-xs-6 text-right"> <i class="glyphicon glyphicon-star"></i> </div> <div class="col-xs-18"> <p> <strong>Rate movies & TV</strong> and see your friends' ratings </p> </div> </div> <div class="row"> <div class="col-xs-6 text-right"> <i class="glyphicon glyphicon-thumbs-up"></i> </div> <div class="col-xs-18"> <p> <strong>Get recommendations</strong> personalized for you </p> </div> </div> <div class="row"> <div class="col-xs-6 text-right"> <i class="glyphicon glyphicon-comment"></i> </div> <div class="col-xs-18"> <p> <strong>Join the discussion</strong> with other movie buffs </p> </div> </div> <br> <p class="text-center"> <small> By clicking Sign up, I agree to the <a href="http://www.rottentomatoes.com/terms/" target="_blank">Terms of Service</a> and <a href="http://www.rottentomatoes.com/privacy/">Privacy Policy</a>. </small> </p> <p class="text-center"> <a href="javascript:FB.login();" class="btn btn-primary-fb btn-lg"> <i class="fontelloIcon icon-facebook-squared"></i> Sign up with Facebook </a><br> <small>or <a href="http://www.rottentomatoes.com/browse/opening/#signup_email" data-dismiss="modal" data-toggle="modal" data-target="#signup_email">sign up with email</a></small> </p> <br> <p class="text-center"> <small>Already have an account? <a href="http://www.rottentomatoes.com/browse/opening/#login" data-dismiss="modal" data-toggle="modal" data-target="#login">Log in here</a></small> </p> </div> </div> </div> </div> </div> <div id="signup_email" class="modal fade"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span><span class="sr-only">Close</span> </button> <h4 class="modal-title">Sign up with Email</h4> </div> <div class="modal-body"> <p class="text-center"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rtlogo.png" style="height: 50px;"> </p> <p class="text-center"> <small>Already have an account? <a href="http://www.rottentomatoes.com/browse/opening/#login" data-dismiss="modal" data-toggle="modal" data-target="#login">Log in here</a></small> </p> <script type="text/javascript">
var RecaptchaOptions={theme:"custom",custom_theme_widget:"recaptcha_widget"};</script> <form class="form-horizontal" method="POST" role="form" action="https://www.rottentomatoes.com/user/account/action/register/"> <input type="hidden" name="invite" value=""> <input type="hidden" name="v" value=""> <input name="login_redirect" type="hidden" value="http://www.rottentomatoes.com/browse/opening/"> <div class="form-group"> <label class="control-label col-sm-6" for="register_first_name">First Name</label> <div class="col-sm-18"> <input class="form-control" id="register_first_name" name="register_first_name" placeholder="first name"> </div> </div> <div class="form-group"> <label class="control-label col-sm-6" for="register_last_name">Last Name</label> <div class="col-sm-18"> <input class="form-control" id="register_last_name" name="register_last_name" placeholder="last name"> </div> </div> <div class="form-group"> <label class="control-label col-sm-6" for="register_email">Email</label> <div class="col-sm-18"> <input class="form-control" id="register_email" name="register_email" value="" type="email" placeholder="e.g. [email protected]"> </div> </div> <div class="form-group"> <label class="control-label col-sm-6" for="register_birthday_month">Birthday</label> <div class="col-sm-9"> <select class="form-control" name="register_birthday_month" id="register_birthday_month"> <option value="-1">Month</option> <option value="1">January</option> <option value="2">February</option> <option value="3">March</option> <option value="4">April</option> <option value="5">May</option> <option value="6">June</option> <option value="7">July</option> <option value="8">August</option> <option value="9">September</option> <option value="10">October</option> <option value="11">November</option> <option value="12">December</option> </select> </div> <div class="col-sm-4"> <select class="form-control" name="register_birthday_day" id="register_birthday_day"> <option value="0">Day</option> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> <option>6</option> <option>7</option> <option>8</option> <option>9</option> <option>10</option> <option>11</option> <option>12</option> <option>13</option> <option>14</option> <option>15</option> <option>16</option> <option>17</option> <option>18</option> <option>19</option> <option>20</option> <option>21</option> <option>22</option> <option>23</option> <option>24</option> <option>25</option> <option>26</option> <option>27</option> <option>28</option> <option>29</option> <option>30</option> <option>31</option> </select> </div> <div class="col-sm-5"> <select class="form-control" name="register_birthday_year" id="register_birthday_year"> <option value="2015">Year</option> <option>2014</option> <option>2013</option> <option>2012</option> <option>2011</option> <option>2010</option> <option>2009</option> <option>2008</option> <option>2007</option> <option>2006</option> <option>2005</option> <option>2004</option> <option>2003</option> <option>2002</option> <option>2001</option> <option>2000</option> <option>1999</option> <option>1998</option> <option>1997</option> <option>1996</option> <option>1995</option> <option>1994</option> <option>1993</option> <option>1992</option> <option>1991</option> <option>1990</option> <option>1989</option> <option>1988</option> <option>1987</option> <option>1986</option> <option>1985</option> <option>1984</option> <option>1983</option> <option>1982</option> <option>1981</option> <option>1980</option> <option>1979</option> <option>1978</option> <option>1977</option> <option>1976</option> <option>1975</option> <option>1974</option> <option>1973</option> <option>1972</option> <option>1971</option> <option>1970</option> <option>1969</option> <option>1968</option> <option>1967</option> <option>1966</option> <option>1965</option> <option>1964</option> <option>1963</option> <option>1962</option> <option>1961</option> <option>1960</option> <option>1959</option> <option>1958</option> <option>1957</option> <option>1956</option> <option>1955</option> <option>1954</option> <option>1953</option> <option>1952</option> <option>1951</option> <option>1950</option> <option>1949</option> <option>1948</option> <option>1947</option> <option>1946</option> <option>1945</option> <option>1944</option> <option>1943</option> <option>1942</option> <option>1941</option> <option>1940</option> <option>1939</option> <option>1938</option> <option>1937</option> <option>1936</option> <option>1935</option> <option>1934</option> <option>1933</option> <option>1932</option> <option>1931</option> <option>1930</option> <option>1929</option> <option>1928</option> <option>1927</option> <option>1926</option> <option>1925</option> <option>1924</option> <option>1923</option> <option>1922</option> <option>1921</option> <option>1920</option> <option>1919</option> <option>1918</option> <option>1917</option> <option>1916</option> <option>1915</option> </select> </div> </div> <div class="form-group"> <label for="register_password" class="control-label col-sm-6">Password</label> <div class="col-sm-18"> <input class="form-control" id="register_password" name="register_password" type="password" placeholder="At least 6 characters"> </div> </div> <div class="form-group"> <label for="register_password_check" class="control-label col-sm-6">Confirm Password</label> <div class="col-sm-18"> <input class="form-control" id="register_password_check" name="register_password_check" type="password" placeholder="Confirm password"> </div> </div> <div id="recaptcha_widget" class=" recaptcha_nothad_incorrect_sol recaptcha_isnot_showing_audio"> <div class="form-group"> <label class="control-label col-sm-6" for="recaptcha_response_field"><span class="recaptcha_only_if_image">Type in the <br>words <a href="javascript:Recaptcha.showhelp()"><i class="glyphicon glyphicon-question-sign"></i></a>: </span></label> <div class="col-sm-18"> <div id="recaptcha_image" style="width: 300px; height: 57px;"><img id="recaptcha_challenge_image" alt="Проверка по слову reCAPTCHA" height="57" width="300" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/image"></div> </div> </div> <div class="form-group"> <label class="control-label col-sm-6"><span class="recaptcha_only_if_incorrect_sol" style="color: red">Incorrect please try again</span></label> <div class="col-sm-18"> <div class="input-group"> <span id="recaptcha_challenge_field_holder" style="display: none;"><input type="hidden" name="recaptcha_challenge_field" id="recaptcha_challenge_field" value="03AHJ_VuuC8HGeyx8l_hPoJH0EQSLFKBFm0OZSZvR2UMy9zKqaJOF2OAtrfji_1dQjJeB87J2VZBL_WxJY1FU0Hr3Q8raB7WFB5JolViofZN0BkWqXGLXmNyfhwOy0s073ph6mAc-UhpGLfLbPFvtlv6Ki20eUphxtB6nSinhcbLNFpGCP1bHZcGEHX-dF0Fwnrt5X_VqqnrdlBXoaVXVJbU9Oyq93z8QU6RN5iYXyp_kNiE2t64gIfTefEgXmH8bh04gl1NSQ_2LUCq3Pjh7g5moyTEWpPTPthg"></span><input class="form-control" type="text" id="recaptcha_response_field" name="recaptcha_response_field" autocomplete="off"> <span class="input-group-btn"><a class="btn btn-default" href="javascript:Recaptcha.reload()"><i class="glyphicon glyphicon-refresh"></i></a></span> </div> </div> </div> </div> <div class="form-group"> <div class="col-sm-6"> </div> <div class="col-sm-18"> <small>By clicking Sign Up, I agree to the <a href="http://www.rottentomatoes.com/terms/" target="_blank">Terms of Service</a> and <a href="http://www.rottentomatoes.com/privacy/" target="_blank">Privacy Policy</a></small> </div> </div> <div class="form-group"> <div class="col-sm-6"> </div> <div class="col-sm-18"> <button type="submit" class="btn btn-primary-rt">Sign Up</button> </div> </div> </form> </div> </div> </div> </div> <div id="login" class="modal fade"> <div class="modal-dialog modal-sm"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span><span class="sr-only">Close</span> </button> <h4 class="modal-title">Log In to Rotten Tomatoes</h4> </div> <div class="modal-body"> <p class="text-center"><img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rtlogo.png" style="height: 50px;"></p> <p> <a id="fbLoginButton" href="http://www.rottentomatoes.com/browse/opening/#" class="btn btn-primary-fb btn-lg fullWidth"><i class="fontelloIcon icon-facebook-squared"></i> Log in with Facebook</a> </p> <p class="text-center">OR</p> <form role="form" method="POST" action="https://www.rottentomatoes.com/user/account/login/"> <div class="form-group"> <input type="text" class="form-control" name="login_username" placeholder="Username or Email"> </div> <div class="form-group"> <input type="password" class="form-control" name="login_password" placeholder="Password"> </div> <div class="form-group"> <button type="submit" class="btn btn-default">Log In</button> <p><small> <a href="http://www.rottentomatoes.com/login/forgot_password/">Forgot your password?</a><br> Don't have an account? <a href="http://www.rottentomatoes.com/browse/opening/#signup" data-dismiss="modal" data-toggle="modal" data-target="#signup">Sign up here</a> </small></p> </div> <input type="hidden" name="redirectUrl" value="http://www.rottentomatoes.com/browse/opening/"> </form> </div> </div> </div> </div> <script type="text/javascript">
require(["jquery","globals","bootstrap","domReady!"],function(C,B){C("#fbLoginButton").click(function(){B.fb_ready.done(function(){FB.login(function(D){},{scope:"email,publish_actions,user_friends"})})});B.fb_connected.done(function A(){C("#signup").modal("hide");C("#login").modal("hide")})})();</script><div id="navMenu" class="modal fade" role="dialog" aria-labelledby="navMenu"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-body"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span class="glyphicon glyphicon-remove"> </span></button> <div class="pull-left"> <ul class="list-inline social"> <li><a id="header-facebook-social-link" class="unstyled fontelloIcon icon-facebook-squared" href="http://www.facebook.com/rottentomatoes" target="_blank"></a></li> <li><a id="header-twitter-social-link" class="unstyled fontelloIcon icon-twitter" href="http://twitter.com/rottentomatoes" target="_blank"></a></li> </ul> </div> <div class="items"> <div class="item"> <a class="homeTab unstyled navLink fullLink" href="http://www.rottentomatoes.com/"> Home </a> </div> <div class="item"> <a class="boxofficeTab unstyled navLink fullLink" href="http://www.rottentomatoes.com/lists/theater/"> Top Box Office </a> </div> <div class="item"> <a class="theatersTab unstyled navLink fullLink" href="http://www.rottentomatoes.com/theaters/"> Tickets & Showtimes </a> </div> <div class="item"> <a class="dvdTab unstyled navLink fullLink" href="http://www.rottentomatoes.com/lists/dvd/"> DVD & Streaming </a> </div> <div class="item"> <a class="newsTab unstyled navLink fullLink" href="http://editorial.rottentomatoes.com/"> News </a> </div> <div class="item"> <a class="newsletterTab unstyled navLink fullLink" href="http://www.rottentomatoes.com/newsletter/"> Join Newsletter </a> </div> </div> <div class="loginArea"> <a href="http://www.rottentomatoes.com/browse/opening/#signup" data-toggle="modal" data-target="#signup" class="signupLink login">SIGN UP</a> <a href="http://www.rottentomatoes.com/browse/opening/#login" data-toggle="modal" data-target="#login" class="loginLink login">LOG IN</a> <div class="userProfile" style="display:none"> <a class="userProfileLink"> <div class="media"> <div class="pull-left"> <img class="media-object" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/picture"> </div> <div class="pull-right"> <span class="glyphicon glyphicon-cog"> </span></div> <div class="media-body"> <span class="name">Jester McGree</span> </div> </div> </a> </div> <div class="logoutRow" style="display:none"> <a class="logout" href="http://www.rottentomatoes.com/logout/"> Logout </a> </div> </div> </div> </div> </div> </div><div class="body_main container"> <div id="whatIsTomatometer" class="modal fade"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span><span class="sr-only">Close</span> </button> <h2 class="modal-title">What is the Tomatometer?</h2> </div> <div class="modal-body"> <p> The Tomatometer rating based on the published opinions of hundreds of film and television critics is a trusted measurement of movie and TV programming quality for millions of moviegoers. It represents the percentage of professional critic reviews that are positive for a given film or television show. </p> <div class="row-sameColumnHeight noSpacing" style="margin:20px 0"> <div class="col-xs-18" style="vertical-align:bottom"> <div class="title"> <h3> <span style="background-color:white">From the Critics</span> </h3> </div> </div> <div class="col-xs-6" style="vertical-align:bottom"> <h3 class="noSpacing center">From RT Users Like You!</h3> </div> </div> <div class="row-sameColumnHeight noSpacing"> <div class="col-xs-18"> <div class="col-xs-8 center"> <span class="icon huge fresh"></span> <p class="noSpacing bold">Fresh</p> <p>The Tomatometer is 60% or higher.</p> </div> <div class="col-xs-8 center"> <span class="icon huge rotten"></span> <p class="noSpacing bold">Rotten</p> <p>The Tomatometer is 59% or lower.</p> </div> <div class="col-xs-8 center"> <span class="icon huge certified"></span> <p class="noSpacing bold">Certified Fresh</p> <p> Movies and TV shows are Certified Fresh with a steady Tomatometer of 75% or higher after a set amount of reviews (80 for wide-release movies, 40 for limited-release movies, 20 for TV shows), including 5 reviews from Top Critics. </p> </div> </div> <div class="col-xs-6 center"> <span class="icon huge popcorn"></span> <p class="noSpacing bold">Audience Score</p> <p>Percentage of users who rate a movie or TV show positively.</p> </div> </div> <div class="clickForMore" style="margin-bottom:0"> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/about/">Learn More <span class="glyphicon glyphicon-menu-right"></span></a> </div> </div> </div> </div> </div><div id="header_and_leaderboard"> <div id="top_leaderboard_wrapper" class="leaderboard_wrapper "> <div id="top_leaderboard_helper" class="leaderboard_helper"> <div id="leaderboard_top_ad"> <script>
require(["gpt-setup"], function(googletag){
googletag.cmd.push(function() {
var mapping = googletag.sizeMapping()
.addSize([768, 494],[[1100,150], [728,90],[1010,500],[1010,250],[1010,300],[1010,150],[1010,95],[1010,66],[970,250],[970,66]])
.addSize([0, 0], [[5,5], [320, 50], [320, 70], [320, 150], [320, 400], [320, 480], [540, 385]])
.build();
var slot=googletag.defineSlot('/55153744/rottentomatoes/movie/sticky_leaderboard', '[728,90]', 'leaderboard_top_ad')
.defineSizeMapping(mapping)
.setTargeting("pos", "top")
.addService(googletag.pubads());
googletag.definedSlots['leaderboard_top_ad']=slot;
});
});
</script> <div id="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_leaderboard_0__container__" style="border: 0pt none;" ws-zone="250950.00"><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_leaderboard_0" name="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_leaderboard_0" width="728" height="90" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;" loaded="1"></iframe></div><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_leaderboard_0__hidden__" name="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_leaderboard_0__hidden__" width="0" height="0" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom; visibility: hidden; display: none;"></iframe></div> </div> </div> <div class="header_main container"> <div id="navbar" class="navbar navbar-rt" role="navigation"> <div class="navbar-header pull-right hidden-xs"> <div class="header_links"> <a id="header-whats-the-tomatometer" data-toggle="modal" data-target="#whatIsTomatometer">What's the Tomatometer?</a> <a id="header-top-bar-critics" href="http://www.rottentomatoes.com/critics/">RT Critics</a> <a id="header-top-bar-newsletter" href="http://www.rottentomatoes.com/newsletter/">Newsletter</a> <div id="headerUserSection" style="display: inline-block;"> <a id="header-top-bar-signup" href="http://www.rottentomatoes.com/browse/opening/#signup" data-toggle="modal" data-target="#signup" class="signupLink login">SIGN UP</a> <a id="header-top-bar-login" href="http://www.rottentomatoes.com/browse/opening/#login" data-toggle="modal" data-target="#login" class="loginLink login">LOG IN</a> <div class="userDropdown dropdown" style="display: none;"> <a href="http://www.rottentomatoes.com/user/id/"><img class="userThumb"><span class="userName">Logged In</span> <span class="fontelloIcon icon-down-dir"></span></a> <ul class="dropdown-menu roundMenu"> <li class="media userStats"> <a class="pull-left" href="http://www.rottentomatoes.com/user/id/"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/actor.default.tmb.gif" width="40" alt=""> </a> <div class="media-body"> <div class="name"> <a class="unstyled articleLink name"> </a> </div> <div class="wts"> <a class="unstyled articleLink stat"> <span class="glyphicon glyphicon-plus" style="color:#0C89C8"></span> 0 Want To See </a> </div> <div class="ratings"> <a class="unstyled articleLink stat"> <span class="glyphicon glyphicon-star" style="color:#F18714"></span> 0 Ratings </a> </div> <div class="friends"> <a class="unstyled articleLink stat"> <span class="icon friends"></span> 0 friends </a> </div> </div> </li> <li class="header-top-bar-item"><a id="header-top-bar-profile" class="articleLink" href="http://www.rottentomatoes.com/user/" style="margin-bottom:-4px">Profile</a></li> <li class="header-top-bar-item"><a id="header-top-bar-account" class="articleLink" href="http://www.rottentomatoes.com/user/account/" style="margin-bottom:-4px">Account</a></li> <li class="header-top-bar-item"><a id="header-top-bar-logout" class="articleLink" href="http://www.rottentomatoes.com/logout/">Log Out</a></li> </ul> </div> </div> </div> </div> <div id="header_brand_column" class="col-sm-13 col-full-xs"> <div class="hidden-xs desktopNav"> <div id="navbar_brand" class="navbar-brand"> <a id="header-rt-logo" href="http://www.rottentomatoes.com/"> <img id="original_rt_logo" src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rtlogo.png"> </a> </div> <form action="http://www.rottentomatoes.com/search/" method="get"> <div class="navbar-searchbox main"> <div class="input-group"> <input name="search" type="text" class="form-control ui-autocomplete-input" placeholder="Search movies, TV, actors, more..." id="search-term" autocomplete="off"> <div class="input-group-btn"> <button type="submit" class="btn btn-default searchBtn"> <em class="glyphicon glyphicon-search"></em> </button> </div> <div class="navbar-close"> <button type="button" class="btn btn-default"> <span class="glyphicon glyphicon-remove"> </span></button> </div> </div> </div> </form> </div> <div class="visible-xs mobileNav"> <div> <a href="http://www.rottentomatoes.com/search/mobile/"> <button class="pull-right navbar-button searchButton"> <em class="glyphicon glyphicon-search white"></em> </button> </a> </div> <div class="btn-group pull-left"> <button class="pull-left navbar-button menuButton dropdown-toggle visible-xs" type="button" data-toggle="modal" aria-expanded="false" data-target="#navMenu"> <span class="glyphicon glyphicon-menu-hamburger"> </span></button> </div> <div class="navbar-brand"> <a id="header-rt-logo" href="http://www.rottentomatoes.com/"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/rtlogo.png"> </a> <div id="new_logo_ad" style="height: 0px; display: none;"> <script>
require(["gpt-setup"], function(googletag){
googletag.cmd.push(function() {
var slot=googletag.defineSlot('/55153744/rottentomatoes/movie/new_logo', [[210,83]], 'new_logo_ad').addService(googletag.pubads()).setTargeting("strnativekey","");
googletag.definedSlots['new_logo_ad']=slot;
});
});
</script> <div id="google_ads_iframe_/55153744/rottentomatoes/movie/new_logo_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/new_logo_0" name="google_ads_iframe_/55153744/rottentomatoes/movie/new_logo_0" width="210" height="83" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div></div> </div> </div> </div> <div id="menu" class="navbar-nav col-sm-11 hidden-xs"> <ul class="list-inline"> <li class="menuHeader center dropdown noSpacing"> <a id="movieMenu" role="button" class="h2 white" href="http://www.rottentomatoes.com/browse/"> Movies & DVDs<span class="fontelloIcon icon-down-dir"></span> </a> <div class="dropdown-menu" role="menu" aria-labelledby="movieMenu"> <div class="row-sameColumnHeight"> <div class="col-xs-5 subnav"> <div class="innerSubnav"> <h2 class="title">Movies in Theaters</h2> <ul class="list-unstyled" id="header-movies-in-theaters"> <li> <a class="unstyled articleLink" href="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/Top Movies - Opening in Theaters _ Rotten Tomatoes.html">Opening This Week</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/in-theaters/">Top Box Office</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/upcoming/">Coming Soon to Theaters</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/box-office/">Weekend Earnings</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/cf-in-theaters/">Certified Fresh Movies</a> </li> </ul> </div> </div> <div class="col-xs-5 subnav"> <div class="innerSubnav"> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/dvd/"><h2 class="title">On Dvd & Streaming</h2></a> <ul class="list-unstyled" id="header-on-dvd-streaming"> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-all/?services=netflix_iw">Netflix Streaming</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-all/?services=itunes">iTunes</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-all/?services=amazon_prime;amazon">Amazon and Amazon Prime</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-top-rentals/">Top Rentals</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-new-releases/">New Releases</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-upcoming/">Coming Soon to DVD</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/cf-dvd-all/">Certified Fresh Movies</a> </li> <li> <a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/dvd-all/">Browse All</a> </li> </ul> </div> </div> <div class="col-xs-3 subnav"> <div class="innerSubnav"> <h2 class="title">More</h2> <ul class="list-unstyled" id="header-movies-more"> <li><a class="unstyled articleLink" href="http://www.rottentomatoes.com/top/">Top Movies</a></li> <li><a class="unstyled articleLink" href="http://www.rottentomatoes.com/trailers/">Trailers</a></li> <li><a class="unstyled articleLink" href="http://www.rottentomatoes.com/photos/">Photos</a></li> <li><a class="unstyled articleLink" href="http://forum.rottentomatoes.com/">Forums</a></li> </ul> </div> </div> <div class="col-xs-11 subnav"> <h2 class="title">Certified Fresh Picks</h2> <div class="freshPicks inDropdown" id="header-certified-fresh-picks"> </div> </div> </div> </div> </li> <li class="menuHeader center dropdown noSpacing dropdown-toggle"> <a id="tvMenu" class="h2" href="http://www.rottentomatoes.com/top-tv/"> TV<span class="fontelloIcon icon-down-dir"></span></a> <div id="tvMenuDropdown" class="dropdown-menu" role="menu" aria-labelledby="tvMenu"> <div class="row-sameColumnHeight"> <div class="col-xs-7 subnav"> <div class="innerSubnav" id="header-tv-col1"> <div class="clickForMore"> <a id="tv-list-21-view-all" class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/tv-list-1/"> View All <span class="glyphicon glyphicon-menu-right"> </span></a> </div> <h2 class="title"></h2> <table id="tv-list-21" class="movie_list tv_list"> <tbody><tr><td><img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"></td></tr> </tbody></table> </div> </div> <div class="col-xs-7 subnav"> <div class="innerSubnav" id="header-tv-col2"> <div class="clickForMore"> <a id="tv-list-24-view-all" class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/tv-list-2/"> View All<span class="glyphicon glyphicon-menu-right"> </span></a> </div> <h2 class="title"></h2> <table id="tv-list-24" class="movie_list tv_list"> <tbody><tr><td><img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"></td></tr> </tbody></table> </div> </div> <div class="col-xs-5 subnav"> <div class="innerSubnav"> <h2 class="title">More</h2> <ul class="list-unstyled" id="header-tv-more"> <li><a class="unstyled articleLink" href="http://www.rottentomatoes.com/top-tv/">Top TV Shows</a></li> <li><a class="unstyled articleLink" href="http://www.rottentomatoes.com/browse/tv-list-3/">Certified Fresh TV</a></li> </ul> <h2 class="title" style="margin-top: 20px">Episodic Reviews</h2> <ul class="list-unstyled" id="header-tv-episodic-reviews"> <li><a href="http://www.rottentomatoes.com/tv/the-affair/s02/e01/"> The Affair Season 2 </a></li> <li><a href="http://www.rottentomatoes.com/tv/doctor-who/s09/e01/"> Doctor Who Season 9 </a></li> <li><a href="http://www.rottentomatoes.com/tv/empire/s02/e01/"> Empire Season 2 </a></li> <li><a href="http://www.rottentomatoes.com/tv/gotham/s02/e01/"> Gotham Season 2 </a></li> <li><a href="http://www.rottentomatoes.com/tv/homeland/s05/e01/"> Homeland Season 5 </a></li> <li><a href="http://www.rottentomatoes.com/tv/how-to-get-away-with-murder/s02/e01/"> How to Get Away With Murder Season 2 </a></li> <li><a href="http://www.rottentomatoes.com/tv/the-leftovers/s02/e01/"> The Leftovers Season 2 </a></li> <li><a href="http://www.rottentomatoes.com/tv/the-walking-dead/s06/e01/"> The Walking Dead Season 6 </a></li> </ul> </div> </div> <div class="col-xs-5 subnav freshPicks inDropdownTv"> <div class="innerSubnav"> <h2 class="title">Certified Fresh Pick</h2> <ul class="list-unstyled" id="header-tv-certified-fresh"> <li> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"> </li> </ul> </div> </div> </div> </div> </li> <li class="menuHeader center dropdown noSpacing dropdown-toggle"> <a id="newsMenu" class="h2" href="http://editorial.rottentomatoes.com/"> News<span class="fontelloIcon icon-down-dir"> </span></a> <div class="dropdown-menu" role="menu" aria-labelledby="newsMenu"> <div class="row-sameColumnHeight noSpacing"> <div class="col-xs-4 subnav"> <div class="innerSubnav" id="header-news-columns"> <h2 class="title">Columns</h2> <ul class="list-unstyled"> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/24-frames/" data-pageheader="24 Frames">24 Frames</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/binge-guide/" data-pageheader="Binge Guide">Binge Guide</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/box-office-guru/" data-pageheader="Box Office Guru">Box Office Guru</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/critics-consensus/" data-pageheader="Critics Consensus">Critics Consensus</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/five-favorite-films/" data-pageheader="Five Favorite Films">Five Favorite Films</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/now-streaming/" data-pageheader="Now Streaming">Now Streaming</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/parental-guidance/" data-pageheader="Parental Guidance">Parental Guidance</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/red-carpet-roundup/" data-pageheader="Red Carpet Roundup">Red Carpet Roundup</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/rt-on-dvd/" data-pageheader="RT on DVD">RT on DVD</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/sub-cult/" data-pageheader="Sub-Cult">Sub-Cult</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/total-recall/" data-pageheader="Total Recall">Total Recall</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/tv-talk/" data-pageheader="TV Talk">TV Talk</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/video-interviews/" data-pageheader="Video Interviews">Video Interviews</a></li> <li><a class="unstyled articleLink" href="http://editorial.rottentomatoes.com/weekly-ketchup/" data-pageheader="Weekly Ketchup">Weekly Ketchup</a></li> </ul> </div> </div> <div class="col-xs-6 subnav"> <div class="innerSubnav" id="header-news-best-worst"> <div class="clickForMore"> <a class="unstyled articleLink" data-pageheader="Best and Worst - Show All" href="http://editorial.rottentomatoes.com/total-recall/">View All <span class="glyphicon glyphicon-menu-right"></span></a> </div> <h2 class="title">Best and Worst</h2> <div class="newsContainer"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"><br><br> </div> </div> </div> <div class="col-xs-6 subnav"> <div class="innerSubnav" id="header-news-guides"> <div class="clickForMore"> <a class="unstyled articleLink" data-pageheader="Guides - Show All" href="http://editorial.rottentomatoes.com/rt-hubs/">View All <span class="glyphicon glyphicon-menu-right"></span></a> </div> <h2 class="title">Guides</h2> <div class="newsContainer"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"><br><br> </div> </div> </div> <div class="col-xs-6 subnav"> <div class="innerSubnav" id="header-news-rtnews"> <div class="clickForMore" style="margin-bottom: 0"> <a class="unstyled articleLink" data-pageheader="RT News - Show All" href="http://editorial.rottentomatoes.com/news/">View All <span class="glyphicon glyphicon-menu-right"></span></a> </div> <h2 class="title">RT News</h2> <div class="newsContainer"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/loading.gif"><br><br> </div> </div> </div> </div> </div> </li> <li class="h2 menuHeader center noSpacing" style="border-radius: 5px" id="header-tickets-showtimes"> <a id="ticketingMenu" href="http://www.rottentomatoes.com/showtimes/" class="menuHeader"> Tickets & Showtimes </a> </li> </ul> </div> </div> <div class="trendingBar hidden-xs"> <div class="fr"> <ul id="trending_bar_social" class="list-inline social"> <li class="header">Follow Us</li> <li><a id="header-twitter-social-link" class="unstyled trendingLink fontelloIcon icon-twitter white" href="http://twitter.com/rottentomatoes" target="_blank"></a></li> <li><a id="header-facebook-social-link" class="unstyled trendingLink fontelloIcon icon-facebook-squared white" href="http://www.facebook.com/rottentomatoes" target="_blank"></a></li> <li><a id="header-google-social-link" class="unstyled trendingLink fontelloIcon icon-gplus white" href="https://plus.google.com/+RottenTomatoes" target="_blank"></a></li> <li><a id="header-youtube-social-link" class="unstyled trendingLink fontelloIcon icon-youtube-play white" href="http://www.youtube.com/user/rottentomatoes" target="_blank"></a></li> <li><a id="header-tumblr-social-link" class="unstyled trendingLink fontelloIcon icon-tumblr white" href="http://rottentomatoes.tumblr.com/" target="_blank"></a></li> </ul> <div id="trending_bar_ad" style="display:none;"> <script>
require(["gpt-setup"], function(googletag){
googletag.cmd.push(function() {
var slot=googletag.defineSlot('/55153744/rottentomatoes/movie/movie_page', [[330,25]], 'trending_bar_ad').addService(googletag.pubads()).setTargeting("strnativekey","");
googletag.definedSlots['trending_bar_ad']=slot;
});
});
</script><iframe src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/container.html" style="visibility: hidden; display: none;"></iframe> <div id="google_ads_iframe_/55153744/rottentomatoes/movie/movie_page_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/movie_page_0" name="google_ads_iframe_/55153744/rottentomatoes/movie/movie_page_0" width="330" height="25" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div></div> </div> <ul class="list-inline trendingEl"> <li class="header">Trending on RT</li> <li> <a class="unstyled trendingLink" href="http://editorial.rottentomatoes.com/article/watch-warcraft-official-trailer/?v=5"> Warcraft Trailer</a> </li> <li> <a class="unstyled trendingLink" href="RottenTomatoesPageSnapshot.html"> Spectre Reviews</a> </li> <li> <a class="unstyled trendingLink" href="http://editorial.rottentomatoes.com/guide/james-bond-movies/"> James Bond Countdown</a> </li> <li> <a class="unstyled trendingLink" href="http://editorial.rottentomatoes.com/gallery/50-favorite-bond-girls/"> Favorite Bond Girls</a> </li> </ul> </div> </div></div> <div id="main_container" class="container "> <div id="main-row" class="row"> <div id="navigation-column" class="col-left hidden-xs"> <div id="browser-navigator" class="browser-navigator"> <ul class="nav nav-pills nav-stacked navigator-menu"> <li data-type="header" class="nav-header mb-navheader"><h3>IN THEATERS</h3></li> <li data-type="opening" data-tabtitle="Top Movies - Opening in Theaters | Rotten Tomatoes" data-pagedescription="Find movies opening in theaters near you. Sort by critic rating, get movie times, buy tickets, and watch trailers and interviews." data-title="OPENING THIS WEEK" class="active"><a href="http://www.rottentomatoes.com/browse/opening/#">Opening This Week</a></li> <li data-type="in-theaters" data-tabtitle="Top Movies - Top Box Office | Rotten Tomatoes" data-pagedescription="Find movies currently in theaters near you. Sort by critic rating, get movie times, buy tickets and watch trailers and interviews." data-title="TOP BOX OFFICE"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Box Office</a></li> <li data-type="upcoming" data-tabtitle="Top Movies - Upcoming in Theaters | Rotten Tomatoes" data-pagedescription="Find movies coming soon to theaters near you. Sort by critic rating, get movies times, buy tickets and watch trailers and interviews." data-title="COMING SOON TO THEATERS"><a href="http://www.rottentomatoes.com/browse/opening/#">Coming Soon</a></li> <li data-type="cf-in-theaters" data-tabtitle="Top Movies - Certified Fresh in Theaters | Rotten Tomatoes" data-pagedescription="Check out what movies are Certified Fresh in theaters! Sort by critic rating, get movies times, buy tickets and watch trailers and interviews." data-title="CERTIFIED FRESH MOVIES IN THEATERS"><a href="http://www.rottentomatoes.com/browse/opening/#">Certified Fresh Movies</a></li> <li data-type="header" class="nav-header mb-navheader"><h3>DVD & STREAMING MOVIES</h3></li> <li data-type="dvd-all" data-tabtitle="Top Movies - Netflix, Amazon, iTunes, DVD | Rotten Tomatoes" data-pagedescription="Find movies playing on Netflix, Amazon, iTunes, HBO and DVD. Sort by critic rating, filter by genre, watch trailers and read reviews." data-title="BROWSE ALL DVDS"><a href="http://www.rottentomatoes.com/browse/opening/#">Browse All</a></li> <li data-type="dvd-top-rentals" data-tabtitle="Top Rentals - Netflix, Amazon, iTunes, DVD | Rotten Tomatoes" data-pagedescription="List of Top Rentals playing on Netflix, Amazon, iTunes, HBO and DVD. Sort by critic rating, filter by genre, watch trailers and read reviews." data-title="TOP RENTALS"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Rentals</a></li> <li data-type="dvd-new-releases" data-tabtitle="New Releases - Netflix, Amazon, iTunes, DVD | Rotten Tomatoes" data-pagedescription="List of New Release movies playing on Netflix, Amazon, iTunes, HBO and DVD. Sort by critic rating, filter by genre, watch trailers and read reviews." data-title="NEW RELEASES"><a href="http://www.rottentomatoes.com/browse/opening/#">New Releases</a></li> <li data-type="dvd-upcoming" data-tabtitle="Top Upcoming - Netflix, Amazon, iTunes, DVD | Rotten Tomatoes" data-pagedescription="List of movies coming soon to Netflix, Amazon, iTunes, DVD and HBO. Sort by critic rating, filter by genre, watch trailers and read reviews." data-title="COMING SOON ON DVD & STREAMING"><a href="http://www.rottentomatoes.com/browse/opening/#">Coming Soon</a></li> <li data-type="cf-dvd-all" data-tabtitle="Certified Fresh - Netflix, Amazon, iTunes, DVD | Rotten Tomatoes" data-pagedescription="Check out what movies are Certified Fresh on Netflix, Amazon, iTunes, DVD and HBO. Sort by critic rating, filter by genre, watch trailers and read reviews." data-title="CERTIFIED FRESH MOVIES ON DVD & STREAMING"><a href="http://www.rottentomatoes.com/browse/opening/#">Certified Fresh Movies</a></li> <li data-type="header" class="nav-header mb-navheader"><h3>TV</h3></li> <li data-type="tv-list-1" data-tabtitle="Top TV Shows - Top TV Comedies | Rotten Tomatoes" data-pagedescription="Discover TV shows to watch - premieres, new episodes tonight and Certified Fresh shows as rated by critics. Read reviews and watch clips and interviews." data-title="Top TV Comedies"><a href="http://www.rottentomatoes.com/browse/opening/#">Top TV Comedies</a></li> <li data-type="tv-list-2" data-tabtitle="Top TV Shows - Top TV Dramas | Rotten Tomatoes" data-pagedescription="Discover TV shows to watch - premieres, new episodes tonight and Certified Fresh shows as rated by critics. Read reviews and watch clips and interviews." data-title="Top TV Dramas"><a href="http://www.rottentomatoes.com/browse/opening/#">Top TV Dramas</a></li> <li data-type="tv-list-3" data-tabtitle="Top TV Shows - Top Sci-Fi/Horror/Fantasy | Rotten Tomatoes" data-pagedescription="Discover TV shows to watch - premieres, new episodes tonight and Certified Fresh shows as rated by critics. Read reviews and watch clips and interviews." data-title="Top Sci-Fi/Horror/Fantasy"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Sci-Fi/Horror/Fantasy</a></li> </ul> </div> <div id="medrec_top_ad" class="medrec_ad "><div id="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_0__container__" style="border: 0pt none;" ws-zone="250945.00"><iframe id="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_0" name="google_ads_iframe_/55153744/rottentomatoes/movie/sticky_0" width="300" height="250" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;" loaded="1"></iframe></div></div> <script>
require(["gpt-setup"], function(googletag){
googletag.cmd.push(function() {
var sizes = "" ? [300,250] : [[300,250],[300,600]];
var slot=googletag.defineSlot('/55153744/rottentomatoes/movie/sticky', sizes, 'medrec_top_ad')
.addService(googletag.pubads())
.setTargeting("pos", "top");
googletag.definedSlots['medrec_top_ad']=slot;
});
});
</script> <div id="tomatometer-info"> <div class="tableCenterDiv"> <img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/cf-lg.png"> </div> <p> Movies and TV shows are Certified Fresh with a steady Tomatometer of 75% or higher after a set amount of reviews (80 for wide-release movies, 40 for limited-release movies, 20 for TV shows), including 5 reviews from Top Critics. </p> <a style="text-decoration:none;cursor:pointer" id="header-whats-the-tomatometer" data-toggle="modal" data-target="#whatIsTomatometer">What's the Tomatometer?</a> </div> </div> <div id="content-column" class="col-center-right col-full-xs" style="visibility: visible;"> <div id="page-title" class="main-column-item"> <div class="hidden-xs"> <h1>OPENING THIS WEEK</h1> </div> <div id="mobile-browser-navigator" class="visible-xs btn-group btn-primary-border-dropdown btn-container-full-width"> <button type="button" class="dropdown-toggle btn btn-primary-border" data-toggle="dropdown" aria-expanded="false"> OPENING THIS WEEK IN THEATERS<span class="fontelloIcon icon-down-dir"></span> </button> <ul class="dropdown-menu" role="menu"> <li data-type="header" class="nav-header mb-navheader"><h3>IN THEATERS</h3></li> <li data-type="opening" class="mb-nav-item active" data-title="OPENING THIS WEEK"><a href="http://www.rottentomatoes.com/browse/opening/#">Opening This Week</a></li> <li data-type="in-theaters" class="mb-nav-item" data-title="TOP BOX OFFICE"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Box Office</a></li> <li data-type="upcoming" class="mb-nav-item" data-title="COMING SOON TO THEATERS"><a href="http://www.rottentomatoes.com/browse/opening/#">Coming Soon</a></li> <li data-type="cf-in-theaters" class="mb-nav-item" data-title="CERTIFIED FRESH MOVIES IN THEATERS"><a href="http://www.rottentomatoes.com/browse/opening/#">Certified Fresh Movies</a></li> <li data-type="header" class="nav-header mb-navheader"><h3>DVD & STREAMING MOVIES</h3></li> <li data-type="dvd-all" class="mb-nav-item" data-title="BROWSE ALL DVDS"><a href="http://www.rottentomatoes.com/browse/opening/#">Browse All</a></li> <li data-type="dvd-top-rentals" class="mb-nav-item" data-title="TOP RENTALS"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Rentals</a></li> <li data-type="dvd-new-releases" class="mb-nav-item" data-title="NEW RELEASES"><a href="http://www.rottentomatoes.com/browse/opening/#">New Releases</a></li> <li data-type="dvd-upcoming" class="mb-nav-item" data-title="COMING SOON ON DVD & STREAMING"><a href="http://www.rottentomatoes.com/browse/opening/#">Coming Soon</a></li> <li data-type="cf-dvd-all" class="mb-nav-item" data-title="CERTIFIED FRESH MOVIES ON DVD & STREAMING"><a href="http://www.rottentomatoes.com/browse/opening/#">Certified Fresh Movies</a></li> <li data-type="header" class="nav-header mb-navheader"><h3>TV</h3></li> <li data-type="tv-list-1" class="mb-nav-item" data-title="Top TV Comedies"><a href="http://www.rottentomatoes.com/browse/opening/#">Top TV Comedies</a></li> <li data-type="tv-list-2" class="mb-nav-item" data-title="Top TV Dramas"><a href="http://www.rottentomatoes.com/browse/opening/#">Top TV Dramas</a></li> <li data-type="tv-list-3" class="mb-nav-item" data-title="Top Sci-Fi/Horror/Fantasy"><a href="http://www.rottentomatoes.com/browse/opening/#">Top Sci-Fi/Horror/Fantasy</a></li> </ul> </div> </div> <div class="visible-xs btn-primary-border-dropdown btn-container-full-width" style="margin-top:10px"> <button id="filterModalBtn" type="button" class="btn btn-primary-border" data-toggle="modal" data-target="#filterModal"> <div><span class="fontelloIcon icon-filter"><span class="defaultText bold">Tap to sort/filter</span></span></div> </button> </div> <div class="topbar-container hidden-xs" style="display: block;"> <div class="topbar box filtermenu"> <div class="topbarItem phm btn-group hidden" id="service-dropdown"> <button type="button" data-toggle="dropdown" class="btn btn-borderless"> <div class="down-arrow"> <div class="service filtersiteicon flixster selected" data-site="flixster"></div> <div class="service filtersiteicon apple selected" data-site="itunes"></div> <div class="service filtersiteicon vudu selected" data-site="vudu"></div> <div class="service filtersiteicon amazoninstant selected" data-site="amazon"></div> <div class="service filtersiteicon netflix selected" data-site="netflix_iw"></div> <div class="service filtersiteicon amazonprime selected" data-site="amazon_prime"></div> <div class="service filtersiteicon hbogo selected" data-site="hbo_go"></div> </div> </button> <div class="dropdown-menu"> <h3>Show me movies available on...</h3> <div class="group"> <div class="service" data-site="flixster"><input class="filter-checkbox" type="checkbox" value="flixster"><label>Flixster <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="itunes"><input class="filter-checkbox" type="checkbox" value="itunes"><label>iTunes <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="vudu"><input class="filter-checkbox" type="checkbox" value="vudu"><label>Vudu <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="amazon"><input class="filter-checkbox" type="checkbox" value="amazon"><label>Amazon <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="netflix_iw"><input class="filter-checkbox" type="checkbox" value="netflix_iw"><label>Netflix Streaming <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="amazon_prime"><input class="filter-checkbox" type="checkbox" value="amazon_prime"><label>Amazon Prime <a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="service" data-site="hbo_go"><input class="filter-checkbox" type="checkbox" value="hbo_go"><label>HBO<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div></div> <h3 class="clearfix"> <div class="fl mts"> <a href="javascript:void(0)" class="clearall">Clear All</a> </div> <div class="fr mts"> <a href="javascript:void(0)" class="selectall">Select All</a> </div> </h3> </div> </div> <div id="tomatometerFilter" class="tomatometerFilter topbarItem phm btn-group"> <button type="button" data-toggle="dropdown" class="btn btn-borderless"> <span class="tomatometerScore summary down-arrow tomato-dropdown" id="tomato-dropdown"><i class="icon tiny rotten"></i>0% - <i class="icon tiny fresh"></i>100%</span> </button> <ul class="dropdown-menu" role="menu" aria-labelledby="tomatometerFilter"> <li> <h3>Tomatometer</h3> <div class="slider-wrapper"> <div class="slider noUi-target noUi-ltr noUi-horizontal noUi-background"><div class="noUi-base"><div class="noUi-origin noUi-connect" style="left: 0%;"><div class="noUi-handle noUi-handle-lower"></div></div><div class="noUi-origin noUi-background" style="left: 100%;"><div class="noUi-handle noUi-handle-upper"></div></div></div></div> </div> <form id="certified-fresh-form" class="form-inline" role="form"> <div id="certified-fresh-checkbox" class="certified-fresh-checkbox checkbox"> <label> <input type="checkbox"> <span class="tMeterIcon tiny"><span class="icon tiny certified"></span></span>Certified Fresh only </label> </div> </form> </li> </ul> </div> <div id="popcornFilter" class="topbarItem phm btn-group popcornFilter hidden"> <button type="button" data-toggle="dropdown" class="btn btn-borderless"> <span class="popcornScore summary down-arrow" id="popcorn-dropdown"><i class="icon tiny spilled"></i>0% - <i class="icon tiny popcorn"></i>100%</span> </button> <ul class="dropdown-menu"> <h3> Audience Score </h3> <div class="slider-wrapper"> <div class="slider noUi-target noUi-ltr noUi-horizontal noUi-background"><div class="noUi-base"><div class="noUi-origin noUi-connect" style="left: 0%;"><div class="noUi-handle noUi-handle-lower"></div></div><div class="noUi-origin noUi-background" style="left: 100%;"><div class="noUi-handle noUi-handle-upper"></div></div></div></div> </div> </ul> </div> <div class="topbarItem phm btn-group" id="genre-dropdown"> <button type="button" data-toggle="dropdown" class="btn btn-borderless"> Genre: <span class="bold summary down-arrow">All</span> </button> <div class="dropdown-menu options"> <div class="genres"> <div class="genre"><input class="filter-checkbox" type="checkbox" value="1" data-genre="Action"><label>Action<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="2" data-genre="Animation"><label>Animation<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="4" data-genre="Art & Foreign"><label>Art & Foreign<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="5" data-genre="Classics"><label>Classics<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="6" data-genre="Comedy"><label>Comedy<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="8" data-genre="Documentary"><label>Documentary<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="9" data-genre="Drama"><label>Drama<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="10" data-genre="Horror"><label>Horror<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="11" data-genre="Kids & Family"><label>Kids & Family<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="13" data-genre="Mystery"><label>Mystery<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="18" data-genre="Romance"><label>Romance<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div> <div class="genre"><input class="filter-checkbox" type="checkbox" value="14" data-genre="Sci-fi & Fantasy"><label>Sci-fi & Fantasy<a class="only" href="http://www.rottentomatoes.com/browse/opening/#">only</a></label></div></div> <h3 class="clearfix"> <div class="fl mts"> <a href="javascript:void(0)" class="clearall">Clear All</a> </div> <div class="fr mts"> <a href="http://www.rottentomatoes.com/browse/opening/#" class="selectall">Select All</a> </div> </h3> </div> </div> <div class="topbarItem phm btn-group sortselector" id="sort-dropdown"> <button type="button" data-toggle="dropdown" class="btn btn-borderless"> Sort By: <div class="bold inlineBlock selector mls down-arrow">Popularity</div> </button> <div class="dropdown-menu options"> <div class="sortoption" data-sort-option="Release Date">Release Date</div> <div class="sortoption" data-sort-option="Tomatometer">Tomatometer</div> <div class="sortoption selected" data-sort-option="Popularity">Popularity</div> </div> </div> </div> </div> <div id="count-link" class="main-column-item"> <div id="view-icon-grp" class="pull-right"><div class="btn-group">
<a id="grid-view-icon" class="btn active view-icon">
<span class="fontelloIcon icon-grid"></span>
</a>
<a id="list-view-icon" class="btn view-icon">
<span class="fontelloIcon icon-list"></span>
</a>
</div></div> <span id="showing-count">Showing 30 of 36</span> <a id="boxoffice-earnings-link" href="http://www.rottentomatoes.com/browse/box-office/" style="visibility: hidden;"> <div id="dollar-icon"> <span class="glyphicon glyphicon-usd"></span> </div> Weekend Box Office Earnings </a> </div> <div id="movies-collection"><div class="mb-movies" style="opacity: 1;"><div class="mb-movie" data-movie-id="771360513"><div class="poster_container">
<a href="RottenTomatoesPageSnapshot.html" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11203374_ori.jpg" alt="Spectre" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="RottenTomatoesPageSnapshot.html" class="popoverTrigger">
<h3 class="movieTitle">Spectre</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 62%</span>
</span>
</div>
<p class="actors">
Daniel Craig,
Christoph Waltz,
<span class="hidden-xs">
Léa Seydoux
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="RottenTomatoesPageSnapshot.html" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Spectre nudges Daniel Craig's rebooted Bond closer to the glorious, action-driven spectacle of earlier entries, although it's admittedly reliant on established 007 formula.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
PG-13, 2 hr. 30 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771318152"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/the_peanuts_movie/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11191451_ori.jpg" alt="The Peanuts Movie" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/the_peanuts_movie/" class="popoverTrigger">
<h3 class="movieTitle">The Peanuts Movie</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny certified"></span>
<span class="tMeterScore"> 86%</span>
</span>
</div>
<p class="actors">
Noah Schnapp,
Hadley Belle Miller,
<span class="hidden-xs">
Alexander Garfin
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/the_peanuts_movie/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
The Peanuts Movie offers a colorful gateway into the world of its classic characters and a sweetly nostalgic -- if relatively unambitious -- treat for the adults who grew up with them.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
G, 1 hr. 32 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771420359"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/spotlight_2015/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11201558_ori.jpg" alt="Spotlight" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/spotlight_2015/" class="popoverTrigger">
<h3 class="movieTitle">Spotlight</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny certified"></span>
<span class="tMeterScore"> 96%</span>
</span>
</div>
<p class="actors">
Mark Ruffalo,
Michael Keaton,
<span class="hidden-xs">
Rachel McAdams
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/spotlight_2015/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Spotlight gracefully handles the lurid details of its fact-based story while resisting the temptation to lionize its heroes, resulting in a drama that honors the audience as well as its real-life subjects.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
R, 2 hr. 7 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771370504"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/brooklyn/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11201971_ori.jpg" alt="Brooklyn" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/brooklyn/" class="popoverTrigger">
<h3 class="movieTitle">Brooklyn</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny certified"></span>
<span class="tMeterScore"> 99%</span>
</span>
</div>
<p class="actors">
Saoirse Ronan,
Domhnall Gleeson,
<span class="hidden-xs">
Emory Cohen
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/brooklyn/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Brooklyn buttresses outstanding performances from Saoirse Ronan and Emory Cohen with a rich period drama that tugs at the heartstrings as deftly as it satisfies the mind.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
PG-13, 1 hr. 23 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 4</p>
</div></div><div class="mb-movie" data-movie-id="771415583"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/trumbo/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11191857_ori.jpg" alt="Trumbo" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/trumbo/" class="popoverTrigger">
<h3 class="movieTitle">Trumbo</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 67%</span>
</span>
</div>
<p class="actors">
Bryan Cranston,
Alan Tudyk,
<span class="hidden-xs">
Diane Lane
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/trumbo/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Trumbo serves as an honorable and well-acted tribute to a brilliant writer's principled stand, even if it doesn't quite achieve the greatness of its subject's own classic screenplays.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
R, 2 hr. 4 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771416571"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/miss_you_already/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11203180_ori.jpg" alt="Miss You Already" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/miss_you_already/" class="popoverTrigger">
<h3 class="movieTitle">Miss You Already</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 67%</span>
</span>
</div>
<p class="actors">
Drew Barrymore,
Toni Collette,
<span class="hidden-xs">
Dominic Cooper
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/miss_you_already/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Miss You Already isn't shy about going for filmgoers' tear ducts, but its solid script and talented cast are often powerful enough to make up for its more manipulative moments.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
PG-13, 1 hr. 52 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771412056"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/the_hallow/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11201745_ori.jpg" alt="The Hallow (The Woods)" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/the_hallow/" class="popoverTrigger">
<h3 class="movieTitle">The Hallow (The Woods)</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 70%</span>
</span>
</div>
<p class="actors">
Joseph Mawle,
Bojana Novakovic,
<span class="hidden-xs">
Charlotte Williams
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/the_hallow/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
Deep within the darkness of secluded forest land in rural Ireland dwells an ancient evil. Feared by the nearby superstitious villagers as cursed creatures who prey upon the lost, their secrets have been kept from civilization and remain on their hallowed ground. But when a conservationist from London moves in with his wife and infant child in order to survey the land for future construction, his actions unwittingly disturb the horde of demonic forces. Alone in a remote wilderness, he must now ensure his family's survival from their relentless attacks. -- (C) IFC Midnight
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 32 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771414599"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/the_outskirts_2015/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11202155_ori.jpg" alt="The Outskirts" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/the_outskirts_2015/" class="popoverTrigger">
<h3 class="movieTitle">The Outskirts</h3>
<div>
<span class="tMeterIcon tiny">
</span>
</div>
<p class="actors">
Avan Jogia,
Eden Sher,
<span class="hidden-xs">
Peyton List
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/the_outskirts_2015/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
Best friends Jodi and Mindy have suffered years of torment from the school's alpha female. They plan to ride out their senior year under the radar, but when they become the victim of a humiliating prank, they hatch a plan to unite the outcasts of the school and start a social revolution.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
PG-13, 1 hr. 35 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771388021"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/theeb/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11189356_ori.jpg" alt="Theeb" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/theeb/" class="popoverTrigger">
<h3 class="movieTitle">Theeb</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 96%</span>
</span>
</div>
<p class="actors">
Jacir Eid Al-Hwietat,
Hussein Salameh Al-Sweilhiyeen,
<span class="hidden-xs">
Hassan Mutlag Al-Maraiyeh
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/theeb/" class="popoverTrigger">
<span class="subtle">Critic Consensus: </span>
Led by an outstanding performance from Jacir Eid Al-Hwietat in the title role, Theeb is a startlingly assured first effort from director/co-writer Naji Abu Nowar.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 40 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771427754"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/palio/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11202624_ori.jpg" alt="Palio" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/palio/" class="popoverTrigger">
<h3 class="movieTitle">Palio</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 100%</span>
</span>
</div>
<p class="actors">
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/palio/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
With breathtaking cinematography, director Cosima Spender's enthralling documentary captures the intensity of world's oldest horse race.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 31 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771428420"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/home_alone_25th_anniversary/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/poster_default.gif" alt="Home Alone 25th Anniversary" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/home_alone_25th_anniversary/" class="popoverTrigger">
<h3 class="movieTitle">Home Alone 25th Anniversary</h3>
<div>
<span class="tMeterIcon tiny">
</span>
</div>
<p class="actors">
Macaulay Culkin,
Joe Pesci,
<span class="hidden-xs">
Daniel Stern
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/home_alone_25th_anniversary/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
Fathom Events and Twentieth Century Fox are celebrating the 25th Anniversary of Home Alone by bringing the beloved holiday family film back to select cinemas nationwide on Sunday, November 8 and Wednesday, November 11. Eight-year-old Kevin McCallister (Culkin) has become the man of the house overnight! Accidentally left behind when his family rushes off on a Christmas vacation, Kevin gets busy decorating the house for the holidays, but he's not decking the halls with tinsel and holly. Two bumbling burglars are trying to break in and Kevin's rigging a bewildering battery of booby traps to welcome them!
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
PG, 1 hr. 55 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 8</p>
</div></div><div class="mb-movie" data-movie-id="771423061"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/what_our_fathers_did_a_nazi_legacy/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11202996_ori.jpg" alt="What Our Fathers Did: A Nazi Legacy" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/what_our_fathers_did_a_nazi_legacy/" class="popoverTrigger">
<h3 class="movieTitle">What Our Fathers Did: A Nazi Legacy</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 70%</span>
</span>
</div>
<p class="actors">
Niklas Frank,
Philippe Sands,
<span class="hidden-xs">
Horst von Wächter
</span>
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/what_our_fathers_did_a_nazi_legacy/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
In this deceptively understated documentary, two adult children of Nazi war criminals (Niklas Frank and Horst von Wachter) reveal how they reconcile their fathers' monstrous deeds with their personal affection.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 32 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771372774"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/the_notorious_mr_bout/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11203174_ori.jpg" alt="The Notorious Mr. Bout" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/the_notorious_mr_bout/" class="popoverTrigger">
<h3 class="movieTitle">The Notorious Mr. Bout</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 89%</span>
</span>
</div>
<p class="actors">
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/the_notorious_mr_bout/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
This documentary follows Viktor Bout, a Russian entrepeneur, a war profiteer, an aviation magnate, an arms smuggler and, strangest of all, an amateur filmmaker. Until three days prior to his 2008 arrest on charges of conspiring to kill Americans, Bout kept the camera running, documenting a life spent in the grey areas of international law. Dubbed 'The Merchant of Death' and portrayed by Nicolas Cage in Hollywood's Lord of War, Viktor Bout can justifiably be called the world's most famous arms dealer. With unprecedented access to Bout's home movies and DEA surveillance material gathered during the sting operation to bring him down, this film is a portrait of a life much mythologised but little understood.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 30 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 3</p>
</div></div><div class="mb-movie" data-movie-id="771423417"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/in_jackson_heights/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11202604_ori.jpg" alt="In Jackson Heights" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/in_jackson_heights/" class="popoverTrigger">
<h3 class="movieTitle">In Jackson Heights</h3>
<div>
<span class="tMeterIcon tiny">
<span class="icon tiny fresh"></span>
<span class="tMeterScore"> 100%</span>
</span>
</div>
<p class="actors">
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/in_jackson_heights/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
Jackson Heights in Queens, New York claims to be one of the most racially and ethnically diverse neighborhoods in the world.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 3 hr. 10 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771427604"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/barista/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11202328_ori.jpg" alt="Barista" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/barista/" class="popoverTrigger">
<h3 class="movieTitle">Barista</h3>
<div>
<span class="tMeterIcon tiny">
</span>
</div>
<p class="actors">
</p>
</a><div class="consensus" style="word-wrap: break-word;"><a href="http://www.rottentomatoes.com/m/barista/" class="popoverTrigger">
<span class="subtle">Synopsis: </span>
Five top baristas find themselves pushing the limits of coffee perfection to win the National Barista Championship - a surreal competition where even one mistake is far too many. Once a year, thousands of baristas square off in competitions around the U.S., but only one will become the National Champion. BARISTA takes the viewer on a humorous, emotional and enlightening look into the unimaginable world of coffee competitions and the passionate, lovable and quirky characters that devote their lives to them. If you think you know coffee - this film will make you think twice. These baristas take this universally beloved beverage seriously. Their passion for it can be felt through every frame of the film. BARISTA will take you beyond the drink and shine a light on a unique world very few of us ever knew existed.
</a><a class="read-more hide">more</a>
</div>
<p class="subtle other_info">
Unrated, 1 hr. 43 min.
</p>
<p class="release-date theater-released-date">In Theaters Nov 6</p>
</div></div><div class="mb-movie" data-movie-id="771432326"><div class="poster_container">
<a href="http://www.rottentomatoes.com/m/lost_in_the_sun_2015/" class="popoverTrigger">
<img src="./Top Movies - Opening in Theaters _ Rotten Tomatoes_files/11203300_ori.jpg" alt="Lost in the Sun" class="poster">
<span class="playButton glyphicon glyphicon-play-circle light-translucent white"></span>
</a>
</div>
<div class="movie_info">
<a href="http://www.rottentomatoes.com/m/lost_in_the_sun_2015/" class="popoverTrigger">
<h3 class="movieTitle">Lost in the Sun</h3>
<div>
<span class="tMeterIcon tiny">