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
 
@@ -69,22 +69,21 @@
69
69
 
70
70
  <!-- Le styles -->
71
71
 
72
- <link href="/css/main.css" media="all" rel="stylesheet" type="text/css">
73
- <!--[if IE]> <link href="/css/main_0.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
74
- <!--[if IE]> <link href="/css/main_1.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
75
- <!--[if IE]> <link href="/css/main_2.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
72
+ <link href="/css/main_t1426242250.css" media="all" rel="stylesheet" type="text/css">
73
+ <!--[if IE]><link href="/css/main0_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
74
+ <!--[if IE]><link href="/css/main1_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
75
+ <!--[if IE]><link href="/css/main2_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
76
76
  <link href="/images/ico/apple-touch-icon-144-precomposed.png" rel="apple-touch-icon-precomposed">
77
77
  <link href="/images/ico/apple-touch-icon-114-precomposed.png" rel="apple-touch-icon-precomposed">
78
78
  <link href="/images/ico/apple-touch-icon-72-precomposed.png" rel="apple-touch-icon-precomposed">
79
79
  <link href="/images/ico/apple-touch-icon-57-precomposed.png" rel="apple-touch-icon-precomposed">
80
80
  <link href="/images/ico/favicon.png" rel="shortcut icon" type="image/vnd.microsoft.icon">
81
- <!--[if lte IE 9]> <link href="/css/ie9.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
81
+ <!--[if lte IE 9]><link href="/css/ie9.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
82
82
  <script type="text/javascript">var website_app_locale = 'uk';</script>
83
83
  <script type="text/javascript">var site_protocol = (('https:' == document.location.protocol) ? 'https://' : 'http://') </script>
84
- <script type="text/javascript">var media_host = "http://m.odeon.co.uk/";</script>
84
+ <script type="text/javascript">var media_host = "http://odeon-fastly.krankikom.de.global.prod.fastly.net/";</script>
85
85
  <!-- Scripts -->
86
- <script type="text/javascript" src="/build/js/odeon.min.09182014010649.jgz"></script>
87
- <!--[if !IE]><script type="text/javascript" src="/source/js/vendor/jwplayer.html5.js"></script><![endif]-->
86
+ <script type="text/javascript" src="/build/js/odeon.min.03132015102356.jgz"></script>
88
87
  <!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/selectivizr-min.js"></script><![endif]-->
89
88
  <!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/IE9.js"></script><![endif]--> <!--[if !IE]><!--><script>
