onebox 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,2313 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
3
+ <head prefix="og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/apps/flixstertomatoes#">
4
+ <meta property="fb:app_id" content="326803741017" />
5
+ <meta property="og:title" content="Planes" />
6
+ <meta property="og:type" content="video.movie" />
7
+ <meta property="og:image" content="http://content6.flixster.com/movie/11/17/18/11171824_800.jpg" />
8
+ <meta property="og:image:width" content="800" />
9
+ <meta property="og:image:height" content="1200" />
10
+ <meta property="og:url" content="http://www.rottentomatoes.com/m/planes/" />
11
+ <meta property="og:description" content="Cars gets a spin-off with this Disney Toon Studios film starring the voice of Dane Cook as a vertically-challenged plane with high hopes of becoming an air racer. ~ Jeremy Wheeler, Rovi" />
12
+ <meta name="twitter:card" content="product">
13
+ <meta name="twitter:site" content="@rottentomatoes">
14
+ <meta name="twitter:title" content="Planes">
15
+ <meta name="twitter:description" content="Cars gets a spin-off with this Disney Toon Studios film starring the voice of Dane Cook as a vertically-challenged plane with high hopes of becoming an air racer. ~ Jeremy Wheeler, Rovi">
16
+ <meta name="twitter:image:src" content="http://content6.flixster.com/movie/11/17/18/11171824_800.jpg">
17
+ <meta name="twitter:data1" content="No Reviews Yet&hellip;">
18
+ <meta name="twitter:label1" content="TOMATOMETER">
19
+ <meta name="twitter:data2" content="91% of users want to see it">
20
+ <meta name="twitter:label2" content="AUDIENCE">
21
+ <meta property="video:release_date" content="2013-08-09" />
22
+ <meta property="video:duration" content="92" />
23
+ <meta property="video:director" content="http://www.rottentomatoes.com/celebrity/klay_hall/" />
24
+ <meta property="video:actor" content="http://www.rottentomatoes.com/celebrity/dane_cook/" />
25
+ <meta property="video:actor" content="http://www.rottentomatoes.com/celebrity/julia_louisdreyfus/" />
26
+ <meta property="video:actor" content="http://www.rottentomatoes.com/celebrity/brad_garrett/" />
27
+ <meta property="video:actor" content="http://www.rottentomatoes.com/celebrity/stacy_keach/" />
28
+ <meta property="video:actor" content="http://www.rottentomatoes.com/celebrity/teri_hatcher/" />
29
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
30
+ <title>Planes - Rotten Tomatoes</title>
31
+ <link rel="canonical" href="http://www.rottentomatoes.com/m/planes/" itemprop="url"/>
32
+ <meta name="description" content="Review: Cars gets a spin-off with this Disney Toon Studios film starring the voice of Dane Cook as a vertically-challenged plane with high hopes of becoming..."/>
33
+ <link rel="apple-touch-icon" href="http://images.rottentomatoescdn.com/images/icons/apple-touch-icon.png"/>
34
+ <link rel="shortcut icon" href="http://images.rottentomatoescdn.com/images/icons/favicon.ico" type="image/x-icon"/>
35
+ <link rel="stylesheet" href="//images.rottentomatoescdn.com/assets/v/prod20130801/styles/?f=/styles/rt_global.css&f=/styles/comp/Autocomplete.css&f=/styles/comp/MovieList.css&f=/styles/comp/Rating.css&f=/styles/jqueryui/rt-theme/jquery-ui-1.8.13.custom-dialog.css"" type="text/css"/>
36
+ <link rel="stylesheet" href="//images.rottentomatoescdn.com/assets/v/prod20130801/styles/?f=/styles/movie/movie.css&f=/styles/movie/quotes.css&f=/styles/comp/MovieList.css&f=/styles/lightbox.css" type="text/css"/>
37
+ <style></style>
38
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
39
+ <script type='text/javascript'>
40
+ var googletag = googletag || {};
41
+ googletag.cmd = googletag.cmd || [];
42
+ (function() {
43
+ var gads = document.createElement('script');
44
+ gads.async = true;
45
+ gads.type = 'text/javascript';
46
+ var useSSL = 'https:' == document.location.protocol;
47
+ gads.src = (useSSL ? 'https:' : 'http:') +
48
+ '//www.googletagservices.com/tag/js/gpt.js';
49
+ var node = document.getElementsByTagName('script')[0];
50
+ node.parentNode.insertBefore(gads, node);
51
+ })();
52
+ </script>
53
+ <script src="//assets.insnw.net/instart/js/instart.js" type="text/javascript"></script>
54
+ <script>
55
+ // Log document.ready
56
+ $(document).ready(function(){ console.log("document.ready");});
57
+ // Swallow console.log in IE8 to prevent JS error.
58
+ if (typeof console === "undefined" || typeof console.log === "undefined") {
59
+ console={};
60
+ console.log = function(msg){};
61
+ console.error = function(msg){};
62
+ }
63
+ RT = window.RT || {};
64
+ RT.getCookie = function(c) {
65
+ var d = document.cookie.indexOf(c + "=");
66
+ var a = d + c.length + 1;
67
+ if ((!d) && (c != document.cookie.substring(0, c.length))) {
68
+ return null
69
+ }
70
+ if (d == -1) {
71
+ return null
72
+ }
73
+ var b = document.cookie.indexOf(";", a);
74
+ if (b == -1) {
75
+ b = document.cookie.length
76
+ }
77
+ return unescape(document.cookie.substring(a, b))
78
+ };
79
+ window.getCookie = RT.getCookie;
80
+ /* RT.setCookie(key, value, expires_days, path, domain, secure) */
81
+ RT.setCookie = function(c, e, a, h, d, g) {
82
+ var b = new Date();
83
+ b.setTime(b.getTime());
84
+ if (a) {
85
+ a = a * 1000 * 60 * 60 * 24
86
+ }
87
+ var f = new Date(b.getTime() + (a));
88
+ document.cookie = c + "=" + encodeURIComponent(e)
89
+ + ((a) ? ";expires=" + f.toGMTString() : "")
90
+ + ((h) ? ";path=" + h : "") + ((d) ? ";domain=" + d : "")
91
+ + ((g) ? ";secure" : "")
92
+ }
93
+ window.setCookie = RT.setCookie;
94
+ RT.deleteCookie = function(a, c, b) {
95
+ if (getCookie(a)) {
96
+ document.cookie = a + "=" + ((c) ? ";path=" + c : "")
97
+ + ((b) ? ";domain=" + b : "")
98
+ + ";expires=Thu, 01-Jan-1970 00:00:01 GMT"
99
+ }
100
+ }
101
+ window.deleteCookie = RT.deleteCookie;
102
+ RT.cookieHas = function(sKey) {
103
+ return (new RegExp("(?:^|;\\s*)" + escape(sKey).replace(/[\-\.\+\*]/g, "\$&") + "\\s*\\=")).test(document.cookie);
104
+ }
105
+ /* Setup interstitial deferred (resolves if interstitial shown) */
106
+ RT.interstitialShown = $.Deferred();
107
+ RT.social_init = new $.Deferred(); // See http://trac.flixsterqa.com/wiki/Dev/header for detailed explanation of these 4 deferreds
108
+ RT.fb_ready = new $.Deferred();
109
+ RT.fb_connected = new $.Deferred();
110
+ RT.ads=[];
111
+ /* Bring out legacy global vars */
112
+ window.social_init = RT.social_init;
113
+ window.fb_ready = RT.fb_ready;
114
+ window.fb_connected = RT.fb_connected;
115
+ RT.StaticHost = 'http://images.rottentomatoescdn.com';
116
+ RT.Host = 'http://www.rottentomatoes.com';
117
+ /* Backbone Views and Models */
118
+ RT.Backbone = {};
119
+ RT.Backbone.Views={};
120
+ RT.Backbone.Models={};
121
+ RT.Backbone.Routers={};
122
+ /* Global actions to be taken after document.ready */
123
+ $(function(){
124
+ // Activate component framework unless specifically disabled
125
+ });
126
+ </script>
127
+ <script type="text/javascript">
128
+ var _qevents = _qevents || [];
129
+ _qevents.push( { qacct:"p-0fuRlG_jy3lfA"} );
130
+ var qcsegments = decodeURIComponent(RT.getCookie("qcsegments"));
131
+ function qc_results(result) {
132
+ var qcsegments = "";
133
+ var quantSegs="";
134
+ for (var i = 0; i < result.segments.length; i++) {
135
+ quantSegs += result.segments[i].id;
136
+ qcsegments += "qcs=" + result.segments[i].id;
137
+ if (i<result.segments.length-1) {
138
+ quantSegs += ',';
139
+ qcsegments += ";";
140
+ }
141
+ }
142
+ setCookie("qcs",quantSegs,90,"/");
143
+ setCookie("qcsegments",qcsegments,90,"/");
144
+ }
145
+ </script>
146
+ <script type="text/javascript" src="http://edge.quantserve.com/quant.js" defer> </script>
147
+ <script type="text/javascript" src="http://pixel.quantserve.com/api/segments.json?a=p-0fuRlG_jy3lfA&callback=qc_results" defer></script>
148
+ <script type="text/javascript">
149
+ var _gaq = _gaq || [['_setAccount', 'UA-2265251-1']];
150
+ (function() {
151
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
152
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
153
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
154
+ })();
155
+ _gaq.push(['_setDomainName', 'www.rottentomatoes.com'],
156
+ ['_setAllowHash', false],
157
+ ['_setCampaignCookieTimeout', 2592000000]);
158
+ _gaq.push(['_setCustomVar', 5, 'Session Pools', 'beta', 2]);
159
+ </script>
160
+ <script type="text/javascript">
161
+ console.log("Session Type: Anon");
162
+ _gaq.push(['_setCustomVar', 1, 'Session Type', 'Anon', 2]);
163
+ _gaq.push(['_trackEvent', 'Session Type', 'Anon', undefined, undefined, true]);
164
+ RT.social_init.done(function(){
165
+ //console.log("[sharedSessionTracking] Login Platform Code:" + RT.LoginStatusModel.get("loginPlatformCode"));
166
+ //console.log("[sharedSessionTracking] Tracking Session Type:" + RT.LoginStatusModel.get("trackingSessionType"));
167
+ //console.log("[sharedSessionTracking] Email Status ID:" + RT.LoginStatusModel.get("emailStatusId"));
168
+ var loginPlatform = RT.LoginStatusModel.get("loginPlatformCode");
169
+ var debugText = "Anon>" + loginPlatform + ": SP=" + RT.LoginStatusModel.get("sourcePlatformCode") + ", ST=" + RT.LoginStatusModel.get("userSourceTypeCode") + ", PL=" + RT.LoginStatusModel.get("userPlatformCode");
170
+ var sessionType = RT.LoginStatusModel.get("trackingSessionType");
171
+ if (sessionType == 'Unset') {
172
+ debugText = debugText + ', info=' + RT.LoginStatusModel.get("trackingSessionInfo");
173
+ }
174
+ var emailStatus = "Init";
175
+ var emailStatusId = RT.LoginStatusModel.get("emailStatusId");
176
+ if ($.isNumeric(emailStatusId)) {
177
+ if (parseInt(emailStatusId) <= 1) {
178
+ emailStatus = "No Email";
179
+ }
180
+ else {
181
+ emailStatus = "Email";
182
+ }
183
+ }
184
+ else {
185
+ emailStatus = "Error";
186
+ }
187
+ var customVarText = sessionType + ' - ' + loginPlatform + ' (' + emailStatus + ')';
188
+ console.log('Session Type: ' + customVarText + " || " + debugText);
189
+ _gaq.push(['_setCustomVar', 1, 'Session Type', customVarText, 2]);
190
+ _gaq.push(['_trackEvent', 'Session Type', customVarText, debugText, undefined, true]);
191
+ });
192
+ </script>
193
+ <script>
194
+ </script>
195
+ <script async="" defer="" src="//survey.g.doubleclick.net/async_survey?site=5r2wqufyt4bx6"></script>
196
+ <script>
197
+ </script>
198
+ </head>
199
+ <body class="body" id="" itemscope itemtype="http://www.schema.org/Movie" itemid="/m/planes/" >
200
+ <div id="emptyPlaceholder"></div>
201
+ <div id="overlay_oop" style="height:0px;">
202
+ <script type='text/javascript'>
203
+ RT.ads.push("overlay_oop");
204
+ googletag.cmd.push(function() {
205
+ var slot=googletag.defineOutOfPageSlot('/6327/rt.movie/prestitial', 'overlay_oop')
206
+ .addService(googletag.pubads())
207
+ .setTargeting("unit", "overlay")
208
+ .setTargeting("movieid", "771312196")
209
+ .setTargeting("url", "/m/planes/");
210
+ });
211
+ </script>
212
+ </div>
213
+ <style>#skin_ad { height:0px !important; }</style>
214
+ <div id="skin_ad">
215
+ <script type='text/javascript'>
216
+ RT.ads.push("skin_ad");
217
+ googletag.cmd.push(function() {
218
+ var slot=googletag.defineSlot('/6327/rt.movie/skin', [[1,1],[1,2]], 'skin_ad')
219
+ .addService(googletag.pubads())
220
+ .setTargeting("unit", "skin")
221
+ .setTargeting("movieid", "771312196")
222
+ .setTargeting("url", "/m/planes/");
223
+ slot.oldRenderEnded = slot.renderEnded;
224
+ slot.renderEnded = function(){
225
+ slot.oldRenderEnded();
226
+ var wrapper = $("#skin_ad");
227
+ wrapper.css("height","").css("width","");
228
+ if(!$("#skin_ad").is(":visible")){$("body").removeAttr("style");}
229
+ };
230
+ });
231
+ </script>
232
+ </div>
233
+ <div id="fb-root"></div>
234
+ <script>
235
+ window.fbAsyncInit = function() {
236
+ FB.init({
237
+ appId: '326803741017',
238
+ status: true,
239
+ cookie: true,
240
+ xfbml: true,
241
+ oauth: true,
242
+ channelUrl: "http://www.rottentomatoes.com/facebook/channel.html"
243
+ });
244
+ // FB scripts ready. (Does not imply logged in)
245
+ fb_ready.resolve();
246
+ FB.Event.subscribe('auth.statusChange', function(response) {
247
+ //console.log("auth.statusChange status=" + JSON.stringify(response));
248
+ if(response.status == "connected"){
249
+ // *** NOTE: - Workaround for BCK-1119 ***
250
+ // Talk to Peter or Mike before changing. We must ensure the first AJAX call after auth.statusChange is completed by
251
+ // itself before more calls are sent. This allows FB token-exchange (if required) to occur uninterrupted.
252
+ // Permanent fix is to ensure token-exchange is locked (backend ticket)
253
+ $.ajax( {
254
+ url : '/api/private/v1.0/users/current/status/', dataType : "json"
255
+ }).success( function(flx_response, status) {
256
+ $(function(){ // DOM ready required for backbone
257
+ RT.LoginStatusModel.set(flx_response);
258
+ RT.social_init.resolve();
259
+ RT.fb_connected.resolve();
260
+ });
261
+ });
262
+ }
263
+ });
264
+ };
265
+ // Async loading of FB JS SDK
266
+ (function(d, debug){
267
+ var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
268
+ if (d.getElementById(id)) {return;}
269
+ js = d.createElement('script'); js.id = id; js.async = true;
270
+ js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
271
+ ref.parentNode.insertBefore(js, ref);
272
+ }(document, /*debug*/ false));
273
+ </script>
274
+ <script>
275
+ // Async loading of Twitter
276
+ !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
277
+ </script>
278
+ <script>
279
+ // Async loading of plusone.js
280
+ (function(){
281
+ var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
282
+ po.src = 'https://apis.google.com/js/plusone.js';
283
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
284
+ }());
285
+ </script>
286
+ <script>
287
+ (function (w, d, load) {
288
+ var script,
289
+ first = d.getElementsByTagName('SCRIPT')[0],
290
+ n = load.length,
291
+ i = 0,
292
+ go = function () {
293
+ for (i = 0; i < n; i = i + 1) {
294
+ script = d.createElement('SCRIPT');
295
+ script.type = 'text/javascript';
296
+ script.async = true;
297
+ script.src = load[i];
298
+ first.parentNode.insertBefore(script, first);
299
+ }
300
+ }
301
+ if (w.attachEvent) {
302
+ w.attachEvent('onload', go);
303
+ } else {
304
+ w.addEventListener('load', go, false);
305
+ }
306
+ }(window, document,
307
+ ['//assets.pinterest.com/js/pinit.js']
308
+ ));
309
+ </script>
310
+ <script>
311
+ var _comscore = _comscore || [];
312
+ _comscore.push({ c1: "2", c2: "3000013" });
313
+ (function() {
314
+ var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
315
+ s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
316
+ el.parentNode.insertBefore(s, el);
317
+ })();
318
+ </script>
319
+ <noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=3000013&cv=2.0&cj=1" /></noscript>
320
+ <div class="head" id="head">
321
+ <div class="headerbackground"></div>
322
+ <div id="top_header_bar" class="clearfix">
323
+ <div id="wtsBar">
324
+ </div>
325
+ <div id="header-first-times" style="display:none;">
326
+ <span>We're using Facebook to personalize your experience.</span><a class="learnmore_href" href="#">Learn More</a>
327
+ </div>
328
+ <div id="header-login-block" class="clearfix">
329
+ <a id="header-login-link" href="/login/" style="margin-right:10px;">RT Login</a>
330
+ <a class="fb_button fb_button_medium rt_fblogin" href="javascript:void(0);"><span class="fb_button_text">Log In</span></a>
331
+ </div>
332
+ <ul id="header-user-dropdown" class="secondary_nav clearfix drop_menu" style="display:none;">
333
+ <li class="no-js">
334
+ <ul class="subnav media_block">
335
+ <li class="media_block_content subnav_items">
336
+ <ul>
337
+ <li><a id="header-profile-link" href="#">Profile</a></li>
338
+ <li><a id="header-community-link" href="/community/">Community</a></li>
339
+ <li><a id="header-account-link" href="#">Account</a></li>
340
+ <li><a id="header-existing-link" href="/logout/">Existing RT Member?</a></li>
341
+ <li><a id="header-logout-link" href="/logout/">Logout</a></li>
342
+ <li><a id="header-disable-link" href="#">Disable</a></li>
343
+ </ul>
344
+ </li>
345
+ </ul>
346
+ <div class="menu_label clearfix">
347
+ <a id="header-user-link" href="#">
348
+ <img class="user-icon" src="" width="20" height="20" />
349
+ <span class="user-name"></span>
350
+ <span class="icon dropdown_arrows"></span>
351
+ </a>
352
+ </div>
353
+ </li>
354
+ </ul>
355
+ </div>
356
+ <script>
357
+ $(function(){
358
+ var header = $("#top_header_bar");
359
+ var headerView = new RT.Backbone.Views.PageHeader({el : header, model : RT.LoginStatusModel });
360
+ header.data("view", headerView);
361
+ });
362
+ RT.social_init.done(function(){
363
+ $.get("/home/wtsbar/").done(function(data){
364
+ $("#wtsBar").html(data);
365
+ });
366
+ });
367
+ </script>
368
+ <div class="header_main">
369
+ <a class="rt-logo " href="/">Rotten Tomatoes</a>
370
+ <div id="searchBar">
371
+ <form style="position:relative;" id="searchformnew" name="searchformnew" method="get" action="/search/">
372
+ <fieldset comp="Autocomplete" tabindex="-1">
373
+ <div class="searchBox" sub="searchBox">
374
+ <input sub="input" type="text" name="search" onblur="this.parentNode.parentNode.className='';" onfocus="this.parentNode.parentNode.className='selected'; if (value == 'ZIP Code or City, State' || value == 'Search movies, actors, critics') { value ='' }" id="mini_searchbox" value="Search movies, actors, critics" defaulttext="Search movies, actors, critics" name="search" gtbfieldid="27" autocomplete="off" />
375
+ <button sub="submitbutton" type="submit"><span class="icon magnify"></span></button>
376
+ </div>
377
+ <ul sub="result" class="autocomplete subnav"></ul>
378
+ <input type="hidden" value="rt" name="sitesearch"/>
379
+ </fieldset>
380
+ </form>
381
+ <div id="searchBar_right"></div>
382
+ </div>
383
+ <ul id="nav_primary" class="drop_menu">
384
+ <li class="no-js">
385
+ <ul class="subnav movies">
386
+ <li>
387
+ <ul class="subnav_items">
388
+ <li><a href="/movie/box-office/">Box Office</a></li>
389
+ <li><a href="/movie/in-theaters/">In Theaters</a></li>
390
+ <li><a href="/movie/upcoming/">Upcoming</a></li>
391
+ <li><a href="/top/">Top Movies</a></li>
392
+ <li><a href="/movie/certified-fresh/">Certified Fresh</a></li>
393
+ <li><a href="/movie_times/">Showtimes</a></li>
394
+ <li><a href="/trailers/">Trailers</a></li>
395
+ <li><a href="/movie/photos/">Photos</a></li>
396
+ </ul>
397
+ </li>
398
+ <li class="subnav_extra">
399
+ <h4>Opening this week</h4>
400
+ <ul>
401
+ <li class="center">
402
+ <a target="_top" href="/m/2_guns/" title="2 Guns" class="" >
403
+ <img src="http://content9.flixster.com/movie/11/17/07/11170775_tmb.jpg" width="51" height="81" alt="" title="" />
404
+ </a><p>
405
+ <a target="_top" href="/m/2_guns/" class="" >2 Guns</a></p>
406
+ <span class="tMeterIcon tiny" >
407
+ <span title="Fresh" class="icon
408
+ tiny fresh"></span><span class="tMeterScore">60%</span>
409
+ </span></li>
410
+ <li class="center">
411
+ <a target="_top" href="/m/the_smurfs_2/" title="The Smurfs 2" class="" >
412
+ <img src="http://content8.flixster.com/movie/11/16/74/11167458_tmb.jpg" width="54" height="80" alt="" title="" />
413
+ </a><p>
414
+ <a target="_top" href="/m/the_smurfs_2/" class="" >The Smurfs 2</a></p>
415
+ <span class="tMeterIcon tiny" >
416
+ <span title="Rotten" class="icon
417
+ tiny rotten"></span><span class="tMeterScore">14%</span>
418
+ </span></li>
419
+ <li class="center">
420
+ <a target="_top" href="/m/the_spectacular_now/" title="The Spectacular Now" class="" >
421
+ <img src="http://content6.flixster.com/movie/11/17/20/11172008_tmb.jpg" width="54" height="80" alt="" title="" />
422
+ </a><p>
423
+ <a target="_top" href="/m/the_spectacular_now/" class="" >The Spectacular Now</a></p>
424
+ <span class="tMeterIcon tiny" >
425
+ <span title="Fresh" class="icon
426
+ tiny fresh"></span><span class="tMeterScore">91%</span>
427
+ </span></li>
428
+ </ul>
429
+ </li>
430
+ </ul>
431
+ <h2 class="menu_label"><a href="/">Movies <span class="icon dropdown_arrows"></span></a></h2>
432
+ </li>
433
+ <li class="no-js">
434
+ <ul class="subnav dvd">
435
+ <li>
436
+ <ul class="subnav_items">
437
+ <li><a href="/dvd/top_rentals.php" >Top Rentals</a></li>
438
+ <li><a href="/dvd/new_releases.php" >New Releases</a></li>
439
+ <li><a href="/dvd/netflix/" >Netflix Streaming</a></li>
440
+ <li><a href="/dvd/current_releases.php" >Current Releases</a></li>
441
+ <li><a href="/dvd/upcoming.php" >Upcoming</a></li>
442
+ <li><a href="/dvd/certified_fresh.php" >Certified Fresh</a></li>
443
+ </ul>
444
+ </li>
445
+ <li class="subnav_extra">
446
+ <h4>New on DVD</h4>
447
+ <ul>
448
+ <li class="center">
449
+ <a target="_top" href="/m/gi_joe_retaliation/" title="G.I. Joe: Retaliation" class="" >
450
+ <img src="http://content7.flixster.com/movie/11/17/18/11171817_tmb.jpg" width="54" height="81" alt="" title="" />
451
+ </a><p>
452
+ <a target="_top" href="/m/gi_joe_retaliation/" class="" >G.I. Joe: Retaliation</a></p>
453
+ <span class="tMeterIcon tiny" >
454
+ <span title="Rotten" class="icon
455
+ tiny rotten"></span><span class="tMeterScore">28%</span>
456
+ </span></li>
457
+ <li class="center">
458
+ <a target="_top" href="/m/filly_brown_2012/" title="Filly Brown" class="" >
459
+ <img src="http://content8.flixster.com/movie/11/16/86/11168634_tmb.jpg" width="54" height="80" alt="" title="" />
460
+ </a><p>
461
+ <a target="_top" href="/m/filly_brown_2012/" class="" >Filly Brown</a></p>
462
+ <span class="tMeterIcon tiny" >
463
+ <span title="Rotten" class="icon
464
+ tiny rotten"></span><span class="tMeterScore">45%</span>
465
+ </span></li>
466
+ <li class="center">
467
+ <a target="_top" href="/m/the_place_beyond_the_pines_2012/" title="The Place Beyond The Pines" class="" >
468
+ <img src="http://content7.flixster.com/movie/11/17/19/11171965_tmb.jpg" width="54" height="81" alt="" title="" />
469
+ </a><p>
470
+ <a target="_top" href="/m/the_place_beyond_the_pines_2012/" class="" >The Place Beyond The Pines</a></p>
471
+ <span class="tMeterIcon tiny" >
472
+ <span title="Fresh" class="icon
473
+ tiny fresh"></span><span class="tMeterScore">82%</span>
474
+ </span></li>
475
+ </ul>
476
+ </li>
477
+ </ul>
478
+ <h2 class="menu_label"><a href="/dvd/">DVD <span class="icon dropdown_arrows"></span></a></h2>
479
+ </li>
480
+ <li class="no-js">
481
+ <ul class="subnav celebrities">
482
+ <li>
483
+ <ul class="subnav_items">
484
+ <li><a href="/celebrity/">View All</a></li>
485
+ </ul>
486
+ </li>
487
+ <li class="subnav_extra">
488
+ <h4>Who's In Theaters This Weekend?</h4>
489
+ <ul>
490
+ <li class="center">
491
+ <a class="" href="/celebrity/denzel_washington/" title="Denzel Washington">
492
+ <img class="" alt="Denzel Washington" src="http://content7.flixster.com/site/10/25/82/10258277_tmb.jpg" width="80" height="64" />
493
+ </a>
494
+ <p>
495
+ <a class="" href="/celebrity/denzel_washington/" >
496
+ Denzel Washington
497
+ </a>
498
+ </p>
499
+ </li>
500
+ <li class="center">
501
+ <a class="" href="/celebrity/markymark/" title="Mark Wahlberg">
502
+ <img class="" alt="Mark Wahlberg" src="http://content8.flixster.com/site/10/25/82/10258278_tmb.jpg" width="80" height="64" />
503
+ </a>
504
+ <p>
505
+ <a class="" href="/celebrity/markymark/" >
506
+ Mark Wahlberg
507
+ </a>
508
+ </p>
509
+ </li>
510
+ <li class="center">
511
+ <a class="" href="/celebrity/bill_paxton/" title="Bill Paxton">
512
+ <img class="" alt="Bill Paxton" src="http://content9.flixster.com/site/10/25/82/10258279_tmb.jpg" width="80" height="64" />
513
+ </a>
514
+ <p>
515
+ <a class="" href="/celebrity/bill_paxton/" >
516
+ Bill Paxton
517
+ </a>
518
+ </p>
519
+ </li>
520
+ </ul>
521
+ </li>
522
+ </ul>
523
+ <h2 class="menu_label"><a href="/celebrity/">Celebrities <span class="icon dropdown_arrows"></span></a></h2>
524
+ </li>
525
+ <li class="no-js">
526
+ <ul class="subnav news">
527
+ <li>
528
+ <ul class="subnav_items">
529
+ <li><a href="/features/">Features</a></li>
530
+ <li><a href="/guides/">Guides</a></li>
531
+ <li><a href="/news/">News</a></li>
532
+ <li class="smaller">&nbsp;</li>
533
+ <li class="smaller">COLUMNS:</li>
534
+ <li><a href="/news/columns/24_frames">24 Frames</a></li>
535
+ <li><a href="/news/columns/box_office">Box Office Guru</a></li>
536
+ <li><a href="/news/columns/critics_consensus">Critics Consensus</a></li>
537
+ <li><a href="/news/columns/digital_multiplex">Digital Multiplex</a></li>
538
+ <li><a href="/news/columns/five_favorite_films">Five Favorite Films</a></li>
539
+ <li><a href="/news/columns/parental_guidance">Parental Guidance</a></li>
540
+ <li><a href="/news/columns/red_carpet_round_up">Red Carpet Roundup</a></li>
541
+ <li><a href="/news/columns/rt_on_dvd">RT on DVD</a></li>
542
+ <li><a href="/news/columns/total_recall">Total Recall</a></li>
543
+ <li><a href="/news/columns/video_interviews">Video Interviews</a></li>
544
+ <li><a href="/news/columns/weekly_ketchup">Weekly Ketchup</a></li>
545
+ </ul>
546
+ </li>
547
+ <li class="subnav_extra">
548
+ <h4>What's Hot on Rotten Tomatoes</h4>
549
+ <ul>
550
+ <li class="center">
551
+ <a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/">
552
+ <img class="" alt="Critics Consensus" src="http://content8.flixster.com/site/10/25/83/10258350_tmb.jpg" width="80" height="80" />
553
+ </a>
554
+ <p><a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/">Critics Consensus</a></p>
555
+ </li>
556
+ <li class="center">
557
+ <a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/">
558
+ <img class="" alt="Total Recall" src="http://content9.flixster.com/site/10/25/83/10258327_tmb.jpg" width="80" height="80" />
559
+ </a>
560
+ <p><a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/">Total Recall</a></p>
561
+ </li>
562
+ </ul>
563
+ </li>
564
+ </ul>
565
+ <h2 class="menu_label"><a href="/news/">News <span class="icon dropdown_arrows"></span></a></h2>
566
+ </li>
567
+ <li class="no-js">
568
+ <ul class="subnav critics">
569
+ <li>
570
+ <ul class="subnav_items">
571
+ <li><a href="/critics/authors.php">Critics List</a></li>
572
+ <li><a href="/critics/sources.php">Publications List</a></li>
573
+ <li><a href="/critics/latest_reviews.php">Latest Reviews</a></li>
574
+ <li><a href="/findyourcritic/">Find Your Critic</a></li>
575
+ </ul>
576
+ </li>
577
+ <li class="subnav_extra">
578
+ <h4>Spotlight</h4>
579
+ <ul>
580
+ <li class="center">
581
+ <a href="/critic/binh-ngo/" class="" ><img src="http://content8.flixster.com/critic/20/2098_tmb.jpg" width="72" height="72" alt="Binh Ngo" /></a>
582
+ <p>
583
+ <a href="/critic/binh-ngo/" class="" >Binh Ngo</a>
584
+ </p>
585
+ </li>
586
+ </ul>
587
+ </li>
588
+ </ul>
589
+ <h2 class="menu_label"><a href="/critics/">Critics <span class="icon dropdown_arrows"></span></a></h2>
590
+ </li>
591
+ </ul>
592
+ </div>
593
+ </div>
594
+ <script>
595
+ (function() {
596
+ var li = document.createElement('script'); li.type = 'text/javascript'; li.async = true;
597
+ li.src = 'https://platform.stumbleupon.com/1/widgets.js';
598
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(li, s);
599
+ })();
600
+ </script>
601
+ <div id="leaderboard_top_ad" class="page_ad leaderboard" style="height:90px;">
602
+ <script type='text/javascript'>
603
+ RT.ads.push("leaderboard_top_ad");
604
+ googletag.cmd.push(function() {
605
+ var slot=googletag.defineSlot('/6327/rt.movie/movie_page', [[728,90],[1010,500],[1010,250],[1010,150],[1010,95],[1010,66]], 'leaderboard_top_ad')
606
+ .addService(googletag.pubads())
607
+ .setTargeting("unit", "leaderboard_top")
608
+ .setTargeting("pos", "top")
609
+ .setTargeting("movieid", "771312196")
610
+ .setTargeting("url", "/m/planes/");
611
+ slot.oldRenderEnded = slot.renderEnded;
612
+ slot.renderEnded = function(){
613
+ slot.oldRenderEnded();
614
+ var wrapper = $("#leaderboard_top_ad");
615
+ wrapper.css("height","").css("width","");
616
+ };
617
+ });
618
+ </script>
619
+ </div>
620
+ <div class="body_main " >
621
+ <div id="movieListColumn" class="col col_267 col_first" >
622
+ <div class="content_box " id="movies_sidebar" style="padding:0px;">
623
+ <div class="content_header clearfix">
624
+ </div>
625
+ <div class="content_body clearfix">
626
+ <ul class="nav nav-tabs">
627
+ <li class="in-theaters-tab active" style="width:50%;"><a href="#in-theaters" data-toggle="tab"><span class="movies-tab-icon in-theaters"></span>In Theaters</a></li>
628
+ <li class="on-dvd-tab " style="width:50%;"><a href="#on-dvd" data-toggle="tab"><span class="movies-tab-icon dvd"></span>On DVD</a></li>
629
+ </ul>
630
+ <div class="tab-content" style="height:790px;">
631
+ <div class="tab-pane fade active in" id="in-theaters">
632
+ <h4>Opening</h4>
633
+ <table class="movie_list opening">
634
+ <tr data-movie-id="771310388" data-movie-json='{&#034;id&#034;:771310388,&#034;title&#034;:&#034;2 Guns&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 49 min.&#034;,&#034;synopsis&#034;:&#034;Formulaic and often jarringly violent, 2 Guns rests its old-school appeal on the interplay between its charismatic, well-matched stars.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/07/11170775_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Mark Wahlberg&#034;,&#034;id&#034;:&#034;162653181&#034;},{&#034;name&#034;:&#034;Denzel Washington&#034;,&#034;id&#034;:&#034;162661439&#034;}]}'>
635
+ <td class="left_col">
636
+ <span class="tMeterIcon tiny" >
637
+ <span title="Fresh" class="icon
638
+ tiny fresh"></span><span class="tMeterScore">60%</span>
639
+ </span></td>
640
+ <td class="middle_col">
641
+ <a target="_top" href="/m/2_guns/" class="" sub="hover">2 Guns</a>
642
+ </td>
643
+ <td class="right_col right">Aug 02</td>
644
+ </tr>
645
+ <tr data-movie-id="771251238" data-movie-json='{&#034;id&#034;:771251238,&#034;title&#034;:&#034;The Smurfs 2&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 45 min.&#034;,&#034;synopsis&#034;:&#034;Like its predecessor, Smurfs 2 may amuse small children, but it&amp;#039;s largely an unambitious, charm-free collection of slapstick gags and one-liners.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/16/74/11167458_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Hank Azaria&#034;,&#034;id&#034;:&#034;162695372&#034;},{&#034;name&#034;:&#034;Neil Patrick Harris&#034;,&#034;id&#034;:&#034;351527581&#034;}]}'>
646
+ <td class="left_col">
647
+ <span class="tMeterIcon tiny" >
648
+ <span title="Rotten" class="icon
649
+ tiny rotten"></span><span class="tMeterScore">14%</span>
650
+ </span></td>
651
+ <td class="middle_col">
652
+ <a target="_top" href="/m/the_smurfs_2/" class="" sub="hover">The Smurfs 2</a>
653
+ </td>
654
+ <td class="right_col right">Jul 31</td>
655
+ </tr>
656
+ <tr data-movie-id="771323738" data-movie-json='{&#034;id&#034;:771323738,&#034;title&#034;:&#034;The Spectacular Now&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 35 min.&#034;,&#034;synopsis&#034;:&#034;The Spectacular Now is an adroit, sensitive film that avoids typical coming-of-age story trappings.&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/20/11172008_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Miles Teller&#034;,&#034;id&#034;:&#034;771077409&#034;},{&#034;name&#034;:&#034;Shailene Woodley&#034;,&#034;id&#034;:&#034;770676364&#034;}]}'>
657
+ <td class="left_col">
658
+ <span class="tMeterIcon tiny" >
659
+ <span title="Fresh" class="icon
660
+ tiny fresh"></span><span class="tMeterScore">91%</span>
661
+ </span></td>
662
+ <td class="middle_col">
663
+ <a target="_top" href="/m/the_spectacular_now/" class="" sub="hover">The Spectacular Now</a>
664
+ </td>
665
+ <td class="right_col right">Aug 02</td>
666
+ </tr>
667
+ <tr data-movie-id="771350422" data-movie-json='{&#034;id&#034;:771350422,&#034;title&#034;:&#034;Europa Report&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 30 min.&#034;,&#034;synopsis&#034;:&#034;While perhaps never as gripping or daring as it should be, Europa Report still manages to take one small step forward for the found-footage genre.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/12/11171259_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Sharlto Copley&#034;,&#034;id&#034;:&#034;770674319&#034;},{&#034;name&#034;:&#034;Michael Nyqvist&#034;,&#034;id&#034;:&#034;291428358&#034;}]}'>
668
+ <td class="left_col">
669
+ <span class="tMeterIcon tiny" >
670
+ <span title="Fresh" class="icon
671
+ tiny fresh"></span><span class="tMeterScore">72%</span>
672
+ </span></td>
673
+ <td class="middle_col">
674
+ <a target="_top" href="/m/europa_report/" class="" sub="hover">Europa Report</a>
675
+ </td>
676
+ <td class="right_col right">Aug 02</td>
677
+ </tr>
678
+ <tr data-movie-id="771312795" data-movie-json='{&#034;id&#034;:771312795,&#034;title&#034;:&#034;Cockneys vs Zombies&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;Unrated&#034;,&#034;runtime&#034;:&#034;1 hr. 28 min.&#034;,&#034;synopsis&#034;:&#034;If you&amp;#039;re interested in watching a battle between cockneys and zombies, this is the movie for you.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/11/11171103_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Harry Treadaway&#034;,&#034;id&#034;:&#034;770688679&#034;},{&#034;name&#034;:&#034;Rasmus Hardiker&#034;,&#034;id&#034;:&#034;770695758&#034;}]}'>
679
+ <td class="left_col">
680
+ <span class="tMeterIcon tiny" >
681
+ <span title="Fresh" class="icon
682
+ tiny fresh"></span><span class="tMeterScore">68%</span>
683
+ </span></td>
684
+ <td class="middle_col">
685
+ <a target="_top" href="/m/cockneys_vs_zombies/" class="" sub="hover">Cockneys vs Zombies</a>
686
+ </td>
687
+ <td class="right_col right">Aug 02</td>
688
+ </tr>
689
+ <tr data-movie-id="771270034" data-movie-json='{&#034;id&#034;:771270034,&#034;title&#034;:&#034;Top Cat: The Movie&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 30 min.&#034;,&#034;synopsis&#034;:&#034;A new police chief (Schneider) wants to automate the police force includingOfficer Dibble&amp;#039;s job, whos job is to keep an eye on Topcat. Topcat...&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/22/11172277_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Jason Harris&#034;,&#034;id&#034;:&#034;770736918&#034;},{&#034;name&#034;:&#034;Melissa Disney&#034;,&#034;id&#034;:&#034;770728211&#034;}]}'>
690
+ <td class="left_col">
691
+ <span class="tMeterIcon tiny" >
692
+ <span title="Rotten" class="icon
693
+ tiny rotten"></span><span class="tMeterScore">14%</span>
694
+ </span></td>
695
+ <td class="middle_col">
696
+ <a target="_top" href="/m/top_cat_the_movie/" class="" sub="hover">Top Cat: The Movie</a>
697
+ </td>
698
+ <td class="right_col right">Aug 02</td>
699
+ </tr>
700
+ <tr data-movie-id="771317808" data-movie-json='{&#034;id&#034;:771317808,&#034;title&#034;:&#034;Drift&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 53 min.&#034;,&#034;synopsis&#034;:&#034;Australia, 1970s. The Kelly brothers, Andy (28) and Jimmy (22), have one great passion: riding big waves. As kids, their mother escaped from Sydney to...&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/15/11171584_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Myles Pollard&#034;,&#034;id&#034;:&#034;770715445&#034;},{&#034;name&#034;:&#034;Xavier Samuel&#034;,&#034;id&#034;:&#034;770690974&#034;}]}'>
701
+ <td class="left_col">
702
+ <span class="tMeterIcon tiny" >
703
+ <span title="Rotten" class="icon
704
+ tiny rotten"></span><span class="tMeterScore">29%</span>
705
+ </span></td>
706
+ <td class="middle_col">
707
+ <a target="_top" href="/m/drift_2013/" class="" sub="hover">Drift</a>
708
+ </td>
709
+ <td class="right_col right">Aug 02</td>
710
+ </tr>
711
+ <tr data-movie-id="771307327" data-movie-json='{&#034;id&#034;:771307327,&#034;title&#034;:&#034;Our Children&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;Unrated&#034;,&#034;runtime&#034;:&#034;1 hr. 51 min.&#034;,&#034;synopsis&#034;:&#034;A wrenching, quietly violent psychodrama, Our Children has the courage to ask difficult questions, and the strength to leave the answers to the viewer.&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/21/11172161_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Niels Arestrup&#034;,&#034;id&#034;:&#034;266555632&#034;},{&#034;name&#034;:&#034;�milie Dequenne&#034;,&#034;id&#034;:&#034;162731346&#034;}]}'>
712
+ <td class="left_col">
713
+ <span class="tMeterIcon tiny" >
714
+ <span title="Fresh" class="icon
715
+ tiny fresh"></span><span class="tMeterScore">94%</span>
716
+ </span></td>
717
+ <td class="middle_col">
718
+ <a target="_top" href="/m/our_children_2012/" class="" sub="hover">Our Children</a>
719
+ </td>
720
+ <td class="right_col right">Aug 02</td>
721
+ </tr>
722
+ </table>
723
+ <div class="movie-list-more"><a href="/movie/in-theaters/">More...</a></div>
724
+ <div style="margin:0px 8px;">
725
+ <div id="box_office_buzz_ad" style="height:0px; line-height:0px;">
726
+ <script type='text/javascript'>
727
+ RT.ads.push("box_office_buzz_ad");
728
+ googletag.cmd.push(function() {
729
+ var slot=googletag.defineSlot('/6327/rt.movie/box_office_buzz', [[250,40]], 'box_office_buzz_ad')
730
+ .addService(googletag.pubads())
731
+ .setTargeting("unit", "box_office_buzz")
732
+ .setTargeting("movieid", "771267278")
733
+ .setTargeting("url", "/m/room_237_2012/");
734
+ slot.oldRenderEnded = slot.renderEnded;
735
+ slot.renderEnded = function(){
736
+ slot.oldRenderEnded();
737
+ var wrapper = $("#box_office_buzz_ad");
738
+ wrapper.css("height","").css("width","");
739
+ };
740
+ });
741
+ </script>
742
+ </div>
743
+ </div>
744
+ <h4>Top Box Office</h4>
745
+ <table class="movie_list top_box_office">
746
+ <tr data-movie-id="771193517" data-movie-json='{&#034;id&#034;:771193517,&#034;title&#034;:&#034;The Wolverine&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;2 hr. 16 min.&#034;,&#034;synopsis&#034;:&#034;Although its final act succumbs to the usual cartoonish antics, The Wolverine is one superhero movie that manages to stay true to the comics while keeping casual viewers entertained.&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/25/11172568_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Hugh Jackman&#034;,&#034;id&#034;:&#034;162661503&#034;},{&#034;name&#034;:&#034;Tao Okamoto&#034;,&#034;id&#034;:&#034;771414513&#034;}]}'>
747
+ <td class="left_col">
748
+ <span class="tMeterIcon tiny" >
749
+ <span title="Fresh" class="icon
750
+ tiny fresh"></span><span class="tMeterScore">67%</span>
751
+ </span></td>
752
+ <td class="middle_col">
753
+ <a target="_top" href="/m/the_wolverine_2012/" class="" sub="hover">The Wolverine</a>
754
+ </td>
755
+ <td class="right_col right">$53.1M</td>
756
+ </tr>
757
+ <tr data-movie-id="771312656" data-movie-json='{&#034;id&#034;:771312656,&#034;title&#034;:&#034;The Conjuring&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 52 min.&#034;,&#034;synopsis&#034;:&#034;Extremely well-crafted and gleefully creepy, The Conjuring ratchets up the dread with a series of smartly delivered, terribly effective old-school scares.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/07/11170746_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Vera Farmiga&#034;,&#034;id&#034;:&#034;162655572&#034;},{&#034;name&#034;:&#034;Patrick Wilson&#034;,&#034;id&#034;:&#034;162659104&#034;}]}'>
758
+ <td class="left_col">
759
+ <span class="tMeterIcon tiny" >
760
+ <span title="Fresh" class="icon
761
+ tiny fresh"></span><span class="tMeterScore">86%</span>
762
+ </span></td>
763
+ <td class="middle_col">
764
+ <a target="_top" href="/m/the_conjuring/" class="" sub="hover">The Conjuring</a>
765
+ </td>
766
+ <td class="right_col right">$22.2M</td>
767
+ </tr>
768
+ <tr data-movie-id="771245727" data-movie-json='{&#034;id&#034;:771245727,&#034;title&#034;:&#034;Despicable Me 2&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 38 min.&#034;,&#034;synopsis&#034;:&#034;It may not be as inspired as its predecessor, but Despicable Me 2 offers plenty of eye-popping visual inventiveness and a number of big laughs.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/21/11172174_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Steve Carell&#034;,&#034;id&#034;:&#034;162652665&#034;},{&#034;name&#034;:&#034;Kristen Wiig&#034;,&#034;id&#034;:&#034;770670481&#034;}]}'>
769
+ <td class="left_col">
770
+ <span class="tMeterIcon tiny" >
771
+ <span title="Fresh" class="icon
772
+ tiny fresh"></span><span class="tMeterScore">75%</span>
773
+ </span></td>
774
+ <td class="middle_col">
775
+ <a target="_top" href="/m/despicable_me_2/" class="" sub="hover">Despicable Me 2</a>
776
+ </td>
777
+ <td class="right_col right">$16.4M</td>
778
+ </tr>
779
+ <tr data-movie-id="771235150" data-movie-json='{&#034;id&#034;:771235150,&#034;title&#034;:&#034;Turbo&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 36 min.&#034;,&#034;synopsis&#034;:&#034;It&amp;#039;s nowhere near as inventive as its off-the-wall premise might suggest, but Turbo boasts just enough colorful visual thrills and sharp voice acting to recommend as undemanding family-friendly fare.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/23/11172391_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Ryan Reynolds&#034;,&#034;id&#034;:&#034;162652367&#034;},{&#034;name&#034;:&#034;Paul Giamatti&#034;,&#034;id&#034;:&#034;162683649&#034;}]}'>
780
+ <td class="left_col">
781
+ <span class="tMeterIcon tiny" >
782
+ <span title="Fresh" class="icon
783
+ tiny fresh"></span><span class="tMeterScore">64%</span>
784
+ </span></td>
785
+ <td class="middle_col">
786
+ <a target="_top" href="/m/turbo_2013/" class="" sub="hover">Turbo</a>
787
+ </td>
788
+ <td class="right_col right">$13.7M</td>
789
+ </tr>
790
+ <tr data-movie-id="771267074" data-movie-json='{&#034;id&#034;:771267074,&#034;title&#034;:&#034;Grown Ups 2&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 41 min.&#034;,&#034;synopsis&#034;:&#034;While it&amp;#039;s almost certainly the movie event of the year for filmgoers passionate about deer urine humor, Grown Ups 2 will bore, annoy, and disgust audiences of nearly every other persuasion.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/19/11171923_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Adam Sandler&#034;,&#034;id&#034;:&#034;162652550&#034;},{&#034;name&#034;:&#034;Kevin James&#034;,&#034;id&#034;:&#034;326298578&#034;}]}'>
791
+ <td class="left_col">
792
+ <span class="tMeterIcon tiny" >
793
+ <span title="Rotten" class="icon
794
+ tiny rotten"></span><span class="tMeterScore">7%</span>
795
+ </span></td>
796
+ <td class="middle_col">
797
+ <a target="_top" href="/m/grown_ups_2/" class="" sub="hover">Grown Ups 2</a>
798
+ </td>
799
+ <td class="right_col right">$11.6M</td>
800
+ </tr>
801
+ <tr data-movie-id="771259543" data-movie-json='{&#034;id&#034;:771259543,&#034;title&#034;:&#034;Red 2&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 56 min.&#034;,&#034;synopsis&#034;:&#034;While it&amp;#039;s still hard to argue with its impeccable cast or the fun they often seem to be having, Red 2 replaces much of the goofy fun of its predecessor with empty, over-the-top bombast.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/13/11171362_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Bruce Willis&#034;,&#034;id&#034;:&#034;162652509&#034;},{&#034;name&#034;:&#034;John Malkovich&#034;,&#034;id&#034;:&#034;162655610&#034;}]}'>
802
+ <td class="left_col">
803
+ <span class="tMeterIcon tiny" >
804
+ <span title="Rotten" class="icon
805
+ tiny rotten"></span><span class="tMeterScore">41%</span>
806
+ </span></td>
807
+ <td class="middle_col">
808
+ <a target="_top" href="/m/red_2/" class="" sub="hover">Red 2</a>
809
+ </td>
810
+ <td class="right_col right">$9.3M</td>
811
+ </tr>
812
+ <tr data-movie-id="771235120" data-movie-json='{&#034;id&#034;:771235120,&#034;title&#034;:&#034;Pacific Rim&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;2 hr. 11 min.&#034;,&#034;synopsis&#034;:&#034;It may sport more style than substance, but Pacific Rim is a solid modern creature feature bolstered by fantastical imagery and an irresistible sense of fun.&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/22/11172244_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Charlie Hunnam&#034;,&#034;id&#034;:&#034;162653833&#034;},{&#034;name&#034;:&#034;Diego Klattenhoff&#034;,&#034;id&#034;:&#034;770752941&#034;}]}'>
813
+ <td class="left_col">
814
+ <span class="tMeterIcon tiny" >
815
+ <span title="Fresh" class="icon
816
+ tiny fresh"></span><span class="tMeterScore">71%</span>
817
+ </span></td>
818
+ <td class="middle_col">
819
+ <a target="_top" href="/m/pacific_rim_2013/" class="" sub="hover">Pacific Rim</a>
820
+ </td>
821
+ <td class="right_col right">$7.7M</td>
822
+ </tr>
823
+ <tr data-movie-id="771308691" data-movie-json='{&#034;id&#034;:771308691,&#034;title&#034;:&#034;The Heat&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 57 min.&#034;,&#034;synopsis&#034;:&#034;The Heat is predictable, but Melissa McCarthy is reliably funny and Sandra Bullock proves a capable foil.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/16/11171690_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Sandra Bullock&#034;,&#034;id&#034;:&#034;162652205&#034;},{&#034;name&#034;:&#034;Melissa McCarthy&#034;,&#034;id&#034;:&#034;528361348&#034;}]}'>
824
+ <td class="left_col">
825
+ <span class="tMeterIcon tiny" >
826
+ <span title="Fresh" class="icon
827
+ tiny fresh"></span><span class="tMeterScore">66%</span>
828
+ </span></td>
829
+ <td class="middle_col">
830
+ <a target="_top" href="/m/the_heat/" class="" sub="hover">The Heat</a>
831
+ </td>
832
+ <td class="right_col right">$6.9M</td>
833
+ </tr>
834
+ <tr data-movie-id="771246669" data-movie-json='{&#034;id&#034;:771246669,&#034;title&#034;:&#034;R.I.P.D.&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 36 min.&#034;,&#034;synopsis&#034;:&#034;It has its moments -- most of them courtesy of Jeff Bridges&amp;#039; rootin&amp;#039; tootin&amp;#039; performance as an undead Wild West sheriff -- but R.I.P.D. is ultimately too dim-witted and formulaic to satisfy.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/23/11172307_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Jeff Bridges&#034;,&#034;id&#034;:&#034;162655890&#034;},{&#034;name&#034;:&#034;Ryan Reynolds&#034;,&#034;id&#034;:&#034;162652367&#034;}]}'>
835
+ <td class="left_col">
836
+ <span class="tMeterIcon tiny" >
837
+ <span title="Rotten" class="icon
838
+ tiny rotten"></span><span class="tMeterScore">12%</span>
839
+ </span></td>
840
+ <td class="middle_col">
841
+ <a target="_top" href="/m/ripd/" class="" sub="hover">R.I.P.D.</a>
842
+ </td>
843
+ <td class="right_col right">$6.1M</td>
844
+ </tr>
845
+ <tr data-movie-id="771324998" data-movie-json='{&#034;id&#034;:771324998,&#034;title&#034;:&#034;Fruitvale Station&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 24 min.&#034;,&#034;synopsis&#034;:&#034;Passionate and powerfully acted, Fruitvale Station serves as a celebration of life, a condemnation of death, and a triumph for star Michael B. Jordan.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/19/11171959_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Michael B. Jordan&#034;,&#034;id&#034;:&#034;770683889&#034;},{&#034;name&#034;:&#034;Octavia L. Spencer&#034;,&#034;id&#034;:&#034;770906299&#034;}]}'>
846
+ <td class="left_col">
847
+ <span class="tMeterIcon tiny" >
848
+ <span title="Fresh" class="icon
849
+ tiny fresh"></span><span class="tMeterScore">94%</span>
850
+ </span></td>
851
+ <td class="middle_col">
852
+ <a target="_top" href="/m/fruitvale_station/" class="" sub="hover">Fruitvale Station</a>
853
+ </td>
854
+ <td class="right_col right">$4.6M</td>
855
+ </tr>
856
+ </table>
857
+ <div class="movie-list-more"><a href="/movie/box-office/">More...</a></div>
858
+ <h4>Coming Soon</h4>
859
+ <table class="movie_list coming_soon">
860
+ <tbody>
861
+ <tr data-movie-id="771257656" data-movie-json='{&#034;id&#034;:771257656,&#034;title&#034;:&#034;Percy Jackson: Sea of Monsters&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 50 min.&#034;,&#034;synopsis&#034;:&#034;Percy Jackson, the son of Poseidon, continues his epic journey to fulfill his destiny, as he teams with his demigod friends to retrieve the Golden...&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/18/11171843_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Logan Lerman&#034;,&#034;id&#034;:&#034;341816559&#034;},{&#034;name&#034;:&#034;Alexandra Daddario&#034;,&#034;id&#034;:&#034;770777867&#034;}]}'>
862
+ <td class="left_col">
863
+ <span class="tMeterIcon tiny" >
864
+ <span class="greyline right">&mdash;&mdash;</span>
865
+ </span></td>
866
+ <td class="middle_col">
867
+ <a target="_top" href="/m/percy_jackson_sea_of_monsters/" class="" sub="hover">Percy Jackson: Sea of Monsters</a>
868
+ </td>
869
+ <td class="right_col right">Aug 07</td>
870
+ </tr>
871
+ <tr data-movie-id="771318592" data-movie-json='{&#034;id&#034;:771318592,&#034;title&#034;:&#034;We&amp;#039;re The Millers&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 40 min.&#034;,&#034;synopsis&#034;:&#034;David Burke (Jason Sudeikis) is a small-time pot dealer whose clientele includes chefs and soccer moms, but no kids-after all, he has his scruples. So...&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/15/11171565_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Mark L. Young&#034;,&#034;id&#034;:&#034;770723485&#034;},{&#034;name&#034;:&#034;Jennifer Aniston&#034;,&#034;id&#034;:&#034;162655148&#034;}]}'>
872
+ <td class="left_col">
873
+ <span class="tMeterIcon tiny" >
874
+ <span class="greyline right">&mdash;&mdash;</span>
875
+ </span></td>
876
+ <td class="middle_col">
877
+ <a target="_top" href="/m/were_the_millers/" class="" sub="hover">We're The Millers</a>
878
+ </td>
879
+ <td class="right_col right">Aug 07</td>
880
+ </tr>
881
+ <tr data-movie-id="771235149" data-movie-json='{&#034;id&#034;:771235149,&#034;title&#034;:&#034;Elysium&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 37 min.&#034;,&#034;synopsis&#034;:&#034;In the year 2154, two classes of people exist: the very wealthy, who live on a pristine man-made space station called Elysium, and the rest, who live...&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/07/11170790_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Matt Damon&#034;,&#034;id&#034;:&#034;162653499&#034;},{&#034;name&#034;:&#034;Jodie Foster&#034;,&#034;id&#034;:&#034;162654080&#034;}]}'>
882
+ <td class="left_col">
883
+ <span class="tMeterIcon tiny" >
884
+ <span title="Fresh" class="icon
885
+ tiny fresh"></span><span class="tMeterScore">80%</span>
886
+ </span></td>
887
+ <td class="middle_col">
888
+ <a target="_top" href="/m/elysium_2013/" class="" sub="hover">Elysium</a>
889
+ </td>
890
+ <td class="right_col right">Aug 09</td>
891
+ </tr>
892
+ <tr data-movie-id="771312196" data-movie-json='{&#034;id&#034;:771312196,&#034;title&#034;:&#034;Planes&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;1 hr. 32 min.&#034;,&#034;synopsis&#034;:&#034;Cars gets a spin-off with this Disney Toon Studios film starring the voice of Dane Cook as a vertically-challenged plane with high hopes of becoming...&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/18/11171824_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Dane Cook&#034;,&#034;id&#034;:&#034;338671161&#034;},{&#034;name&#034;:&#034;Julia Louis-Dreyfus&#034;,&#034;id&#034;:&#034;364622432&#034;}]}'>
893
+ <td class="left_col">
894
+ <span class="tMeterIcon tiny" >
895
+ <span class="greyline right">&mdash;&mdash;</span>
896
+ </span></td>
897
+ <td class="middle_col">
898
+ <a target="_top" href="/m/planes/" class="" sub="hover">Planes</a>
899
+ </td>
900
+ <td class="right_col right">Aug 09</td>
901
+ </tr>
902
+ </tbody>
903
+ </table>
904
+ <div class="movie-list-more"><a href="/movie/upcoming/">More...</a></div>
905
+ </div>
906
+ <div class="tab-pane fade " id="on-dvd">
907
+ <h4>Top Rentals</h4>
908
+ <table class="movie_list top_rentals">
909
+ <tr data-movie-id="771211175" data-movie-json='{&#034;id&#034;:771211175,&#034;title&#034;:&#034;Oz the Great and Powerful&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG&#034;,&#034;runtime&#034;:&#034;2 hr. 7 min.&#034;,&#034;synopsis&#034;:&#034;It suffers from some tonal inconsistency and a deflated sense of wonder, but Oz the Great and Powerful still packs enough visual dazzle and clever wit to be entertaining in its own right.&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/16/82/11168213_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;James Franco&#034;,&#034;id&#034;:&#034;162653202&#034;},{&#034;name&#034;:&#034;Mila Kunis&#034;,&#034;id&#034;:&#034;364629418&#034;}]}'> <td class="left_col">
910
+ <span class="tMeterIcon tiny" >
911
+ <span title="Rotten" class="icon
912
+ tiny rotten"></span><span class="tMeterScore">59%</span>
913
+ </span></td>
914
+ <td class="middle_col">
915
+ <a target="_top" href="/m/oz_the_great_and_powerful/" class="" sub="hover">Oz the Great and Powerful</a>
916
+ </td>
917
+ </tr>
918
+ <tr data-movie-id="771241227" data-movie-json='{&#034;id&#034;:771241227,&#034;title&#034;:&#034;G.I. Joe: Retaliation&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 30 min.&#034;,&#034;synopsis&#034;:&#034;Though arguably superior to its predecessor, G.I. Joe: Retaliation is overwhelmed by its nonstop action and too nonsensical and vapid to leave a lasting impression.&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/18/11171817_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;D.J. Cotrona&#034;,&#034;id&#034;:&#034;162653947&#034;},{&#034;name&#034;:&#034;Byung-hun Lee&#034;,&#034;id&#034;:&#034;285359670&#034;}]}'> <td class="left_col">
919
+ <span class="tMeterIcon tiny" >
920
+ <span title="Rotten" class="icon
921
+ tiny rotten"></span><span class="tMeterScore">28%</span>
922
+ </span></td>
923
+ <td class="middle_col">
924
+ <a target="_top" href="/m/gi_joe_retaliation/" class="" sub="hover">G.I. Joe: Retaliation</a>
925
+ </td>
926
+ </tr>
927
+ <tr data-movie-id="771270981" data-movie-json='{&#034;id&#034;:771270981,&#034;title&#034;:&#034;Identity Thief&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 52 min.&#034;,&#034;synopsis&#034;:&#034;Identity Thief&amp;#039;s few laughs are attributable to Melissa McCarthy and Jason Bateman, who labor mightily to create a framework for the movie&amp;#039;s undisciplined plotline.&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/09/11170920_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Jason Bateman&#034;,&#034;id&#034;:&#034;326298973&#034;},{&#034;name&#034;:&#034;Melissa McCarthy&#034;,&#034;id&#034;:&#034;528361348&#034;}]}'> <td class="left_col">
928
+ <span class="tMeterIcon tiny" >
929
+ <span title="Rotten" class="icon
930
+ tiny rotten"></span><span class="tMeterScore">20%</span>
931
+ </span></td>
932
+ <td class="middle_col">
933
+ <a target="_top" href="/m/identity_thief/" class="" sub="hover">Identity Thief</a>
934
+ </td>
935
+ </tr>
936
+ <tr data-movie-id="771257607" data-movie-json='{&#034;id&#034;:771257607,&#034;title&#034;:&#034;A Good Day To Die Hard&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 37 min.&#034;,&#034;synopsis&#034;:&#034;A Good Day to Die Hard is the weakest entry in a storied franchise, and not even Bruce Willis&amp;#039; smirking demeanor can enliven a cliched, uninspired script.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/12/11171258_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Bruce Willis&#034;,&#034;id&#034;:&#034;162652509&#034;},{&#034;name&#034;:&#034;Jai Courtney&#034;,&#034;id&#034;:&#034;771383833&#034;}]}'> <td class="left_col">
937
+ <span class="tMeterIcon tiny" >
938
+ <span title="Rotten" class="icon
939
+ tiny rotten"></span><span class="tMeterScore">14%</span>
940
+ </span></td>
941
+ <td class="middle_col">
942
+ <a target="_top" href="/m/a_good_day_to_die_hard/" class="" sub="hover">A Good Day To Die Hard</a>
943
+ </td>
944
+ </tr>
945
+ <tr data-movie-id="771238285" data-movie-json='{&#034;id&#034;:771238285,&#034;title&#034;:&#034;Warm Bodies&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 37 min.&#034;,&#034;synopsis&#034;:&#034;Warm Bodies offers a sweet, well-acted spin on a genre that all too often lives down to its brain-dead protagonists.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/14/11171434_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Nicholas Hoult&#034;,&#034;id&#034;:&#034;162654938&#034;},{&#034;name&#034;:&#034;Teresa Palmer&#034;,&#034;id&#034;:&#034;347990464&#034;}]}'> <td class="left_col">
946
+ <span class="tMeterIcon tiny" >
947
+ <span title="Fresh" class="icon
948
+ tiny fresh"></span><span class="tMeterScore">81%</span>
949
+ </span></td>
950
+ <td class="middle_col">
951
+ <a target="_top" href="/m/warm_bodies/" class="" sub="hover">Warm Bodies</a>
952
+ </td>
953
+ </tr>
954
+ <tr data-movie-id="771305747" data-movie-json='{&#034;id&#034;:771305747,&#034;title&#034;:&#034;42&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;2 hr. 8 min.&#034;,&#034;synopsis&#034;:&#034;42 is an earnest, inspirational, and respectfully told biography of an influential American sports icon, though it might be a little too safe and old-fashioned for some.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/18/11171806_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Chadwick Boseman&#034;,&#034;id&#034;:&#034;771363198&#034;},{&#034;name&#034;:&#034;Harrison Ford&#034;,&#034;id&#034;:&#034;162661579&#034;}]}'> <td class="left_col">
955
+ <span class="tMeterIcon tiny" >
956
+ <span title="Fresh" class="icon
957
+ tiny fresh"></span><span class="tMeterScore">77%</span>
958
+ </span></td>
959
+ <td class="middle_col">
960
+ <a target="_top" href="/m/42_2013/" class="" sub="hover">42</a>
961
+ </td>
962
+ </tr>
963
+ <tr data-movie-id="771225176" data-movie-json='{&#034;id&#034;:771225176,&#034;title&#034;:&#034;Hansel and Gretel: Witch Hunters&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 27 min.&#034;,&#034;synopsis&#034;:&#034;Alternately bloody and silly, Hansel and Gretel: Witch Hunters fails as both a fantasy adventure and as a parody of same.&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/17/20/11172036_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Jeremy Renner&#034;,&#034;id&#034;:&#034;309973652&#034;},{&#034;name&#034;:&#034;Gemma Arterton&#034;,&#034;id&#034;:&#034;770692644&#034;}]}'> <td class="left_col">
964
+ <span class="tMeterIcon tiny" >
965
+ <span title="Rotten" class="icon
966
+ tiny rotten"></span><span class="tMeterScore">15%</span>
967
+ </span></td>
968
+ <td class="middle_col">
969
+ <a target="_top" href="/m/hansel_and_gretel_witch_hunters/" class="" sub="hover">Hansel and Gretel: Witch Hunters</a>
970
+ </td>
971
+ </tr>
972
+ <tr data-movie-id="771189410" data-movie-json='{&#034;id&#034;:771189410,&#034;title&#034;:&#034;Jack the Giant Slayer&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 54 min.&#034;,&#034;synopsis&#034;:&#034;It&amp;#039;s enthusiastically acted and reasonably fun, but Jack the Giant Slayer is also overwhelmed by digital effects and a bland, impersonal story.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/16/98/11169862_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Nicholas Hoult&#034;,&#034;id&#034;:&#034;162654938&#034;},{&#034;name&#034;:&#034;Eleanor Tomlinson&#034;,&#034;id&#034;:&#034;770707131&#034;}]}'> <td class="left_col">
973
+ <span class="tMeterIcon tiny" >
974
+ <span title="Rotten" class="icon
975
+ tiny rotten"></span><span class="tMeterScore">52%</span>
976
+ </span></td>
977
+ <td class="middle_col">
978
+ <a target="_top" href="/m/jack_the_giant_slayer/" class="" sub="hover">Jack the Giant Slayer</a>
979
+ </td>
980
+ </tr>
981
+ <tr data-movie-id="771318588" data-movie-json='{&#034;id&#034;:771318588,&#034;title&#034;:&#034;The Incredible Burt Wonderstone&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 40 min.&#034;,&#034;synopsis&#034;:&#034;The Incredible Burt Wonderstone serves up some goofy laughs, but given its outrageous conceit, it&amp;#039;s surprisingly safe and predictable.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/17/20/11172014_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Steve Carell&#034;,&#034;id&#034;:&#034;162652665&#034;},{&#034;name&#034;:&#034;Steve Buscemi&#034;,&#034;id&#034;:&#034;162652875&#034;}]}'> <td class="left_col">
982
+ <span class="tMeterIcon tiny" >
983
+ <span title="Rotten" class="icon
984
+ tiny rotten"></span><span class="tMeterScore">36%</span>
985
+ </span></td>
986
+ <td class="middle_col">
987
+ <a target="_top" href="/m/the_incredible_burt_wonderstone/" class="" sub="hover">The Incredible Burt Wonderstone</a>
988
+ </td>
989
+ </tr>
990
+ <tr data-movie-id="771304584" data-movie-json='{&#034;id&#034;:771304584,&#034;title&#034;:&#034;21 And Over&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 33 min.&#034;,&#034;synopsis&#034;:&#034;Though it strives to mimic The Hangover, 21 and Over is too predictable, too unabashedly profane, and too inconsistently funny to carry the torch.&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/21/11172177_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Miles Teller&#034;,&#034;id&#034;:&#034;771077409&#034;},{&#034;name&#034;:&#034;Skylar Astin&#034;,&#034;id&#034;:&#034;770797712&#034;}]}'> <td class="left_col">
991
+ <span class="tMeterIcon tiny" >
992
+ <span title="Rotten" class="icon
993
+ tiny rotten"></span><span class="tMeterScore">26%</span>
994
+ </span></td>
995
+ <td class="middle_col">
996
+ <a target="_top" href="/m/21_and_over/" class="" sub="hover">21 And Over</a>
997
+ </td>
998
+ </tr>
999
+ <tr data-movie-id="771316320" data-movie-json='{&#034;id&#034;:771316320,&#034;title&#034;:&#034;Snitch&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;PG-13&#034;,&#034;runtime&#034;:&#034;1 hr. 52 min.&#034;,&#034;synopsis&#034;:&#034;Though it features one of Dwayne Johnson&amp;#039;s more thoughtful performances, the presentation of Snitch&amp;#039;s underlying message is muddled by lackluster storytelling and some tonal inconsistencies.&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/19/11171943_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Dwayne &amp;#034;The Rock&amp;#034; Johnson&#034;,&#034;id&#034;:&#034;770893686&#034;},{&#034;name&#034;:&#034;Barry Pepper&#034;,&#034;id&#034;:&#034;162671262&#034;}]}'> <td class="left_col">
1000
+ <span class="tMeterIcon tiny" >
1001
+ <span title="Rotten" class="icon
1002
+ tiny rotten"></span><span class="tMeterScore">55%</span>
1003
+ </span></td>
1004
+ <td class="middle_col">
1005
+ <a target="_top" href="/m/snitch_2013/" class="" sub="hover">Snitch</a>
1006
+ </td>
1007
+ </tr>
1008
+ <tr data-movie-id="771272420" data-movie-json='{&#034;id&#034;:771272420,&#034;title&#034;:&#034;The Place Beyond The Pines&#034;,&#034;year&#034;:2012,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;2 hr. 21 min.&#034;,&#034;synopsis&#034;:&#034;Ambitious to a fault, The Place Beyond the Pines finds writer/director Derek Cianfrance reaching for -- and often grasping -- thorny themes of family, fatherhood, and fate.&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/19/11171965_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Ryan Gosling&#034;,&#034;id&#034;:&#034;162654751&#034;},{&#034;name&#034;:&#034;Bradley Cooper&#034;,&#034;id&#034;:&#034;351525448&#034;}]}'> <td class="left_col">
1009
+ <span class="tMeterIcon tiny" >
1010
+ <span title="Fresh" class="icon
1011
+ tiny fresh"></span><span class="tMeterScore">82%</span>
1012
+ </span></td>
1013
+ <td class="middle_col">
1014
+ <a target="_top" href="/m/the_place_beyond_the_pines_2012/" class="" sub="hover">The Place Beyond The Pines</a>
1015
+ </td>
1016
+ </tr>
1017
+ </table>
1018
+ <div class="movie-list-more"><a href="/dvd/top-rentals/">More...</a></div>
1019
+ <h4>New On DVD This Week</h4>
1020
+ <table class="movie_list new_dvd">
1021
+ <tbody>
1022
+ <tr data-movie-id="771267247" data-movie-json='{&#034;id&#034;:771267247,&#034;title&#034;:&#034;Filly Brown&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 40 min.&#034;,&#034;synopsis&#034;:&#034;FILLY BROWN is an inspiring and gritty portrait of a young artist&amp;#039;s striving to find her voice and seize her dreams without compromise. Majo Tonorio,...&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/16/86/11168634_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Gina Rodriguez&#034;,&#034;id&#034;:&#034;770871575&#034;},{&#034;name&#034;:&#034;Jenni Rivera&#034;,&#034;id&#034;:&#034;770771569&#034;}]}'>
1023
+ <td class="left_col">
1024
+ <span class="tMeterIcon tiny" >
1025
+ <span title="Rotten" class="icon
1026
+ tiny rotten"></span><span class="tMeterScore">45%</span>
1027
+ </span></td>
1028
+ <td class="middle_col">
1029
+ <a target="_top" href="/m/filly_brown_2012/" class="" sub="hover">Filly Brown</a>
1030
+ </td>
1031
+ </tr>
1032
+ <tr data-movie-id="771266053" data-movie-json='{&#034;id&#034;:771266053,&#034;title&#034;:&#034;Black Rock&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 19 min.&#034;,&#034;synopsis&#034;:&#034;It springs from smarter ideas than your average chase thriller, but ultimately, Black Rock falls back on disappointingly familiar ingredients.&#034;,&#034;thumbnail&#034;:&#034;http://content8.flixster.com/movie/11/16/99/11169946_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Kate Bosworth&#034;,&#034;id&#034;:&#034;162655190&#034;},{&#034;name&#034;:&#034;Lake Bell&#034;,&#034;id&#034;:&#034;770686992&#034;}]}'>
1033
+ <td class="left_col">
1034
+ <span class="tMeterIcon tiny" >
1035
+ <span title="Rotten" class="icon
1036
+ tiny rotten"></span><span class="tMeterScore">48%</span>
1037
+ </span></td>
1038
+ <td class="middle_col">
1039
+ <a target="_top" href="/m/black_rock_2011/" class="" sub="hover">Black Rock</a>
1040
+ </td>
1041
+ </tr>
1042
+ <tr data-movie-id="771353902" data-movie-json='{&#034;id&#034;:771353902,&#034;title&#034;:&#034;Assault On Wall Street&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 37 min.&#034;,&#034;synopsis&#034;:&#034;A security guard for an armored truck, Jim (Dominic Purcell) is a blue-collar New Yorker who works hard to earn a living. His wages support himself...&#034;,&#034;thumbnail&#034;:&#034;http://content9.flixster.com/movie/11/17/09/11170947_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Dominic Purcell&#034;,&#034;id&#034;:&#034;162717664&#034;},{&#034;name&#034;:&#034;Erin Karpluk&#034;,&#034;id&#034;:&#034;770692103&#034;}]}'>
1043
+ <td class="left_col">
1044
+ <span class="tMeterIcon tiny" >
1045
+ <span title="Rotten" class="icon
1046
+ tiny rotten"></span><span class="tMeterScore">14%</span>
1047
+ </span></td>
1048
+ <td class="middle_col">
1049
+ <a target="_top" href="/m/assault_on_wall_street_2013/" class="" sub="hover">Assault On Wall Street</a>
1050
+ </td>
1051
+ </tr>
1052
+ <tr data-movie-id="771357196" data-movie-json='{&#034;id&#034;:771357196,&#034;title&#034;:&#034;Teen Beach Movie&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;Unrated&#034;,&#034;runtime&#034;:&#034;1 hr. 31 min.&#034;,&#034;synopsis&#034;:&#034;Teen surfing sweethearts Brady and McKenzie are swept into the movie musical &amp;#034;Wet Side Story&amp;#034; when they crash beneath a wave. In the film, bikers and...&#034;,&#034;thumbnail&#034;:&#034;http://images.rottentomatoescdn.com/images/redesign/poster_default.gif&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Ross Lynch&#034;,&#034;id&#034;:&#034;771414381&#034;},{&#034;name&#034;:&#034;Maia Mitchell&#034;,&#034;id&#034;:&#034;771451801&#034;}]}'>
1053
+ <td class="left_col">
1054
+ <span class="tMeterIcon tiny" >
1055
+ <span class="greyline right">&mdash;&mdash;</span>
1056
+ </span></td>
1057
+ <td class="middle_col">
1058
+ <a target="_top" href="/m/teen_beach_movie/" class="" sub="hover">Teen Beach Movie</a>
1059
+ </td>
1060
+ </tr>
1061
+ <tr data-movie-id="771307321" data-movie-json='{&#034;id&#034;:771307321,&#034;title&#034;:&#034;Night Across the Street&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;Unrated&#034;,&#034;runtime&#034;:&#034;1 hr. 41 min.&#034;,&#034;synopsis&#034;:&#034;On the verge of a forced retirement, Don Celso, an elderly office worker begins to relive both real and imagined memories from his life - a trip to...&#034;,&#034;thumbnail&#034;:&#034;http://content6.flixster.com/movie/11/16/89/11168920_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Christian Vadim&#034;,&#034;id&#034;:&#034;770689233&#034;},{&#034;name&#034;:&#034;Sergio Hern�ndez&#034;,&#034;id&#034;:&#034;341817544&#034;}]}'>
1062
+ <td class="left_col">
1063
+ <span class="tMeterIcon tiny" >
1064
+ <span title="Fresh" class="icon
1065
+ tiny fresh"></span><span class="tMeterScore">92%</span>
1066
+ </span></td>
1067
+ <td class="middle_col">
1068
+ <a target="_top" href="/m/night_across_the_street/" class="" sub="hover">Night Across the Street</a>
1069
+ </td>
1070
+ </tr>
1071
+ <tr data-movie-id="771312909" data-movie-json='{&#034;id&#034;:771312909,&#034;title&#034;:&#034;Under the Bed&#034;,&#034;year&#034;:2013,&#034;mpaa&#034;:&#034;R&#034;,&#034;runtime&#034;:&#034;1 hr. 27 min.&#034;,&#034;synopsis&#034;:&#034;Every child knows about the monster under the bed-Neal Hausman&amp;#039;s mistake was trying to fight it. Neal (Jonny Weston, Chasing Mavericks) has returned...&#034;,&#034;thumbnail&#034;:&#034;http://content7.flixster.com/movie/11/17/20/11172065_mob.jpg&#034;,&#034;cast&#034;:[{&#034;name&#034;:&#034;Jonny Weston&#034;,&#034;id&#034;:&#034;771403662&#034;},{&#034;name&#034;:&#034;Gattlin Griffith&#034;,&#034;id&#034;:&#034;770819198&#034;}]}'>
1072
+ <td class="left_col">
1073
+ <span class="tMeterIcon tiny" >
1074
+ <span title="Rotten" class="icon
1075
+ tiny rotten"></span><span class="tMeterScore">38%</span>
1076
+ </span></td>
1077
+ <td class="middle_col">
1078
+ <a target="_top" href="/m/under_the_bed_2012/" class="" sub="hover">Under the Bed</a>
1079
+ </td>
1080
+ </tr>
1081
+ </tbody>
1082
+ </table>
1083
+ <div class="movie-list-more"><a href="/dvd/new-releases/">More...</a></div>
1084
+ </div>
1085
+ </div>
1086
+ <script class="hoverBubbleTmpl" type="text/html">
1087
+ <div class="hoverBubble fade in" data-movie-id="{{ id }}">
1088
+ <div class="bubbleContent">
1089
+ <div class="media_block">
1090
+ <img class="media_block_image" src="{{ thumbnail }}" />
1091
+ <div class="media_block_content">
1092
+ <div class="title">{{ title }}</div>
1093
+ <div class="cast">
1094
+ {% $.each(cast, function(idx, val){ %}
1095
+ <span>{{ val.name }}</span>{{ idx < cast.length -1 ? "," : "" }}
1096
+ {% }); %}
1097
+ </div>
1098
+ <div class="mpaa">{{ mpaa }}, {{ runtime }}</div>
1099
+ <div class="mpaa"><a href="{{ url }}trailer/" class="trailer_play_action_button">Trailer</a> - <a href="{{ url }}movie_times/">Showtimes</a></div>
1100
+ </div>
1101
+ </div>
1102
+ <div class="synopsis">{{ synopsis }}</div>
1103
+ <div class="rating_widget" comp="Rating" movieId="{{ id }}" data-event-action="Hover Bubble" data-facepile="true" data-source="RTS" data-hidewtsifrated="true">
1104
+ <div class="clearfix ratings_container">
1105
+ <div class="rating_buttons">
1106
+ <a href="javascript:void(0);" class="wts" sub="wts"></a><a href="javascript:void(0);" class="ni" sub="ni"></a>
1107
+ </div>
1108
+ <div class="facepile" sub="facepile"></div>
1109
+ </div>
1110
+ </div>
1111
+ </div>
1112
+ </div>
1113
+ </script>
1114
+ </div>
1115
+ <div class="content_footer clearfix">
1116
+ </div>
1117
+ </div>
1118
+ <script>
1119
+ $("#movies_sidebar")
1120
+ .on("mousedown", ".opening tr", function(){ _gaq.push(['_trackEvent', 'mob', 'Movies Tab', 'Opening']);})
1121
+ .on("mousedown", ".top_box_office tr", function(){ _gaq.push(['_trackEvent', 'mob', 'Movies Tab', 'Top Box Office']);})
1122
+ .on("mousedown", ".coming_soon tr", function(){ _gaq.push(['_trackEvent', 'mob', 'Movies Tab', 'Coming Soon']);})
1123
+ .on("mousedown", ".top_rentals tr", function(){ _gaq.push(['_trackEvent', 'mob', 'DVD Tab', 'Top Rentals']);})
1124
+ .on("mousedown", ".new_dvd tr", function(){ _gaq.push(['_trackEvent', 'mob', 'DVD Tab', 'New on DVD']);})
1125
+ .on("mousedown", ".in-theaters-tab", function(){ _gaq.push(['_trackEvent', 'mob', 'Movies Tab', 'Tab Click']);})
1126
+ .on("mousedown", ".on-dvd-tab", function(){ _gaq.push(['_trackEvent', 'mob', 'DVD Tab', 'Tab Click']);});
1127
+ </script>
1128
+ </div>
1129
+ <div id="mainColumn" class="col col_728 col_last">
1130
+ <div id="mobPanel" style="background:white; position:relative;">
1131
+ <div class="content in">
1132
+ <script>
1133
+ document.title = "Planes - Rotten Tomatoes";
1134
+ _gaq.push(['_setCustomVar', 4, 'Affiliates', '-NflxDQ']);
1135
+ _gaq.push(['_trackPageview', '/MOB-Upcoming']);
1136
+ $(function(){
1137
+ $("[comp=HoverTip]").comp();
1138
+ });
1139
+ </script>
1140
+ <div comp="HashLoader" data-url="/m/planes/theater?id=" data-param="theater" data-domtype="append"></div>
1141
+ <div class="content_box media_block main_movie_area" >
1142
+ <div class="content_header clearfix">
1143
+ </div>
1144
+ <div class="content_body clearfix">
1145
+ <div class="media_block_image movie_poster_area">
1146
+ <a class="trailer_play_action_button" href="/m/planes/trailer/" data-video-id="11176520">
1147
+ <img src="http://instart0.flixster.com/movie/11/17/18/11171824_det.jpg" width="142" alt="Planes" title="Planes" itemprop="image" />
1148
+ <span class="play_button_big"></span>
1149
+ </a>
1150
+ <a id="trailer_play_button" class="trailer_action_button trailer_play_action_button" href="/m/planes/trailer/" data-video-id="11176520">Play Trailer</a>
1151
+ </div>
1152
+ <div class="media_block_content movie_content_area">
1153
+ <h1 class="movie_title"><span itemprop="name">Planes (2013)</span></h1>
1154
+ <div class="meter_box left_door">
1155
+ <div class="meter_box right_door" comp="HoverTip">
1156
+ <div class="meter_critics critic_side">
1157
+ <p class="help tomatometer_bar_help" sub="hover" tip="The percentage of Approved Tomatometer Critics who have given this movie a positive review"><span>tomatometer</span></p>
1158
+ <ul class="critic_links" id="critic-links">
1159
+ <li><a reviewtype="tMeter" href="#all-critics-numbers" id="all-critics-link" class="active">All Critics</a></li>
1160
+ <li><a reviewtype="allTopCritics" href="#top-critics-numbers" id="top-critics-link">Top Critics</a></li>
1161
+ </ul>
1162
+ <div id="all-critics-numbers" class="critic_side_container" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
1163
+ <div class="tomato_numbers noReviews">
1164
+ <style>
1165
+ div.movie_content_area div.meter_critics { height:104px; }
1166
+ </style>
1167
+ <span id="all-critics-meter" class="meter noReviews">No Reviews Yet...</span>
1168
+ <p class="critic_stats"><span class="label">Release Date:</span> <span class="content"><span>Aug 9, 2013 Wide</span></span></p>
1169
+ </div>
1170
+ </div>
1171
+ <div id="top-critics-numbers" class="critic_side_container">
1172
+ <div class="tomato_numbers noReviews">
1173
+ <style>
1174
+ div.movie_content_area div.meter_critics { height:104px; }
1175
+ </style>
1176
+ <span id="all-critics-meter" class="meter noReviews">No Reviews Yet...</span>
1177
+ <p class="critic_stats"><span class="label">Release Date:</span> <span class="content"><span>Aug 9, 2013 Wide</span></span></p>
1178
+ </div>
1179
+ </div>
1180
+ </div>
1181
+ <a class="fan_side" style="display:block;" href="#audience_reviews">
1182
+ <p sub="hover" class="help tomatometer_bar_help" tip="The percentage of Rotten Tomatoes users who want to see this movie"><span>audience</span></p>
1183
+ <span class="meter wts numeric ">91</span>
1184
+ <p class="critic_stats">
1185
+ <span class="subText want_to_see" >want to see</span><br/>
1186
+ User Ratings: 21,277
1187
+ </p>
1188
+ </a>
1189
+ <div class="clearfix"></div>
1190
+ </div>
1191
+ </div>
1192
+ <div class="meter_box_bottom left_side">
1193
+ <div class="meter_box_bottom right_side">
1194
+ <div class="critic_side"></div>
1195
+ </div>
1196
+ </div>
1197
+ <div class="share-tools " >
1198
+ <div class="fbContainer">
1199
+ <script type="text/javascript">
1200
+ </script>
1201
+ <div class="fb-like" data-send="false" data-layout="button_count" data-width="120" data-show-faces="false" data-href="http://www.rottentomatoes.com/m/planes/" ></div>
1202
+ </div>
1203
+ <div class="twitterContainer" >
1204
+ <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.rottentomatoes.com/m/planes/" data-count="horizontal" data-text="Planes - Rotten Tomatoes" data-via="RottenTomatoes"></a>
1205
+ </div>
1206
+ <div class="pinterestContainer" >
1207
+ <a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Fplanes%2F&media=http%3A%2F%2Fcontent6.flixster.com%2Fmovie%2F11%2F17%2F18%2F11171824_ori.jpg&description=Planes+-+Rotten+Tomatoes" class="pin-it-button" count-layout="horizontal">
1208
+ <img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a>
1209
+ </div>
1210
+ <div class="gPlusOneContainer" >
1211
+ <g:plusone size="medium" count="true" href="http://www.rottentomatoes.com/m/planes/"></g:plusone>
1212
+ <script type="text/javascript"> if(typeof gapi != 'undefined') gapi.plusone.go("gPlusOne"); </script>
1213
+ </div>
1214
+ <!-- Place this tag where you want the su badge to render -->
1215
+ <div class="stumbleUponContainer" >
1216
+ <su:badge layout="1" location="http://www.rottentomatoes.com/m/planes/"></su:badge>
1217
+ </div>
1218
+ </div>
1219
+ <script type="text/javascript">
1220
+ $(function() {
1221
+ var allCriticsTab = $('#all-critics');
1222
+ var allCriticsLink = $('#all-critics-link');
1223
+ var allCriticsNumbers = $('#all-critics-numbers');
1224
+ var topCriticsTab = $('#top-critics');
1225
+ var topCriticsLink = $('#top-critics-link');
1226
+ var topCriticsNumbers = $('#top-critics-numbers');
1227
+ allCriticsLink.click(function(e) {
1228
+ e.preventDefault();
1229
+ topCriticsLink.removeClass();
1230
+ topCriticsNumbers.hide();
1231
+ allCriticsLink.addClass('active');
1232
+ allCriticsNumbers.show();
1233
+ allCriticsTab.click();
1234
+ });
1235
+ topCriticsLink.click(function(e) {
1236
+ e.preventDefault();
1237
+ allCriticsLink.removeClass();
1238
+ allCriticsNumbers.hide();
1239
+ topCriticsLink.addClass('active');
1240
+ topCriticsNumbers.show();
1241
+ topCriticsTab.click();
1242
+ });
1243
+ });
1244
+ </script>
1245
+ <div style="overflow:hidden;">
1246
+ <h4 class="lineHeader"><span class="fl">My Rating</span></h4>
1247
+ </div>
1248
+ <div id="mob_rating_widget" class="rating_widget large_rating_widget media_block" comp="SocialRating" movieId="771312196" data-event-action="MOB (Upcoming)">
1249
+ <a href="" class="media_block_image">
1250
+ <img src="http://images.rottentomatoescdn.com/images/redesign/user.none.tmb.jpg" width="50" sub="img" class="fl" alt="" />
1251
+ </a>
1252
+ <div class="media_block_content" id="userProfile" style="position:relative;">
1253
+ <div class="fr">
1254
+ <a href="javascript:void(0);" sub="edit" class="text_button subtle smaller" style="display:none;">Edit</a>
1255
+ </div>
1256
+ <div class="clearfix">
1257
+ <a href="javascript:void(0);" sub="wts" class="wts"></a>
1258
+ <a href="javascript:void(0);" sub="ni" class="ni"></a>
1259
+ <a href="javascript:void(0);" sub="star" class="stars"></a>
1260
+ </div>
1261
+ <textarea id="reviewText" class="review clearfix" name="review" comp="ExpandableTextInput" sub="review" placeholder="Add a Review (Optional)"></textarea>
1262
+ <div class="clearfix" style="height:20px;">
1263
+ <div class="fr">
1264
+ <a id="fbShareOn" sub="fbShare" class="share_button fb" href="javascript:void(0);" style="vertical-align:middle;"></a>
1265
+ <a id="twShareOn" sub="twShare" class="share_button tw" href="javascript:void(0);" style="vertical-align:middle;"></a>
1266
+ </div>
1267
+ <div class="fr like_status small subtle" sub="likeStatus" style="display:none;">
1268
+ <span sub="graphMessage"></span>
1269
+ </div>
1270
+ <div class="fl">
1271
+ <a href="javascript:void(0);" sub="submit" class="post_button"></a>
1272
+ <span sub="wait" class="status" style="vertical-align:middle;"></span>
1273
+ </div>
1274
+ </div>
1275
+ </div>
1276
+ </div>
1277
+ <script>
1278
+ $(function(){
1279
+ $("#mob_rating_widget").comp();
1280
+ });
1281
+ </script>
1282
+ </div>
1283
+ </div>
1284
+ <div class="content_footer clearfix">
1285
+ </div>
1286
+ </div>
1287
+ <div class="clearfix">
1288
+ <div class="col_p col_423">
1289
+ <style>
1290
+ div.movie_content_area div.movie_info p.movie_synopsis { margin-bottom:16px; }
1291
+ </style>
1292
+ <div class="content_box " >
1293
+ <div class="content_header clearfix">
1294
+ <h3>Movie Info</h3>
1295
+ </div>
1296
+ <div class="content_body clearfix">
1297
+ <div class="movie_info clearfix">
1298
+ <p id="movieSynopsis" class="movie_synopsis" itemprop="description">
1299
+ Cars gets a spin-off with this Disney Toon Studios film starring the voice of Dane Cook as a vertically-challenged plane with high hopes of becoming an air racer. ~ Jeremy Wheeler, Rovi
1300
+ </p>
1301
+ <div class="left_col">
1302
+ <p>
1303
+ <span comp="HoverTip">
1304
+ <a href="javascript:void(0);" sub="hover" tip="for some mild action and rude humor"><span itemprop="contentRating">PG</span></a>,
1305
+ </span>
1306
+ <time itemprop="duration" datetime="P92M">1 hr. 32 min.</time>
1307
+ </p>
1308
+ <p>
1309
+ <span>
1310
+ <a href="/movie/browser.php?movietype=1&genre=2"><span itemprop="genre">Animation</span></a>,
1311
+ <a href="/movie/browser.php?movietype=1&genre=11"><span itemprop="genre">Kids & Family</span></a>,
1312
+ <a href="/movie/browser.php?movietype=1&genre=6"><span itemprop="genre">Comedy</span></a>
1313
+ </span>
1314
+ </p>
1315
+ <p itemprop="director" itemscope itemtype="http://schema.org/Person">
1316
+ <label class="subtle">Directed By:</label>
1317
+ <span>
1318
+ <a class="" href="/celebrity/klay_hall/" itemprop="url"><span itemprop="name">Klay Hall</span></a>
1319
+ </span>
1320
+ </p>
1321
+ </div>
1322
+ <div class="right_col">
1323
+ <p><label class="subtle">In Theaters:</label> <span><span itemprop="datePublished" content="2013-08-09">Aug 9, 2013 Wide</span></span></p>
1324
+ <p>
1325
+ <span itemprop="productionCompany">Walt Disney Pictures</span>
1326
+ - <a href="http://www.disney.com/planes" target="_blank">Official Site
1327
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Icon" height="8" alt="External Icon" width="10" border="0"/></a>
1328
+ </p>
1329
+ </div>
1330
+ </div>
1331
+ </div>
1332
+ <div class="content_footer clearfix">
1333
+ </div>
1334
+ </div>
1335
+ <div class="content_box " id="cast-info" >
1336
+ <div class="content_header clearfix">
1337
+ <h3>Cast</h3>
1338
+ </div>
1339
+ <div class="content_body clearfix">
1340
+ <div class="moreContainer">
1341
+ <div class="more-list" style="height:180px;">
1342
+ <ul class="clearfix">
1343
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1344
+ <a class="media_block_image" href="/celebrity/dane_cook/" >
1345
+ <img src="http://instart0.flixster.com/rtactor/40/75/40756_tmb.jpg" width="50" alt="Dane Cook" itemprop="image" alt="Dane Cook" class="actorThumb medium" />
1346
+ </a>
1347
+ <div class="media_block_content">
1348
+ <a class="" href="/celebrity/dane_cook/" itemprop="url"><span itemprop="name">Dane Cook</span></a>
1349
+ <span class="characters"><br/>Dusty</span>
1350
+ </div>
1351
+ </li>
1352
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1353
+ <a class="media_block_image" href="/celebrity/julia_louisdreyfus/" >
1354
+ <img src="http://instart2.flixster.com/rtactor/39/97/39970_tmb.jpg" width="50" alt="Julia Louis-Dreyfus" itemprop="image" alt="Julia Louis-Dreyfus" class="actorThumb medium" />
1355
+ </a>
1356
+ <div class="media_block_content">
1357
+ <a class="" href="/celebrity/julia_louisdreyfus/" itemprop="url"><span itemprop="name">Julia Louis-Dreyfus</span></a>
1358
+ <span class="characters"><br/>Rochelle</span>
1359
+ </div>
1360
+ </li>
1361
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1362
+ <a class="media_block_image" href="/celebrity/brad_garrett/" >
1363
+ <img src="http://instart0.flixster.com/rtactor/37/18/37184_tmb.jpg" width="50" alt="Brad Garrett" itemprop="image" alt="Brad Garrett" class="actorThumb medium" />
1364
+ </a>
1365
+ <div class="media_block_content">
1366
+ <a class="" href="/celebrity/brad_garrett/" itemprop="url"><span itemprop="name">Brad Garrett</span></a>
1367
+ <span class="characters"><br/>Chug</span>
1368
+ </div>
1369
+ </li>
1370
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1371
+ <a class="media_block_image" href="/celebrity/stacy_keach/" >
1372
+ <img src="http://content9.flixster.com/photo/72/49/21/7249219_tmb.jpg" width="50" alt="Stacy Keach" id="mainImage" class="actorThumb medium" />
1373
+ </a>
1374
+ <div class="media_block_content">
1375
+ <a class="" href="/celebrity/stacy_keach/" itemprop="url"><span itemprop="name">Stacy Keach</span></a>
1376
+ <span class="characters"><br/>Skipper Rile</span>
1377
+ </div>
1378
+ </li>
1379
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1380
+ <a class="media_block_image" href="/celebrity/teri_hatcher/" >
1381
+ <img src="http://instart3.flixster.com/rtactor/40/37/40379_tmb.jpg" width="50" alt="Teri Hatcher" itemprop="image" alt="Teri Hatcher" class="actorThumb medium" />
1382
+ </a>
1383
+ <div class="media_block_content">
1384
+ <a class="" href="/celebrity/teri_hatcher/" itemprop="url"><span itemprop="name">Teri Hatcher</span></a>
1385
+ <span class="characters"><br/>Dottie</span>
1386
+ </div>
1387
+ </li>
1388
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1389
+ <a class="media_block_image" href="/celebrity/john_cleese/" >
1390
+ <img src="http://instart0.flixster.com/rtactor/14/52/14528_tmb.jpg" width="50" alt="John Cleese" itemprop="image" alt="John Cleese" class="actorThumb medium" />
1391
+ </a>
1392
+ <div class="media_block_content">
1393
+ <a class="" href="/celebrity/john_cleese/" itemprop="url"><span itemprop="name">John Cleese</span></a>
1394
+ <span class="characters"><br/>Bulldog</span>
1395
+ </div>
1396
+ </li>
1397
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1398
+ <a class="media_block_image" href="/celebrity/val_kilmer/" >
1399
+ <img src="http://instart1.flixster.com/rtactor/41/02/41029_tmb.jpg" width="50" alt="Val Kilmer" itemprop="image" alt="Val Kilmer" class="actorThumb medium" />
1400
+ </a>
1401
+ <div class="media_block_content">
1402
+ <a class="" href="/celebrity/val_kilmer/" itemprop="url"><span itemprop="name">Val Kilmer</span></a>
1403
+ <span class="characters"><br/>Bravo</span>
1404
+ </div>
1405
+ </li>
1406
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1407
+ <a class="media_block_image" href="/celebrity/anthony_edwards/" >
1408
+ <img src="http://instart2.flixster.com/rtactor/43/4394_tmb.jpg" width="50" alt="Anthony Edwards" itemprop="image" alt="Anthony Edwards" class="actorThumb medium" />
1409
+ </a>
1410
+ <div class="media_block_content">
1411
+ <a class="" href="/celebrity/anthony_edwards/" itemprop="url"><span itemprop="name">Anthony Edwards</span></a>
1412
+ <span class="characters"><br/>Echo</span>
1413
+ </div>
1414
+ </li>
1415
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1416
+ <a class="media_block_image" href="/celebrity/colin_cowherd/" >
1417
+ <img src="http://images.rottentomatoescdn.com/images/redesign/actor.default.tmb.gif" width="50" alt="Colin Cowherd" itemprop="image" alt="Colin Cowherd" class="actorThumb medium" />
1418
+ </a>
1419
+ <div class="media_block_content">
1420
+ <a class="" href="/celebrity/colin_cowherd/" itemprop="url"><span itemprop="name">Colin Cowherd</span></a>
1421
+ <span class="characters"><br/>Colin Cowling</span>
1422
+ </div>
1423
+ </li>
1424
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1425
+ <a class="media_block_image" href="/celebrity/cedric_the_entertainer/" >
1426
+ <img src="http://content8.flixster.com/photo/34/93/42/3493422_tmb.jpg" width="50" alt="Cedric the Entertainer" id="mainImage" class="actorThumb medium" />
1427
+ </a>
1428
+ <div class="media_block_content">
1429
+ <a class="" href="/celebrity/cedric_the_entertainer/" itemprop="url"><span itemprop="name">Cedric the Entertainer</span></a>
1430
+ <span class="characters"><br/>Leadbottom</span>
1431
+ </div>
1432
+ </li>
1433
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1434
+ <a class="media_block_image" href="/celebrity/1179042-gabriel_iglesias/" >
1435
+ <img src="http://content8.flixster.com/photo/12/67/19/12671938_tmb.jpg" width="50" alt="Gabriel Iglesias" id="mainImage" class="actorThumb medium" />
1436
+ </a>
1437
+ <div class="media_block_content">
1438
+ <a class="" href="/celebrity/1179042-gabriel_iglesias/" itemprop="url"><span itemprop="name">Gabriel Iglesias</span></a>
1439
+ <span class="characters"><br/>Ned/Zed</span>
1440
+ </div>
1441
+ </li>
1442
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1443
+ <a class="media_block_image" href="/celebrity/carlos_alazraqui/" >
1444
+ <img src="http://content7.flixster.com/photo/11/15/23/11152301_tmb.jpg" width="50" alt="Carlos Alazraqui" id="mainImage" class="actorThumb medium" />
1445
+ </a>
1446
+ <div class="media_block_content">
1447
+ <a class="" href="/celebrity/carlos_alazraqui/" itemprop="url"><span itemprop="name">Carlos Alazraqui</span></a>
1448
+ <span class="characters"><br/>El Chupacabra</span>
1449
+ </div>
1450
+ </li>
1451
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1452
+ <a class="media_block_image" href="/celebrity/priyanka_chopra/" >
1453
+ <img src="http://content9.flixster.com/photo/11/96/93/11969315_tmb.jpg" width="50" alt="Priyanka Chopra" id="mainImage" class="actorThumb medium" />
1454
+ </a>
1455
+ <div class="media_block_content">
1456
+ <a class="" href="/celebrity/priyanka_chopra/" itemprop="url"><span itemprop="name">Priyanka Chopra</span></a>
1457
+ <span class="characters"><br/>Ishani</span>
1458
+ </div>
1459
+ </li>
1460
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1461
+ <a class="media_block_image" href="/celebrity/sinbad/" >
1462
+ <img src="http://content6.flixster.com/photo/45/38/77/4538772_tmb.jpg" width="50" alt="Sinbad" id="mainImage" class="actorThumb medium" />
1463
+ </a>
1464
+ <div class="media_block_content">
1465
+ <a class="" href="/celebrity/sinbad/" itemprop="url"><span itemprop="name">Sinbad</span></a>
1466
+ <span class="characters"><br/>Roper</span>
1467
+ </div>
1468
+ </li>
1469
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1470
+ <a class="media_block_image" href="/celebrity/roger_craig_smith/" >
1471
+ <img src="http://images.rottentomatoescdn.com/images/redesign/actor.default.tmb.gif" width="50" alt="Roger Craig Smith" itemprop="image" alt="Roger Craig Smith" class="actorThumb medium" />
1472
+ </a>
1473
+ <div class="media_block_content">
1474
+ <a class="" href="/celebrity/roger_craig_smith/" itemprop="url"><span itemprop="name">Roger Craig Smith</span></a>
1475
+ <span class="characters"><br/>Ripslinger</span>
1476
+ </div>
1477
+ </li>
1478
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1479
+ <a class="media_block_image" href="/celebrity/oliver_kalkofe/" >
1480
+ <img src="http://content6.flixster.com/photo/10/98/23/10982372_tmb.jpg" width="50" alt="Oliver Kalkofe" id="mainImage" class="actorThumb medium" />
1481
+ </a>
1482
+ <div class="media_block_content">
1483
+ <a class="" href="/celebrity/oliver_kalkofe/" itemprop="url"><span itemprop="name">Oliver Kalkofe</span></a>
1484
+ <span class="characters"><br/>Franz/Fliegenhosen</span>
1485
+ </div>
1486
+ </li>
1487
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1488
+ <a class="media_block_image" href="/celebrity/brent_musberger/" >
1489
+ <img src="http://images.rottentomatoescdn.com/images/redesign/actor.default.tmb.gif" width="50" alt="Brent Musberger" itemprop="image" alt="Brent Musberger" class="actorThumb medium" />
1490
+ </a>
1491
+ <div class="media_block_content">
1492
+ <a class="" href="/celebrity/brent_musberger/" itemprop="url"><span itemprop="name">Brent Musberger</span></a>
1493
+ <span class="characters"><br/>Brent Mustangburger</span>
1494
+ </div>
1495
+ </li>
1496
+ <li class="media_block left_column" itemprop="actors" itemscope itemtype="http://schema.org/Person" >
1497
+ <a class="media_block_image" href="/celebrity/jon_cryer/" >
1498
+ <img src="http://content7.flixster.com/photo/10/94/03/10940385_tmb.jpg" width="50" alt="Jon Cryer" id="mainImage" class="actorThumb medium" />
1499
+ </a>
1500
+ <div class="media_block_content">
1501
+ <a class="" href="/celebrity/jon_cryer/" itemprop="url"><span itemprop="name">Jon Cryer</span></a>
1502
+ <span class="characters"><br/></span>
1503
+ </div>
1504
+ </li>
1505
+ </ul>
1506
+ </div>
1507
+ </div>
1508
+ <script>
1509
+ $(function(){
1510
+ $("#cast-info .moreContainer").moreList();
1511
+ });
1512
+ </script>
1513
+ </div>
1514
+ <div class="content_footer clearfix">
1515
+ </div>
1516
+ </div>
1517
+ </div>
1518
+ <div class="col_p col_300">
1519
+ <p class="center subtle small" style="margin-top:10px;">ADVERTISEMENT</p>
1520
+ <div class="medrec_top_wrapper">
1521
+ <div id="medrec_top_ad" class="page_ad" style="height:250px;">
1522
+ <script type='text/javascript'>
1523
+ RT.ads.push("medrec_top_ad");
1524
+ googletag.cmd.push(function() {
1525
+ var slot=googletag.defineSlot('/6327/rt.movie/movie_page', [[300,250],[300,600]], 'medrec_top_ad')
1526
+ .addService(googletag.pubads())
1527
+ .setTargeting("unit", "medrec_top")
1528
+ .setTargeting("pos", "top")
1529
+ .setTargeting("movieid", "771312196")
1530
+ .setTargeting("url", "/m/planes/");
1531
+ slot.oldRenderEnded = slot.renderEnded;
1532
+ slot.renderEnded = function(){
1533
+ slot.oldRenderEnded();
1534
+ var wrapper = $("#medrec_top_ad");
1535
+ wrapper.css("height","").css("width","");
1536
+ };
1537
+ });
1538
+ </script>
1539
+ </div>
1540
+ </div>
1541
+ <div class="medrec_middle_wrapper">
1542
+ <div id="medrec_middle_ad" class="page_ad" style="height:250px;">
1543
+ <script type='text/javascript'>
1544
+ RT.ads.push("medrec_middle_ad");
1545
+ googletag.cmd.push(function() {
1546
+ var slot=googletag.defineSlot('/6327/rt.movie/movie_page', [[300,250],[300,600]], 'medrec_middle_ad')
1547
+ .addService(googletag.pubads())
1548
+ .setTargeting("unit", "medrec_middle")
1549
+ .setTargeting("pos", "middle")
1550
+ .setTargeting("movieid", "771312196")
1551
+ .setTargeting("url", "/m/planes/");
1552
+ slot.oldRenderEnded = slot.renderEnded;
1553
+ slot.renderEnded = function(){
1554
+ slot.oldRenderEnded();
1555
+ var wrapper = $("#medrec_middle_ad");
1556
+ wrapper.css("height","").css("width","");
1557
+ };
1558
+ });
1559
+ </script>
1560
+ </div>
1561
+ </div>
1562
+ </div>
1563
+ </div>
1564
+ <div class="content_box " id="photos_videos" >
1565
+ <div class="content_header clearfix">
1566
+ <h3><a href="/m/planes/trailers/">Planes Trailer</a> &amp; Photos</h3>
1567
+ </div>
1568
+ <div class="content_body clearfix">
1569
+ <div>
1570
+ <ul class="movie_pictures clearfix">
1571
+ <li>
1572
+ <a href="/m/planes/pictures/" class="" >
1573
+ <img class="movie_thumbnail" src="http://instart0.flixster.com/rtmovie/10/40/104004_tmb.jpg" />
1574
+ </a>
1575
+ </li>
1576
+ <li>
1577
+ <a href="/m/planes/pictures/" class="" >
1578
+ <img class="movie_thumbnail" src="http://instart3.flixster.com/rtmovie/10/40/104003_tmb.jpg" />
1579
+ </a>
1580
+ </li>
1581
+ <li>
1582
+ <a href="/m/planes/pictures/" class="" >
1583
+ <img class="movie_thumbnail" src="http://instart2.flixster.com/rtmovie/10/40/104002_tmb.jpg" />
1584
+ </a>
1585
+ </li>
1586
+ <li>
1587
+ <a href="/m/planes/pictures/" class="" >
1588
+ <img class="movie_thumbnail" src="http://instart1.flixster.com/rtmovie/10/40/104001_tmb.jpg" />
1589
+ </a>
1590
+ </li>
1591
+ <li>
1592
+ <a href="/m/planes/pictures/" class="" >
1593
+ <img class="movie_thumbnail" src="http://instart1.flixster.com/rtmovie/10/36/103645_tmb.jpg" />
1594
+ </a>
1595
+ </li>
1596
+ <li>
1597
+ <a href="/m/planes/pictures/" class="" >
1598
+ <img class="movie_thumbnail" src="http://instart0.flixster.com/rtmovie/10/36/103644_tmb.jpg" />
1599
+ </a>
1600
+ </li>
1601
+ <li>
1602
+ <a href="/m/planes/pictures/" class="" >
1603
+ <img class="movie_thumbnail" src="http://instart3.flixster.com/rtmovie/99/99/99999_tmb.jpg" />
1604
+ </a>
1605
+ </li>
1606
+ </ul>
1607
+ <p><a class="see_all_link" href="/m/planes/pictures/">View all photos (7)</a></p>
1608
+ </div>
1609
+ <div>
1610
+ <ul class="movie_clips clearfix">
1611
+ <li class="poster_box">
1612
+ <a href="/m/planes/trailer/" class="poster_content trailer_play_action_button" data-video-id="11178760" data-playlist-type="related">
1613
+ <img src="http://content.internetvideoarchive.com/content/photos/8345/555820_024.jpg" alt="Planes Take Flight" />
1614
+ </a>
1615
+ <div class="poster_caption media_block">
1616
+ <span class="play_button media_block_image"></span>
1617
+ <a href="/m/planes/trailer/" class="media_block_content trailer_play_action_button" data-video-id="11178760" data-playlist-type="related">Planes: Take Flight</a>
1618
+ </div>
1619
+ </li>
1620
+ <li class="poster_box">
1621
+ <a href="/m/planes/trailer/" class="poster_content trailer_play_action_button" data-video-id="11181146" data-playlist-type="related">
1622
+ <img src="http://content.internetvideoarchive.com/content/photos/8430/472732_059.jpg" alt="Planes Uk Trailer 3" />
1623
+ </a>
1624
+ <div class="poster_caption media_block">
1625
+ <span class="play_button media_block_image"></span>
1626
+ <a href="/m/planes/trailer/" class="media_block_content trailer_play_action_button" data-video-id="11181146" data-playlist-type="related">Planes (Uk Trailer 3)</a>
1627
+ </div>
1628
+ </li>
1629
+ <li class="poster_box">
1630
+ <a href="/m/planes/trailer/" class="poster_content trailer_play_action_button" data-video-id="11181147" data-playlist-type="related">
1631
+ <img src="http://content.internetvideoarchive.com/content/photos/8430/851568_049.jpg" alt="Planes Uk Trailer 1" />
1632
+ </a>
1633
+ <div class="poster_caption media_block">
1634
+ <span class="play_button media_block_image"></span>
1635
+ <a href="/m/planes/trailer/" class="media_block_content trailer_play_action_button" data-video-id="11181147" data-playlist-type="related">Planes (Uk Trailer 1)</a>
1636
+ </div>
1637
+ </li>
1638
+ <li class="poster_box">
1639
+ <a href="/m/planes/trailer/" class="poster_content trailer_play_action_button" data-video-id="11179134" data-playlist-type="related">
1640
+ <img src="http://content.internetvideoarchive.com/content/photos/8214/627452_039.jpg" alt="Planes Trailer 1" />
1641
+ </a>
1642
+ <div class="poster_caption media_block">
1643
+ <span class="play_button media_block_image"></span>
1644
+ <a href="/m/planes/trailer/" class="media_block_content trailer_play_action_button" data-video-id="11179134" data-playlist-type="related">Planes (Trailer 1)</a>
1645
+ </div>
1646
+ </li>
1647
+ </ul>
1648
+ <p><a class="see-all_link" href="/m/planes/trailers/">View all videos (11)</a></p>
1649
+ </div>
1650
+ </div>
1651
+ <div class="content_footer clearfix">
1652
+ </div>
1653
+ </div>
1654
+ <style>
1655
+ .cl { clear: left; }
1656
+ .cr { clear: right; }
1657
+ #reviews {
1658
+ width: 100%;s
1659
+ overflow: hidden;
1660
+ }
1661
+ </style>
1662
+ <div class="content_box " id="contentReviews" >
1663
+ <div class="content_header clearfix">
1664
+ <h3>
1665
+ <a href="/m/planes/reviews/" >Critic Reviews for Planes</a>
1666
+ </h3>
1667
+ </div>
1668
+ <div class="content_body clearfix">
1669
+ <div id="reviews" comp="HoverTip">
1670
+ There are no critic reviews yet for Planes. Keep checking Rotten Tomatoes for updates!
1671
+ </div>
1672
+ </div>
1673
+ <div class="content_footer clearfix">
1674
+ </div>
1675
+ </div>
1676
+ <div class="content_box " id="audience_reviews" >
1677
+ <div class="content_header clearfix">
1678
+ <h3>Audience Reviews for Planes</h3>
1679
+ </div>
1680
+ <div class="content_body clearfix">
1681
+ <div class="quote_bubble fl cl" >
1682
+ <div class="review_quote_top"></div>
1683
+ <div id="quoteBubble901146707_771312196" class="review_quote_stretch audience_contents clearfix">
1684
+ <div class="scoreWrapper"><span class="rating small on ni"></span></div>
1685
+ <div class="comment">
1686
+ Apparently &quot;Cars&quot; & &quot;Cars 2&quot; weren&#39;t bad enough.
1687
+ </div>
1688
+ </div>
1689
+ <div class="review_quote_bottom">
1690
+ <span class="small fr subtle date">May 22, 2013</span>
1691
+ </div>
1692
+ <div class="review_source media_block">
1693
+ <img src="http://content7.flixster.com/user/41/19/81/41198185_tmb.jpg" width="50" class="media_block_image critic_thumb" alt="Frisby2007" />
1694
+ <div class="media_block_content">
1695
+ <div class="bold">
1696
+ Frisby 2007
1697
+ </div>
1698
+ <p class="superreviewer"><span class="icon profile superreviewer"></span>Super Reviewer</p>
1699
+ </div>
1700
+ </div>
1701
+ </div>
1702
+ <script>
1703
+ $(function(){
1704
+ $(".quote_bubble .comment").moreLess();
1705
+ });
1706
+ </script>
1707
+ <div class="quote_bubble fr cr" >
1708
+ <div class="review_quote_top"></div>
1709
+ <div id="quoteBubble905846747_771312196" class="review_quote_stretch audience_contents clearfix">
1710
+ <div class="scoreWrapper"><span class="rating small on ni"></span></div>
1711
+ <div class="comment">
1712
+ Like I could handle Cars and those poorly done mockbusters. This is not a Pixar film, right? Is Disney Toons really in charge of this? What is going on!?!
1713
+ </div>
1714
+ </div>
1715
+ <div class="review_quote_bottom">
1716
+ <span class="small fr subtle date">March 6, 2013</span>
1717
+ </div>
1718
+ <div class="review_source media_block">
1719
+ <img src="//graph.facebook.com/100001786722043/picture" width="50" class="media_block_image critic_thumb" alt="Noah Nemeroff" />
1720
+ <div class="media_block_content">
1721
+ <div class="bold">
1722
+ <a href="/user/id/905846747/" >
1723
+ Noah Nemeroff</a>
1724
+ </div>
1725
+ <p class="superreviewer"><span class="icon profile superreviewer"></span>Super Reviewer</p>
1726
+ </div>
1727
+ </div>
1728
+ </div>
1729
+ <script>
1730
+ $(function(){
1731
+ $(".quote_bubble .comment").moreLess();
1732
+ });
1733
+ </script>
1734
+ </div>
1735
+ <div class="content_footer clearfix">
1736
+ <div class="float_right">
1737
+ <a href="/m/planes/reviews/?type=user" >View all audience reviews</a>
1738
+ </div>
1739
+ </div>
1740
+ </div>
1741
+ <div class="content_box " id="quotesList" >
1742
+ <div class="content_header clearfix">
1743
+ <h3>
1744
+ <a href="/m/planes/quotes/" >Planes Quotes</a></h3>
1745
+ </div>
1746
+ <div class="content_body clearfix">
1747
+ <ul class="quoteList">
1748
+ </ul>
1749
+ <div class="empty">
1750
+ No quotes approved yet for Planes. Logged in users can submit quotes.
1751
+ </div>
1752
+ </div>
1753
+ <div class="content_footer clearfix">
1754
+ <div class="float_right">
1755
+ <a href="/m/planes/quotes/" >View all quotes (0)</a></div>
1756
+ </div>
1757
+ </div>
1758
+ <div class="content_box " id="discussionForum" >
1759
+ <div class="content_header clearfix">
1760
+ <h3>Discussion Forum</h3>
1761
+ </div>
1762
+ <div class="content_body clearfix">
1763
+ <tbody>
1764
+ <table class="comments_tbl">
1765
+ <thead><tr>
1766
+ <th class="title">Topic</th>
1767
+ <th class="lastPostDate">Last Post</th>
1768
+ <th class="replies">Replies</th>
1769
+ </tr></thead>
1770
+ <tr>
1771
+ <td class="title"><a href="/m/planes//forum/?threadid=328156800">Stop Making these movies</a></td>
1772
+ <td class="lastPostDate">2 hours ago</td>
1773
+ <td class="replies">45</td>
1774
+ </tr>
1775
+ <tr>
1776
+ <td class="title"><a href="/m/planes//forum/?threadid=328156826">Up Next: BOATS!</a></td>
1777
+ <td class="lastPostDate">4 hours ago</td>
1778
+ <td class="replies">20</td>
1779
+ </tr>
1780
+ <tr>
1781
+ <td class="title"><a href="/m/planes//forum/?threadid=328191359">guess the tomatometer</a></td>
1782
+ <td class="lastPostDate">7 hours ago</td>
1783
+ <td class="replies">17</td>
1784
+ </tr>
1785
+ <tr>
1786
+ <td class="title"><a href="/m/planes//forum/?threadid=328189762">How about Incredibles 2??</a></td>
1787
+ <td class="lastPostDate">2 days ago</td>
1788
+ <td class="replies">5</td>
1789
+ </tr>
1790
+ <tr>
1791
+ <td class="title"><a href="/m/planes//forum/?threadid=328157324">Mediocre looking</a></td>
1792
+ <td class="lastPostDate">2 days ago</td>
1793
+ <td class="replies">4</td>
1794
+ </tr>
1795
+ </tbody>
1796
+ </table>
1797
+ </div>
1798
+ <div class="content_footer clearfix">
1799
+ <div class="float_right"><a href="/m/planes/forum/">View all posts (102)</a></div>
1800
+ </div>
1801
+ </div>
1802
+ <div class="clearfix">
1803
+ <div class="content_box " id="features_sidebar" >
1804
+ <div class="content_header clearfix">
1805
+ <h3>What's Hot On RT</h3>
1806
+ </div>
1807
+ <div class="content_body clearfix">
1808
+ <div class="center">
1809
+ <div class="center poster_box" pi="2180" style="width:130px;">
1810
+ <a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/">
1811
+ <img class="" alt="Critics Consensus" src="http://content8.flixster.com/site/10/25/83/10258350_ori.jpg" width="115" height="115" />
1812
+ </a>
1813
+ <div>
1814
+ <a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/">Critics Consensus</a>
1815
+ <p><em>2 Guns</em> is Wild, but Stars Connect</p>
1816
+ </div>
1817
+ </div>
1818
+ <div class="center poster_box" pi="2164" style="width:130px;">
1819
+ <a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/">
1820
+ <img class="" alt="Total Recall" src="http://content9.flixster.com/site/10/25/83/10258327_ori.jpg" width="115" height="115" />
1821
+ </a>
1822
+ <div>
1823
+ <a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/">Total Recall</a>
1824
+ <p>Bill Paxton's Best Movies</p>
1825
+ </div>
1826
+ </div>
1827
+ <div class="center poster_box" pi="2165" style="width:130px;">
1828
+ <a href="http://www.rottentomatoes.com/m/the_secret_life_of_walter_mitty_2013/trailers/">
1829
+ <img class="" alt="Walter Mitty" src="http://content6.flixster.com/site/10/25/83/10258332_ori.jpg" width="115" height="115" />
1830
+ </a>
1831
+ <div>
1832
+ <a href="http://www.rottentomatoes.com/m/the_secret_life_of_walter_mitty_2013/trailers/">Walter Mitty</a>
1833
+ <p><em>The Secret Life</em> trailer</p>
1834
+ </div>
1835
+ </div>
1836
+ <div class="center poster_box" pi="2151" style="width:130px;">
1837
+ <a href="http://www.rottentomatoes.com/gallery/24-frames-certified-fresh-animated-movies/">
1838
+ <img class="" alt="24 Frames" src="http://content6.flixster.com/site/10/25/83/10258316_ori.jpg" width="115" height="115" />
1839
+ </a>
1840
+ <div>
1841
+ <a href="http://www.rottentomatoes.com/gallery/24-frames-certified-fresh-animated-movies/">24 Frames</a>
1842
+ <p>Certified Fresh animated movies</p>
1843
+ </div>
1844
+ </div>
1845
+ <div class="center poster_box" pi="2148" style="width:130px;">
1846
+ <a href="http://www.rottentomatoes.com/m/gravity_2012/trailers">
1847
+ <img class="" alt="Gravity Trailer" src="http://content9.flixster.com/site/10/25/83/10258323_ori.jpg" width="115" height="115" />
1848
+ </a>
1849
+ <div>
1850
+ <a href="http://www.rottentomatoes.com/m/gravity_2012/trailers">Gravity Trailer</a>
1851
+ <p>Clooney, Bullock are lost in space</p>
1852
+ </div>
1853
+ </div>
1854
+ </div>
1855
+ </div>
1856
+ <div class="content_footer clearfix">
1857
+ </div>
1858
+ </div>
1859
+ </div>
1860
+ <div class="clearfix">
1861
+ <div class="col_p col_423">
1862
+ <style>
1863
+ #contentNews h5 { margin-bottom: 0px;}
1864
+ #contentNews .newsRow { margin-bottom: 10px;}
1865
+ </style>
1866
+ <div class="content_box " id="contentNews" >
1867
+ <div class="content_header clearfix">
1868
+ <h3>Latest News on Planes</h3>
1869
+ </div>
1870
+ <div class="content_body clearfix">
1871
+ <div class="newsRow">
1872
+ <h5>July 15, 2013:</h5>
1873
+ <a href="/m/planes/news/1927863/american_airlines_plans_major_tie-in_with_disneys_planes/" title="Source: Variety" target="_blank" class="icon">American Airlines Plans Major Tie-In with Disney's <i>Planes</i></a>
1874
+ <br />
1875
+ The deal, which includes exclusive early broadcasting rights for the airline, will also give...
1876
+ </div>
1877
+ </div>
1878
+ <div class="content_footer clearfix">
1879
+ </div>
1880
+ </div>
1881
+ <div class="content_box freshlinks_sidebar" id="freshlinks_sidebar" >
1882
+ <div class="content_header clearfix">
1883
+ <h3>Fresh Links</h3>
1884
+ </div>
1885
+ <div class="content_body clearfix">
1886
+ <h4 id="freshlinks_featured_header">Featured</h4>
1887
+ <div class="featured">
1888
+ <p>Movie: ID: 771312196
1889
+ Title: Planes
1890
+ Release Date: 2013-08-09 00:00:00.0
1891
+ MPAA: 2
1892
+ Status: 1
1893
+ </p>
1894
+ <div class="media_block" pi="2178">
1895
+ <a class="media_block_image" href="http://www.buzzsugar.com/Common-Actor-Director-Collaborations-28862874" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.buzzsugar.com/Common-Actor-Director-Collaborations-28862874']);">
1896
+ <img class="" alt="Director/Actor Collaborations" src="http://content7.flixster.com/site/10/25/83/10258337_ori.jpg" width="55" height="55" />
1897
+ </a>
1898
+ <div class="media_block_content">
1899
+ <a target="_blank" href="http://www.buzzsugar.com/Common-Actor-Director-Collaborations-28862874" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.buzzsugar.com/Common-Actor-Director-Collaborations-28862874']);">
1900
+ <h5>Director/Actor Collaborations
1901
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1902
+ </a>
1903
+ BuzzSugar profiles some notable directors and the stars they love working with.
1904
+ </div>
1905
+ </div>
1906
+ <div class="media_block" pi="2176">
1907
+ <a class="media_block_image" href="http://news.moviefone.com/2013/07/30/beloved-cartoons-that-deserve-their-own-movie/" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://news.moviefone.com/2013/07/30/beloved-cartoons-that-deserve-their-own-movie/']);">
1908
+ <img class="" alt="Cartoons That Should Get Movies" src="http://content8.flixster.com/site/10/25/83/10258334_ori.jpg" width="55" height="55" />
1909
+ </a>
1910
+ <div class="media_block_content">
1911
+ <a target="_blank" href="http://news.moviefone.com/2013/07/30/beloved-cartoons-that-deserve-their-own-movie/" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://news.moviefone.com/2013/07/30/beloved-cartoons-that-deserve-their-own-movie/']);">
1912
+ <h5>Cartoons That Should Get Movies
1913
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1914
+ </a>
1915
+ Moviefone wants to revisit its childhood on the big screen with these 8 animated shows.
1916
+ </div>
1917
+ </div>
1918
+ <div class="media_block" pi="2173">
1919
+ <a class="media_block_image" href="http://www.hitfix.com/news/24-films-that-may-make-2015-the-greatest-movie-year-ever" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.hitfix.com/news/24-films-that-may-make-2015-the-greatest-movie-year-ever']);">
1920
+ <img class="" alt="2015: Greatest Movie Year Ever?" src="http://content7.flixster.com/site/10/25/83/10258321_ori.jpg" width="55" height="55" />
1921
+ </a>
1922
+ <div class="media_block_content">
1923
+ <a target="_blank" href="http://www.hitfix.com/news/24-films-that-may-make-2015-the-greatest-movie-year-ever" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.hitfix.com/news/24-films-that-may-make-2015-the-greatest-movie-year-ever']);">
1924
+ <h5>2015: Greatest Movie Year Ever?
1925
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1926
+ </a>
1927
+ HitFix lists 23 films that might make 2015 an incredible year.
1928
+ </div>
1929
+ </div>
1930
+ <div class="media_block" pi="2168">
1931
+ <a class="media_block_image" href="http://www.rollingstone.com/movies/pictures/wolverine-through-the-years-20130726" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.rollingstone.com/movies/pictures/wolverine-through-the-years-20130726']);">
1932
+ <img class="" alt="Wolverine Through the Years" src="http://content9.flixster.com/site/10/25/82/10258267_ori.jpg" width="55" height="55" />
1933
+ </a>
1934
+ <div class="media_block_content">
1935
+ <a target="_blank" href="http://www.rollingstone.com/movies/pictures/wolverine-through-the-years-20130726" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.rollingstone.com/movies/pictures/wolverine-through-the-years-20130726']);">
1936
+ <h5>Wolverine Through the Years
1937
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1938
+ </a>
1939
+ Rolling Stone takes a look at the history of the popular Marvel mutant.
1940
+ </div>
1941
+ </div>
1942
+ <div class="media_block" pi="2122">
1943
+ <a class="media_block_image" href="http://www.timeout.com/newyork/film/50-american-films-50-states-one-iconic-movie-for-each-state" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.timeout.com/newyork/film/50-american-films-50-states-one-iconic-movie-for-each-state']);">
1944
+ <img class="" alt="50 States, 50 Movies" src="http://content7.flixster.com/site/10/25/78/10257885_ori.jpg" width="55" height="55" />
1945
+ </a>
1946
+ <div class="media_block_content">
1947
+ <a target="_blank" href="http://www.timeout.com/newyork/film/50-american-films-50-states-one-iconic-movie-for-each-state" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://www.timeout.com/newyork/film/50-american-films-50-states-one-iconic-movie-for-each-state']);">
1948
+ <h5>50 States, 50 Movies
1949
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1950
+ </a>
1951
+ For July 4th, TimeOut has compiled 50 state-specific movie choices.
1952
+ </div>
1953
+ </div>
1954
+ </div>
1955
+ <div id="fresh_links_ad" style="height:0px;">
1956
+ <script type='text/javascript'>
1957
+ RT.ads.push("fresh_links_ad");
1958
+ googletag.cmd.push(function() {
1959
+ var slot=googletag.defineSlot('/6327/rt.movie/fresh_links', [[245,65]], 'fresh_links_ad')
1960
+ .addService(googletag.pubads())
1961
+ .setTargeting("unit", "fresh_links")
1962
+ .setTargeting("movieid", "771312196")
1963
+ .setTargeting("url", "/m/planes/");
1964
+ slot.oldRenderEnded = slot.renderEnded;
1965
+ slot.renderEnded = function(){
1966
+ slot.oldRenderEnded();
1967
+ var wrapper = $("#fresh_links_ad");
1968
+ wrapper.css("height","").css("width","");
1969
+ };
1970
+ });
1971
+ </script>
1972
+ </div>
1973
+ <h4 id="freshlinks_promos_header">Promos</h4>
1974
+ <div class="promos">
1975
+ <div class="media_block" pi="8">
1976
+ <a class="media_block_image" href="http://twitter.com/RottenTomatoes" target="_blank" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://twitter.com/RottenTomatoes']);">
1977
+ <img class="" alt="Follow RT on Twitter!" src="http://content7.flixster.com/site/10/23/48/10234829_ori.jpg" width="55" height="55" />
1978
+ </a>
1979
+ <div class="media_block_content">
1980
+ <a target="_blank" href="http://twitter.com/RottenTomatoes" onclick="_gaq.push(['_trackEvent', 'Exit Links', 'Click', 'http://twitter.com/RottenTomatoes']);">
1981
+ <h5>Follow RT on Twitter!
1982
+ <img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif" title="External Link" alt="External Link"/></h5>
1983
+ </a>
1984
+ Spice up your feed with hourly Tomatometer updates!
1985
+ </div>
1986
+ </div>
1987
+ </div>
1988
+ </div>
1989
+ <div class="content_footer clearfix">
1990
+ </div>
1991
+ </div>
1992
+ </div>
1993
+ <div class="col_p col_300">
1994
+ <style>
1995
+ #homepagenews ul {margin-bottom: 5px;}
1996
+ #homepagenews .newslink { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:inline-block; width:240px;}
1997
+ </style>
1998
+ <div class="content_box " id="homepagenews" >
1999
+ <div class="content_header clearfix">
2000
+ <h3><a href="/news/">Movie News</a></h3>
2001
+ </div>
2002
+ <div class="content_body clearfix">
2003
+ <h4 class="fl">Featured on RT</h4>
2004
+ <div class="fr">Comments</div>
2005
+ <ul class="cleardiv bullets">
2006
+ <li class="columned">
2007
+ <span class="newslink">
2008
+ <a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/" title="Source: Rotten Tomatoes" >Critics Consensus: <em>2 Guns</em> Shoots Wildly, But Its Stars Connect</a>
2009
+ </span>
2010
+ <span class="fr">
2011
+ <a href="/m/2_guns/news/1928038/critics_consensus_2_guns_shoots_wildly_but_its_stars_connect/" title="20 Comments" class="comments">20</a>
2012
+ </span>
2013
+ </li>
2014
+ <li class="columned">
2015
+ <span class="newslink">
2016
+ <a href="/m/marvels_the_avengers/news/1928040/box_office_lexicon_is_hollywood_today_really_driven_by_comic_book_fans/" title="Source: Rotten Tomatoes" >Box Office Lexicon: Is Hollywood Today Really Driven By Comic Book Fans?</a>
2017
+ </span>
2018
+ <span class="fr">
2019
+ <a href="/m/marvels_the_avengers/news/1928040/box_office_lexicon_is_hollywood_today_really_driven_by_comic_book_fans/" title="1 Comments" class="comments">1</a>
2020
+ </span>
2021
+ </li>
2022
+ <li class="columned">
2023
+ <span class="newslink">
2024
+ <a href="/m/the_spectacular_now/news/1928039/video_interview__cast_of_the_spectacular_now/" title="Source: Rotten Tomatoes" >Video Interview: Cast of <em>The Spectacular Now</em></a>
2025
+ </span>
2026
+ <span class="fr">
2027
+ <a href="/m/the_spectacular_now/news/1928039/video_interview__cast_of_the_spectacular_now/" title="1 Comments" class="comments">1</a>
2028
+ </span>
2029
+ </li>
2030
+ <li class="columned">
2031
+ <span class="newslink">
2032
+ <a href="/m/the_smurfs_2/news/1928036/parental_guidance_the_smurfs_2_and_europa_report/" title="Source: Rotten Tomatoes" >Parental Guidance: <em>The Smurfs 2</em> and <em>Europa Report</em></a>
2033
+ </span>
2034
+ <span class="fr">
2035
+ <a href="/m/the_smurfs_2/news/1928036/parental_guidance_the_smurfs_2_and_europa_report/" title="2 Comments" class="comments">2</a>
2036
+ </span>
2037
+ </li>
2038
+ <li class="columned">
2039
+ <span class="newslink">
2040
+ <a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/" title="Source: Rotten Tomatoes" >Bill Paxton's Best Movies</a>
2041
+ </span>
2042
+ <span class="fr">
2043
+ <a href="/m/2_guns/news/1928020/bill_paxtons_best_movies/" title="43 Comments" class="comments">43</a>
2044
+ </span>
2045
+ </li>
2046
+ <li class="columned">
2047
+ <span class="newslink">
2048
+ <a href="/m/west_of_memphis/news/1927988/digital_multiplex_west_of_memphis_and_transformers_dark_of_the_moon/" title="Source: Rotten Tomatoes" >Digital Multiplex: <em>West of Memphis</em> and <em>Transformers: Dark of the Moon</em></a>
2049
+ </span>
2050
+ <span class="fr">
2051
+ <a href="/m/west_of_memphis/news/1927988/digital_multiplex_west_of_memphis_and_transformers_dark_of_the_moon/" title="10 Comments" class="comments">10</a>
2052
+ </span>
2053
+ </li>
2054
+ <li class="columned">
2055
+ <span class="newslink">
2056
+ <a href="/m/the_spectacular_now/news/1928004/video_confession__shailene_woodley__miles_teller_of_the_spectacular_now/" title="Source: Rotten Tomatoes" >Video Confession: Shailene Woodley & Miles Teller of <em>The Spectacular Now</em></a>
2057
+ </span>
2058
+ <span class="fr">
2059
+ <a href="/m/the_spectacular_now/news/1928004/video_confession__shailene_woodley__miles_teller_of_the_spectacular_now/" title="3 Comments" class="comments">3</a>
2060
+ </span>
2061
+ </li>
2062
+ </ul>
2063
+ <h4 class="cleardiv">Top Headlines</h4>
2064
+ <ul class="bullets">
2065
+ <li class="columned">
2066
+ <span class="newslink">
2067
+ <a href="/m/pacific_rim_2013/news/1928035/pacific_rim_chinese_grosses_boost_chances_for_a_sequel/" title="Source: Deadline Hollywood Daily" target="_blank" ><i>Pacific Rim</i> Chinese Grosses Boost Chances for a Sequel <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Deadline Hollywood Daily in new window" width="10" height="8" border="0" /></a>
2068
+ </span>
2069
+ <span class="fr">
2070
+ <a href="/m/pacific_rim_2013/news/1928035/comments/pacific_rim_chinese_grosses_boost_chances_for_a_sequel/" title="3 Comments" class="comments">3</a>
2071
+ </span>
2072
+ </li>
2073
+ <li class="columned">
2074
+ <span class="newslink">
2075
+ <a href="/m/warcraft/news/1928034/possible_warcraft_details_emerge/" title="Source: Collider.com" target="_blank" >Possible <i>Warcraft</i> Details Emerge <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Collider.com in new window" width="10" height="8" border="0" /></a>
2076
+ </span>
2077
+ <span class="fr">
2078
+ <a href="/m/warcraft/news/1928034/comments/possible_warcraft_details_emerge/" title="2 Comments" class="comments">2</a>
2079
+ </span>
2080
+ </li>
2081
+ <li class="columned">
2082
+ <span class="newslink">
2083
+ <a href="/m/fast_and_furious_7/news/1928033/denzel_washington_turned_down_a_role_in_fast_and_furious_7/" title="Source: ScreenCrush" target="_blank" >Denzel Washington Turned Down a Role in <i>Fast and Furious 7</i> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="ScreenCrush in new window" width="10" height="8" border="0" /></a>
2084
+ </span>
2085
+ <span class="fr">
2086
+ <a href="/m/fast_and_furious_7/news/1928033/comments/denzel_washington_turned_down_a_role_in_fast_and_furious_7/" title="1 Comments" class="comments">1</a>
2087
+ </span>
2088
+ </li>
2089
+ <li class="columned">
2090
+ <span class="newslink">
2091
+ <a href="/m/the_man_from_uncle/news/1928032/the_long_quest_to_find_the_man_from_uncle/" title="Source: Variety" target="_blank" >The Long Quest to Find <i>The Man from U.N.C.L.E.</i> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Variety in new window" width="10" height="8" border="0" /></a>
2092
+ </span>
2093
+ <span class="fr">
2094
+ <a href="/m/the_man_from_uncle/news/1928032/comments/the_long_quest_to_find_the_man_from_uncle/" title="1 Comments" class="comments">1</a>
2095
+ </span>
2096
+ </li>
2097
+ <li class="columned">
2098
+ <span class="newslink">
2099
+ <a href="/m/turbo_2013/news/1928031/jeffrey_katzenberg_offers_turbo_postmortem/" title="Source: Variety" target="_blank" >Jeffrey Katzenberg Offers <i>Turbo</i> Postmortem <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Variety in new window" width="10" height="8" border="0" /></a>
2100
+ </span>
2101
+ <span class="fr">
2102
+ <a href="/m/turbo_2013/news/1928031/comments/jeffrey_katzenberg_offers_turbo_postmortem/" title="1 Comments" class="comments">1</a>
2103
+ </span>
2104
+ </li>
2105
+ <li class="columned">
2106
+ <span class="newslink">
2107
+ <a href="/m/1018323-scarface/news/1928030/david_yates_in_talks_to_direct_new_scarface/" title="Source: Deadline Hollywood Daily" target="_blank" >David Yates in Talks to Direct New <i>Scarface</i> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Deadline Hollywood Daily in new window" width="10" height="8" border="0" /></a>
2108
+ </span>
2109
+ <span class="fr">
2110
+ <a href="/m/1018323-scarface/news/1928030/comments/david_yates_in_talks_to_direct_new_scarface/" title="1 Comments" class="comments">1</a>
2111
+ </span>
2112
+ </li>
2113
+ <li class="columned">
2114
+ <span class="newslink">
2115
+ <a href="/m/the_judge_2014/news/1928029/robert_downey_jrs_the_judge_set_for_october_2014_release/" title="Source: Variety" target="_blank" >Robert Downey, Jr.'s <i>The Judge</i> Set for October 2014 Release <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Variety in new window" width="10" height="8" border="0" /></a>
2116
+ </span>
2117
+ <span class="fr">
2118
+ <a href="/m/the_judge_2014/news/1928029/comments/robert_downey_jrs_the_judge_set_for_october_2014_release/" title="1 Comments" class="comments">1</a>
2119
+ </span>
2120
+ </li>
2121
+ </ul>
2122
+ </div>
2123
+ <div class="content_footer clearfix">
2124
+ <div class="float_right"><a href="/news/">View all movie news</a></div>
2125
+ </div>
2126
+ </div>
2127
+ <div class="content_box " >
2128
+ <div class="content_header clearfix">
2129
+ <h3>Foreign Titles</h3>
2130
+ </div>
2131
+ <div class="content_body clearfix">
2132
+ <ul class="bullets">
2133
+ <li>Aviones (ES)</li>
2134
+ </ul>
2135
+ </div>
2136
+ <div class="content_footer clearfix">
2137
+ </div>
2138
+ </div>
2139
+ <div id="medrec_bottom_ad" class="page_ad" style="height:250px;">
2140
+ <script type='text/javascript'>
2141
+ RT.ads.push("medrec_bottom_ad");
2142
+ googletag.cmd.push(function() {
2143
+ var slot=googletag.defineSlot('/6327/rt.movie/movie_page', [[300,250],[300,600]], 'medrec_bottom_ad')
2144
+ .addService(googletag.pubads())
2145
+ .setTargeting("unit", "medrec_bottom")
2146
+ .setTargeting("pos", "bottom")
2147
+ .setTargeting("movieid", "771312196")
2148
+ .setTargeting("url", "/m/planes/");
2149
+ slot.oldRenderEnded = slot.renderEnded;
2150
+ slot.renderEnded = function(){
2151
+ slot.oldRenderEnded();
2152
+ var wrapper = $("#medrec_bottom_ad");
2153
+ wrapper.css("height","").css("width","");
2154
+ };
2155
+ });
2156
+ </script>
2157
+ </div>
2158
+ </div>
2159
+ </div>
2160
+ <img src="http://segs.btrll.com/v1/tpix/-/-/-/-/-/sid.6548936" height="1" width="1" />
2161
+ </div>
2162
+ <div class="veil" style="display:none;">
2163
+ <div class="spinner"></div>
2164
+ </div>
2165
+ </div>
2166
+ </div>
2167
+ </div>
2168
+ </div>
2169
+ <div id="leaderboard_bottom_ad" class="page_ad leaderboard" style="height:90px;">
2170
+ <script type='text/javascript'>
2171
+ RT.ads.push("leaderboard_bottom_ad");
2172
+ googletag.cmd.push(function() {
2173
+ var slot=googletag.defineSlot('/6327/rt.movie/movie_page', [[728,90]], 'leaderboard_bottom_ad')
2174
+ .addService(googletag.pubads())
2175
+ .setTargeting("unit", "leaderboard_bottom")
2176
+ .setTargeting("pos", "bottom")
2177
+ .setTargeting("movieid", "771312196")
2178
+ .setTargeting("url", "/m/planes/");
2179
+ slot.oldRenderEnded = slot.renderEnded;
2180
+ slot.renderEnded = function(){
2181
+ slot.oldRenderEnded();
2182
+ var wrapper = $("#leaderboard_bottom_ad");
2183
+ wrapper.css("height","").css("width","");
2184
+ };
2185
+ });
2186
+ </script>
2187
+ </div>
2188
+ <div id="trailerModalContainer" style="width:760px; height:538px; display:none;">
2189
+ <iframe id="trailerModal" src="about:blank" width="760px;" height="100%" style="overflow-x:hidden; margin:0px; display:block;"></iframe>
2190
+ <div id="trailerSpinner" class="spinner" style="top: 200px; left:332px; position:absolute;">
2191
+ <div class="bar1"></div>
2192
+ <div class="bar2"></div>
2193
+ <div class="bar3"></div>
2194
+ <div class="bar4"></div>
2195
+ <div class="bar5"></div>
2196
+ <div class="bar6"></div>
2197
+ <div class="bar7"></div>
2198
+ <div class="bar8"></div>
2199
+ <div class="bar9"></div>
2200
+ <div class="bar10"></div>
2201
+ <div class="bar11"></div>
2202
+ <div class="bar12"></div>
2203
+ </div>
2204
+ </div>
2205
+ <script>
2206
+ $(document).on('click', '.trailer_play_action_button', function(evt) {
2207
+ evt.stopPropagation();
2208
+ evt.preventDefault();
2209
+ var container = $('#trailerModalContainer');
2210
+ _gaq.push(['_trackEvent', 'Movie Details', 'Play Trailer Modal', 'Play Trailer Modal']);
2211
+ container.trigger("bax:modal", {el:container, closeButton:true, closeOnClick:true});
2212
+ $('#trailerSpinner').show();
2213
+ container.show();
2214
+ var trailerModalUrl = $(evt.currentTarget).attr("href");
2215
+ var videoId = $(this).data("videoId");
2216
+ if (videoId) {
2217
+ trailerModalUrl = trailerModalUrl + videoId;
2218
+ }
2219
+ var playlistType = $(this).data("playlistType");
2220
+ if (playlistType === 'related') {
2221
+ trailerModalUrl = trailerModalUrl + '?moreMovie=true';
2222
+ }
2223
+ $('#trailerModal').attr('src', trailerModalUrl);
2224
+ $('#trailerModal').on('load', function(event) {
2225
+ $('#trailerModalContainer').height(this.contentWindow.document.body.offsetHeight);
2226
+ $('#trailerModalContainer').trigger("bax:recenter", {});
2227
+ $('#trailerSpinner').hide();
2228
+ });
2229
+ $('#trailerModalContainer').on('bax:close', function(event) {
2230
+ $('#trailerModal').attr('src', "about:blank");
2231
+ $('#trailerModal').off('load');
2232
+ });
2233
+ });
2234
+ $(document).on('heightchanged', function(event, height) {
2235
+ $('#trailerModalContainer').height(height);
2236
+ $('#trailerModalContainer').trigger("bax:recenter", {});
2237
+ });
2238
+ </script>
2239
+ <script>
2240
+ $(document).ready(function() {
2241
+ // Initialize search
2242
+ $("[comp=Autocomplete]").comp();
2243
+ // Instantiate model
2244
+ mobModel = new Backbone.Model({ movieVanity : "planes"});
2245
+ // Instantiate router
2246
+ var mobRouter = new RT.Backbone.Routers.MOBRouter({model : mobModel});
2247
+ // Activate sticky left column
2248
+ //$('.stickem-container').stickem();
2249
+ var movieList = $("#movies_sidebar");
2250
+ var movieListView = new RT.Backbone.Views.MovieList({el : movieList, model : mobModel });
2251
+ var hoverBubbleView = new RT.Backbone.Views.HoverBubble({el : movieList });
2252
+ var mobPanel = $("#mobPanel");
2253
+ var mobView = new RT.Backbone.Views.MOB({el : mobPanel, model : mobModel });
2254
+ });
2255
+ </script>
2256
+ <div class="foot">
2257
+ <div class="foot_nav">
2258
+ <a href="/help_desk/">Help</a> | <a href="http://www.flixster.com/about/" target="_blank">About</a> | <a href="http://www.flixster.com/careers/" target="_blank">Jobs</a> | <a href="/help_desk/critics.php">Critics Submission</a> | <a href="/press.php">Press</a> | <a href="http://developer.rottentomatoes.com">API</a> | <a href="/help_desk/licensing.php">Licensing</a> | <a href="/mobile/info/" >Mobile</a>
2259
+ </div>
2260
+ <div class="copyright">
2261
+ <span class="easteregg">Copyright &copy;</span> Flixster, Inc. All rights reserved.
2262
+ <script>
2263
+ $(".easteregg").click(function(){
2264
+ var str="http://www.rottentomatoes.com/m/planes/\n /movies/movie.jsp\n web83.flixster.com (us)\n GA:empty\n release: prod20130801\n rt-git-desc:RTRELEASE.2013-08-01.19-28-56 4de1816\n flixster-git-desc:RTRELEASE.2013-08-01.19-28-56 238d343";
2265
+ alert(str);
2266
+ });
2267
+ </script>
2268
+ <a href="/copyright">Copyright Policy</a>
2269
+ | <a href="/privacy">Privacy Policy</a>
2270
+ | <a href="/terms">Terms of Service</a>
2271
+ | <a href="/privacy#thirdparty">Ad Choices</a>
2272
+ </div>
2273
+ </div>
2274
+ <div id="hover-tip" class="hover_tip"><span sub="tip"></span></div>
2275
+ <script>
2276
+ var googletag = googletag || {};
2277
+ googletag.cmd = googletag.cmd || [];
2278
+ googletag.cmd.push(function() {
2279
+ googletag.pubads()
2280
+ .setTargeting("qcs", [])
2281
+ .setTargeting("gender", "")
2282
+ .setTargeting("age", "")
2283
+ .setTargeting("env", "prod")
2284
+ .setTargeting("usergenres", [])
2285
+ .setTargeting("genre", ["animation","kids-family","comedy"])
2286
+ ;
2287
+ googletag.pubads().collapseEmptyDivs();
2288
+ googletag.pubads().enableSingleRequest();
2289
+ googletag.enableServices();
2290
+ });
2291
+ $.each(RT.ads, function(idx, val){
2292
+ googletag.cmd.push(function() { googletag.display(val); });
2293
+ });
2294
+ </script>
2295
+ <!-- START Nielsen Online SiteCensus V6.0 -->
2296
+ <!-- COPYRIGHT 2010 Nielsen Online -->
2297
+ <script type="text/javascript" src="//secure-us.imrworldwide.com/v60.js"></script>
2298
+ <script type="text/javascript">
2299
+ var pvar = { cid: "us-203323h", content: "0", server: "secure-us" };
2300
+ var trac = nol_t(pvar);
2301
+ trac.record().post();
2302
+ </script>
2303
+ <noscript><div> <img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-203323h&amp;cg=0&amp;cc=1&amp;ts=noscript" width="1" height="1" alt="" /> </div></noscript>
2304
+ <!-- END Nielsen Online SiteCensus V6.0 -->
2305
+ <noscript>
2306
+ <div style="display: none;"><img src="http://pixel.quantserve.com/pixel/p-0fuRlG_jy3lfA.gif" height="1" width="1" alt="Quantcast"/></div>
2307
+ </noscript>
2308
+ <script>console.log("Bottom of body tag reached.")</script>
2309
+ <script type="text/javascript" src="//images.rottentomatoescdn.com/assets/v/prod20130801/scripts/?f=/js/backbone/underscore-min.js&f=/js/backbone/backbone-min.js&f=/js/globals.js&f=/js/lib/json2.js&f=/js/jquery/ui/jquery-ui-1.10.0.custom.min.js&f=/js/jquery/plugins/jquery.flixster.js&f=/js/jquery/plugins/jquery.rt_showMoreLink.js&f=/js/jquery/plugins/jquery.tmpl.js&f=/js/comp/Autocomplete.js&f=/js/comp/HoverTip.js&f=/js/comp/JumpList.js&f=/js/comp/Rating.js&f=/js/app/GAEvents.js&f=/js/comp/Rating.js&f=/js/app/views/PageHeader.js&f=/js/bootstrap/bootstrap-transition.js&f=/js/bootstrap/bootstrap-tab.js"></script>
2310
+ <script type="text/javascript" src="//images.rottentomatoescdn.com/assets/v/prod20130801/scripts/?f=/js/jquery/plugins/jquery.tooltip.min.js&f=/js/jquery/plugins/jquery.moreless.js&f=/js/jquery/plugins/jquery.morelist.js&f=/js/comp/HashLoader.js&f=/js/comp/ExpandableTextInput.js&f=/js/comp/AddToList.js&f=/js/app/ui/lightbox.js&f=/js/app/ui/LongModal.js&f=/js/app/views/MovieList.js&f=/js/app/views/HoverBubble.js&f=/js/app/views/MOB.js&f=/js/app/routers/MOBRouter.js"></script>
2311
+ <script type="text/javascript" src="http://jsapi.netflix.com/us/api/js/api.js" ></script>
2312
+ </body>
2313
+ </html>