odeon_uk 2.0.4 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -1
  3. data/CHANGELOG.md +6 -0
  4. data/Rakefile +29 -0
  5. data/lib/odeon_uk/api/cinema.rb +62 -0
  6. data/lib/odeon_uk/api/response.rb +55 -0
  7. data/lib/odeon_uk/api/screenings.rb +89 -0
  8. data/lib/odeon_uk/cinema.rb +53 -114
  9. data/lib/odeon_uk/configuration.rb +21 -0
  10. data/lib/odeon_uk/html/cinema.rb +101 -0
  11. data/lib/odeon_uk/html/parser/film_with_screenings.rb +160 -0
  12. data/lib/odeon_uk/html/screenings.rb +38 -0
  13. data/lib/odeon_uk/{internal → html}/website.rb +1 -1
  14. data/lib/odeon_uk/internal/title_sanitizer.rb +1 -0
  15. data/lib/odeon_uk/screening.rb +7 -15
  16. data/lib/odeon_uk/version.rb +2 -2
  17. data/lib/odeon_uk.rb +11 -4
  18. data/odeon_uk.gemspec +2 -0
  19. data/rake/fixture_creator.rb +98 -0
  20. data/test/fixtures/api/all_cinemas.plist +0 -0
  21. data/test/fixtures/api/app_init.plist +0 -0
  22. data/test/fixtures/api/film_times/71-100747.plist +0 -0
  23. data/test/fixtures/api/film_times/71-100750.plist +0 -0
  24. data/test/fixtures/api/film_times/71-100790.plist +0 -0
  25. data/test/fixtures/api/film_times/71-14646.plist +0 -0
  26. data/test/fixtures/api/film_times/71-14725.plist +0 -0
  27. data/test/fixtures/api/film_times/71-15086.plist +0 -0
  28. data/test/fixtures/api/film_times/71-15096.plist +0 -0
  29. data/test/fixtures/api/film_times/71-15122.plist +0 -0
  30. data/test/fixtures/api/film_times/71-15130.plist +0 -0
  31. data/test/fixtures/api/film_times/71-15141.plist +0 -0
  32. data/test/fixtures/api/film_times/71-15142.plist +0 -0
  33. data/test/fixtures/api/film_times/71-15143.plist +0 -0
  34. data/test/fixtures/api/film_times/71-15144.plist +0 -0
  35. data/test/fixtures/api/film_times/71-15145.plist +0 -0
  36. data/test/fixtures/api/film_times/71-15170.plist +0 -0
  37. data/test/fixtures/api/film_times/71-15172.plist +0 -0
  38. data/test/fixtures/api/film_times/71-15177.plist +0 -0
  39. data/test/fixtures/api/film_times/71-15179.plist +0 -0
  40. data/test/fixtures/api/film_times/71-15182.plist +0 -0
  41. data/test/fixtures/api/film_times/71-15286.plist +0 -0
  42. data/test/fixtures/api/film_times/71-15360.plist +0 -0
  43. data/test/fixtures/api/film_times/71-15586.plist +0 -0
  44. data/test/fixtures/api/film_times/71-15700.plist +0 -0
  45. data/test/fixtures/api/film_times/71-15718.plist +0 -0
  46. data/test/fixtures/api/film_times/71-15768.plist +0 -0
  47. data/test/fixtures/api/film_times/71-15788.plist +0 -0
  48. data/test/fixtures/api/film_times/71-15793.plist +0 -0
  49. data/test/fixtures/api/film_times/71-15794.plist +0 -0
  50. data/test/fixtures/api/film_times/71-15795.plist +0 -0
  51. data/test/fixtures/api/film_times/71-15796.plist +0 -0
  52. data/test/fixtures/api/film_times/71-15799.plist +0 -0
  53. data/test/fixtures/api/film_times/71-15802.plist +0 -0
  54. data/test/fixtures/api/film_times/71-15814.plist +0 -0
  55. data/test/fixtures/api/film_times/71-15817.plist +0 -0
  56. data/test/fixtures/api/film_times/71-15840.plist +0 -0
  57. data/test/fixtures/{cinema/leicester_square.html → html/cinema/105.html} +384 -313
  58. data/test/fixtures/{cinema/bfi_imax.html → html/cinema/211.html} +677 -355
  59. data/test/fixtures/{cinema/brighton.html → html/cinema/71.html} +899 -431
  60. data/test/fixtures/html/showtimes/11-imax.html +170 -0
  61. data/test/fixtures/html/showtimes/171-d-box.html +203 -0
  62. data/test/fixtures/html/showtimes/71-0.html +59 -0
  63. data/test/fixtures/html/showtimes/71.html +2395 -0
  64. data/test/fixtures/{sitemap.html → html/sitemap.html} +264 -352
  65. data/test/lib/odeon_uk/api/cinema_test.rb +149 -0
  66. data/test/lib/odeon_uk/api/response_test.rb +44 -0
  67. data/test/lib/odeon_uk/api/screenings_test.rb +43 -0
  68. data/test/lib/odeon_uk/cinema_test.rb +373 -148
  69. data/test/lib/odeon_uk/configuration_test.rb +29 -0
  70. data/test/lib/odeon_uk/html/cinema_test.rb +149 -0
  71. data/test/lib/odeon_uk/{internal/film_with_screenings_parser_test.rb → html/parser/film_with_screenings_test.rb} +12 -42
  72. data/test/lib/odeon_uk/html/screenings_test.rb +43 -0
  73. data/test/lib/odeon_uk/html/website_test.rb +37 -0
  74. data/test/lib/odeon_uk/screening_test.rb +17 -83
  75. data/test/support/api_fixtures_helper.rb +34 -0
  76. data/test/support/website_fixtures_helper.rb +25 -0
  77. data/test/test_helper.rb +7 -2
  78. metadata +149 -34
  79. data/lib/odeon_uk/film.rb +0 -65
  80. data/lib/odeon_uk/internal/film_with_screenings_parser.rb +0 -159
  81. data/lib/odeon_uk/internal/showtimes_page.rb +0 -36
  82. data/test/fixture_updater.rb +0 -72
  83. data/test/fixtures/showtimes/brighton/film_first.html +0 -92
  84. data/test/fixtures/showtimes/brighton/film_last.html +0 -100
  85. data/test/fixtures/showtimes/brighton.html +0 -2071
  86. data/test/fixtures/showtimes/liverpool_one/film_first_dbox.html +0 -188
  87. data/test/fixtures/showtimes/manchester/film_first_imax.html +0 -182
  88. data/test/lib/odeon_uk/film_test.rb +0 -142
  89. data/test/lib/odeon_uk/internal/showtimes_page_test.rb +0 -51
  90. data/test/lib/odeon_uk/internal/website_test.rb +0 -59
@@ -15,7 +15,7 @@
15
15
 