90
89
  if (/*@cc_on!@*/false && document.documentMode === 10) {
@@ -331,7 +330,7 @@
331
330
  <option value="133">Liverpool Switch Island</option>
332
331
  <option value="213">Llanelli</option>
333
332
  <option value="105">London - Leicester Square</option>
334
- <option value="139">London - West End</option>
333
+ <option value="139">London - West End - Now closed</option>
335
334
  <option value="183">Loughborough</option>
336
335
  <option value="10">Maidenhead</option>
337
336
  <option value="109">Maidstone</option>
@@ -339,7 +338,7 @@
339
338
  <option value="110">Mansfield</option>
340
339
  <option value="111">Marble Arch</option>
341
340
  <option value="174">Metrocentre</option>
342
- <option value="147">Milton Keynes</option>
341
+ <option value="218">Milton Keynes Stadium</option>
343
342
  <option value="112">Muswell Hill</option>
344
343
  <option value="184">Newark</option>
345
344
  <option value="13">Norwich</option>
@@ -453,174 +452,127 @@
453
452
  <div class="selectpicker select-icon-select">
454
453
  <select id="your-film" data-size="10" name="filmMasterId">
455
454
  <option value="0">Select a specific film</option>
456
- <option value="14578" >A Most Wanted Man</option>
457
- <option value="91370" >A Muppet Christmas Carol</option>
458
- <option value="15103" >A Walk Among The Tombstones</option>
459
- <option value="1201" >Airplane</option>
460
- <option value="199" >Alien</option>
461
- <option value="15426" >American: The Bill Hicks Story + Q&A</option>
462
- <option value="15066" >As Above, So Below</option>
463
- <option value="100732" >Autism Friendly - Planes 2: Fire and Rescue 2D</option>
464
- <option value="15129" >Before I Go To Sleep</option>
465
- <option value="15125" >Begin Again</option>
466
- <option value="15450" >Berliner Philharmoniker 2014 (Bernard Haitink)</option>
455
+ <option value="4025" >A Clockwork Orange</option>
456
+ <option value="15758" >A Most Violent Year</option>
457
+ <option value="15822" >Ali Kundilli</option>
458
+ <option value="15748" >American Sniper</option>
459
+ <option value="15840" >Andre Rieu's 2015 Maastricht Concert</option>
460
+ <option value="15825" >Appropriate Behaviour</option>
461
+ <option value="100789" >Autism Friendly - Focus</option>
462
+ <option value="100792" >Autism Friendly - Home</option>
463
+ <option value="2209" >Bad Boys</option>
467
464
  <option value="15451" >Berliner Philharmoniker 2014 (Mariss Jansons)</option>
468
- <option value="15449" >Berliner Philharmoniker 2014 (Simon Rattle)</option>
469
- <option value="100754" >Billy Elliot The Musical (encore)</option>
470
- <option value="15294" >Billy Elliot The Musical Live</option>
465
+ <option value="15286" >Big Hero 6</option>
466
+ <option value="15724" >Birdman</option>
467
+ <option value="15653" >Blade Runner: The Final Cut (re:2015)</option>
468
+ <option value="39" >Bloodsport</option>
471
469
  <option value="15299" >Bolshoi Live: Ivan The Terrible</option>
472
- <option value="15298" >Bolshoi Live: Swan Lake</option>
473
- <option value="15296" >Bolshoi Live: The Legend Of Love</option>
474
- <option value="15297" >Bolshoi Live: The Nutcracker</option>
475
470
  <option value="15095" >Boyhood</option>
476
- <option value="14745" >Chef</option>
477
- <option value="15447" >Creature</option>
478
- <option value="15461" >Daawat-e-ishq</option>
479
- <option value="14697" >Dawn Of The Planet Of The Apes</option>
480
- <option value="14975" >Deliver Us From Evil</option>
481
- <option value="29" >Die Hard.</option>
482
- <option value="15429" >Double Di Trouble</option>
483
- <option value="15102" >Earth To Echo</option>
484
- <option value="15249" >Fading Gigolo</option>
485
- <option value="3664" >Fight Club</option>
486
- <option value="15087" >Finding Fanny</option>
487
- <option value="15437" >Finding Fela</option>
488
- <option value="15376" >Finding Vivian Maier</option>
489
- <option value="100704" >Frozen Sing-a-long</option>
490
- <option value="57" >Ghostbusters</option>
491
- <option value="15390" >God's Pocket</option>
492
- <option value="15404" >Gone Girl</option>
493
- <option value="15445" >Goreyan Nu Daffa Karo</option>
494
- <option value="14510" >Grace Of Monaco</option>
495
- <option value="610" >Gremlins</option>
496
- <option value="100758" >Grimmfest 2014 - A Nightmare On Elm Street</option>
497
- <option value="15532" >Grimmfest 2014 - Devil's Mile</option>
498
- <option value="15533" >Grimmfest 2014 - Lfo</option>
499
- <option value="15535" >Grimmfest 2014 - Sororal</option>
500
- <option value="100759" >Grimmfest 2014 - The Babadook</option>
501
- <option value="15534" >Grimmfest 2014 - The Reconstruction Of William Zero</option>
502
- <option value="14690" >Guardians Of The Galaxy</option>
503
- <option value="718" >Home Alone</option>
471
+ <option value="15741" >Cake</option>
472
+ <option value="15829" >Carsi Pazar</option>
473
+ <option value="15824" >Catch Me Daddy</option>
474
+ <option value="15179" >Chappie</option>
475
+ <option value="100791" >Cinderella</option>
476
+ <option value="2124" >Clerks</option>
477
+ <option value="15835" >Difret</option>
478
+ <option value="15806" >Drake: Homecoming</option>
479
+ <option value="15804" >Elaine Paige + Live Element</option>
480
+ <option value="15243" >Eno Carmen</option>
481
+ <option value="15242" >ENO Pirates Of Penzance</option>
482
+ <option value="12683" >Enter The Dragon</option>
483
+ <option value="15543" >Exhibition On Screen: The Impressionists</option>
484
+ <option value="15542" >Exhibition On Screen: Vincent Van Gogh</option>
485
+ <option value="15086" >Exodus: Gods And Kings</option>
486
+ <option value="100790" >Fast & Furious 6 & 7 Double Bill</option>
487
+ <option value="14646" >Fast & Furious 7</option>
488
+ <option value="14725" >Fifty Shades Of Grey</option>
489
+ <option value="15871" >Fireman</option>
490
+ <option value="15799" >Focus</option>
491
+ <option value="14869" >Foxcatcher</option>
492
+ <option value="15700" >Get Santa</option>
493
+ <option value="15795" >Globe On Screen: Antony & Cleopatra</option>
494
+ <option value="15794" >Globe On Screen: Julius Caesar</option>
495
+ <option value="15796" >Globe On Screen: The Comedy Of Errors</option>
496
+ <option value="15793" >Globe On Screen: Titus Andronicus</option>
497
+ <option value="2111" >Goldeneye</option>
498
+ <option value="2449" >Heat</option>
499
+ <option value="100798" >High Tide with Live Q&A</option>
500
+ <option value="15122" >Home</option>
501
+ <option value="1120" >Hook</option>
504
502
  <option value="11916" >How To Train Your Dragon</option>
505
503
  <option value="15182" >How To Train Your Dragon 2</option>
506
- <option value="15227" >If I Stay</option>
507
- <option value="15396" >Into The Storm</option>
504
+ <option value="13530" >Hubble</option>
505
+ <option value="15815" >Hyena</option>
506
+ <option value="15172" >Interstellar</option>
507
+ <option value="15723" >Into The Woods</option>
508
508
  <option value="15344" >Island Of Lemurs: Madagascar</option>
509
- <option value="15430" >Jack To A King</option>
510
- <option value="15099" >Jersey Boys</option>
511
- <option value="15017" >Jerusalem 3D</option>
512
- <option value="15472" >JFF 2014 - Bethlehem</option>
513
- <option value="15473" >JFF 2014 - Run Boy Run</option>
514
- <option value="670" >Karate Kid (1984)</option>
515
- <option value="15506" >Khoobsurat.</option>
516
- <option value="14679" >Labor Day</option>
517
- <option value="15090" >Let's Be Cops</option>
518
- <option value="15067" >Lucy</option>
519
- <option value="15292" >Madama Butterfly On Sydney Harbour - Opera Australia</option>
520
- <option value="15443" >Made In Egypt</option>
521
- <option value="15265" >Magic In The Moonlight</option>
522
- <option value="13976" >Maleficent</option>
523
- <option value="15444" >Mary Kom</option>
524
- <option value="15152" >MET Opera - Carmen (Live) 2014</option>
509
+ <option value="15718" >It Follows</option>
510
+ <option value="15017" >Jerusalem</option>
511
+ <option value="15173" >Jupiter Ascending</option>
512
+ <option value="15148" >Kill The Messenger</option>
513
+ <option value="15170" >Kingsman: The Secret Service</option>
514
+ <option value="2060" >Leon</option>
515
+ <option value="597" >Lethal Weapon</option>
516
+ <option value="15787" >Love Is Strange</option>
517
+ <option value="15728" >Maxine Peake as Hamlet</option>
525
518
  <option value="15159" >MET Opera - Cavalleria Rusticana/Pagliacci (Live) 2015</option>
526
- <option value="15154" >MET Opera - Die Meistersinger Von Nurnberg (Live) 2014</option>
527
- <option value="15373" >Met Opera - Ii Barbiere Di Siviglia</option>
528
- <option value="15157" >MET Opera - Iolanta/Duke Bluebeard's Castle (Live) 2015</option>
529
519
  <option value="15158" >MET Opera - La Donna Del Lago (Live) 2015</option>
530
- <option value="15151" >MET Opera - Le Nozze Di Figaro (Live) 2014</option>
531
- <option value="15156" >MET Opera - Les Contes D'Hoffmann (Live) 2015</option>
532
- <option value="15150" >MET Opera - Macbeth (Live) 2014</option>
533
- <option value="15155" >MET Opera - The Merry Widow (Live) 2015</option>
534
- <option value="15200" >Million Dollar Arm</option>
535
- <option value="15395" >Mood Indigo</option>
536
- <option value="14468" >Mr. Peabody And Sherman</option>
537
- <option value="14738" >Mrs. Brown's Boys</option>
538
- <option value="15029" >Mrs. Brown's Boys D'movie</option>
539
- <option value="14604" >Muppets Most Wanted</option>
520
+ <option value="100795" >MK - Kids Screen - Shaun The Sheep</option>
521
+ <option value="100796" >MK - Kids Screen - Big Hero 6</option>
522
+ <option value="15186" >Mr. Turner</option>
540
523
  <option value="6244" >Mystery Film Monday</option>
541
- <option value="100755" >Mystery Movie Monday</option>
542
- <option value="15442" >Mystery Road</option>
543
- <option value="15419" >Night Moves</option>
544
- <option value="15507" >Night Will Fall</option>
545
- <option value="100722" >NT Live - Frankenstein Encore (Benedict Cumberbatch As Creature)</option>
546
- <option value="100721" >NT Live - Frankenstein Encore (Jonny Lee Miller As Creature)</option>
547
- <option value="15388" >Nt Live: A Streetcar Named Desire (Young Vic)</option>
548
- <option value="100740" >Nt Live: A Streetcar Named Desire (young Vic) (encore)</option>
549
- <option value="15336" >Nt Live: John</option>
550
- <option value="100739" >Nt Live: Medea (encore)</option>
551
- <option value="15337" >Nt Live: Treasure Island</option>
552
- <option value="15431" >Obvious Child</option>
553
- <option value="15371" >One Direction: Where We Are - Concert Movie</option>
554
- <option value="15415" >One Night In Istanbul</option>
524
+ <option value="15091" >Night At The Museum: Secret Of The Tomb</option>
525
+ <option value="15788" >NT Live: A View From The Bridge</option>
526
+ <option value="15802" >NT Live: Everyman</option>
527
+ <option value="15587" >NT Live: Man And Superman</option>
528
+ <option value="15586" >NT Live: The Hard Problem</option>
555
529
  <option value="6611" >Organ Concert</option>
556
- <option value="14546" >Planes</option>
557
- <option value="15015" >Planes 2: Fire and Rescue</option>
558
- <option value="116" >Predator</option>
559
- <option value="15092" >Pride</option>
560
- <option value="15432" >Raja Natwarlal</option>
561
- <option value="15139" >ROH - Andrea Chenier (Live) 2015</option>
562
- <option value="100741" >ROH - Andrea Chenier 2015 (encore)</option>
563
- <option value="15140" >ROH - Der Fliegende Hollander (Live) 2015</option>
564
- <option value="100742" >Roh - Der Fliegende Hollander 2015 (encore)</option>
530
+ <option value="15564" >Paddington</option>
531
+ <option value="15680" >Project Almanac</option>
532
+ <option value="2033" >Pulp Fiction</option>
533
+ <option value="6528" >Rocky</option>
565
534
  <option value="15145" >ROH - Guillaume Tell (Live) 2015</option>
566
- <option value="15136" >ROH - I Due Foscari (Live) 2014</option>
567
- <option value="100744" >ROH - I Due Foscari 2014 (encore)</option>
568
- <option value="15137" >ROH - L'elisir D'amore (Live) 2014</option>
569
- <option value="100745" >ROH - L'elisir D'amore 2014 (encore)</option>
570
535
  <option value="15144" >ROH - La Boheme (Live) 2015</option>
571
536
  <option value="100746" >ROH - La Boheme 2015 (encore)</option>
572
537
  <option value="15142" >ROH - Rise And Fall Of The City Of Mahagonny (Live) 2015</option>
573
538
  <option value="100747" >ROH - Rise And Fall Of The City Of Mahagonny 2015 (encore)</option>
574
- <option value="15166" >RSC 2015 - Love's Labours Lost</option>
575
- <option value="15167" >RSC 2015 - Love's Labours Won</option>
576
- <option value="15293" >Salome & Wilde Salome + Q&A Via Satellite With Al Pacino</option>
577
- <option value="15455" >Sapthamashree Taskaraha.</option>
578
- <option value="14642" >Sex Tape</option>
579
- <option value="10374" >Sin City: A Dame To Kill For</option>
580
- <option value="15410" >Soul Boys Of The Western World + Spandau Ballet Satellite Event</option>
581
- <option value="15021" >Step Up: All In</option>
582
- <option value="15341" >Stephen Fry Live: More Fool Me</option>
583
- <option value="15126" >T.S. Spivet</option>
584
- <option value="14572" >Tarzan</option>
585
- <option value="23743" >Teen Wolf</option>
586
- <option value="15380" >The Boxtrolls</option>
539
+ <option value="15706" >RSC - The Merchant Of Venice</option>
540
+ <option value="15768" >Run All Night</option>
541
+ <option value="10940" >Sea Monsters - A Prehistoric Adventure 3D IMAX</option>
542
+ <option value="15882" >Selam Bahara Yolculuk</option>
543
+ <option value="15394" >Selma</option>
544
+ <option value="15813" >Sevlimi Tehlikeli</option>
545
+ <option value="15274" >Shaun The Sheep</option>
546
+ <option value="15883" >Son Mektup (SFL - Subtitled Foreign Language)</option>
547
+ <option value="11893" >Space Station</option>
548
+ <option value="15814" >Still Alice</option>
549
+ <option value="15817" >Suite Francaise</option>
550
+ <option value="15178" >Taken 3</option>
551
+ <option value="15568" >Testament Of Youth</option>
552
+ <option value="15130" >The Avengers: Age Of Ultron</option>
553
+ <option value="15677" >The Boy Next Door</option>
587
554
  <option value="14602" >The Dark Knight: All Nighter</option>
588
- <option value="15203" >The Equalizer</option>
555
+ <option value="15360" >The Divergent Series: Insurgent</option>
589
556
  <option value="14678" >The Expendables 3</option>
590
- <option value="14977" >The Fault In Our Stars</option>
591
- <option value="15481" >The Giver</option>
592
- <option value="753" >The Godfather</option>
593
- <option value="15405" >The Guest</option>
594
- <option value="15194" >The House Of Magic</option>
595
- <option value="15367" >The Hundred-foot Journey</option>
596
- <option value="15195" >The Inbetweeners 2</option>
597
- <option value="15436" >The Keeper Of Lost Causes</option>
598
- <option value="15100" >The Nut Job</option>
599
- <option value="15037" >The Other Woman</option>
600
- <option value="15263" >The Riot Club</option>
601
- <option value="15202" >The Rover</option>
602
- <option value="15138" >The Royal Ballet - Alice's Adventures In Wonderland (Live) 2014</option>
603
- <option value="100751" >The Royal Ballet - Alice's Adventures In Wonderland 2014 (encore)</option>
557
+ <option value="14941" >The Grand Budapest Hotel</option>
558
+ <option value="15712" >The Grandmaster</option>
559
+ <option value="15262" >The Imitation Game</option>
604
560
  <option value="15143" >The Royal Ballet - La Fille Mal Gardee (Live) 2015</option>
605
561
  <option value="100748" >The Royal Ballet - La Fille Mal Gardee 2015 (encore)</option>
606
- <option value="13673" >The Royal Ballet - La Fille Mal Gardee Live</option>
607
- <option value="15135" >The Royal Ballet - Manon (Live) 2014</option>
608
- <option value="100749" >The Royal Ballet - Manon 2014 (encore)</option>
609
562
  <option value="15141" >The Royal Ballet - Swan Lake (Live) 2015</option>
610
563
  <option value="100750" >The Royal Ballet - Swan Lake 2015 (encore)</option>
611
- <option value="69" >The Thing (1982)</option>
612
- <option value="15389" >The Unbeatables</option>
613
- <option value="15228" >The Wizard Of Oz</option>
614
- <option value="885" >Thelma & Louise</option>
615
- <option value="14643" >Think Like A Man Too</option>
616
- <option value="15508" >Tony Benn: Will And Testament</option>
617
- <option value="15048" >Transformers: Age Of Extinction</option>
618
- <option value="15411" >Vatican Museums</option>
619
- <option value="15407" >Wakolda</option>
620
- <option value="15181" >We Are The Best! (SFL - Subtitled Foreign Language)</option>
621
- <option value="14893" >What If</option>
622
- <option value="15237" >What We Did On Our Holiday</option>
623
- <option value="15434" >Wish I Was Here</option>
564
+ <option value="15177" >The Second Best Exotic Marigold Hotel</option>
565
+ <option value="10619" >The Silence Of The Lambs</option>
566
+ <option value="15107" >The Theory Of Everything</option>
567
+ <option value="15354" >The Wedding Ringer</option>
568
+ <option value="15273" >Tinker Bell And The Legend Of The Neverbeast</option>
569
+ <option value="15096" >Unbroken</option>
570
+ <option value="11794" >Under The Sea</option>
571
+ <option value="15801" >Unfinished Business</option>
572
+ <option value="15425" >Whiplash</option>
573
+ <option value="15826" >White God</option>
574
+ <option value="15306" >Wild</option>
575
+ <option value="15830" >X+Y</option>
624
576
  </select>
625
577
  </div>
626
578
  <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" >
@@ -634,7 +586,7 @@
634
586
  <ul class="unstyled" role="menu">
635
587
  <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>
636
588
  <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>
637
- <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>
589
+ <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>
638
590
  <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>
639
591
  <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>
640
592
  </ul>
@@ -652,12 +604,20 @@
652
604
  <h2>Top 5 Films Now Booking</h2>
653
605
  <ul class="unstyled" role="menu">
654
606
  <li class="pull-left"><img
655
- src="http://m.odeon.co.uk/_uploads/asset_management/70x108_c158eed3e314e97ec1762e63cf132bc3.jpg" />
656
- <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>
607
+ src="http://m.odeon.co.uk/_uploads/asset_management/70x108_4ce02a732d4a4d57011886fff8637cbd.jpg" />
608
+ <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/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
609
+ <div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
610
+ <div class="rate-over s1"></div>
611
+ <div class="rate-over s2"></div>
612
+ <div class="rate-over s3"></div>
613
+ <div class="rate-over s4"></div>
614
+ <div class="rate-over s5"></div>
615
+ </div>
616
+ </div> </li>
657
617
  <li class="pull-left"><img
658
- src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_0f562b81f53660ac030191b1e7f7c08b.jpg" />
659
- <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/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
660
- <div class="rating-icon-star-xtrasmall-active s6" data-rating="6">
618
+ src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_538c352747af97a0c8c89063b0123444.jpg" />
619
+ <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/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
620
+ <div class="rating-icon-star-xtrasmall-active s8" data-rating="8">
661
621
  <div class="rate-over s1"></div>
662
622
  <div class="rate-over s2"></div>
663
623
  <div class="rate-over s3"></div>
@@ -666,15 +626,31 @@
666
626
  </div>
667
627
  </div> </li>
668
628
  <li class="pull-left"><img
669
- src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_4d569b2ca1a461a627d547b857b6fe62.jpg" />
670
- <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>
629
+ src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_78ad5db3e95468533d7591f2f2f3d097.jpg" />
630
+ <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/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
631
+ <div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
632
+ <div class="rate-over s1"></div>
633
+ <div class="rate-over s2"></div>
634
+ <div class="rate-over s3"></div>
635
+ <div class="rate-over s4"></div>
636
+ <div class="rate-over s5"></div>
637
+ </div>
638
+ </div> </li>
671
639
  <li class="pull-left"><img
672
- src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_7e13922985aa4980a5d9b6dbbf70c801.jpg" />
673
- <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>
640
+ src="http://m.odeon.co.uk/_uploads/asset_management/70x108_714694478b3cfc8f5c9a9e24632aa032.jpg" />
641
+ <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/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
642
+ <div class="rating-icon-star-xtrasmall-active s6" data-rating="6">
643
+ <div class="rate-over s1"></div>
644
+ <div class="rate-over s2"></div>
645
+ <div class="rate-over s3"></div>
646
+ <div class="rate-over s4"></div>
647
+ <div class="rate-over s5"></div>
648
+ </div>
649
+ </div> </li>
674
650
  <li class="pull-left"><img
675
- src="http://m.odeon.co.uk/_uploads/asset_management/70x108_9445403401f8f3b9d5bbb1739d747ca7.jpg" />
676
- <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>
677
- </ul>
651
+ src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_0141eed86c375d67af14731179996651.jpg" />
652
+ <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>
653
+ </ul>
678
654
  </li>
679
655
  </div>
680
656
  </ul>
@@ -696,8 +672,8 @@
696
672
 
697
673
  <li class="win-offers">
698
674
  <ul class="unstyled" role="menu">
699
- <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>
700
- <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>
675
+ <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>
676
+ <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>
701
677
  </ul>
702
678
  </li>
703
679
 
@@ -705,7 +681,7 @@
705
681
  </li>
706
682
  <li class="span4 premiere nav-icon-divide-shadow-l">
707
683
  <h2 class="logout">ODEON Premi&egrave;re Club</h2>
708
- <img class="logout" src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/premiere-card.png" />
684
+ <img class="logout" src="http://m2.odeon.co.uk/_uploads/cached/static/img/premiere-card.png" />
709
685
  <ul class="unstyled logout" role="menu">
710
686
  <li><span>Join over two million members and start earning ODEON Points for doing something you love.</span></li>
711
687
  <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>
@@ -715,7 +691,7 @@
715
691
  </li>
716
692
  <li class="span4 cards">
717
693
  <h2>Gift Cards</h2>
718
- <img src="http://m.odeon.co.uk/_uploads/cached/static/img/gift-card.png" />
694
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gift-card.png" />
719
695
  <ul class="unstyled" role="menu">
720
696
  <li><span>Everyone loves a great film so treat your family, friends, staff or clients to the gift of cinema.<br />
721
697
  You can buy ODEON Gift Cards in a design to suite every taste.</span></li>
@@ -740,6 +716,11 @@
740
716
  </script>
741
717
  </header>
742
718
 
719
+ <div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
720
+ <script type='text/javascript'><!--// <![CDATA[
721
+ OA_show(21);
722
+ // ]]> --></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>
723
+
743
724
 
744
725
  <!-- Start Hero Carousel -->
745
726
 
@@ -750,15 +731,16 @@
750
731
  </div>
751
732
  <div class="cinemahome-stacked">
752
733
  <div>
753
- <img src="http://m2.odeon.co.uk/_uploads/banner/5e24df410a31a68ae48e3295fd7126d2.jpg" alt=""/>
734
+ <img src="http://m2.odeon.co.uk/_uploads/banner/050c48609ef620da2353aae0c4f5c664.jpg" alt=""/>
735
+ <div class="info"><span><a href="http://www.odeon.co.uk/offers/2for1-wednesdays/?utm_source=cinemahero&utm_medium=cinemahero&utm_content=241&utm_campaign=241">Find out more</a></span></div>
754
736
  </div>
755
737
  <div>
756
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/e2ddf622dfe82d273d18f79cca17cbc8.jpg" alt=""/>
757
- <div class="info offer"><span><a href="http://www.odeon.co.uk/40percentoff/">Find out more</a></span></div>
738
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/57ddc990a91cb57e17f078c3d3cf1f48.jpg" alt=""/>
739
+ <div class="info offer"><span><a href="/back-british-film/">ODEON is proud to support British Cinema</a></span></div>
758
740
  </div>
759
741
  </div>
760
742
  <div class="cinemahome-half">
761
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/20a49df09f6646eeeec7a7b34c0f9e41.jpg" alt=""/>
743
+ <img src="http://m.odeon.co.uk/_uploads/cinema_management/20a49df09f6646eeeec7a7b34c0f9e41.jpg" alt=""/>
762
744
  </div>
763
745
  </article>
764
746
  </div>
@@ -830,80 +812,51 @@
830
812
  <div class="tab-pane dayview active loaded" id="ind-day" role="tabpanel">
831
813
  <ul class="nav nav-tabs arrow" role="tablist">
832
814
  <li class="tab-icon-arrow active" role="tab">
833
- <a href="#DAY1" onclick="getShowtimes('DAY1', '2014-09-18', '105', 'DAY', 1)" data-toggle="tab">
834
- <strong>Today</strong><br />18 Sep </a>
815
+ <a href="#DAY1" onclick="getShowtimes('DAY1', '2015-03-14', '105', 'DAY', 1)" data-toggle="tab">
816
+ <strong>Today</strong><br />14 Mar </a>
835
817
  </li>
836
818
  <li class="tab-icon-arrow " role="tab">
837
- <a href="#DAY2" onclick="getShowtimes('DAY2', '2014-09-19', '105', 'DAY', 1)" data-toggle="tab">
838
- <strong>Fri</strong><br />19 Sep </a>
819
+ <a href="#DAY2" onclick="getShowtimes('DAY2', '2015-03-15', '105', 'DAY', 1)" data-toggle="tab">
820
+ <strong>Sun</strong><br />15 Mar </a>
839
821
  </li>
840
822
  <li class="tab-icon-arrow " role="tab">
841
- <a href="#DAY3" onclick="getShowtimes('DAY3', '2014-09-20', '105', 'DAY', 1)" data-toggle="tab">
842
- <strong>Sat</strong><br />20 Sep </a>
823
+ <a href="#DAY3" onclick="getShowtimes('DAY3', '2015-03-16', '105', 'DAY', 1)" data-toggle="tab">
824
+ <strong>Mon</strong><br />16 Mar </a>
843
825
  </li>
844
826
  <li class="tab-icon-arrow " role="tab">
845
- <a href="#DAY4" onclick="getShowtimes('DAY4', '2014-09-21', '105', 'DAY', 1)" data-toggle="tab">
846
- <strong>Sun</strong><br />21 Sep </a>
827
+ <a href="#DAY4" onclick="getShowtimes('DAY4', '2015-03-17', '105', 'DAY', 1)" data-toggle="tab">
828
+ <strong>Tue</strong><br />17 Mar </a>
847
829
  </li>
848
830
  <li class="tab-icon-arrow " role="tab">
849
- <a href="#DAY5" onclick="getShowtimes('DAY5', '2014-09-22', '105', 'DAY', 1)" data-toggle="tab">
850
- <strong>Mon</strong><br />22 Sep </a>
831
+ <a href="#DAY5" onclick="getShowtimes('DAY5', '2015-03-18', '105', 'DAY', 1)" data-toggle="tab">
832
+ <strong>Wed</strong><br />18 Mar </a>
851
833
  </li>
852
834
  <li class="tab-icon-arrow " role="tab">
853
- <a href="#DAY6" onclick="getShowtimes('DAY6', '2014-09-23', '105', 'DAY', 1)" data-toggle="tab">
854
- <strong>Tue</strong><br />23 Sep </a>
835
+ <a href="#DAY6" onclick="getShowtimes('DAY6', '2015-03-19', '105', 'DAY', 1)" data-toggle="tab">
836
+ <strong>Thu</strong><br />19 Mar </a>
855
837
  </li>
856
838
  <li class="tab-icon-arrow " role="tab">
857
- <a href="#DAY7" onclick="getShowtimes('DAY7', '2014-09-24', '105', 'DAY', 1)" data-toggle="tab">
858
- <strong>Wed</strong><br />24 Sep </a>
839
+ <a href="#DAY7" onclick="getShowtimes('DAY7', '2015-03-20', '105', 'DAY', 1)" data-toggle="tab">
840
+ <strong>Fri</strong><br />20 Mar </a>
859
841
  </li>
860
842
  <li class="tab-icon-arrow " role="tab">
861
- <a href="#DAY8" onclick="getShowtimes('DAY8', '2014-09-25', '105', 'DAY', 1)" data-toggle="tab">
862
- <strong>Thu</strong><br />25 Sep </a>
843
+ <a href="#DAY8" onclick="getShowtimes('DAY8', '2015-03-21', '105', 'DAY', 1)" data-toggle="tab">
844
+ <strong>Sat</strong><br />21 Mar </a>
863
845
  </li>
864
846
  <li class="tab-icon-arrow " role="tab">
865
- <a href="#DAY9" onclick="getShowtimes('DAY9', '2014-09-26', '105', 'DAY', 1)" data-toggle="tab">
866
- <strong>Fri</strong><br />26 Sep </a>
847
+ <a href="#DAY9" onclick="getShowtimes('DAY9', '2015-03-22', '105', 'DAY', 1)" data-toggle="tab">
848
+ <strong>Sun</strong><br />22 Mar </a>
867
849
  </li>
868
850
  <li class="tab-icon-arrow " role="tab">
869
- <a href="#DAY10" onclick="getShowtimes('DAY10', '2014-09-27', '105', 'DAY', 1)" data-toggle="tab">
870
- <strong>Sat</strong><br />27 Sep </a>
851
+ <a href="#DAY10" onclick="getShowtimes('DAY10', '2015-03-23', '105', 'DAY', 1)" data-toggle="tab">
852
+ <strong>Mon</strong><br />23 Mar </a>
871
853
  </li>
872
854
  </ul>
873
855
  <div class="tab-content">
874
856
  <div class="tab-pane active loaded" id="DAY1" role="tabpanel">
875
857
  <div class="span9">
876
858
 
877
- <section id="film-carousel-week">
878
- <h4>New releases</h4>
879
- <div id="films-this-week" class="carousel slide">
880
- <div class="carousel-inner">
881
- <div class="jcarousel-list cycle-slideshow-1411074565246">
882
- <div class="pull-left jcarousel-item"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_0a22428b021181383d81e14fa5142018.jpg" /><h3><a href="/films/daawat_e_ishq/15461/">Daawat-e-ishq</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='15461' data-return-to='/cinemas/odeon/105/' class="buzz-rating-container buzz-rating rating-icon-buzz-dark-small-inactive">
883
- <div class="rating-icon-buzz-small-active s4" data-rating="4">
884
- <div class="rate-over s1"></div>
885
- <div class="rate-over s2"></div>
886
- <div class="rate-over s3"></div>
887
- <div class="rate-over s4"></div>
888
- <div class="rate-over s5"></div>
889
- </div>
890
- <i class="rating-icon-buzz-small-icon"></i>
891
- </div> <span>Releasing 19/09/2014</span>
892
- </div>
893
- </div>
894
- </div>
895
- <!-- Carousel nav -->
896
- </div>
897
- </section>
898
- <script type="text/javascript">
899
- <!--//
900
- $(document).ready(function() {
901
-
902
- initRating();
903
- });
904
- //-->
905
- </script>
906
-
859
+
907
860
  <section id="film-list-DAY1">
908
861
  <form class="film-order">
909
862
  <label for="sort-films">Sort by:</label>
@@ -921,20 +874,138 @@
921
874
  <div class="content-container text">
922
875
  <span>
923
876
 
924
- Showtimes for Today until <b>Thursday 25th September</b> are available. Further showtimes will be confirmed and added in the afternoon on <b>Tuesday 23rd September</b>. To view showtimes for another date, select from the days above.
877
+ Showtimes for Today until <b>Thursday 19th March</b> are available. Further showtimes will be confirmed and added in the afternoon on <b>Tuesday 17th March</b>. To view showtimes for another date, select from the days above.
925
878
  </span>
926
879
  </div>
927
880
 
928
881
  <script type="text/javascript">
929
882
  var showtimesFilmListDAY1 = [];
883
+ showtimesFilmListDAY1['24338'] = ['Fifty Shades Of Grey', '2015/02/13', '3.62109375'];
884
+ showtimesFilmListDAY1['26574'] = ['The Second Best Exotic Marigold Hotel', '2015/02/26', '3.8596491228070176'];
930
885
 
931
886
  </script>
932
887
 
933
- <!--<div class="content-container">-->
934
- <span>Performances for this day have not been programmed yet.</span>
935
- <!--</div>-->
888
+ <div class="content-container grey">
889
+ <h5 class="grey">Click on a film time to view more information</h5>
890
+ </div>
936
891
  <section id="ind-film-list-DAY1">
937
- </section>
892
+
893
+ <div id="24338" class="film-detail DAY1">
894
+
895
+ <div class="content-container film _DAY1" id="film-24338">
896
+ <div class="grad-hor">
897
+ <a href="/films/fifty_shades_of_grey/14725/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_c5a351f869478318e05f58becf5e9c15.jpg" /></a>
898
+ <div class="presentation-info">
899
+ <h4><a href="/films/fifty_shades_of_grey/14725/">Fifty Shades Of Grey</a></h4>
900
+ <a href="/film-classifications/" alt="18" title="More about film classifications"><div class="cert-icon-uk-18-small"></div></a> <span class="description">
901
+ ID may be required </span>
902
+ </div>
903
+ <p><strong>Steamy adaptation of the book which became a global phenomenon. </strong></p>
904
+
905
+ <div class="presentation-info">
906
+ <div data-rating-master-id='14725' data-return-to='/cinemas/odeon/105/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
907
+ <div class="rating-icon-star-small-active s7" data-rating="7">
908
+ <div class="rate-over s1"></div>
909
+ <div class="rate-over s2"></div>
910
+ <div class="rate-over s3"></div>
911
+ <div class="rate-over s4"></div>
912
+ <div class="rate-over s5"></div>
913
+ </div>
914
+ </div>
915
+ <span class="description"><strong>Film length: 125 mins</strong></span>
916
+ </div>
917
+ <p class="description">Strong sex.</p>
918
+ </div>
919
+ <div class="info-corner">
920
+ <div class="img-bundle">
921
+ <div class="film-icon-DAY1 feature-icon-light-2d-medium DAY1_2D" data-schedule="2D" data-film="24338"></div> </div>
922
+ <div class="btn-group">
923
+ <a href="http://odeon.trailer.cineweb.de/50shades_new.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/105/' data-film-id="14725" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
924
+ <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
925
+ <span class="caret"></span>
926
+ </button>
927
+ <ul class="dropdown-menu">
928
+ <li><a href="#">Add to Playlist</a></li>
929
+ </ul>
930
+ </div> </div>
931
+ </div><div class="content-container times-all _DAY1" id="performances-DAY1-24338">
932
+
933
+
934
+
935
+
936
+
937
+ <div class="content-container times containerDAY1">
938
+ <div class="presentation-info">
939
+ <strong>2D</strong>
940
+ <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>
941
+ </div>
942
+ <ul class="unstyled inline">
943
+ <li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUQxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 12:45" data-popup="popup" data-duration="125" data-start="12:45" data-end="14:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">12:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MUExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 13:15" data-popup="popup" data-duration="125" data-start="13:15" data-end="15:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">13:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QTAyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 13:45" data-popup="popup" data-duration="125" data-start="13:45" data-end="15:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">13:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NEYxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 14:15" data-popup="popup" data-duration="125" data-start="14:15" data-end="16:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">14:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/M0MxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 15:00" data-popup="popup" data-duration="125" data-start="15:00" data-end="17:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">15:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkQxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 15:30" data-popup="popup" data-duration="125" data-start="15:30" data-end="17:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">15:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/N0ExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 16:00" data-popup="popup" data-duration="125" data-start="16:00" data-end="18:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">16:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 16:30" data-popup="popup" data-duration="125" data-start="16:30" data-end="18:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">16:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QUYxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 17:00" data-popup="popup" data-duration="125" data-start="17:00" data-end="19:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">17:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUMxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 17:45" data-popup="popup" data-duration="125" data-start="17:45" data-end="19:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">17:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NUUxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 18:15" data-popup="popup" data-duration="125" data-start="18:15" data-end="20:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">18:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 19:00" data-popup="popup" data-duration="125" data-start="19:00" data-end="21:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">19:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NjEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 19:30" data-popup="popup" data-duration="125" data-start="19:30" data-end="21:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">19:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDAyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 20:00" data-popup="popup" data-duration="125" data-start="20:00" data-end="22:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">20:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkMxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 20:45" data-popup="popup" data-duration="125" data-start="20:45" data-end="22:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">20:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QkUxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 21:15" data-popup="popup" data-duration="125" data-start="21:15" data-end="23:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/M0IxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 22:00" data-popup="popup" data-duration="125" data-start="22:00" data-end="00:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">22:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QzEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 22:30" data-popup="popup" data-duration="125" data-start="22:30" data-end="00:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">22:30</a><i class="DAY1 small ">Studios</i></li> </ul>
944
+ <div class="content-container times stopper"></div>
945
+ </div>
946
+
947
+
948
+ <!-- <div class="content-container times stopper"></div>-->
949
+ </div> </div>
950
+
951
+ <div id="26574" class="film-detail DAY1">
952
+
953
+ <div class="content-container film _DAY1" id="film-26574">
954
+ <div class="grad-hor">
955
+ <a href="/films/the_second_best_exotic_marigold_hotel/15177/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_538c352747af97a0c8c89063b0123444.jpg" /></a>
956
+ <div class="presentation-info">
957
+ <h4><a href="/films/the_second_best_exotic_marigold_hotel/15177/">The Second Best Exotic Marigold Hotel</a></h4>
958
+ <a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
959
+ </span>
960
+ </div>
961
+ <p><strong>Sequel to 2012's hit comedy starring Dame Judi Dench.</strong></p>
962
+
963
+ <div class="presentation-info">
964
+ <div data-rating-master-id='15177' data-return-to='/cinemas/odeon/105/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
965
+ <div class="rating-icon-star-small-active s8" data-rating="8">
966
+ <div class="rate-over s1"></div>
967
+ <div class="rate-over s2"></div>
968
+ <div class="rate-over s3"></div>
969
+ <div class="rate-over s4"></div>
970
+ <div class="rate-over s5"></div>
971
+ </div>
972
+ </div>
973
+ <span class="description"><strong>Film length: 122 mins</strong></span>
974
+ </div>
975
+ <p class="description">Mild bad language, sex references.</p>
976
+ </div>
977
+ <div class="info-corner">
978
+ <div class="img-bundle">
979
+ <div class="film-icon-DAY1 feature-icon-light-backbritishfilm-medium DAY1_BACKBRITISHFILM" data-schedule="BACKBRITISHFILM" data-film="26574"></div><div class="film-icon-DAY1 feature-icon-light-2d-medium DAY1_2D" data-schedule="2D" data-film="26574"></div> </div>
980
+ <div class="btn-group">
981
+ <a href="http://odeon.trailer.cineweb.de/t2ndbemh.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/105/' data-film-id="15177" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
982
+ <button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
983
+ <span class="caret"></span>
984
+ </button>
985
+ <ul class="dropdown-menu">
986
+ <li><a href="#">Add to Playlist</a></li>
987
+ </ul>
988
+ </div> </div>
989
+ </div><div class="content-container times-all _DAY1" id="performances-DAY1-26574">
990
+
991
+
992
+
993
+
994
+
995
+ <div class="content-container times containerDAY1">
996
+ <div class="presentation-info">
997
+ <strong>2D</strong>
998
+ <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>
999
+ </div>
1000
+ <ul class="unstyled inline">
1001
+ <li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_AFTERNOON DAY1_BACKBRITISHFILM DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REIxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 12:15" data-popup="popup" data-duration="122" data-start="12:15" data-end="14:17" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">12:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_AFTERNOON DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTgxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 14:15" data-popup="popup" data-duration="122" data-start="14:15" data-end="16:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">14:15</a><i class="DAY1 small ">Premiere Screen</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_EVENING DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjgxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 17:15" data-popup="popup" data-duration="122" data-start="17:15" data-end="19:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">17:15</a><i class="DAY1 small ">Premiere Screen</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_EVENING DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDkxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 20:15" data-popup="popup" data-duration="122" data-start="20:15" data-end="22:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="DAY1 small ">Premiere Screen</i></li> </ul>
1002
+ <div class="content-container times stopper"></div>
1003
+ </div>
1004
+
1005
+
1006
+ <!-- <div class="content-container times stopper"></div>-->
1007
+ </div> </div>
1008
+ </section>
938
1009
  <!--</div>-->
939
1010
  </div>
940
1011
  <div class="span3">
@@ -949,6 +1020,8 @@
949
1020
  <div class="selectpicker select-icon-select">
950
1021
  <select id="filter-film-DAY1" data-size="10">
951
1022
  <option value="null">Select a film</option>
1023
+ <option value="24338">Fifty Shades Of Grey</option>
1024
+ <option value="26574">The Second Best Exotic Marigold Hotel</option>
952
1025
  </select>
953
1026
  </div>
954
1027
  </div>
@@ -1210,7 +1283,7 @@
1210
1283
  <label for="ind-newbies-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i> Newbies</label>
1211
1284
 
1212
1285
  <input type="checkbox" class="filter-DAY1" name="DAY1-special_screenings" id="ind-senior-screen-DAY1" value="seniorScreen">
1213
- <label for="ind-senior-screen-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i> Senior Screen</label>
1286
+ <label for="ind-senior-screen-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i> Silver Cinema</label>
1214
1287
 
1215
1288
  <input type="checkbox" class="filter-DAY1" name="DAY1-special_screenings" id="ind-bollywood-DAY1-2" value="bollywood">
1216
1289
  <label for="ind-bollywood-DAY1-2" class="checkbox"><i class="checkbox-icon-unchecked"></i> Bollywood</label>
@@ -1498,14 +1571,10 @@
1498
1571
  <div class="functions"><div class="feature-icon-dark-costa-medium"></div><div class="feature-icon-dark-3d-medium"></div></div>
1499
1572
  <p>The ODEON Leicester Square & Studios are located on the East Side of Leicester Square. Please note that Leicester Square is pedestrianised.</p>
1500
1573
  <div class="hrComponent comp"><hr></div>
1501
- <p>Filmline</p>
1502
- <p class="teaser"><strong>0871 22 44 007</strong></p>
1503
- <p class="description"><i>Calls cost 10p per minute plus network extras.</i></p>
1504
- <div class="hrComponent comp"><hr></div>
1505
1574
  <p><strong>ODEON Cinemas nearby:</strong></p>
1506
- <a href="/cinemas/london_west_end/139/" class="otherLocalCinemas" data-siteid="139">London - West End</a> <span>(0.06 miles)</span><br>
1507
- <a href="/cinemas/panton_st/117/" class="otherLocalCinemas" data-siteid="117">Panton St</a> <span>(0.1 miles)</span><br>
1575
+ <a href="/cinemas/panton_st/117/" class="otherLocalCinemas" data-siteid="117">Panton St</a> <span>(0.1 miles)</span><br>
1508
1576
  <a href="/cinemas/covent_garden/81/" class="otherLocalCinemas" data-siteid="81">Covent Garden</a> <span>(0.27 miles)</span><br>
1577
+ <a href="/cinemas/tottenham_court_rd/135/" class="otherLocalCinemas" data-siteid="135">Tottenham Court Rd</a> <span>(0.55 miles)</span><br>
1509
1578
  </div>
1510
1579
  <div class="span8 table-cell">
1511
1580
  <div class="switch">
@@ -1513,7 +1582,7 @@
1513
1582
  </div>
1514
1583
  <a class="underline" href="https://maps.google.com/maps?daddr=51.5105,-0.1295" target="_blank">Get directions</a>
1515
1584
  <div class="location-map" id="location-map" style=""></div>
1516
- <div id="cinemasData" style="display: none;" data-cinemasmap='[{"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":null,"siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":139,"name":"London - West End","address":{"lineOne":"40 Leicester Square","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 7LP"},"longitude":-0.13035,"latitude":51.5099,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/2a195f5946e98a2e97d1571bdcf92178.jpg","siteLink":"\/cinemas\/london_west_end\/139\/"},{"siteId":117,"name":"Panton St","address":{"lineOne":"11-18 Panton Street","lineTwo":"London","lineThree":"","lineFour":"","postcode":"SW1Y 4DP"},"longitude":-0.13124,"latitude":51.5095,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/99a38d34709f11332eebe0c2ed30a36b.JPG","siteLink":"\/cinemas\/panton_st\/117\/"},{"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\/"}]'></div>
1585
+ <div id="cinemasData" style="display: none;" data-cinemasmap='[{"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":null,"siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":117,"name":"Panton St","address":{"lineOne":"11-18 Panton Street","lineTwo":"London","lineThree":"","lineFour":"","postcode":"SW1Y 4DP"},"longitude":-0.13124,"latitude":51.5095,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/99a38d34709f11332eebe0c2ed30a36b.JPG","siteLink":"\/cinemas\/panton_st\/117\/"},{"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":135,"name":"Tottenham Court Rd","address":{"lineOne":"30 Tottenham Court Road","lineTwo":"London","lineThree":"","lineFour":"","postcode":"W1T 1BX"},"longitude":-0.13243,"latitude":51.5182,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/6ef1ec788abf54ac317b39e1537bf273.jpg","siteLink":"\/cinemas\/tottenham_court_rd\/135\/"}]'></div>
1517
1586
 
1518
1587
  <style>
1519
1588
  #location-map {
@@ -1528,7 +1597,10 @@
1528
1597
  </style> <div class="location-directions" id="location-directions">
1529
1598
  <p>
1530
1599
  <h4>Driving Directions</h4>
1531
- Charing Cross Road runs past the back of the Cinema which fronts on to the East Side of Leicester Square. From noon each day Leicester Sq becomes closed to all vehicle traffic. The nearest car parks are located in Whitcomb Street on the south side of the Square or in China Town. </p>
1600
+ Charing Cross Road runs past the back of the Cinema which fronts on to the East Side of Leicester Square. From noon each day Leicester Sq becomes closed to all vehicle traffic. The nearest car parks are located in Whitcomb Street on the south side of the Square or in China Town.<br />
1601
+ <br />
1602
+ <b>Parking</b><br /><br />
1603
+ <a href="http://www.parkjockey.com/odeon-leicester-square?utm_source=odeon&utm_medium=location_page&utm_campaign=odeon" target="_blank">The cinema has no parking, to find or pre book your nearest car parking space for ODEON Leicester Square please click here</a>. </p>
1532
1604
  <p>
1533
1605
  <h4>Public Transport</h4>
1534
1606
  The nearest Tube Stations are Leicester Square on the Piccadilly & Northern Lines and Piccadilly Circus on the Piccadilly and Bakerloo lines. Both are situated only 2 minutes walk from the cinema.The nearest mainline station is Charing Cross railway station about 5 minutes walk from the cinema. </p>
@@ -1569,12 +1641,12 @@
1569
1641
 
1570
1642
 
1571
1643
  <!-- Super Saver -->
1572
- <div class="span3 attr super-saver"><span>£7.00</span></div>
1573
- <div class="span3 attr super-saver"><span>£7.50</span></div>
1644
+ <div class="span3 attr super-saver"><span>£6.00</span></div>
1645
+ <div class="span3 attr super-saver"><span>£6.50</span></div>
1574
1646
 
1575
1647
  <!-- Peak -->
1576
- <div class="span3 attr peak-times"><span>£7.00</span></div>
1577
- <div class="span3 attr peak-times"><span>£7.50</span></div>
1648
+ <div class="span3 attr peak-times"><span>£6.00</span></div>
1649
+ <div class="span3 attr peak-times"><span>£6.50</span></div>
1578
1650
  </div>
1579
1651
 
1580
1652
 
@@ -1583,12 +1655,12 @@
1583
1655
 
1584
1656
 
1585
1657
  <!-- Super Saver -->
1586
- <div class="span3 attr super-saver"><span>£8.00</span></div>
1587
- <div class="span3 attr super-saver"><span>£8.50</span></div>
1658
+ <div class="span3 attr super-saver"><span>£7.00</span></div>
1659
+ <div class="span3 attr super-saver"><span>£7.50</span></div>
1588
1660
 
1589
1661
  <!-- Peak -->
1590
- <div class="span3 attr peak-times"><span>£9.95</span></div>
1591
- <div class="span3 attr peak-times"><span>£10.45</span></div>
1662
+ <div class="span3 attr peak-times"><span>£8.95</span></div>
1663
+ <div class="span3 attr peak-times"><span>£9.45</span></div>
1592
1664
  </div>
1593
1665
 
1594
1666
 
@@ -1597,12 +1669,12 @@
1597
1669
 
1598
1670
 
1599
1671
  <!-- Super Saver -->
1600
- <div class="span3 attr super-saver"><span>£8.00</span></div>
1601
- <div class="span3 attr super-saver"><span>£8.50</span></div>
1672
+ <div class="span3 attr super-saver"><span>£7.00</span></div>
1673
+ <div class="span3 attr super-saver"><span>£7.50</span></div>
1602
1674
 
1603
1675
  <!-- Peak -->
1604
- <div class="span3 attr peak-times"><span>£9.95</span></div>
1605
- <div class="span3 attr peak-times"><span>£10.45</span></div>
1676
+ <div class="span3 attr peak-times"><span>£8.95</span></div>
1677
+ <div class="span3 attr peak-times"><span>£9.45</span></div>
1606
1678
  </div>
1607
1679
 
1608
1680
 
@@ -1611,12 +1683,12 @@
1611
1683
 
1612
1684
 
1613
1685
  <!-- Super Saver -->
1614
- <div class="span3 attr super-saver"><span>£8.00</span></div>
1615
- <div class="span3 attr super-saver"><span>£8.50</span></div>
1686
+ <div class="span3 attr super-saver"><span>£7.00</span></div>
1687
+ <div class="span3 attr super-saver"><span>£7.50</span></div>
1616
1688
 
1617
1689
  <!-- Peak -->
1618
- <div class="span3 attr peak-times"><span>£9.95</span></div>
1619
- <div class="span3 attr peak-times"><span>£10.45</span></div>
1690
+ <div class="span3 attr peak-times"><span>£8.95</span></div>
1691
+ <div class="span3 attr peak-times"><span>£9.45</span></div>
1620
1692
  </div>
1621
1693
 
1622
1694
 
@@ -1625,12 +1697,12 @@
1625
1697
 
1626
1698
 
1627
1699
  <!-- Super Saver -->
1628
- <div class="span3 attr super-saver"><span>£9.00</span></div>
1629
- <div class="span3 attr super-saver"><span>£9.50</span></div>
1700
+ <div class="span3 attr super-saver"><span>£8.00</span></div>
1701
+ <div class="span3 attr super-saver"><span>£8.50</span></div>
1630
1702
 
1631
1703
  <!-- Peak -->
1632
- <div class="span3 attr peak-times"><span>£13.00</span></div>
1633
- <div class="span3 attr peak-times"><span>£13.50</span></div>
1704
+ <div class="span3 attr peak-times"><span>£12.00</span></div>
1705
+ <div class="span3 attr peak-times"><span>£12.50</span></div>
1634
1706
  </div>
1635
1707
 
1636
1708
 
@@ -1639,12 +1711,12 @@
1639
1711
 
1640
1712
 
1641
1713
  <!-- Super Saver -->
1642
- <div class="span3 attr super-saver"><span>£24.00</span></div>
1643
- <div class="span3 attr super-saver"><span>£24.50</span></div>
1714
+ <div class="span3 attr super-saver"><span>£20.00</span></div>
1715
+ <div class="span3 attr super-saver"><span>£20.50</span></div>
1644
1716
 
1645
1717
  <!-- Peak -->
1646
- <div class="span3 attr peak-times"><span>£24.00</span></div>
1647
- <div class="span3 attr peak-times"><span>£24.50</span></div>
1718
+ <div class="span3 attr peak-times"><span>£20.00</span></div>
1719
+ <div class="span3 attr peak-times"><span>£20.50</span></div>
1648
1720
  </div>
1649
1721
 
1650
1722
 
@@ -1904,9 +1976,9 @@
1904
1976
 
1905
1977
 
1906
1978
  <div class="content-container normal-blue">
1907
- <span>Upgrades</span><span>Go on - treat yourself. In many of our cinemas, the full 3D experience awaits!</span>
1979
+ <span>Upgrades and Premiums</span>
1908
1980
  </div>
1909
- <div class="row"><div class="span2"><p><strong>3D Films</strong><?=</p></div><div class="span4"><p>+ £2.00 Adullt / + £6.40 Family / + £1.60 Others</p></div></div> <div class="hrComponent comp"><hr /></div>
1981
+ <div class="row"><div class="span2"><p><strong>3D Films</strong><?=</p></div><div class="span4"><p>+ £2.00 Adullt / + £6.40 Family / + £1.60 Others</p></div><div class="span2"><p><strong>Blockbuster Prices</strong><?=</p></div><div class="span4"><p>The Second Best Marigold Hotel/Fast&Furious 7/Avengers: Age of Ultron + &pound;1.00 per ticket</p></div></div> <div class="hrComponent comp"><hr /></div>
1910
1982
 
1911
1983
  </div>
1912
1984
  <!-- End Cinema Ticket Pricing -->
@@ -1918,6 +1990,8 @@
1918
1990
  </div>
1919
1991
  </div>
1920
1992
 
1993
+
1994
+
1921
1995
  <!-- Start Other local cinemas -->
1922
1996
  <a data-scrollspyelementnav="Other Local Cinemas" class="scrollSpyElement" id="otherCinemas"></a>
1923
1997
  <div class="container">
@@ -1930,42 +2004,42 @@
1930
2004
  <div class="row">
1931
2005
  <div class="span6">
1932
2006
  <div class="teaserComponent comp">
1933
- <h4>London - West End</h4>
2007
+ <h4>Panton St</h4>
1934
2008
  <div class="row">
1935
2009
  <div class="span3">
1936
- <img src="http://m2.odeon.co.uk/_uploads/cinema_management/2a195f5946e98a2e97d1571bdcf92178.jpg" />
1937
- <p class="info-line"><i class="film-icon-distance"></i><strong>0.06 miles.</strong></p>
2010
+ <img src="http://m.odeon.co.uk/_uploads/cinema_management/99a38d34709f11332eebe0c2ed30a36b.JPG" />
2011
+ <p class="info-line"><i class="film-icon-distance"></i><strong>0.1 miles.</strong></p>
1938
2012
  </div>
1939
2013
  <div class="span3">
1940
- <p>ODEON West End is situated in the centre of London inside Leicester Square. The cinema has 2 screens (Premier Seats, Ben & Jerry's) 1 ATM which is located in the main foyer.</p>
2014
+ <p>ODEON Panton Street is situated in the city centre next to Leicester Square. The cinema has 4 screens, 1 ATM which is located outisde at the front of the entrance.</p>
1941
2015
  <div class="functions">
1942
2016
  <div class="feature-icon-imax-light-m"></div><div class="feature-icon-d-box-light-m"></div><div class="feature-icon-costa-light-m"></div>
1943
2017
  </div>
1944
2018
  </div>
1945
2019
  </div>
1946
- <a href="/cinemas/london_west_end/139/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
2020
+ <a href="/cinemas/panton_st/117/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
1947
2021
  </div>
1948
2022
  </div>
1949
2023
  <div class="span3">
1950
2024
  <div class="teaserComponent comp">
1951
- <h4>Panton St</h4>
1952
- <div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/99a38d34709f11332eebe0c2ed30a36b.JPG" style="width: 260px; margin-top: -25px;"></div>
1953
- <p class="info-line"><i class="film-icon-distance"></i><strong>0.1 miles.</strong></p>
2025
+ <h4>Covent Garden</h4>
2026
+ <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>
2027
+ <p class="info-line"><i class="film-icon-distance"></i><strong>0.27 miles.</strong></p>
1954
2028
  <div class="functions">
1955
2029
  <div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
1956
2030
  </div>
1957
- <a href="/cinemas/panton_st/117/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
2031
+ <a href="/cinemas/covent_garden/81/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
1958
2032
  </div>
1959
2033
  </div>
1960
2034
  <div class="span3">
1961
2035
  <div class="teaserComponent comp">
1962
- <h4>Covent Garden</h4>
1963
- <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>
1964
- <p class="info-line"><i class="film-icon-distance"></i><strong>0.27 miles.</strong></p>
2036
+ <h4>Tottenham Court Rd</h4>
2037
+ <div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/6ef1ec788abf54ac317b39e1537bf273.jpg" style="width: 260px; margin-top: -25px;"></div>
2038
+ <p class="info-line"><i class="film-icon-distance"></i><strong>0.55 miles.</strong></p>
1965
2039
  <div class="functions">
1966
2040
  <div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
1967
2041
  </div>
1968
- <a href="/cinemas/covent_garden/81/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
2042
+ <a href="/cinemas/tottenham_court_rd/135/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
1969
2043
  </div>
1970
2044
  </div>
1971
2045
  </div>
@@ -1988,29 +2062,30 @@
1988
2062
  <div class="row">
1989
2063
  <div class="span4">
1990
2064
  <div class="teaserComponent comp">
1991
- <img src="http://m.odeon.co.uk/_uploads/offers_competitions/300x170_1b3199e69e5b46b1cad5af1fd7260af7.jpg" />
1992
- <h4>Up to 40% discount on tickets</h4>
1993
- <p>In Cinema and Online</p>
1994
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 16/10/2014</strong></p>
1995
- <a class="btn blue" href="/offers-and-promotions/up_to_40_discount_on_tickets/134/" >View this offer</a>
2065
+ <img src="http://m.odeon.co.uk/_uploads/offers_competitions/300x170_2819fb46b09907ca7e7774ae36a51914.jpg" />
2066
+ <i class="film-icon-img-ribbon">Book to win</i>
2067
+ <h4>Win a trip for two to Paris</h4>
2068
+ <p>With Suite Francaise</p>
2069
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 31/03/2015</strong></p>
2070
+ <a class="btn blue" href="/offers-and-promotions/win_a_trip_for_two_to_paris/182/" >View this competition</a>
1996
2071
  </div>
1997
2072
  </div> <div class="span4">
1998
2073
  <div class="teaserComponent comp">
1999
- <img src="http://m2.odeon.co.uk/_uploads/offers_competitions/300x170_c279c7437b86b23936cf776473032afe.jpg" />
2074
+ <img src="http://m2.odeon.co.uk/_uploads/offers_competitions/300x170_4410a0df47b01260b962d91e5f95ca2f.jpg" />
2000
2075
  <i class="film-icon-img-ribbon">Book to win</i>
2001
- <h4>Win a 4 star boutique hotel stay</h4>
2002
- <p>With 'A Most Wanted Man'</p>
2003
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 05/10/2014</strong></p>
2004
- <a class="btn blue" href="/offers-and-promotions/win_a_4_star_boutique_hotel_stay/137/" >View this competition</a>
2076
+ <h4>Win a trip to Atlanta&nbsp;</h4>
2077
+ <p>And see the world of Divergent</p>
2078
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 19/03/2015</strong></p>
2079
+ <a class="btn blue" href="/offers-and-promotions/win_a_trip_to_atlanta/180/" >View this competition</a>
2005
2080
  </div>
2006
2081
  </div> <div class="span4">
2007
2082
  <div class="teaserComponent comp">
2008
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/300x170_2a7302eac156db50e66ae125e730aadc.jpg" />
2083
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/300x170_4dbc85326e4bf5dd27bda72605def0f9.jpg" />
2009
2084
  <i class="film-icon-img-ribbon">Book to win</i>
2010
- <h4>Win three nights in Nice</h4>
2011
- <p>With Magic In The Moonlight</p>
2012
- <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 19/10/2014</strong></p>
2013
- <a class="btn blue" href="/offers-and-promotions/win_three_nights_in_nice/139/" >View this competition</a>
2085
+ <h4>Win Swan Lake Prizes</h4>
2086
+ <p>With ODEON</p>
2087
+ <p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 17/03/2015</strong></p>
2088
+ <a class="btn blue" href="/offers-and-promotions/win_swan_lake_prizes/181/" >View this competition</a>
2014
2089
  </div>
2015
2090
  </div> </div>
2016
2091
  </div>
@@ -2086,10 +2161,10 @@
2086
2161
 
2087
2162
  </div>
2088
2163
  <div class="fd-quickbite-softdrink">
2089
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/pepsi.png" alt="Pepsi">
2164
+ <img src="http://m.odeon.co.uk/_uploads/cached/static/img/pepsi.png" alt="Pepsi">
2090
2165
  </div>
2091
2166
  <div class="fd-quickbite-popcorn">
2092
- <img src="http://m.odeon.co.uk/_uploads/cached/static/img/popcorn.png" alt="Popcorn">
2167
+ <img src="http://m2.odeon.co.uk/_uploads/cached/static/img/popcorn.png" alt="Popcorn">
2093
2168
  </div>
2094
2169
  </div>
2095
2170
  <script type="text/javascript" charset="utf-8">
@@ -2122,7 +2197,7 @@
2122
2197
  <div class="span12 white border-blue">
2123
2198
  <div class="tab-content">
2124
2199
  <div class="tab-pane cinema-info active" id="cinema-info" role="tabpanel">
2125
- <p>General Manager: Paul Doyle</p>
2200
+ <p>General Manager: Tessa Street</p>
2126
2201
  <p>ODEON Leicester Square is situated in the centre of London inside Leicester Square. The cinema has 1 main screen and 5 studios (Costa) Royal Circle seating, 5 ATMs which are located at the front of the cinema.</p>
2127
2202
  <h3>Local Facility</h3>
2128
2203
  <p>The cinema is situated in the heart of the West End and is surrounded by bars, restaurants, pubs, clubs of every description. <br />
@@ -2177,7 +2252,10 @@ The ODEON Studios Screens are located across three floors; Screen 1 is on the gr
2177
2252
  Access to the Screens is via lift or stairs with handrails; the lift is directly into the Screen because within the floor foyers there are steps with no access for Wheelchair users or those with limited mobility.<br />
2178
2253
  <br />
2179
2254
  <b>Location of Washroom Facilities</b><br />
2180
- Male and female washrooms are located on the first floor, with a fully accessible toilet only available within the ground floor foyer.</p>
2255
+ Male and female washrooms are located on the first floor, with a fully accessible toilet only available within the ground floor foyer.<br />
2256
+ <br />
2257
+ <b>Parking</b><br />
2258
+ <a href="http://www.parkjockey.com/odeon-leicester-square?utm_source=odeon&utm_medium=access_page&utm_campaign=odeon" target="_blank">The cinema has no parking, to find or pre book your nearest car parking space for ODEON Leicester Square please click here</a>.</p>
2181
2259
  <p>
2182
2260
  CEA Card: As part of a general cinema industry initiative, all our cinemas accept the CEA Card which entitles the holder to one free ticket for their carer. For further
2183
2261
  information please visit <a target="_blank" href="http://www.ceacard.co.uk">www.ceacard.co.uk</a> (opens in a new window).
@@ -2302,7 +2380,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
2302
2380
  <div class="row">
2303
2381
  <div class="span4">
2304
2382
  <div class="teaserComponent comp">
2305
- <img src="http://m2.odeon.co.uk/_uploads/cached/static/img/cinema-info-01.jpg">
2383
+ <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/cinema-info-01.jpg">
2306
2384
  <h4>Conferencing</h4>
2307
2385
  <ul>
2308
2386
  <li>AGMs</li>
@@ -2316,7 +2394,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
2316
2394
  </div>
2317
2395
  <div class="span4">
2318
2396
  <div class="teaserComponent comp">
2319
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/cinema-info-02.jpg">
2397
+ <img src="http://m.odeon.co.uk/_uploads/cached/static/img/cinema-info-02.jpg">
2320
2398
  <h4>Private screenings</h4>
2321
2399
  <ul>
2322
2400
  <li>Corporate hospitality</li>
@@ -2328,7 +2406,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
2328
2406
  </div>
2329
2407
  <div class="span4">
2330
2408
  <div class="teaserComponent comp">
2331
- <img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/cinema-info-03.jpg">
2409
+ <img src="http://m2.odeon.co.uk/_uploads/cached/static/img/cinema-info-03.jpg">
2332
2410
  <h4>Venue hire</h4>
2333
2411
  <ul>
2334
2412
  <li>Film shoots</li>
@@ -2369,18 +2447,13 @@ Male and female washrooms are located on the first floor, with a fully accessibl
2369
2447
  //-->
2370
2448
  </script> <div class="drev-inpage-banner-outer-bottom">
2371
2449
  <div class="drev-inpage-banner-inner -ce-capture">
2372
- <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>
2373
- </div>
2450
+ </div>
2374
2451
  </div>
2375
2452
 
2376
2453
  <div id="ad_skyscraper" class="drev-skyscraper-banner-one -ce-capture">
2377
2454
  <script type='text/javascript'><!--// <![CDATA[
2378
2455
  OA_show(12);
2379
2456
  // ]]> --></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>
2380
- <div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
2381
- <script type='text/javascript'><!--// <![CDATA[
2382
- OA_show(21);
2383
- // ]]> --></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>
2384
2457
  <footer>
2385
2458
  <div class="row content">
2386
2459
  <hr />
@@ -2430,14 +2503,12 @@ Male and female washrooms are located on the first floor, with a fully accessibl
2430
2503
  <li><a href="http://www.odeon.co.uk/contactus/">Contact Us</a></li>
2431
2504
  <li><a href="http://www.odeon.co.uk/privacy-and-legal/cookie-policy/">About our Cookies</a></li>
2432
2505
  </ul>
2433
- <h2>Filmline: 0871 22 44 007</h2>
2434
- <p>Calls cost 10p per minute plus network extras.</p>
2435
2506
  </div>
2436
2507
  </div>
2437
2508
  <hr />
2438
2509
  <div class="container">
2439
2510
  <div class="span9">
2440
- <span>&copy; ODEON Cinemas Holdings Limited 2006 to 2014 - All rights reserved.</span>
2511
+ <span>&copy; ODEON Cinemas Holdings Limited 2006 to 2015 - All rights reserved.</span>
2441
2512
  </div>
2442
2513
  <div class="span3">
2443
2514
  <ul class="inline">