16
16
  (function(){
17
17
 
18
- if (window.isMobileDevice()) {
18
+ if (!window.isMobileDevice()) {
19
19
  return;
20
20
  }
21
21
 
@@ -44,7 +44,7 @@
44
44
  <title>ODEON BFI IMAX - View Listings and Book Cinema Tickets Now!</title> <meta name="description" content="ODEON BFI IMAX - View Cinema Listings and Book Cinema Tickets! Find the latest film times, offers, trailers and prices at your local Cinema in BFI IMAX">
45
45
  <meta property="og:title" content="ODEON BFI IMAX">
46
46
  <meta property="og:type" content="cinema">
47
- <meta property="og:image" content="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/f87e372bce7a51328f8e13ddb29a358c.jpg">
47
+ <meta property="og:image" content="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/ca8de02bb4b4ab3155aad6280bcf77ad.jpg">
48
48
  <meta property="og:site_name" content="www.odeon.co.uk">
49
49
  <meta property="og:url" content="http://www.odeon.co.uk/cinemas/bfi_imax/211/">
50
50
  <meta property="og:description" content="The BFI IMAX is situated in middle of a roundabout directly opposite Waterloo train station. The cinema has 1 IMAX screen (Premium, Premium Double Seats, IMAX, Costa) 3 ATMs which are located in the main foyer.">
@@ -70,22 +70,21 @@
70
70
 
71
71
  <!-- Le styles -->
72
72
 
73
- <link href="/css/main.css" media="all" rel="stylesheet" type="text/css">
74
- <!--[if IE]> <link href="/css/main_0.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
75
- <!--[if IE]> <link href="/css/main_1.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
76
- <!--[if IE]> <link href="/css/main_2.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
73
+ <link href="/css/main_t1426242250.css" media="all" rel="stylesheet" type="text/css">
74
+ <!--[if IE]><link href="/css/main0_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
75
+ <!--[if IE]><link href="/css/main1_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
76
+ <!--[if IE]><link href="/css/main2_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
77
77
  <link href="/images/ico/apple-touch-icon-144-precomposed.png" rel="apple-touch-icon-precomposed">
78
78
  <link href="/images/ico/apple-touch-icon-114-precomposed.png" rel="apple-touch-icon-precomposed">
79
79
  <link href="/images/ico/apple-touch-icon-72-precomposed.png" rel="apple-touch-icon-precomposed">
80
80
  <link href="/images/ico/apple-touch-icon-57-precomposed.png" rel="apple-touch-icon-precomposed">
81
81
  <link href="/images/ico/favicon.png" rel="shortcut icon" type="image/vnd.microsoft.icon">
82
- <!--[if lte IE 9]> <link href="/css/ie9.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
82
+ <!--[if lte IE 9]><link href="/css/ie9.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
83
83
  <script type="text/javascript">var website_app_locale = 'uk';</script>
84
84
  <script type="text/javascript">var site_protocol = (('https:' == document.location.protocol) ? 'https://' : 'http://') </script>
85
- <script type="text/javascript">var media_host = "http://odeon-fastly.krankikom.de.global.prod.fastly.net/";</script>
85
+ <script type="text/javascript">var media_host = "http://m.odeon.co.uk/";</script>
86
86
  <!-- Scripts -->
87
- <script type="text/javascript" src="/build/js/odeon.min.09182014010649.jgz"></script>
88
- <!--[if !IE]><script type="text/javascript" src="/source/js/vendor/jwplayer.html5.js"></script><![endif]-->
87
+ <script type="text/javascript" src="/build/js/odeon.min.03132015102356.jgz"></script>
89
88
  <!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/selectivizr-min.js"></script><![endif]-->
90
89
  <!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/IE9.js"></script><![endif]--> <!--[if !IE]><!--><script>
91
90
  if (/*@cc_on!@*/false && document.documentMode === 10) {
@@ -332,7 +331,7 @@
332
331
  <option value="133">Liverpool Switch Island</option>
333
332
  <option value="213">Llanelli</option>
334
333
  <option value="105">London - Leicester Square</option>
335
- <option value="139">London - West End</option>
334
+ <option value="139">London - West End - Now closed</option>
336
335
  <option value="183">Loughborough</option>
337
336
  <option value="10">Maidenhead</option>
338
337
  <option value="109">Maidstone</option>
@@ -340,7 +339,7 @@
340
339
  <option value="110">Mansfield</option>
341
340
  <option value="111">Marble Arch</option>
342
341
  <option value="174">Metrocentre</option>
343
- <option value="147">Milton Keynes</option>
342
+ <option value="218">Milton Keynes Stadium</option>
344
343
  <option value="112">Muswell Hill</option>
345
344
  <option value="184">Newark</option>
346
345
  <option value="13">Norwich</option>
@@ -454,174 +453,127 @@
454
453
  <div class="selectpicker select-icon-select">
455
454
  <select id="your-film" data-size="10" name="filmMasterId">
456
455
  <option value="0">Select a specific film</option>
457
- <option value="14578" >A Most Wanted Man</option>
458
- <option value="91370" >A Muppet Christmas Carol</option>
459
- <option value="15103" >A Walk Among The Tombstones</option>
460
- <option value="1201" >Airplane</option>
461
- <option value="199" >Alien</option>
462
- <option value="15426" >American: The Bill Hicks Story + Q&A</option>
463
- <option value="15066" >As Above, So Below</option>
464
- <option value="100732" >Autism Friendly - Planes 2: Fire and Rescue 2D</option>
465
- <option value="15129" >Before I Go To Sleep</option>
466
- <option value="15125" >Begin Again</option>
467
- <option value="15450" >Berliner Philharmoniker 2014 (Bernard Haitink)</option>
456
+ <option value="4025" >A Clockwork Orange</option>
457
+ <option value="15758" >A Most Violent Year</option>
458
+ <option value="15822" >Ali Kundilli</option>
459
+ <option value="15748" >American Sniper</option>
460
+ <option value="15840" >Andre Rieu's 2015 Maastricht Concert</option>
461
+ <option value="15825" >Appropriate Behaviour</option>
462
+ <option value="100789" >Autism Friendly - Focus</option>
463
+ <option value="100792" >Autism Friendly - Home</option>
464
+ <option value="2209" >Bad Boys</option>
468
465
  <option value="15451" >Berliner Philharmoniker 2014 (Mariss Jansons)</option>
469
- <option value="15449" >Berliner Philharmoniker 2014 (Simon Rattle)</option>
470
- <option value="100754" >Billy Elliot The Musical (encore)</option>
471
- <option value="15294" >Billy Elliot The Musical Live</option>
466
+ <option value="15286" >Big Hero 6</option>
467
+ <option value="15724" >Birdman</option>
468
+ <option value="15653" >Blade Runner: The Final Cut (re:2015)</option>
469
+ <option value="39" >Bloodsport</option>
472
470
  <option value="15299" >Bolshoi Live: Ivan The Terrible</option>
473
- <option value="15298" >Bolshoi Live: Swan Lake</option>
474
- <option value="15296" >Bolshoi Live: The Legend Of Love</option>
475
- <option value="15297" >Bolshoi Live: The Nutcracker</option>
476
471
  <option value="15095" >Boyhood</option>
477
- <option value="14745" >Chef</option>
478
- <option value="15447" >Creature</option>
479
- <option value="15461" >Daawat-e-ishq</option>
480
- <option value="14697" >Dawn Of The Planet Of The Apes</option>
481
- <option value="14975" >Deliver Us From Evil</option>
482
- <option value="29" >Die Hard.</option>
483
- <option value="15429" >Double Di Trouble</option>
484
- <option value="15102" >Earth To Echo</option>
485
- <option value="15249" >Fading Gigolo</option>
486
- <option value="3664" >Fight Club</option>
487
- <option value="15087" >Finding Fanny</option>
488
- <option value="15437" >Finding Fela</option>
489
- <option value="15376" >Finding Vivian Maier</option>
490
- <option value="100704" >Frozen Sing-a-long</option>
491
- <option value="57" >Ghostbusters</option>
492
- <option value="15390" >God's Pocket</option>
493
- <option value="15404" >Gone Girl</option>
494
- <option value="15445" >Goreyan Nu Daffa Karo</option>
495
- <option value="14510" >Grace Of Monaco</option>
496
- <option value="610" >Gremlins</option>
497
- <option value="100758" >Grimmfest 2014 - A Nightmare On Elm Street</option>
498
- <option value="15532" >Grimmfest 2014 - Devil's Mile</option>
499
- <option value="15533" >Grimmfest 2014 - Lfo</option>
500
- <option value="15535" >Grimmfest 2014 - Sororal</option>
501
- <option value="100759" >Grimmfest 2014 - The Babadook</option>
502
- <option value="15534" >Grimmfest 2014 - The Reconstruction Of William Zero</option>
503
- <option value="14690" >Guardians Of The Galaxy</option>
504
- <option value="718" >Home Alone</option>
472
+ <option value="15741" >Cake</option>
473
+ <option value="15829" >Carsi Pazar</option>
474
+ <option value="15824" >Catch Me Daddy</option>
475
+ <option value="15179" >Chappie</option>
476
+ <option value="100791" >Cinderella</option>
477
+ <option value="2124" >Clerks</option>
478
+ <option value="15835" >Difret</option>
479
+ <option value="15806" >Drake: Homecoming</option>
480
+ <option value="15804" >Elaine Paige + Live Element</option>
481
+ <option value="15243" >Eno Carmen</option>
482
+ <option value="15242" >ENO Pirates Of Penzance</option>
483
+ <option value="12683" >Enter The Dragon</option>
484
+ <option value="15543" >Exhibition On Screen: The Impressionists</option>
485
+ <option value="15542" >Exhibition On Screen: Vincent Van Gogh</option>
486
+ <option value="15086" >Exodus: Gods And Kings</option>
487
+ <option value="100790" >Fast & Furious 6 & 7 Double Bill</option>
488
+ <option value="14646" >Fast & Furious 7</option>
489
+ <option value="14725" >Fifty Shades Of Grey</option>
490
+ <option value="15871" >Fireman</option>
491
+ <option value="15799" >Focus</option>
492
+ <option value="14869" >Foxcatcher</option>
493
+ <option value="15700" >Get Santa</option>
494
+ <option value="15795" >Globe On Screen: Antony & Cleopatra</option>
495
+ <option value="15794" >Globe On Screen: Julius Caesar</option>
496
+ <option value="15796" >Globe On Screen: The Comedy Of Errors</option>
497
+ <option value="15793" >Globe On Screen: Titus Andronicus</option>
498
+ <option value="2111" >Goldeneye</option>
499
+ <option value="2449" >Heat</option>
500
+ <option value="100798" >High Tide with Live Q&A</option>
501
+ <option value="15122" >Home</option>
502
+ <option value="1120" >Hook</option>
505
503
  <option value="11916" >How To Train Your Dragon</option>
506
504
  <option value="15182" >How To Train Your Dragon 2</option>
507
- <option value="15227" >If I Stay</option>
508
- <option value="15396" >Into The Storm</option>
505
+ <option value="13530" >Hubble</option>
506
+ <option value="15815" >Hyena</option>
507
+ <option value="15172" >Interstellar</option>
508
+ <option value="15723" >Into The Woods</option>
509
509
  <option value="15344" >Island Of Lemurs: Madagascar</option>
510
- <option value="15430" >Jack To A King</option>
511
- <option value="15099" >Jersey Boys</option>
512
- <option value="15017" >Jerusalem 3D</option>
513
- <option value="15472" >JFF 2014 - Bethlehem</option>
514
- <option value="15473" >JFF 2014 - Run Boy Run</option>
515
- <option value="670" >Karate Kid (1984)</option>
516
- <option value="15506" >Khoobsurat.</option>
517
- <option value="14679" >Labor Day</option>
518
- <option value="15090" >Let's Be Cops</option>
519
- <option value="15067" >Lucy</option>
520
- <option value="15292" >Madama Butterfly On Sydney Harbour - Opera Australia</option>
521
- <option value="15443" >Made In Egypt</option>
522
- <option value="15265" >Magic In The Moonlight</option>
523
- <option value="13976" >Maleficent</option>
524
- <option value="15444" >Mary Kom</option>
525
- <option value="15152" >MET Opera - Carmen (Live) 2014</option>
510
+ <option value="15718" >It Follows</option>
511
+ <option value="15017" >Jerusalem</option>
512
+ <option value="15173" >Jupiter Ascending</option>
513
+ <option value="15148" >Kill The Messenger</option>
514
+ <option value="15170" >Kingsman: The Secret Service</option>
515
+ <option value="2060" >Leon</option>
516
+ <option value="597" >Lethal Weapon</option>
517
+ <option value="15787" >Love Is Strange</option>
518
+ <option value="15728" >Maxine Peake as Hamlet</option>
526
519
  <option value="15159" >MET Opera - Cavalleria Rusticana/Pagliacci (Live) 2015</option>
527
- <option value="15154" >MET Opera - Die Meistersinger Von Nurnberg (Live) 2014</option>
528
- <option value="15373" >Met Opera - Ii Barbiere Di Siviglia</option>
529
- <option value="15157" >MET Opera - Iolanta/Duke Bluebeard's Castle (Live) 2015</option>
530
520
  <option value="15158" >MET Opera - La Donna Del Lago (Live) 2015</option>
531
- <option value="15151" >MET Opera - Le Nozze Di Figaro (Live) 2014</option>
532
- <option value="15156" >MET Opera - Les Contes D'Hoffmann (Live) 2015</option>
533
- <option value="15150" >MET Opera - Macbeth (Live) 2014</option>
534
- <option value="15155" >MET Opera - The Merry Widow (Live) 2015</option>
535
- <option value="15200" >Million Dollar Arm</option>
536
- <option value="15395" >Mood Indigo</option>
537
- <option value="14468" >Mr. Peabody And Sherman</option>
538
- <option value="14738" >Mrs. Brown's Boys</option>
539
- <option value="15029" >Mrs. Brown's Boys D'movie</option>
540
- <option value="14604" >Muppets Most Wanted</option>
521
+ <option value="100795" >MK - Kids Screen - Shaun The Sheep</option>
522
+ <option value="100796" >MK - Kids Screen - Big Hero 6</option>
523
+ <option value="15186" >Mr. Turner</option>
541
524
  <option value="6244" >Mystery Film Monday</option>
542
- <option value="100755" >Mystery Movie Monday</option>
543
- <option value="15442" >Mystery Road</option>
544
- <option value="15419" >Night Moves</option>
545
- <option value="15507" >Night Will Fall</option>
546
- <option value="100722" >NT Live - Frankenstein Encore (Benedict Cumberbatch As Creature)</option>
547
- <option value="100721" >NT Live - Frankenstein Encore (Jonny Lee Miller As Creature)</option>
548
- <option value="15388" >Nt Live: A Streetcar Named Desire (Young Vic)</option>
549
- <option value="100740" >Nt Live: A Streetcar Named Desire (young Vic) (encore)</option>
550
- <option value="15336" >Nt Live: John</option>
551
- <option value="100739" >Nt Live: Medea (encore)</option>
552
- <option value="15337" >Nt Live: Treasure Island</option>
553
- <option value="15431" >Obvious Child</option>
554
- <option value="15371" >One Direction: Where We Are - Concert Movie</option>
555
- <option value="15415" >One Night In Istanbul</option>
525
+ <option value="15091" >Night At The Museum: Secret Of The Tomb</option>
526
+ <option value="15788" >NT Live: A View From The Bridge</option>
527
+ <option value="15802" >NT Live: Everyman</option>
528
+ <option value="15587" >NT Live: Man And Superman</option>
529
+ <option value="15586" >NT Live: The Hard Problem</option>
556
530
  <option value="6611" >Organ Concert</option>
557
- <option value="14546" >Planes</option>
558
- <option value="15015" >Planes 2: Fire and Rescue</option>
559
- <option value="116" >Predator</option>
560
- <option value="15092" >Pride</option>
561
- <option value="15432" >Raja Natwarlal</option>
562
- <option value="15139" >ROH - Andrea Chenier (Live) 2015</option>
563
- <option value="100741" >ROH - Andrea Chenier 2015 (encore)</option>
564
- <option value="15140" >ROH - Der Fliegende Hollander (Live) 2015</option>
565
- <option value="100742" >Roh - Der Fliegende Hollander 2015 (encore)</option>
531
+ <option value="15564" >Paddington</option>
532
+ <option value="15680" >Project Almanac</option>
533
+ <option value="2033" >Pulp Fiction</option>
534
+ <option value="6528" >Rocky</option>
566
535
  <option value="15145" >ROH - Guillaume Tell (Live) 2015</option>
567
- <option value="15136" >ROH - I Due Foscari (Live) 2014</option>
568
- <option value="100744" >ROH - I Due Foscari 2014 (encore)</option>
569
- <option value="15137" >ROH - L'elisir D'amore (Live) 2014</option>
570
- <option value="100745" >ROH - L'elisir D'amore 2014 (encore)</option>
571
536
  <option value="15144" >ROH - La Boheme (Live) 2015</option>
572
537
  <option value="100746" >ROH - La Boheme 2015 (encore)</option>
573
538
  <option value="15142" >ROH - Rise And Fall Of The City Of Mahagonny (Live) 2015</option>
574
539
  <option value="100747" >ROH - Rise And Fall Of The City Of Mahagonny 2015 (encore)</option>
575
- <option value="15166" >RSC 2015 - Love's Labours Lost</option>
576
- <option value="15167" >RSC 2015 - Love's Labours Won</option>
577
- <option value="15293" >Salome & Wilde Salome + Q&A Via Satellite With Al Pacino</option>
578
- <option value="15455" >Sapthamashree Taskaraha.</option>
579
- <option value="14642" >Sex Tape</option>
580
- <option value="10374" >Sin City: A Dame To Kill For</option>
581
- <option value="15410" >Soul Boys Of The Western World + Spandau Ballet Satellite Event</option>
582
- <option value="15021" >Step Up: All In</option>
583
- <option value="15341" >Stephen Fry Live: More Fool Me</option>
584
- <option value="15126" >T.S. Spivet</option>
585
- <option value="14572" >Tarzan</option>
586
- <option value="23743" >Teen Wolf</option>
587
- <option value="15380" >The Boxtrolls</option>
540
+ <option value="15706" >RSC - The Merchant Of Venice</option>
541
+ <option value="15768" >Run All Night</option>
542
+ <option value="10940" >Sea Monsters - A Prehistoric Adventure 3D IMAX</option>
543
+ <option value="15882" >Selam Bahara Yolculuk</option>
544
+ <option value="15394" >Selma</option>
545
+ <option value="15813" >Sevlimi Tehlikeli</option>
546
+ <option value="15274" >Shaun The Sheep</option>
547
+ <option value="15883" >Son Mektup (SFL - Subtitled Foreign Language)</option>
548
+ <option value="11893" >Space Station</option>
549
+ <option value="15814" >Still Alice</option>
550
+ <option value="15817" >Suite Francaise</option>
551
+ <option value="15178" >Taken 3</option>
552
+ <option value="15568" >Testament Of Youth</option>
553
+ <option value="15130" >The Avengers: Age Of Ultron</option>
554
+ <option value="15677" >The Boy Next Door</option>
588
555
  <option value="14602" >The Dark Knight: All Nighter</option>
589
- <option value="15203" >The Equalizer</option>
556
+ <option value="15360" >The Divergent Series: Insurgent</option>
590
557
  <option value="14678" >The Expendables 3</option>
591
- <option value="14977" >The Fault In Our Stars</option>
592
- <option value="15481" >The Giver</option>
593
- <option value="753" >The Godfather</option>
594
- <option value="15405" >The Guest</option>
595
- <option value="15194" >The House Of Magic</option>
596
- <option value="15367" >The Hundred-foot Journey</option>
597
- <option value="15195" >The Inbetweeners 2</option>
598
- <option value="15436" >The Keeper Of Lost Causes</option>
599
- <option value="15100" >The Nut Job</option>
600
- <option value="15037" >The Other Woman</option>
601
- <option value="15263" >The Riot Club</option>
602
- <option value="15202" >The Rover</option>
603
- <option value="15138" >The Royal Ballet - Alice's Adventures In Wonderland (Live) 2014</option>
604
- <option value="100751" >The Royal Ballet - Alice's Adventures In Wonderland 2014 (encore)</option>
558
+ <option value="14941" >The Grand Budapest Hotel</option>
559
+ <option value="15712" >The Grandmaster</option>
560
+ <option value="15262" >The Imitation Game</option>
605
561
  <option value="15143" >The Royal Ballet - La Fille Mal Gardee (Live) 2015</option>
606
562
  <option value="100748" >The Royal Ballet - La Fille Mal Gardee 2015 (encore)</option>
607
- <option value="13673" >The Royal Ballet - La Fille Mal Gardee Live</option>
608
- <option value="15135" >The Royal Ballet - Manon (Live) 2014</option>
609
- <option value="100749" >The Royal Ballet - Manon 2014 (encore)</option>
610
563
  <option value="15141" >The Royal Ballet - Swan Lake (Live) 2015</option>
611
564
  <option value="100750" >The Royal Ballet - Swan Lake 2015 (encore)</option>
612
- <option value="69" >The Thing (1982)</option>
613
- <option value="15389" >The Unbeatables</option>
614
- <option value="15228" >The Wizard Of Oz</option>
615
- <option value="885" >Thelma & Louise</option>
616
- <option value="14643" >Think Like A Man Too</option>
617
- <option value="15508" >Tony Benn: Will And Testament</option>
618
- <option value="15048" >Transformers: Age Of Extinction</option>
619
- <option value="15411" >Vatican Museums</option>
620
- <option value="15407" >Wakolda</option>
621
- <option value="15181" >We Are The Best! (SFL - Subtitled Foreign Language)</option>
622
- <option value="14893" >What If</option>
623
- <option value="15237" >What We Did On Our Holiday</option>
624
- <option value="15434" >Wish I Was Here</option>
565
+ <option value="15177" >The Second Best Exotic Marigold Hotel</option>
566
+ <option value="10619" >The Silence Of The Lambs</option>
567
+ <option value="15107" >The Theory Of Everything</option>
568
+ <option value="15354" >The Wedding Ringer</option>
569
+ <option value="15273" >Tinker Bell And The Legend Of The Neverbeast</option>
570
+ <option value="15096" >Unbroken</option>
571
+ <option value="11794" >Under The Sea</option>
572
+ <option value="15801" >Unfinished Business</option>
573
+ <option value="15425" >Whiplash</option>
574
+ <option value="15826" >White God</option>
575
+ <option value="15306" >Wild</option>
576
+ <option value="15830" >X+Y</option>
625
577
  </select>
626
578
  </div>
627
579
  <input type="submit" class="btn darkblue pull-right" value="Go" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="film-drop-down" >
@@ -635,7 +587,7 @@
635
587
  <ul class="unstyled" role="menu">
636
588
  <li><a href="/kids/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="kids" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Kids</strong></a></li>
637
589
  <li><a href="/newbies/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="newbies" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Newbies</strong></a></li>
638
- <li><a href="/senior-screen/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="senior-screen" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Senior Screen</strong></a></li>
590
+ <li><a href="/silvercinema/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="silvercinema" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Silver Cinema</strong></a></li>
639
591
  <li><a href="/bollywood/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="bollywood" ><i class="nav-icon-arrow-blue"></i><strong>Bollywood</strong></a></li>
640
592
  <li><a href="/back-british-film/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="back-british-film" ><i class="nav-icon-arrow-blue"></i><strong>Back British Film</strong></a></li>
641
593
  </ul>
@@ -653,12 +605,20 @@
653
605
  <h2>Top 5 Films Now Booking</h2>
654
606
  <ul class="unstyled" role="menu">
655
607
  <li class="pull-left"><img
656
- src="http://m.odeon.co.uk/_uploads/asset_management/70x108_c158eed3e314e97ec1762e63cf132bc3.jpg" />
657
- <h3><a href="http://www.odeon.co.uk/films/a_walk_among_the_tombstones/15103/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film1" >A Walk Among The Tombstones</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> </li>
608
+ src="http://m.odeon.co.uk/_uploads/asset_management/70x108_4ce02a732d4a4d57011886fff8637cbd.jpg" />
609
+ <h3><a href="http://www.odeon.co.uk/films/run_all_night/15768/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film1" >Run All Night</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15768' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMjExLw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
610
+ <div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
611
+ <div class="rate-over s1"></div>
612
+ <div class="rate-over s2"></div>
613
+ <div class="rate-over s3"></div>
614
+ <div class="rate-over s4"></div>
615
+ <div class="rate-over s5"></div>
616
+ </div>
617
+ </div> </li>
658
618
  <li class="pull-left"><img
659
- src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_0f562b81f53660ac030191b1e7f7c08b.jpg" />
660
- <h3><a href="http://www.odeon.co.uk/films/the_boxtrolls/15380/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film2" >The Boxtrolls</a></h3><a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <div data-rating-master-id='15380' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMjExLw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
661
- <div class="rating-icon-star-xtrasmall-active s6" data-rating="6">
619
+ src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_538c352747af97a0c8c89063b0123444.jpg" />
620
+ <h3><a href="http://www.odeon.co.uk/films/the_second_best_exotic_marigold_hotel/15177/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film2" >The Second Best Exotic Marigold Hotel</a></h3><a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <div data-rating-master-id='15177' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMjExLw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
621
+ <div class="rating-icon-star-xtrasmall-active s8" data-rating="8">
662
622
  <div class="rate-over s1"></div>
663
623
  <div class="rate-over s2"></div>
664
624
  <div class="rate-over s3"></div>
@@ -667,15 +627,31 @@
667
627
  </div>
668
628
  </div> </li>
669
629
  <li class="pull-left"><img
670
- src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_4d569b2ca1a461a627d547b857b6fe62.jpg" />
671
- <h3><a href="http://www.odeon.co.uk/films/the_riot_club/15263/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film3" >The Riot Club</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> </li>
630
+ src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_78ad5db3e95468533d7591f2f2f3d097.jpg" />
631
+ <h3><a href="http://www.odeon.co.uk/films/focus/15799/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film3" >Focus</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15799' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMjExLw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
632
+ <div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
633
+ <div class="rate-over s1"></div>
634
+ <div class="rate-over s2"></div>
635
+ <div class="rate-over s3"></div>
636
+ <div class="rate-over s4"></div>
637
+ <div class="rate-over s5"></div>
638
+ </div>
639
+ </div> </li>
672
640
  <li class="pull-left"><img
673
- src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_7e13922985aa4980a5d9b6dbbf70c801.jpg" />
674
- <h3><a href="http://www.odeon.co.uk/films/the_giver/15481/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film4" >The Giver</a></h3><a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> </li>
641
+ src="http://m.odeon.co.uk/_uploads/asset_management/70x108_714694478b3cfc8f5c9a9e24632aa032.jpg" />
642
+ <h3><a href="http://www.odeon.co.uk/films/suite_francaise/15817/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film4" >Suite Francaise</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15817' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMjExLw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
643
+ <div class="rating-icon-star-xtrasmall-active s6" data-rating="6">
644
+ <div class="rate-over s1"></div>
645
+ <div class="rate-over s2"></div>
646
+ <div class="rate-over s3"></div>
647
+ <div class="rate-over s4"></div>
648
+ <div class="rate-over s5"></div>
649
+ </div>
650
+ </div> </li>
675
651
  <li class="pull-left"><img
676
- src="http://m.odeon.co.uk/_uploads/asset_management/70x108_9445403401f8f3b9d5bbb1739d747ca7.jpg" />
677
- <h3><a href="http://www.odeon.co.uk/films/gone_girl/15404/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film5" >Gone Girl</a></h3><a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> </li>
678
- </ul>
652
+ src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_0141eed86c375d67af14731179996651.jpg" />
653
+ <h3><a href="http://www.odeon.co.uk/films/home/15122/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film5" >Home</a></h3><a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> </li>
654
+ </ul>
679
655
  </li>
680
656
  </div>
681
657
  </ul>
@@ -697,8 +673,8 @@
697
673
 
698
674
  <li class="win-offers">
699
675
  <ul class="unstyled" role="menu">
700
- <li class="pull-left"><a href="/offers-and-promotions/up_to_40_discount_on_tickets/134/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-1" ><img src="http://m2.odeon.co.uk/_uploads/offers_competitions/460x260_87a01cf25f26377d956c639cf7204f46.jpg" /><span>Up to 40% discount on tickets</span></a></li>
701
- <li class="pull-right"><a href="/offers-and-promotions/win_a_4_star_boutique_hotel_stay/137/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-2" ><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/460x260_e97c9fed19352dc168eb578676e20ae7.jpg" /><span>Win a 4 star boutique hotel stay</span></a></li>
676
+ <li class="pull-left"><a href="/offers-and-promotions/win_a_trip_for_two_to_paris/182/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-1" ><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/460x260_3d2078081bbc45d754ae659131b34b34.jpg" /><span>Win a trip for two to Paris</span></a></li>
677
+ <li class="pull-right"><a href="/offers-and-promotions/win_a_trip_to_atlanta/180/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-2" ><img src="http://m.odeon.co.uk/_uploads/offers_competitions/460x260_4ab4bb5c2d31e8f9e94620f4132f0c39.jpg" /><span>Win a trip to Atlanta&nbsp;</span></a></li>
702
678
  </ul>
703
679
  </li>
704
680
 
@@ -706,7 +682,7 @@
706
682
  </li>
707
683
  <li class="span4 premiere nav-icon-divide-shadow-l">
708
684
  <h2 class="logout">ODEON Premi&egrave;re Club</h2>
709
- <img class="logout" src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/premiere-card.png" />
685
+ <img class="logout" src="http://m2.odeon.co.uk/_uploads/cached/static/img/premiere-card.png" />
710
686
  <ul class="unstyled logout" role="menu">
711
687
  <li><span>Join over two million members and start earning ODEON Points for doing something you love.</span></li>
712
688
  <li class="pull-left"><a href="http://www.odeon.co.uk/odeon-premiere-club/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="opc-find-out-more" ><i class="nav-icon-arrow-blue"></i><strong>Find out more</strong></a></li>
@@ -716,7 +692,7 @@
716
692
  </li>
717
693
  <li class="span4 cards">
718
694
  <h2>Gift Cards</h2>
719
- <img src="http://m.odeon.co.uk/_uploads/cached/static/img/gift-card.png" />
695
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gift-card.png" />
720
696
  <ul class="unstyled" role="menu">
721
697
  <li><span>Everyone loves a great film so treat your family, friends, staff or clients to the gift of cinema.<br />
722
698
  You can buy ODEON Gift Cards in a design to suite every taste.</span></li>
@@ -741,18 +717,23 @@
741
717
  </script>
742
718
  </header>
743
719
 
720
+ <div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
721
+ <script type='text/javascript'><!--// <![CDATA[
722
+ OA_show(21);
723
+ // ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=a3b7b2a4'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=21&amp;n=a3b7b2a4' /></a></noscript> </div>
724
+
744
725
 
745
726
  <!-- Start Hero Carousel -->
746
727
 
747
728
  <div class="cinemahome-wrapper clearfix">
748
729
  <article>
749
730
  <div class="cinemahome-full">
750
- <img src="http://m.odeon.co.uk/_uploads/cinema_management/f87e372bce7a51328f8e13ddb29a358c.jpg" alt=""/>
731
+ <img src="http://m.odeon.co.uk/_uploads/cinema_management/ca8de02bb4b4ab3155aad6280bcf77ad.jpg" alt=""/>
751
732
  </div>
752
733
  <div class="cinemahome-stacked">
753
734
  <div>
754
- <img src="http://m2.odeon.co.uk/_uploads/banner/de32b957a459c558ac9f192d3270b8c7.jpg" alt=""/>
755
- <div class="info"><span><a href="/imax/">IMAX is believing. Find out more about IMAX</a></span></div>
735
+ <img src="http://m2.odeon.co.uk/_uploads/banner/cc07bdb687845a8bc41213ca91d3484a.jpg" alt=""/>
736
+ <div class="info"><span><a href="/cinemas/bfi_imax/211/#educationatbfi">Education at the BFI IMAX. Find out more</a></span></div>
756
737
  </div>
757
738
  <div>
758
739
  <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/454406e4bc244b8488663f7436bde578.jpg" alt=""/>
@@ -760,7 +741,7 @@
760
741
  </div>
761
742
  </div>
762
743
  <div class="cinemahome-half">
763
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/92c67e7c667f08c31011e4f8b7eb5398.jpg" alt=""/>
744
+ <img src="http://m.odeon.co.uk/_uploads/cinema_management/92c67e7c667f08c31011e4f8b7eb5398.jpg" alt=""/>
764
745
  </div>
765
746
  </article>
766
747
  </div>
@@ -775,48 +756,16 @@
775
756
  <span>Top IMAX films showing:</span>
776
757
  </div>
777
758
  <div class="span3">
778
- <img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_d713bb3e069f2aa5b652c5a370130630.jpg" /><h3><a href="/films/the_equalizer/15203/">The Equalizer</a></h3> <a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> </div>
759
+ <img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_ae06b32def3468175640fa7e3ef30de5.jpg" /><h3><a href="/films/the_avengers_age_of_ultron/15130/">The Avengers: Age Of Ultron</a></h3> <a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> </div>
779
760
  <div class="span3">
780
- <img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_924d15974e55b4fc8bac0566ee48e833.jpg" /><h3><a href="/films/island_of_lemurs_madagascar/15344/">Island Of Lemurs: Madagascar</a></h3> <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <div data-rating-master-id='15344' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-xtrasmall-inactive">
781
- <div class="rating-icon-star-xtrasmall-active s10" data-rating="10">
782
- <div class="rate-over s1"></div>
783
- <div class="rate-over s2"></div>
784
- <div class="rate-over s3"></div>
785
- <div class="rate-over s4"></div>
786
- <div class="rate-over s5"></div>
787
- </div>
788
- </div> </div>
761
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_52cf0bc4b06b18a9ae739df6401995ea.jpg" /><h3><a href="/films/the_divergent_series_insurgent/15360/">The Divergent Series: Insurgent</a></h3> <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> </div>
789
762
  <div class="span3">
790
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_114328a1df489e65650ae052a15d6a96.jpg" /><h3><a href="/films/jerusalem_3d/15017/">Jerusalem 3D</a></h3> <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <div data-rating-master-id='15017' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-xtrasmall-inactive">
791
- <div class="rating-icon-star-xtrasmall-active s9" data-rating="9">
792
- <div class="rate-over s1"></div>
793
- <div class="rate-over s2"></div>
794
- <div class="rate-over s3"></div>
795
- <div class="rate-over s4"></div>
796
- <div class="rate-over s5"></div>
797
- </div>
798
- </div> </div>
763
+ <img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_53db1041fa82339e59783141761e75d9.jpg" /><h3><a href="/films/fast_amp_furious_7/14646/">Fast & Furious 7</a></h3> <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> </div>
799
764
  </div>
800
765
  </div><!-- End Top IMAX films showing -->
801
766
 
802
767
 
803
768
  <!-- Start Important information container -->
804
-
805
- <div class="row content all-over notification single blue">
806
- <div class="container">
807
- <div class="span12">
808
- <h3>Important Information</h3>
809
- <p>A message from BFI IMAX Manager - Tim Waters</p>
810
- </div>
811
- </div>
812
- </div>
813
- <div class="row content all-over notification single white">
814
- <div class="container">
815
- <div class="span12">
816
- <p>In order to ensure the BFI IMAX remains the best film experience in London, the cinema will be closed for just under 3 weeks from 8th to 26th September whilst we conduct some improvement works to the
817
- auditorium. The ground floor including Costa Coffee, Bar and Yog will remain open throughout this period.</p> </div>
818
- </div>
819
- </div>
820
769
  <!-- End Important information container -->
821
770
 
822
771
  <!-- Start cinema title conatiner -->
@@ -866,7 +815,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
866
815
  </div>
867
816
  <div class="span4">
868
817
  <div class="imageComponent comp centered-img">
869
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/bfi-imax-odeon.jpg" alt="BFI - IMAX - ODEON">
818
+ <img src="http://m2.odeon.co.uk/_uploads/cached/static/img/bfi-imax-odeon.jpg" alt="BFI - IMAX - ODEON">
870
819
  </div>
871
820
  </div>
872
821
  </div>
@@ -910,44 +859,44 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
910
859
  <div class="tab-pane dayview " id="ind-day" role="tabpanel">
911
860
  <ul class="nav nav-tabs arrow" role="tablist">
912
861
  <li class="tab-icon-arrow active" role="tab">
913
- <a href="#DAY1" onclick="getShowtimes('DAY1', '2014-09-18', '211', 'DAY', 1)" data-toggle="tab">
914
- <strong>Today</strong><br />18 Sep </a>
862
+ <a href="#DAY1" onclick="getShowtimes('DAY1', '2015-03-14', '211', 'DAY', 1)" data-toggle="tab">
863
+ <strong>Today</strong><br />14 Mar </a>
915
864
  </li>
916
865
  <li class="tab-icon-arrow " role="tab">
917
- <a href="#DAY2" onclick="getShowtimes('DAY2', '2014-09-19', '211', 'DAY', 1)" data-toggle="tab">
918
- <strong>Fri</strong><br />19 Sep </a>
866
+ <a href="#DAY2" onclick="getShowtimes('DAY2', '2015-03-15', '211', 'DAY', 1)" data-toggle="tab">
867
+ <strong>Sun</strong><br />15 Mar </a>
919
868
  </li>
920
869
  <li class="tab-icon-arrow " role="tab">
921
- <a href="#DAY3" onclick="getShowtimes('DAY3', '2014-09-20', '211', 'DAY', 1)" data-toggle="tab">
922
- <strong>Sat</strong><br />20 Sep </a>
870
+ <a href="#DAY3" onclick="getShowtimes('DAY3', '2015-03-16', '211', 'DAY', 1)" data-toggle="tab">
871
+ <strong>Mon</strong><br />16 Mar </a>
923
872
  </li>
924
873
  <li class="tab-icon-arrow " role="tab">
925
- <a href="#DAY4" onclick="getShowtimes('DAY4', '2014-09-21', '211', 'DAY', 1)" data-toggle="tab">
926
- <strong>Sun</strong><br />21 Sep </a>
874
+ <a href="#DAY4" onclick="getShowtimes('DAY4', '2015-03-17', '211', 'DAY', 1)" data-toggle="tab">
875
+ <strong>Tue</strong><br />17 Mar </a>
927
876
  </li>
928
877
  <li class="tab-icon-arrow " role="tab">
929
- <a href="#DAY5" onclick="getShowtimes('DAY5', '2014-09-22', '211', 'DAY', 1)" data-toggle="tab">
930
- <strong>Mon</strong><br />22 Sep </a>
878
+ <a href="#DAY5" onclick="getShowtimes('DAY5', '2015-03-18', '211', 'DAY', 1)" data-toggle="tab">
879
+ <strong>Wed</strong><br />18 Mar </a>
931
880
  </li>
932
881
  <li class="tab-icon-arrow " role="tab">
933
- <a href="#DAY6" onclick="getShowtimes('DAY6', '2014-09-23', '211', 'DAY', 1)" data-toggle="tab">
934
- <strong>Tue</strong><br />23 Sep </a>
882
+ <a href="#DAY6" onclick="getShowtimes('DAY6', '2015-03-19', '211', 'DAY', 1)" data-toggle="tab">
883
+ <strong>Thu</strong><br />19 Mar </a>
935
884
  </li>
936
885
  <li class="tab-icon-arrow " role="tab">
937
- <a href="#DAY7" onclick="getShowtimes('DAY7', '2014-09-24', '211', 'DAY', 1)" data-toggle="tab">
938
- <strong>Wed</strong><br />24 Sep </a>
886
+ <a href="#DAY7" onclick="getShowtimes('DAY7', '2015-03-20', '211', 'DAY', 1)" data-toggle="tab">
887
+ <strong>Fri</strong><br />20 Mar </a>
939
888
  </li>
940
889
  <li class="tab-icon-arrow " role="tab">
941
- <a href="#DAY8" onclick="getShowtimes('DAY8', '2014-09-25', '211', 'DAY', 1)" data-toggle="tab">
942
- <strong>Thu</strong><br />25 Sep </a>
890
+ <a href="#DAY8" onclick="getShowtimes('DAY8', '2015-03-21', '211', 'DAY', 1)" data-toggle="tab">
891
+ <strong>Sat</strong><br />21 Mar </a>
943
892
  </li>
944
893
  <li class="tab-icon-arrow " role="tab">
945
- <a href="#DAY9" onclick="getShowtimes('DAY9', '2014-09-26', '211', 'DAY', 1)" data-toggle="tab">
946
- <strong>Fri</strong><br />26 Sep </a>
894
+ <a href="#DAY9" onclick="getShowtimes('DAY9', '2015-03-22', '211', 'DAY', 1)" data-toggle="tab">
895
+ <strong>Sun</strong><br />22 Mar </a>
947
896
  </li>
948
897
  <li class="tab-icon-arrow " role="tab">
949
- <a href="#DAY10" onclick="getShowtimes('DAY10', '2014-09-27', '211', 'DAY', 1)" data-toggle="tab">
950
- <strong>Sat</strong><br />27 Sep </a>
898
+ <a href="#DAY10" onclick="getShowtimes('DAY10', '2015-03-23', '211', 'DAY', 1)" data-toggle="tab">
899
+ <strong>Mon</strong><br />23 Mar </a>
951
900
  </li>
952
901
  </ul>
953
902
  <div class="tab-content">
@@ -971,9 +920,9 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
971
920
  <section id="ind-film-list">
972
921
  <div class="content-container text">
973
922
  <h4>Listings from:</h4>
974
- <h4>Thu 18 Sep 2014 to Wed 01 Oct 2014</h4>
923
+ <h4>Sat 14 Mar 2015 to Fri 27 Mar 2015</h4>
975
924
  <span>
976
- Showtimes for Today until <b>Thursday 25th September</b> are listed below. Further showtimes will be confirmed and added in the afternoon on Tuesday <b>23rd September</b>.
925
+ Showtimes for Today until <b>Thursday 19th March</b> are listed below. Further showtimes will be confirmed and added in the afternoon on Tuesday <b>17th March</b>.
977
926
  </span>
978
927
  </div>
979
928
  <form class="film-order">
@@ -993,59 +942,240 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
993
942
  </div>
994
943
  <section id="ind-film-list-WEEK">
995
944
 
996
- <div id="25321" class="film-detail WEEK">
945
+ <div id="26589" class="film-detail WEEK">
997
946
 
998
- <div class="content-container film _WEEK" id="film-25321">
947
+ <div class="content-container film _WEEK" id="film-26589">
999
948
  <div class="grad-hor">
1000
- <a href="/films/billy_elliot_the_musical_live/15294/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_fa648261d0542715f4c9d3526e12d16e.jpg" /></a>
949
+ <a href="/films/chappie/15179/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_c4dd5497552fa794d917efd3bf28a115.jpg" /></a>
1001
950
  <div class="presentation-info">
1002
- <h4><a href="/films/billy_elliot_the_musical_live/15294/">Billy Elliot The Musical Live</a></h4>
1003
- <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> <span class="description">
951
+ <h4><a href="/films/chappie/15179/">Chappie</a></h4>
952
+ <a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
953
+ ID may be required </span>
954
+ </div>
955
+ <p><strong>Sci-fi about the first artificially intelligent robot. </strong></p>
956
+
957
+ <div class="presentation-info">
958
+ <div data-rating-master-id='15179' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
959
+ <div class="rating-icon-star-small-active s7" data-rating="7">
960
+ <div class="rate-over s1"></div>
961
+ <div class="rate-over s2"></div>
962
+ <div class="rate-over s3"></div>
963
+ <div class="rate-over s4"></div>
964
+ <div class="rate-over s5"></div>
965
+ </div>
966
+ </div>
967
+ <span class="description"><strong>Film length: 120 mins</strong></span>
968
+ </div>
969
+ <p class="description">Strong language, bloody violence.</p>
970
+ </div>
971
+ <div class="info-corner">
972
+ <div class="img-bundle">
973
+ <div class="film-icon-WEEK feature-icon-light-imax-medium WEEK_IMAX" data-schedule="IMAX" data-film="26589"></div> </div>
974
+ <div class="btn-group">
975
+ <a href="http://odeon.trailer.cineweb.de/chappie.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15179" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
976
+ <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
977
+ <span class="caret"></span>
978
+ </button>
979
+ <ul class="dropdown-menu">
980
+ <li><a href="#">Add to Playlist</a></li>
981
+ </ul>
982
+ </div> </div>
983
+ </div>
984
+ <div id="performances-WEEK-26589" class="content-container times-all _WEEK">
985
+ <div class="accordion-group times-all performances-WEEK _26589" id="tech-26589-0">
986
+ <div class="content-container tech accordion-heading _WEEK">
987
+ <a data-toggle="collapse" data-parent="#tech-26589-0-WEEK" class="accordion-toggle" href="#collapse-26589-0-WEEK">in IMAX</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. IMAX is believing."></a>
988
+ </div>
989
+ <div id="collapse-26589-0-WEEK" class="accordion-body in collapse" style="height: auto;">
990
+ <div class="accordion-inner">
991
+
992
+ <div class="content-container times containerWEEK">
993
+ <div class="presentation-info week"><strong>Saturday</strong><br>14 Mar</div>
994
+ <ul class="unstyled inline">
995
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/Qzk1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 10:30" data-popup="popup" data-duration="120" data-start="10:30" data-end="12:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTk1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 21:00" data-popup="popup" data-duration="120" data-start="21:00" data-end="23:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
996
+ </div>
997
+
998
+ <div class="content-container times containerWEEK">
999
+ <div class="presentation-info week"><strong>Sunday</strong><br>15 Mar</div>
1000
+ <ul class="unstyled inline">
1001
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/Rjk1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 12:00" data-popup="popup" data-duration="120" data-start="12:00" data-end="14:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MUE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 14:45" data-popup="popup" data-duration="120" data-start="14:45" data-end="16:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MkE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 21:00" data-popup="popup" data-duration="120" data-start="21:00" data-end="23:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1002
+ </div>
1003
+
1004
+ <div class="content-container times containerWEEK">
1005
+ <div class="presentation-info week"><strong>Monday</strong><br>16 Mar</div>
1006
+ <ul class="unstyled inline">
1007
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/M0E1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 16/03/2015 17:30" data-popup="popup" data-duration="120" data-start="17:30" data-end="19:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">17:30</a></li> </ul>
1008
+ </div>
1009
+
1010
+ <div class="content-container times containerWEEK">
1011
+ <div class="presentation-info week"><strong>Tuesday</strong><br>17 Mar</div>
1012
+ <ul class="unstyled inline">
1013
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NUE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 17/03/2015 14:45" data-popup="popup" data-duration="120" data-start="14:45" data-end="16:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/N0E1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 17/03/2015 21:00" data-popup="popup" data-duration="120" data-start="21:00" data-end="23:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1014
+ </div>
1015
+
1016
+ <div class="content-container times containerWEEK">
1017
+ <div class="presentation-info week"><strong>Wednesday</strong><br>18 Mar</div>
1018
+ <ul class="unstyled inline">
1019
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OEE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 12:00" data-popup="popup" data-duration="120" data-start="12:00" data-end="14:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QUE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3OQ==/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 20:45" data-popup="popup" data-duration="120" data-start="20:45" data-end="22:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:45</a></li> </ul>
1020
+ </div>
1021
+
1022
+ <div class="content-container times stopper performances-WEEK _26589"></div>
1023
+ </div>
1024
+ </div>
1025
+ </div>
1026
+
1027
+ <!-- <div class="content-container times stopper performances-WEEK _26589"></div>-->
1028
+ <div class="content-container white performances-WEEK _26589"></div>
1029
+ </div>
1030
+ </div>
1031
+
1032
+ <div id="19939" class="film-detail WEEK">
1033
+
1034
+ <div class="content-container film _WEEK" id="film-19939">
1035
+ <div class="grad-hor">
1036
+ <a href="/films/hubble/13530/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_855ce9b2e8c5adc6e980a9a382b1b5ab.jpg" /></a>
1037
+ <div class="presentation-info">
1038
+ <h4><a href="/films/hubble/13530/">Hubble</a></h4>
1039
+ <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
1004
1040
  </span>
1005
1041
  </div>
1006
- <p><strong>Live from London's West End this special performance brings multi award-winning Billy Elliot the Musical to cinemas for the first time.</strong></p>
1042
+ <p><strong>Experience the gripping strory - full of hope, crushing disappointment, dazzling ingenuity, bravery and triumph - in 'Hubble 3D', the seventh awe-inspiring film from the award-winning IMAX Space Team.</strong></p>
1007
1043
 
1008
1044
  <div class="presentation-info">
1009
- <div data-rating-master-id='15294' data-return-to='/cinemas/odeon/211/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
1010
- <div class="rating-icon-buzz-small-active s4" data-rating="4">
1045
+ <div data-rating-master-id='13530' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1046
+ <div class="rating-icon-star-small-active s9" data-rating="9">
1011
1047
  <div class="rate-over s1"></div>
1012
1048
  <div class="rate-over s2"></div>
1013
1049
  <div class="rate-over s3"></div>
1014
1050
  <div class="rate-over s4"></div>
1015
1051
  <div class="rate-over s5"></div>
1016
1052
  </div>
1017
- <i class="rating-icon-buzz-small-icon"></i>
1018
1053
  </div>
1019
- <span class="description"><strong>Film length: 195 mins</strong></span>
1054
+ <span class="description"><strong>Film length: 44 mins</strong></span>
1020
1055
  </div>
1021
- <p class="description"></p>
1056
+ <p class="description">Contains no material likely to offend or harm</p>
1022
1057
  </div>
1023
1058
  <div class="info-corner">
1024
1059
  <div class="img-bundle">
1025
- <div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25321"></div> </div>
1060
+ <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="19939"></div> </div>
1061
+ <div class="btn-group">
1062
+ <a href="http://odeon.trailer.cineweb.de/hubble_3D.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="13530" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
1063
+ <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
1064
+ <span class="caret"></span>
1065
+ </button>
1066
+ <ul class="dropdown-menu">
1067
+ <li><a href="#">Add to Playlist</a></li>
1068
+ </ul>
1069
+ </div> </div>
1070
+ </div>
1071
+ <div id="performances-WEEK-19939" class="content-container times-all _WEEK">
1072
+ <div class="accordion-group times-all performances-WEEK _19939" id="tech-19939-0">
1073
+ <div class="content-container tech accordion-heading _WEEK">
1074
+ <a data-toggle="collapse" data-parent="#tech-19939-0-WEEK" class="accordion-toggle" href="#collapse-19939-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
1075
+ </div>
1076
+ <div id="collapse-19939-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1077
+ <div class="accordion-inner">
1078
+
1079
+ <div class="content-container times containerWEEK">
1080
+ <div class="presentation-info week"><strong>Saturday</strong><br>21 Mar</div>
1081
+ <ul class="unstyled inline">
1082
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D show"><a href="https://www.odeon.co.uk/booking/init/NjQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxMzUzMA==/" class="performance-detail" title="Special Screening - book Hubble on 21/03/2015 11:45" data-popup="popup" data-duration="44" data-start="11:45" data-end="12:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:45</a></li> </ul>
1083
+ </div>
1084
+
1085
+ <div class="content-container times stopper performances-WEEK _19939"></div>
1086
+ </div>
1087
+ </div>
1026
1088
  </div>
1089
+
1090
+ <!-- <div class="content-container times stopper performances-WEEK _19939"></div>-->
1091
+ <div class="content-container white performances-WEEK _19939"></div>
1092
+ </div>
1093
+ </div>
1094
+
1095
+ <div id="25609" class="film-detail WEEK">
1096
+
1097
+ <div class="content-container film _WEEK" id="film-25609">
1098
+ <div class="grad-hor">
1099
+ <a href="/films/interstellar/15172/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_20faed1ce0e4dd361cb2908a23f6fdca.jpg" /></a>
1100
+ <div class="presentation-info">
1101
+ <h4><a href="/films/interstellar/15172/">Interstellar</a></h4>
1102
+ <a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
1103
+ </span>
1104
+ </div>
1105
+ <p><strong>Christopher Nolan's hotly anticipated sci-fi blockbuster.</strong></p>
1106
+
1107
+ <div class="presentation-info">
1108
+ <div data-rating-master-id='15172' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1109
+ <div class="rating-icon-star-small-active s8" data-rating="8">
1110
+ <div class="rate-over s1"></div>
1111
+ <div class="rate-over s2"></div>
1112
+ <div class="rate-over s3"></div>
1113
+ <div class="rate-over s4"></div>
1114
+ <div class="rate-over s5"></div>
1115
+ </div>
1116
+ </div>
1117
+ <span class="description"><strong>Film length: 166 mins</strong></span>
1118
+ </div>
1119
+ <p class="description">Infrequent strong language, moderate threat, violence</p>
1120
+ </div>
1121
+ <div class="info-corner">
1122
+ <div class="img-bundle">
1123
+ <div class="film-icon-WEEK feature-icon-light-imax-medium WEEK_IMAX" data-schedule="IMAX" data-film="25609"></div> </div>
1124
+ <div class="btn-group">
1125
+ <a href="http://odeon.trailer.cineweb.de/interstellar.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15172" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
1126
+ <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
1127
+ <span class="caret"></span>
1128
+ </button>
1129
+ <ul class="dropdown-menu">
1130
+ <li><a href="#">Add to Playlist</a></li>
1131
+ </ul>
1132
+ </div> </div>
1027
1133
  </div>
1028
- <div id="performances-WEEK-25321" class="content-container times-all _WEEK">
1029
- <div class="accordion-group times-all performances-WEEK _25321" id="tech-25321-0">
1134
+ <div id="performances-WEEK-25609" class="content-container times-all _WEEK">
1135
+ <div class="accordion-group times-all performances-WEEK _25609" id="tech-25609-0">
1030
1136
  <div class="content-container tech accordion-heading _WEEK">
1031
- <a data-toggle="collapse" data-parent="#tech-25321-0-WEEK" class="accordion-toggle" href="#collapse-25321-0-WEEK">in 2D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
1137
+ <a data-toggle="collapse" data-parent="#tech-25609-0-WEEK" class="accordion-toggle" href="#collapse-25609-0-WEEK">in IMAX</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. IMAX is believing."></a>
1032
1138
  </div>
1033
- <div id="collapse-25321-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1139
+ <div id="collapse-25609-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1034
1140
  <div class="accordion-inner">
1035
1141
 
1036
1142
  <div class="content-container times containerWEEK">
1037
- <div class="presentation-info week"><strong>Sunday</strong><br>28 Sep</div>
1143
+ <div class="presentation-info week"><strong>Saturday</strong><br>14 Mar</div>
1144
+ <ul class="unstyled inline">
1145
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RDk1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3Mg==/" class="performance-detail" title="Peak - book Interstellar on 14/03/2015 13:00" data-popup="popup" data-duration="166" data-start="13:00" data-end="15:46" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li> </ul>
1146
+ </div>
1147
+
1148
+ <div class="content-container times containerWEEK">
1149
+ <div class="presentation-info week"><strong>Sunday</strong><br>15 Mar</div>
1150
+ <ul class="unstyled inline">
1151
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MEE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3Mg==/" class="performance-detail" title="Peak - book Interstellar on 15/03/2015 17:30" data-popup="popup" data-duration="166" data-start="17:30" data-end="20:16" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">17:30</a></li> </ul>
1152
+ </div>
1153
+
1154
+ <div class="content-container times containerWEEK">
1155
+ <div class="presentation-info week"><strong>Monday</strong><br>16 Mar</div>
1038
1156
  <ul class="unstyled inline">
1039
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_ODEONPLUSMUSIC WEEK_ODEONPLUSCULTURE WEEK_2D WEEK_GENRE_19 show"><a href="https://www.odeon.co.uk/booking/init/NDkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTI5NA==/" class="performance-detail" title="Peak - book Billy Elliot The Musical Live on 28/09/2014 13:45" data-popup="popup" data-duration="195" data-start="13:45" data-end="17:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
1157
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NEE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3Mg==/" class="performance-detail" title="Peak - book Interstellar on 16/03/2015 20:15" data-popup="popup" data-duration="166" data-start="20:15" data-end="23:01" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
1040
1158
  </div>
1041
1159
 
1042
- <div class="content-container times stopper performances-WEEK _25321"></div>
1160
+ <div class="content-container times containerWEEK">
1161
+ <div class="presentation-info week"><strong>Tuesday</strong><br>17 Mar</div>
1162
+ <ul class="unstyled inline">
1163
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_IMAX WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NkE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3Mg==/" class="performance-detail" title="Peak - book Interstellar on 17/03/2015 17:30" data-popup="popup" data-duration="166" data-start="17:30" data-end="20:16" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">17:30</a></li> </ul>
1164
+ </div>
1165
+
1166
+ <div class="content-container times containerWEEK">
1167
+ <div class="presentation-info week"><strong>Wednesday</strong><br>18 Mar</div>
1168
+ <ul class="unstyled inline">
1169
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTE3Mg==/" class="performance-detail" title="Peak - book Interstellar on 18/03/2015 14:45" data-popup="popup" data-duration="166" data-start="14:45" data-end="17:31" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:45</a></li> </ul>
1170
+ </div>
1171
+
1172
+ <div class="content-container times stopper performances-WEEK _25609"></div>
1043
1173
  </div>
1044
1174
  </div>
1045
1175
  </div>
1046
1176
 
1047
- <!-- <div class="content-container times stopper performances-WEEK _25321"></div>-->
1048
- <div class="content-container white performances-WEEK _25321"></div>
1177
+ <!-- <div class="content-container times stopper performances-WEEK _25609"></div>-->
1178
+ <div class="content-container white performances-WEEK _25609"></div>
1049
1179
  </div>
1050
1180
  </div>
1051
1181
 
@@ -1053,7 +1183,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1053
1183
 
1054
1184
  <div class="content-container film _WEEK" id="film-25495">
1055
1185
  <div class="grad-hor">
1056
- <a href="/films/island_of_lemurs_madagascar/15344/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_924d15974e55b4fc8bac0566ee48e833.jpg" /></a>
1186
+ <a href="/films/island_of_lemurs_madagascar/15344/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_924d15974e55b4fc8bac0566ee48e833.jpg" /></a>
1057
1187
  <div class="presentation-info">
1058
1188
  <h4><a href="/films/island_of_lemurs_madagascar/15344/">Island Of Lemurs: Madagascar</a></h4>
1059
1189
  <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
@@ -1063,7 +1193,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1063
1193
 
1064
1194
  <div class="presentation-info">
1065
1195
  <div data-rating-master-id='15344' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1066
- <div class="rating-icon-star-small-active s10" data-rating="10">
1196
+ <div class="rating-icon-star-small-active s8" data-rating="8">
1067
1197
  <div class="rate-over s1"></div>
1068
1198
  <div class="rate-over s2"></div>
1069
1199
  <div class="rate-over s3"></div>
@@ -1089,27 +1219,15 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1089
1219
  <div class="accordion-inner">
1090
1220
 
1091
1221
  <div class="content-container times containerWEEK">
1092
- <div class="presentation-info week"><strong>Saturday</strong><br>27 Sep</div>
1093
- <ul class="unstyled inline">
1094
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/QzgxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 27/09/2014 10:15" data-popup="popup" data-duration="39" data-start="10:15" data-end="10:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:15</a></li> </ul>
1095
- </div>
1096
-
1097
- <div class="content-container times containerWEEK">
1098
- <div class="presentation-info week"><strong>Monday</strong><br>29 Sep</div>
1099
- <ul class="unstyled inline">
1100
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/NUExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 29/09/2014 10:30" data-popup="popup" data-duration="39" data-start="10:30" data-end="11:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1101
- </div>
1102
-
1103
- <div class="content-container times containerWEEK">
1104
- <div class="presentation-info week"><strong>Tuesday</strong><br>30 Sep</div>
1222
+ <div class="presentation-info week"><strong>Sunday</strong><br>15 Mar</div>
1105
1223
  <ul class="unstyled inline">
1106
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/OEExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 30/09/2014 13:15" data-popup="popup" data-duration="39" data-start="13:15" data-end="13:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:15</a></li> </ul>
1224
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/RkE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 15/03/2015 11:00" data-popup="popup" data-duration="39" data-start="11:00" data-end="11:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:00</a></li> </ul>
1107
1225
  </div>
1108
1226
 
1109
1227
  <div class="content-container times containerWEEK">
1110
- <div class="presentation-info week"><strong>Wednesday</strong><br>01 Oct</div>
1228
+ <div class="presentation-info week"><strong>Thursday</strong><br>26 Mar</div>
1111
1229
  <ul class="unstyled inline">
1112
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/NkExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 01/10/2014 10:30" data-popup="popup" data-duration="39" data-start="10:30" data-end="11:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1230
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/OTQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM0NA==/" class="performance-detail" title="Special Screening - book Island Of Lemurs: Madagascar on 26/03/2015 10:30" data-popup="popup" data-duration="39" data-start="10:30" data-end="11:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1113
1231
  </div>
1114
1232
 
1115
1233
  <div class="content-container times stopper performances-WEEK _25495"></div>
@@ -1126,9 +1244,9 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1126
1244
 
1127
1245
  <div class="content-container film _WEEK" id="film-24468">
1128
1246
  <div class="grad-hor">
1129
- <a href="/films/jerusalem_3d/15017/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_114328a1df489e65650ae052a15d6a96.jpg" /></a>
1247
+ <a href="/films/jerusalem/15017/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_114328a1df489e65650ae052a15d6a96.jpg" /></a>
1130
1248
  <div class="presentation-info">
1131
- <h4><a href="/films/jerusalem_3d/15017/">Jerusalem 3D</a></h4>
1249
+ <h4><a href="/films/jerusalem/15017/">Jerusalem</a></h4>
1132
1250
  <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
1133
1251
  </span>
1134
1252
  </div>
@@ -1152,7 +1270,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1152
1270
  <div class="img-bundle">
1153
1271
  <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="24468"></div> </div>
1154
1272
  <div class="btn-group">
1155
- <a href="http://odeon.trailer.cineweb.de/jerusalem.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15017" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
1273
+ <a href="http://odeon.trailer.cineweb.de/jerusalem.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15017" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
1156
1274
  <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
1157
1275
  <span class="caret"></span>
1158
1276
  </button>
@@ -1170,9 +1288,9 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1170
1288
  <div class="accordion-inner">
1171
1289
 
1172
1290
  <div class="content-container times containerWEEK">
1173
- <div class="presentation-info week"><strong>Tuesday</strong><br>30 Sep</div>
1291
+ <div class="presentation-info week"><strong>Saturday</strong><br>21 Mar</div>
1174
1292
  <ul class="unstyled inline">
1175
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/OUExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTAxNw==/" class="performance-detail" title="Special Screening - book Jerusalem 3D on 30/09/2014 10:30" data-popup="popup" data-duration="40" data-start="10:30" data-end="11:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1293
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/NTQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTAxNw==/" class="performance-detail" title="Special Screening - book Jerusalem on 21/03/2015 10:30" data-popup="popup" data-duration="40" data-start="10:30" data-end="11:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1176
1294
  </div>
1177
1295
 
1178
1296
  <div class="content-container times stopper performances-WEEK _24468"></div>
@@ -1185,20 +1303,136 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1185
1303
  </div>
1186
1304
  </div>
1187
1305
 
1188
- <div id="25557" class="film-detail WEEK">
1306
+ <div id="24987" class="film-detail WEEK">
1189
1307
 
1190
- <div class="content-container film _WEEK" id="film-25557">
1308
+ <div class="content-container film _WEEK" id="film-24987">
1191
1309
  <div class="grad-hor">
1192
- <a href="/films/the_equalizer/15203/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_d713bb3e069f2aa5b652c5a370130630.jpg" /></a>
1310
+ <a href="/films/met_opera_la_donna_del_lago_live_2015/15158/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_888c70be43d1896b03b4ec15787c4162.jpg" /></a>
1193
1311
  <div class="presentation-info">
1194
- <h4><a href="/films/the_equalizer/15203/">The Equalizer</a></h4>
1195
- <a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
1196
- ID may be required </span>
1312
+ <h4><a href="/films/met_opera_la_donna_del_lago_live_2015/15158/">MET Opera - La Donna Del Lago (Live) 2015</a></h4>
1313
+ <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> <span class="description">
1314
+ </span>
1315
+ </div>
1316
+ <p><strong>Bel canto superstars Joyce DiDonato and Juan Diego Flórez join forces for this Rossini showcase of vocal virtuosity, set in the medieval Scottish highlands and based on a beloved novel by Sir Walter Scott.</strong></p>
1317
+
1318
+ <div class="presentation-info">
1319
+ <div data-rating-master-id='15158' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1320
+ <div class="rating-icon-star-small-active s0" data-rating="0">
1321
+ <div class="rate-over s1"></div>
1322
+ <div class="rate-over s2"></div>
1323
+ <div class="rate-over s3"></div>
1324
+ <div class="rate-over s4"></div>
1325
+ <div class="rate-over s5"></div>
1326
+ </div>
1327
+ </div>
1328
+ <span class="description"><strong>Film length: 210 mins</strong></span>
1329
+ </div>
1330
+ <p class="description"></p>
1331
+ </div>
1332
+ <div class="info-corner">
1333
+ <div class="img-bundle">
1334
+ <div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="24987"></div> </div>
1335
+ </div>
1336
+ </div>
1337
+ <div id="performances-WEEK-24987" class="content-container times-all _WEEK">
1338
+ <div class="accordion-group times-all performances-WEEK _24987" id="tech-24987-0">
1339
+ <div class="content-container tech accordion-heading _WEEK">
1340
+ <a data-toggle="collapse" data-parent="#tech-24987-0-WEEK" class="accordion-toggle" href="#collapse-24987-0-WEEK">in 2D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
1341
+ </div>
1342
+ <div id="collapse-24987-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1343
+ <div class="accordion-inner">
1344
+
1345
+ <div class="content-container times containerWEEK">
1346
+ <div class="presentation-info week"><strong>Saturday</strong><br>14 Mar</div>
1347
+ <ul class="unstyled inline">
1348
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_TBC WEEK_AFTERNOON WEEK_ODEONPLUSCULTURE WEEK_FREELISTSUSPENDED WEEK_2D show"><a href="https://www.odeon.co.uk/booking/init/NEVGMDAwMDAwMjNXWEFaTUxCIzIxMSMxNTE1OA==/" class="performance-detail" title="Special Screening - book MET Opera - La Donna Del Lago (Live) 2015 on 14/03/2015 16:55" data-popup="popup" data-duration="210" data-start="16:55" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:55</a></li> </ul>
1349
+ </div>
1350
+
1351
+ <div class="content-container times stopper performances-WEEK _24987"></div>
1352
+ </div>
1353
+ </div>
1354
+ </div>
1355
+
1356
+ <!-- <div class="content-container times stopper performances-WEEK _24987"></div>-->
1357
+ <div class="content-container white performances-WEEK _24987"></div>
1358
+ </div>
1359
+ </div>
1360
+
1361
+ <div id="14467" class="film-detail WEEK">
1362
+
1363
+ <div class="content-container film _WEEK" id="film-14467">
1364
+ <div class="grad-hor">
1365
+ <a href="/films/space_station/11893/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_a37c1371b1fd39a3475416e6785815ac.jpg" /></a>
1366
+ <div class="presentation-info">
1367
+ <h4><a href="/films/space_station/11893/">Space Station</a></h4>
1368
+ <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
1369
+ </span>
1370
+ </div>
1371
+ <p><strong>As astoundingly beautiful as it is technically dazzling, 'Space Station 3D' is the first-ever IMAX 3D space film. Audiences will travel 220 miles above Earth at 17,500 mph to experience 'Space Station 3D' - the greatest engineering feat since landing a man on the Moon.</strong></p>
1372
+
1373
+ <div class="presentation-info">
1374
+ <div data-rating-master-id='11893' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1375
+ <div class="rating-icon-star-small-active s9" data-rating="9">
1376
+ <div class="rate-over s1"></div>
1377
+ <div class="rate-over s2"></div>
1378
+ <div class="rate-over s3"></div>
1379
+ <div class="rate-over s4"></div>
1380
+ <div class="rate-over s5"></div>
1381
+ </div>
1382
+ </div>
1383
+ <span class="description"><strong>Film length: 47 mins</strong></span>
1384
+ </div>
1385
+ <p class="description">Contains powerful launch sequences</p>
1386
+ </div>
1387
+ <div class="info-corner">
1388
+ <div class="img-bundle">
1389
+ <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="14467"></div> </div>
1390
+ </div>
1391
+ </div>
1392
+ <div id="performances-WEEK-14467" class="content-container times-all _WEEK">
1393
+ <div class="accordion-group times-all performances-WEEK _14467" id="tech-14467-0">
1394
+ <div class="content-container tech accordion-heading _WEEK">
1395
+ <a data-toggle="collapse" data-parent="#tech-14467-0-WEEK" class="accordion-toggle" href="#collapse-14467-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
1396
+ </div>
1397
+ <div id="collapse-14467-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1398
+ <div class="accordion-inner">
1399
+
1400
+ <div class="content-container times containerWEEK">
1401
+ <div class="presentation-info week"><strong>Monday</strong><br>23 Mar</div>
1402
+ <ul class="unstyled inline">
1403
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/NzQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxMTg5Mw==/" class="performance-detail" title="Special Screening - book Space Station on 23/03/2015 11:45" data-popup="popup" data-duration="47" data-start="11:45" data-end="12:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:45</a></li> </ul>
1404
+ </div>
1405
+
1406
+ <div class="content-container times containerWEEK">
1407
+ <div class="presentation-info week"><strong>Wednesday</strong><br>25 Mar</div>
1408
+ <ul class="unstyled inline">
1409
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 show"><a href="https://www.odeon.co.uk/booking/init/ODI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxMTg5Mw==/" class="performance-detail" title="Special Screening - book Space Station on 25/03/2015 11:45" data-popup="popup" data-duration="47" data-start="11:45" data-end="12:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:45</a></li> </ul>
1410
+ </div>
1411
+
1412
+ <div class="content-container times stopper performances-WEEK _14467"></div>
1413
+ </div>
1414
+ </div>
1415
+ </div>
1416
+
1417
+ <!-- <div class="content-container times stopper performances-WEEK _14467"></div>-->
1418
+ <div class="content-container white performances-WEEK _14467"></div>
1419
+ </div>
1420
+ </div>
1421
+
1422
+ <div id="26679" class="film-detail WEEK">
1423
+
1424
+ <div class="content-container film _WEEK" id="film-26679">
1425
+ <div class="grad-hor">
1426
+ <a href="/films/the_divergent_series_insurgent/15360/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_52cf0bc4b06b18a9ae739df6401995ea.jpg" /></a>
1427
+ <div class="presentation-info">
1428
+ <h4><a href="/films/the_divergent_series_insurgent/15360/">The Divergent Series: Insurgent</a></h4>
1429
+ <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a> <span class="description">
1430
+ </span>
1197
1431
  </div>
1198
- <p><strong>Denzel Washington-led action thriller about an ex-secret agent.</strong></p>
1432
+ <p><strong>The anticipated second instalment of the 'Divergent' franchise. </strong></p>
1199
1433
 
1200
1434
  <div class="presentation-info">
1201
- <div data-rating-master-id='15203' data-return-to='/cinemas/odeon/211/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
1435
+ <div data-rating-master-id='15360' data-return-to='/cinemas/odeon/211/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
1202
1436
  <div class="rating-icon-buzz-small-active s4" data-rating="4">
1203
1437
  <div class="rate-over s1"></div>
1204
1438
  <div class="rate-over s2"></div>
@@ -1208,15 +1442,15 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1208
1442
  </div>
1209
1443
  <i class="rating-icon-buzz-small-icon"></i>
1210
1444
  </div>
1211
- <span class="description"><strong>Film length: 132 mins</strong></span>
1445
+ <span class="description"><strong>Film length: 0 mins</strong></span>
1212
1446
  </div>
1213
- <p class="description">Strong bloody violence, sex references, strong language.</p>
1447
+ <p class="description"></p>
1214
1448
  </div>
1215
1449
  <div class="info-corner">
1216
1450
  <div class="img-bundle">
1217
- <div class="film-icon-WEEK feature-icon-light-imax-medium WEEK_IMAX" data-schedule="IMAX" data-film="25557"></div> </div>
1451
+ <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="26679"></div> </div>
1218
1452
  <div class="btn-group">
1219
- <a href="http://odeon.trailer.cineweb.de/the_equalizer.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15203" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
1453
+ <a href="http://odeon.trailer.cineweb.de/insurgent1.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/211/' data-film-id="15360" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
1220
1454
  <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
1221
1455
  <span class="caret"></span>
1222
1456
  </button>
@@ -1225,57 +1459,124 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1225
1459
  </ul>
1226
1460
  </div> </div>
1227
1461
  </div>
1228
- <div id="performances-WEEK-25557" class="content-container times-all _WEEK">
1229
- <div class="accordion-group times-all performances-WEEK _25557" id="tech-25557-0">
1462
+ <div id="performances-WEEK-26679" class="content-container times-all _WEEK">
1463
+ <div class="accordion-group times-all performances-WEEK _26679" id="tech-26679-0">
1230
1464
  <div class="content-container tech accordion-heading _WEEK">
1231
- <a data-toggle="collapse" data-parent="#tech-25557-0-WEEK" class="accordion-toggle" href="#collapse-25557-0-WEEK">in IMAX</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. IMAX is believing."></a>
1465
+ <a data-toggle="collapse" data-parent="#tech-26679-0-WEEK" class="accordion-toggle" href="#collapse-26679-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
1232
1466
  </div>
1233
- <div id="collapse-25557-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1467
+ <div id="collapse-26679-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1234
1468
  <div class="accordion-inner">
1235
1469
 
1236
1470
  <div class="content-container times containerWEEK">
1237
- <div class="presentation-info week"><strong>Friday</strong><br>26 Sep</div>
1471
+ <div class="presentation-info week"><strong>Thursday</strong><br>19 Mar</div>
1472
+ <ul class="unstyled inline">
1473
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QkE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 19/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/Q0E1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 19/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/REE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 19/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RUE1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 19/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1474
+ </div>
1475
+
1476
+ <div class="content-container times containerWEEK">
1477
+ <div class="presentation-info week"><strong>Friday</strong><br>20 Mar</div>
1478
+ <ul class="unstyled inline">
1479
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/OTI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 20/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QTI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 20/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QjI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 20/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QzI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 20/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1480
+ </div>
1481
+
1482
+ <div class="content-container times containerWEEK">
1483
+ <div class="presentation-info week"><strong>Saturday</strong><br>21 Mar</div>
1238
1484
  <ul class="unstyled inline">
1239
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjgxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 26/09/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1485
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RDI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 21/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MzM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 21/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/OTM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 21/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RjM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 21/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1240
1486
  </div>
1241
1487
 
1242
1488
  <div class="content-container times containerWEEK">
1243
- <div class="presentation-info week"><strong>Saturday</strong><br>27 Sep</div>
1489
+ <div class="presentation-info week"><strong>Sunday</strong><br>22 Mar</div>
1244
1490
  <ul class="unstyled inline">
1245
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDgxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 27/09/2014 11:30" data-popup="popup" data-duration="132" data-start="11:30" data-end="13:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTgxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 27/09/2014 14:30" data-popup="popup" data-duration="132" data-start="14:30" data-end="16:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjgxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 27/09/2014 18:00" data-popup="popup" data-duration="132" data-start="18:00" data-end="20:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 27/09/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1491
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RTI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 22/03/2015 13:30" data-popup="popup" data-duration="0" data-start="13:30" data-end="13:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/NDM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 22/03/2015 16:15" data-popup="popup" data-duration="0" data-start="16:15" data-end="16:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QTM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 22/03/2015 19:00" data-popup="popup" data-duration="0" data-start="19:00" data-end="19:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">19:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MDQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 22/03/2015 21:30" data-popup="popup" data-duration="0" data-start="21:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:30</a></li> </ul>
1246
1492
  </div>
1247
1493
 
1248
1494
  <div class="content-container times containerWEEK">
1249
- <div class="presentation-info week"><strong>Sunday</strong><br>28 Sep</div>
1495
+ <div class="presentation-info week"><strong>Monday</strong><br>23 Mar</div>
1250
1496
  <ul class="unstyled inline">
1251
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 28/09/2014 10:30" data-popup="popup" data-duration="132" data-start="10:30" data-end="12:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 28/09/2014 18:00" data-popup="popup" data-duration="132" data-start="18:00" data-end="20:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MzkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 28/09/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1497
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RjI1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 23/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/NTM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 23/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MTQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 23/03/2015 21:45" data-popup="popup" data-duration="0" data-start="21:45" data-end="21:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:45</a></li> </ul>
1252
1498
  </div>
1253
1499
 
1254
1500
  <div class="content-container times containerWEEK">
1255
- <div class="presentation-info week"><strong>Monday</strong><br>29 Sep</div>
1501
+ <div class="presentation-info week"><strong>Tuesday</strong><br>24 Mar</div>
1256
1502
  <ul class="unstyled inline">
1257
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NTkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 29/09/2014 12:00" data-popup="popup" data-duration="132" data-start="12:00" data-end="14:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NjkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 29/09/2014 15:00" data-popup="popup" data-duration="132" data-start="15:00" data-end="17:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 29/09/2014 18:00" data-popup="popup" data-duration="132" data-start="18:00" data-end="20:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/ODkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 29/09/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1503
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/NjM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 24/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/QzM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 24/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MjQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 24/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1258
1504
  </div>
1259
1505
 
1260
1506
  <div class="content-container times containerWEEK">
1261
- <div class="presentation-info week"><strong>Tuesday</strong><br>30 Sep</div>
1507
+ <div class="presentation-info week"><strong>Wednesday</strong><br>25 Mar</div>
1262
1508
  <ul class="unstyled inline">
1263
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 30/09/2014 15:00" data-popup="popup" data-duration="132" data-start="15:00" data-end="17:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 30/09/2014 18:00" data-popup="popup" data-duration="132" data-start="18:00" data-end="20:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MkExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 30/09/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1509
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MTM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 25/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/NzM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 25/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RDM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 25/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MzQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 25/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1264
1510
  </div>
1265
1511
 
1266
1512
  <div class="content-container times containerWEEK">
1267
- <div class="presentation-info week"><strong>Wednesday</strong><br>01 Oct</div>
1513
+ <div class="presentation-info week"><strong>Thursday</strong><br>26 Mar</div>
1268
1514
  <ul class="unstyled inline">
1269
- <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 01/10/2014 12:00" data-popup="popup" data-duration="132" data-start="12:00" data-end="14:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDkxMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 01/10/2014 15:00" data-popup="popup" data-duration="132" data-start="15:00" data-end="17:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MEExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 01/10/2014 18:00" data-popup="popup" data-duration="132" data-start="18:00" data-end="20:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/M0ExMTAwMDAwMjNXWEFaTUxCIzIxMSMxNTIwMw==/" class="performance-detail" title="Peak - book The Equalizer on 01/10/2014 21:00" data-popup="popup" data-duration="132" data-start="21:00" data-end="23:12" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
1515
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/MjM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 26/03/2015 13:00" data-popup="popup" data-duration="0" data-start="13:00" data-end="13:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_AFTERNOON WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/ODM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 26/03/2015 15:45" data-popup="popup" data-duration="0" data-start="15:45" data-end="15:45" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/RTM1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 26/03/2015 18:30" data-popup="popup" data-duration="0" data-start="18:30" data-end="18:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_TBC WEEK_EVENING WEEK_IMAX3D WEEK_GENRE_1 show"><a href="https://www.odeon.co.uk/booking/init/NDQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxNTM2MA==/" class="performance-detail" title="Peak - book The Divergent Series: Insurgent on 26/03/2015 21:15" data-popup="popup" data-duration="0" data-start="21:15" data-end="21:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
1270
1516
  </div>
1271
1517
 
1272
- <div class="content-container times stopper performances-WEEK _25557"></div>
1518
+ <div class="content-container times stopper performances-WEEK _26679"></div>
1273
1519
  </div>
1274
1520
  </div>
1275
1521
  </div>
1276
1522
 
1277
- <!-- <div class="content-container times stopper performances-WEEK _25557"></div>-->
1278
- <div class="content-container white performances-WEEK _25557"></div>
1523
+ <!-- <div class="content-container times stopper performances-WEEK _26679"></div>-->
1524
+ <div class="content-container white performances-WEEK _26679"></div>
1525
+ </div>
1526
+ </div>
1527
+
1528
+ <div id="14449" class="film-detail WEEK">
1529
+
1530
+ <div class="content-container film _WEEK" id="film-14449">
1531
+ <div class="grad-hor">
1532
+ <a href="/films/under_the_sea/11794/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_7e7e02e30b327426bd2619fe46296185.jpg" /></a>
1533
+ <div class="presentation-info">
1534
+ <h4><a href="/films/under_the_sea/11794/">Under The Sea</a></h4>
1535
+ <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
1536
+ </span>
1537
+ </div>
1538
+ <p><strong>'Under the Sea 3D', a new IMAX 3D adventure, will transport you to some of the most exotic and isolated undersea locations on Earth, including Southern Australia, New Guinea and others in the Indo-Pacific region, allowing you to experience face-to-face encounters with some of the most mysterious and stunning creatures of the sea.</strong></p>
1539
+
1540
+ <div class="presentation-info">
1541
+ <div data-rating-master-id='11794' data-return-to='/cinemas/odeon/211/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
1542
+ <div class="rating-icon-star-small-active s7" data-rating="7">
1543
+ <div class="rate-over s1"></div>
1544
+ <div class="rate-over s2"></div>
1545
+ <div class="rate-over s3"></div>
1546
+ <div class="rate-over s4"></div>
1547
+ <div class="rate-over s5"></div>
1548
+ </div>
1549
+ </div>
1550
+ <span class="description"><strong>Film length: 41 mins</strong></span>
1551
+ </div>
1552
+ <p class="description">Contains no material likely to offend or harm</p>
1553
+ </div>
1554
+ <div class="info-corner">
1555
+ <div class="img-bundle">
1556
+ <div class="film-icon-WEEK feature-icon-light-imax3d-medium WEEK_IMAX3D" data-schedule="IMAX3D" data-film="14449"></div> </div>
1557
+ </div>
1558
+ </div>
1559
+ <div id="performances-WEEK-14449" class="content-container times-all _WEEK">
1560
+ <div class="accordion-group times-all performances-WEEK _14449" id="tech-14449-0">
1561
+ <div class="content-container tech accordion-heading _WEEK">
1562
+ <a data-toggle="collapse" data-parent="#tech-14449-0-WEEK" class="accordion-toggle" href="#collapse-14449-0-WEEK">in IMAX 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. Combined with 3D, to create IMAX 3D, the ultimate film experience. IMAX 3D glasses required."></a>
1563
+ </div>
1564
+ <div id="collapse-14449-0-WEEK" class="accordion-body in collapse" style="height: auto;">
1565
+ <div class="accordion-inner">
1566
+
1567
+ <div class="content-container times containerWEEK">
1568
+ <div class="presentation-info week"><strong>Wednesday</strong><br>25 Mar</div>
1569
+ <ul class="unstyled inline">
1570
+ <li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_U WEEK_MORNING WEEK_IMAX3D WEEK_GENRE_6 WEEK_GENRE_10 show"><a href="https://www.odeon.co.uk/booking/init/ODQ1MTAwMDAwMjNXWEFaTUxCIzIxMSMxMTc5NA==/" class="performance-detail" title="Special Screening - book Under The Sea on 25/03/2015 10:30" data-popup="popup" data-duration="41" data-start="10:30" data-end="11:11" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:30</a></li> </ul>
1571
+ </div>
1572
+
1573
+ <div class="content-container times stopper performances-WEEK _14449"></div>
1574
+ </div>
1575
+ </div>
1576
+ </div>
1577
+
1578
+ <!-- <div class="content-container times stopper performances-WEEK _14449"></div>-->
1579
+ <div class="content-container white performances-WEEK _14449"></div>
1279
1580
  </div>
1280
1581
  </div>
1281
1582
  </section>
@@ -1292,10 +1593,15 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1292
1593
  <div class="selectpicker select-icon-select">
1293
1594
  <select id="filter-film-WEEK" data-size="10">
1294
1595
  <option value="null">Select a film</option>
1295
- <option value="25321">Billy Elliot The Musical Live</option>
1596
+ <option value="26589">Chappie</option>
1597
+ <option value="19939">Hubble</option>
1598
+ <option value="25609">Interstellar</option>
1296
1599
  <option value="25495">Island Of Lemurs: Madagascar</option>
1297
- <option value="24468">Jerusalem 3D</option>
1298
- <option value="25557">The Equalizer</option>
1600
+ <option value="24468">Jerusalem</option>
1601
+ <option value="24987">MET Opera - La Donna Del Lago (Live) 2015</option>
1602
+ <option value="14467">Space Station</option>
1603
+ <option value="26679">The Divergent Series: Insurgent</option>
1604
+ <option value="14449">Under The Sea</option>
1299
1605
  </select>
1300
1606
  </div>
1301
1607
  </div>
@@ -1537,7 +1843,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1537
1843
  <label for="ind-newbies-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Newbies</label>
1538
1844
 
1539
1845
  <input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-senior-screen-WEEK" value="seniorScreen">
1540
- <label for="ind-senior-screen-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Senior Screen</label>
1846
+ <label for="ind-senior-screen-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Silver Cinema</label>
1541
1847
 
1542
1848
  <input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-bollywood-WEEK-2" value="bollywood">
1543
1849
  <label for="ind-bollywood-WEEK-2" class="checkbox"><i class="checkbox-icon-unchecked"></i> Bollywood</label>
@@ -1779,10 +2085,15 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1779
2085
  </div>
1780
2086
  <script type="text/javascript">
1781
2087
  var showtimesFilmListWEEK = [];
1782
- showtimesFilmListWEEK['25321'] = ['Billy Elliot The Musical Live', '2014/09/28', '4.6'];
1783
- showtimesFilmListWEEK['25495'] = ['Island Of Lemurs: Madagascar', '2014/09/05', '5'];
1784
- showtimesFilmListWEEK['24468'] = ['Jerusalem 3D', '2014/01/17', '4.5'];
1785
- showtimesFilmListWEEK['25557'] = ['The Equalizer', '2014/09/26', '0'];
2088
+ showtimesFilmListWEEK['26589'] = ['Chappie', '2015/03/06', '3.603305785123967'];
2089
+ showtimesFilmListWEEK['19939'] = ['Hubble', '2011/09/16', '4.428571428571429'];
2090
+ showtimesFilmListWEEK['25609'] = ['Interstellar', '2014/11/07', '3.958362738179252'];
2091
+ showtimesFilmListWEEK['25495'] = ['Island Of Lemurs: Madagascar', '2014/09/05', '4'];
2092
+ showtimesFilmListWEEK['24468'] = ['Jerusalem', '2014/01/17', '4.5'];
2093
+ showtimesFilmListWEEK['24987'] = ['MET Opera - La Donna Del Lago (Live) 2015', '2015/03/14', '0'];
2094
+ showtimesFilmListWEEK['14467'] = ['Space Station', '2009/01/16', '4.5'];
2095
+ showtimesFilmListWEEK['26679'] = ['The Divergent Series: Insurgent', '2015/03/20', '4.2'];
2096
+ showtimesFilmListWEEK['14449'] = ['Under The Sea', '2009/02/13', '3.6875'];
1786
2097
  $(document).ready(function() {
1787
2098
  deleteFilterOptionsWEEK();
1788
2099
  $('.info-icon-form-info-small').popover();
@@ -1818,10 +2129,6 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1818
2129
  <div class="functions"><div class="feature-icon-dark-imax-medium"></div><div class="feature-icon-dark-costa-medium"></div><div class="feature-icon-dark-yog-medium"></div></div>
1819
2130
  <p>The BFI IMAX is located on London Southbank, right next to Waterloo Bridge, near Waterloo Station.</p>
1820
2131
  <div class="hrComponent comp"><hr></div>
1821
- <p>Filmline</p>
1822
- <p class="teaser"><strong>0871 22 44 007</strong></p>
1823
- <p class="description"><i>Calls cost 10p per minute plus network extras.</i></p>
1824
- <div class="hrComponent comp"><hr></div>
1825
2132
  <p><strong>ODEON Cinemas nearby:</strong></p>
1826
2133
  <a href="/cinemas/london_leicester_square/105/" class="otherLocalCinemas" data-siteid="105">London - Leicester Square</a> <span>(0.78 miles)</span><br>
1827
2134
  <a href="/cinemas/covent_garden/81/" class="otherLocalCinemas" data-siteid="81">Covent Garden</a> <span>(0.9 miles)</span><br>
@@ -1833,7 +2140,7 @@ auditorium. The ground floor including Costa Coffee, Bar and Yog will remain ope
1833
2140
  </div>
1834
2141
  <a class="underline" href="https://maps.google.com/maps?daddr=51.505,-0.113707" target="_blank">Get directions</a>
1835
2142
  <div class="location-map" id="location-map" style=""></div>
1836
- <div id="cinemasData" style="display: none;" data-cinemasmap='[{"siteId":211,"name":"BFI IMAX","address":{"lineOne":"1 Charlie Chaplin Walk","lineTwo":"London","lineThree":"","lineFour":"","postcode":"SE1 8XR"},"longitude":-0.113707,"latitude":51.505,"isImax":1,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/f87e372bce7a51328f8e13ddb29a358c.jpg","siteLink":"\/cinemas\/bfi_imax\/211\/"},{"siteId":105,"name":"London - Leicester Square","address":{"lineOne":"24-26 Leicester Square","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 7LQ"},"longitude":-0.1295,"latitude":51.5105,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/0eb85fd94c82d1d83f55d62b3b287d2c.jpg","siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":81,"name":"Covent Garden","address":{"lineOne":"135 Shaftesbury Avenue","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 8AH"},"longitude":-0.12824,"latitude":51.5143,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/a9f2478cbdd0211d8a719cf0b4192a64.jpg","siteLink":"\/cinemas\/covent_garden\/81\/"},{"siteId":132,"name":"Swiss Cottage","address":{"lineOne":"96 Finchley Road","lineTwo":"London","lineThree":"","lineFour":"","postcode":"NW3 5EL"},"longitude":-0.17449,"latitude":51.5424,"isImax":1,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/2c2edf71826b34890f808dfbcd7e8671.jpg","siteLink":"\/cinemas\/swiss_cottage\/132\/"}]'></div>
2143
+ <div id="cinemasData" style="display: none;" data-cinemasmap='[{"siteId":211,"name":"BFI IMAX","address":{"lineOne":"1 Charlie Chaplin Walk","lineTwo":"London","lineThree":"","lineFour":"","postcode":"SE1 8XR"},"longitude":-0.113707,"latitude":51.505,"isImax":1,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/ca8de02bb4b4ab3155aad6280bcf77ad.jpg","siteLink":"\/cinemas\/bfi_imax\/211\/"},{"siteId":105,"name":"London - Leicester Square","address":{"lineOne":"24-26 Leicester Square","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 7LQ"},"longitude":-0.1295,"latitude":51.5105,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/0eb85fd94c82d1d83f55d62b3b287d2c.jpg","siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":81,"name":"Covent Garden","address":{"lineOne":"135 Shaftesbury Avenue","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 8AH"},"longitude":-0.12824,"latitude":51.5143,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/a9f2478cbdd0211d8a719cf0b4192a64.jpg","siteLink":"\/cinemas\/covent_garden\/81\/"},{"siteId":132,"name":"Swiss Cottage","address":{"lineOne":"96 Finchley Road","lineTwo":"London","lineThree":"","lineFour":"","postcode":"NW3 5EL"},"longitude":-0.17449,"latitude":51.5424,"isImax":1,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/2c2edf71826b34890f808dfbcd7e8671.jpg","siteLink":"\/cinemas\/swiss_cottage\/132\/"}]'></div>
1837
2144
 
1838
2145
  <style>
1839
2146
  #location-map {
@@ -2255,6 +2562,27 @@ Computer cab service available from Royal Festival Hall Foyer.
2255
2562
  </div>
2256
2563
  </div>
2257
2564
  </div>
2565
+
2566
+ <!-- Start BFI Member -->
2567
+ <a data-scrollspyelementnav="BFI members and champions" class="scrollSpyElement" id="bfimembers"></a>
2568
+ <div class="container">
2569
+ <div class="row content">
2570
+ <div class="span12 headline"><h1>BFI Members and Champions</h1></div>
2571
+ </div>
2572
+ </div>
2573
+ <div class="cmsContainer component container" id="CMP_B_14671"><a id="anchor_14671" name="anchor_14671" class="ActivLink"></a>
2574
+ <div class="row content">
2575
+ <div class="span12 container-shadow cbx-placeholder"><div id="CMP_B_14672" class="containerComponent component span12 white border-blue cbx-placeholder"><div id="CMP_B_14674" class="component row">
2576
+ <div class="cbx-placeholder span8"><div class="component comp" id="CMP_B_14676" style="position: relative; opacity: 1;">
2577
+ <p class="h4-copy">BFI Members and Champions receive an exclusive discount for tickets at the BFI IMAX London</p></div><div class="component comp" id="CMP_B_14675">
2578
+ <p>To claim your discount, please email <a href="mailto:BFImembers@odeon.co.uk">BFImembers@odeon.co.uk</a> with your name and valid BFI membership card number, you will then receive four discount codes for the performance you would like to see. Please note, you will no longer be able to book tickets by telephone but for help with requesting codes or instructions on how to apply your discount please call 0330 333 7878.</p>
2579
+ </div></div>
2580
+ <div class="cbx-placeholder span4"><div class="component comp clearfix" id="CMP_B_14677"><img class="picture-pic" src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/sites/odeon_co_uk/uploads/imagesResized/bfi_imax/300_BFI_logo_460x260.jpg" width="300" height="170"></div></div>
2581
+ </div></div></div>
2582
+ </div>
2583
+ </div>
2584
+ <!-- END BFI Member-->
2585
+
2258
2586
  <!-- Start "Education" -->
2259
2587
  <a data-scrollspyelementnav="BFI IMAX EDUCATION" class="scrollSpyElement" id="educationatbfi"></a>
2260
2588
  <div class="container">
@@ -2295,7 +2623,7 @@ Computer cab service available from Royal Festival Hall Foyer.
2295
2623
  <p>Give your class an unforgettable learning experience on Britain's biggest screen with our curriculum-enhancing IMAX films.&nbsp; Pick an IMAX film, and book a visit for your class – film showings during term time usually start at 10:30am or 11:45am, but other times can also be arranged. Alternatively, you can schedule a screening of a full-length feature film.</p></div></div>
2296
2624
  </div><div class="hrComponent component comp" id="CMP_B_12951" style="position: relative; opacity: 1;"><hr>
2297
2625
  </div><div id="CMP_B_12692" class="component row">
2298
- <div class="cbx-placeholder span4"><div class="component comp clearfix" id="CMP_B_12685" style="position: relative; opacity: 1;"><img class="picture-pic" src="//m2.odeon.co.uk/_uploads/cached/sites/odeon_co_uk/uploads/imagesResized/bfi_imaxeducation_page/300_BFI_IMAX_3D_Young.jpg" width="300" height="297"></div></div>
2626
+ <div class="cbx-placeholder span4"><div class="component comp clearfix" id="CMP_B_12685" style="position: relative; opacity: 1;"><img class="picture-pic" src="http://m.odeon.co.uk/_uploads/cached/sites/odeon_co_uk/uploads/imagesResized/bfi_imaxeducation_page/300_BFI_IMAX_3D_Young.jpg" width="300" height="297"></div></div>
2299
2627
  <div class="cbx-placeholder span8"><div class="component comp" id="CMP_B_12687" style="position: relative; opacity: 1;">
2300
2628
  <p><strong>Benefits of school trips to the BFI IMAX London include:</strong></p>
2301
2629
  <ul>
@@ -2334,7 +2662,7 @@ Computer cab service available from Royal Festival Hall Foyer.
2334
2662
  <h4>London - Leicester Square</h4>
2335
2663
  <div class="row">
2336
2664
  <div class="span3">
2337
- <img src="http://m.odeon.co.uk/_uploads/cinema_management/0eb85fd94c82d1d83f55d62b3b287d2c.jpg" />
2665
+ <img src="http://m2.odeon.co.uk/_uploads/cinema_management/0eb85fd94c82d1d83f55d62b3b287d2c.jpg" />
2338
2666
  <p class="info-line"><i class="film-icon-distance"></i><strong>0.78 miles.</strong></p>
2339
2667
  </div>
2340
2668
  <div class="span3">
@@ -2350,7 +2678,7 @@ Computer cab service available from Royal Festival Hall Foyer.
2350
2678
  <div class="span3">
2351
2679
  <div class="teaserComponent comp">
2352
2680
  <h4>Covent Garden</h4>
2353
- <div style="height: 75px; overflow: hidden;"><img src="http://m2.odeon.co.uk/_uploads/cinema_management/a9f2478cbdd0211d8a719cf0b4192a64.jpg" style="width: 260px; margin-top: -25px;"></div>
2681
+ <div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/a9f2478cbdd0211d8a719cf0b4192a64.jpg" style="width: 260px; margin-top: -25px;"></div>
2354
2682
  <p class="info-line"><i class="film-icon-distance"></i><strong>0.9 miles.</strong></p>
2355
2683
  <div class="functions">
2356
2684
  <div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
@@ -2361,7 +2689,7 @@ Computer cab service available from Royal Festival Hall Foyer.
2361
2689
  <div class="span3">
2362
2690
  <div class="teaserComponent comp">
2363
2691
  <h4>Swiss Cottage</h4>
2364
- <div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/2c2edf71826b34890f808dfbcd7e8671.jpg" style="width: 260px; margin-top: -25px;"></div>
2692
+ <div style="height: 75px; overflow: hidden;"><img src="http://m.odeon.co.uk/_uploads/cinema_management/2c2edf71826b34890f808dfbcd7e8671.jpg" style="width: 260px; margin-top: -25px;"></div>
2365
2693
  <p class="info-line"><i class="film-icon-distance"></i><strong>3.67 miles.</strong></p>
2366
2694
  <div class="functions">
2367
2695
  <div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
@@ -2389,29 +2717,30 @@ Computer cab service available from Royal Festival Hall Foyer.
2389
2717
  <div class="row">
2390
2718
  <div class="span4">
2391
2719
  <div class="teaserComponent comp">
2392
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/300x170_1b3199e69e5b46b1cad5af1fd7260af7.jpg" />
2393
- <h4>Up to 40% discount on tickets</h4>
2394
- <p>In Cinema and Online</p>
2395
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 16/10/2014</strong></p>
2396
- <a class="btn blue" href="/offers-and-promotions/up_to_40_discount_on_tickets/134/" >View this offer</a>
2720
+ <img src="http://m2.odeon.co.uk/_uploads/offers_competitions/300x170_2819fb46b09907ca7e7774ae36a51914.jpg" />
2721
+ <i class="film-icon-img-ribbon">Book to win</i>
2722
+ <h4>Win a trip for two to Paris</h4>
2723
+ <p>With Suite Francaise</p>
2724
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 31/03/2015</strong></p>
2725
+ <a class="btn blue" href="/offers-and-promotions/win_a_trip_for_two_to_paris/182/" >View this competition</a>
2397
2726
  </div>
2398
2727
  </div> <div class="span4">
2399
2728
  <div class="teaserComponent comp">
2400
- <img src="http://m.odeon.co.uk/_uploads/offers_competitions/300x170_c279c7437b86b23936cf776473032afe.jpg" />
2729
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/300x170_4410a0df47b01260b962d91e5f95ca2f.jpg" />
2401
2730
  <i class="film-icon-img-ribbon">Book to win</i>
2402
- <h4>Win a 4 star boutique hotel stay</h4>
2403
- <p>With 'A Most Wanted Man'</p>
2404
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 05/10/2014</strong></p>
2405
- <a class="btn blue" href="/offers-and-promotions/win_a_4_star_boutique_hotel_stay/137/" >View this competition</a>
2731
+ <h4>Win a trip to Atlanta&nbsp;</h4>
2732
+ <p>And see the world of Divergent</p>
2733
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 19/03/2015</strong></p>
2734
+ <a class="btn blue" href="/offers-and-promotions/win_a_trip_to_atlanta/180/" >View this competition</a>
2406
2735
  </div>
2407
2736
  </div> <div class="span4">
2408
2737
  <div class="teaserComponent comp">
2409
- <img src="http://m2.odeon.co.uk/_uploads/offers_competitions/300x170_2a7302eac156db50e66ae125e730aadc.jpg" />
2738
+ <img src="http://m.odeon.co.uk/_uploads/offers_competitions/300x170_4dbc85326e4bf5dd27bda72605def0f9.jpg" />
2410
2739
  <i class="film-icon-img-ribbon">Book to win</i>
2411
- <h4>Win three nights in Nice</h4>
2412
- <p>With Magic In The Moonlight</p>
2413
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 19/10/2014</strong></p>
2414
- <a class="btn blue" href="/offers-and-promotions/win_three_nights_in_nice/139/" >View this competition</a>
2740
+ <h4>Win Swan Lake Prizes</h4>
2741
+ <p>With ODEON</p>
2742
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 17/03/2015</strong></p>
2743
+ <a class="btn blue" href="/offers-and-promotions/win_swan_lake_prizes/181/" >View this competition</a>
2415
2744
  </div>
2416
2745
  </div> </div>
2417
2746
  </div>
@@ -2499,7 +2828,7 @@ Computer cab service available from Royal Festival Hall Foyer.
2499
2828
 
2500
2829
  </div>
2501
2830
  <div class="fd-quickbite-softdrink">
2502
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/pepsi.png" alt="Pepsi">
2831
+ <img src="http://m2.odeon.co.uk/_uploads/cached/static/img/pepsi.png" alt="Pepsi">
2503
2832
  </div>
2504
2833
  <div class="fd-quickbite-popcorn">
2505
2834
  <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/popcorn.png" alt="Popcorn">
@@ -2737,18 +3066,13 @@ The screen is more than 20 metres high (nearly the height of five double-decker
2737
3066
  //-->
2738
3067
  </script> <div class="drev-inpage-banner-outer-bottom">
2739
3068
  <div class="drev-inpage-banner-inner -ce-capture">
2740
- <a href="http://www.odeon.co.uk/films/what_we_did_on_our_holiday/15237/" title="Watch Trailer" ><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/3df0181f3d76628de7c2fb26d582367e.jpg" alt="What We Did On Our Holiday"></a>
2741
- </div>
3069
+ </div>
2742
3070
  </div>
2743
3071
 
2744
3072
  <div id="ad_skyscraper" class="drev-skyscraper-banner-one -ce-capture">
2745
3073
  <script type='text/javascript'><!--// <![CDATA[
2746
3074
  OA_show(12);
2747
3075
  // ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=ps0297340'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=12&amp;n=ps0297340' /></a></noscript> </div>
2748
- <div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
2749
- <script type='text/javascript'><!--// <![CDATA[
2750
- OA_show(21);
2751
- // ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=a3b7b2a4'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=21&amp;n=a3b7b2a4' /></a></noscript> </div>
2752
3076
  <footer>
2753
3077
  <div class="row content">
2754
3078
  <hr />
@@ -2798,14 +3122,12 @@ The screen is more than 20 metres high (nearly the height of five double-decker
2798
3122
  <li><a href="http://www.odeon.co.uk/contactus/">Contact Us</a></li>
2799
3123
  <li><a href="http://www.odeon.co.uk/privacy-and-legal/cookie-policy/">About our Cookies</a></li>
2800
3124
  </ul>
2801
- <h2>Filmline: 0871 22 44 007</h2>
2802
- <p>Calls cost 10p per minute plus network extras.</p>
2803
3125
  </div>
2804
3126
  </div>
2805
3127
  <hr />
2806
3128
  <div class="container">
2807
3129
  <div class="span9">
2808
- <span>&copy; ODEON Cinemas Holdings Limited 2006 to 2014 - All rights reserved.</span>
3130
+ <span>&copy; ODEON Cinemas Holdings Limited 2006 to 2015 - All rights reserved.</span>
2809
3131
  </div>
2810
3132
  <div class="span3">
2811
3133
  <ul class="inline">