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.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/CHANGELOG.md +6 -0
- data/Rakefile +29 -0
- data/lib/odeon_uk/api/cinema.rb +62 -0
- data/lib/odeon_uk/api/response.rb +55 -0
- data/lib/odeon_uk/api/screenings.rb +89 -0
- data/lib/odeon_uk/cinema.rb +53 -114
- data/lib/odeon_uk/configuration.rb +21 -0
- data/lib/odeon_uk/html/cinema.rb +101 -0
- data/lib/odeon_uk/html/parser/film_with_screenings.rb +160 -0
- data/lib/odeon_uk/html/screenings.rb +38 -0
- data/lib/odeon_uk/{internal → html}/website.rb +1 -1
- data/lib/odeon_uk/internal/title_sanitizer.rb +1 -0
- data/lib/odeon_uk/screening.rb +7 -15
- data/lib/odeon_uk/version.rb +2 -2
- data/lib/odeon_uk.rb +11 -4
- data/odeon_uk.gemspec +2 -0
- data/rake/fixture_creator.rb +98 -0
- data/test/fixtures/api/all_cinemas.plist +0 -0
- data/test/fixtures/api/app_init.plist +0 -0
- data/test/fixtures/api/film_times/71-100747.plist +0 -0
- data/test/fixtures/api/film_times/71-100750.plist +0 -0
- data/test/fixtures/api/film_times/71-100790.plist +0 -0
- data/test/fixtures/api/film_times/71-14646.plist +0 -0
- data/test/fixtures/api/film_times/71-14725.plist +0 -0
- data/test/fixtures/api/film_times/71-15086.plist +0 -0
- data/test/fixtures/api/film_times/71-15096.plist +0 -0
- data/test/fixtures/api/film_times/71-15122.plist +0 -0
- data/test/fixtures/api/film_times/71-15130.plist +0 -0
- data/test/fixtures/api/film_times/71-15141.plist +0 -0
- data/test/fixtures/api/film_times/71-15142.plist +0 -0
- data/test/fixtures/api/film_times/71-15143.plist +0 -0
- data/test/fixtures/api/film_times/71-15144.plist +0 -0
- data/test/fixtures/api/film_times/71-15145.plist +0 -0
- data/test/fixtures/api/film_times/71-15170.plist +0 -0
- data/test/fixtures/api/film_times/71-15172.plist +0 -0
- data/test/fixtures/api/film_times/71-15177.plist +0 -0
- data/test/fixtures/api/film_times/71-15179.plist +0 -0
- data/test/fixtures/api/film_times/71-15182.plist +0 -0
- data/test/fixtures/api/film_times/71-15286.plist +0 -0
- data/test/fixtures/api/film_times/71-15360.plist +0 -0
- data/test/fixtures/api/film_times/71-15586.plist +0 -0
- data/test/fixtures/api/film_times/71-15700.plist +0 -0
- data/test/fixtures/api/film_times/71-15718.plist +0 -0
- data/test/fixtures/api/film_times/71-15768.plist +0 -0
- data/test/fixtures/api/film_times/71-15788.plist +0 -0
- data/test/fixtures/api/film_times/71-15793.plist +0 -0
- data/test/fixtures/api/film_times/71-15794.plist +0 -0
- data/test/fixtures/api/film_times/71-15795.plist +0 -0
- data/test/fixtures/api/film_times/71-15796.plist +0 -0
- data/test/fixtures/api/film_times/71-15799.plist +0 -0
- data/test/fixtures/api/film_times/71-15802.plist +0 -0
- data/test/fixtures/api/film_times/71-15814.plist +0 -0
- data/test/fixtures/api/film_times/71-15817.plist +0 -0
- data/test/fixtures/api/film_times/71-15840.plist +0 -0
- data/test/fixtures/{cinema/leicester_square.html → html/cinema/105.html} +384 -313
- data/test/fixtures/{cinema/bfi_imax.html → html/cinema/211.html} +677 -355
- data/test/fixtures/{cinema/brighton.html → html/cinema/71.html} +899 -431
- data/test/fixtures/html/showtimes/11-imax.html +170 -0
- data/test/fixtures/html/showtimes/171-d-box.html +203 -0
- data/test/fixtures/html/showtimes/71-0.html +59 -0
- data/test/fixtures/html/showtimes/71.html +2395 -0
- data/test/fixtures/{sitemap.html → html/sitemap.html} +264 -352
- data/test/lib/odeon_uk/api/cinema_test.rb +149 -0
- data/test/lib/odeon_uk/api/response_test.rb +44 -0
- data/test/lib/odeon_uk/api/screenings_test.rb +43 -0
- data/test/lib/odeon_uk/cinema_test.rb +373 -148
- data/test/lib/odeon_uk/configuration_test.rb +29 -0
- data/test/lib/odeon_uk/html/cinema_test.rb +149 -0
- data/test/lib/odeon_uk/{internal/film_with_screenings_parser_test.rb → html/parser/film_with_screenings_test.rb} +12 -42
- data/test/lib/odeon_uk/html/screenings_test.rb +43 -0
- data/test/lib/odeon_uk/html/website_test.rb +37 -0
- data/test/lib/odeon_uk/screening_test.rb +17 -83
- data/test/support/api_fixtures_helper.rb +34 -0
- data/test/support/website_fixtures_helper.rb +25 -0
- data/test/test_helper.rb +7 -2
- metadata +149 -34
- data/lib/odeon_uk/film.rb +0 -65
- data/lib/odeon_uk/internal/film_with_screenings_parser.rb +0 -159
- data/lib/odeon_uk/internal/showtimes_page.rb +0 -36
- data/test/fixture_updater.rb +0 -72
- data/test/fixtures/showtimes/brighton/film_first.html +0 -92
- data/test/fixtures/showtimes/brighton/film_last.html +0 -100
- data/test/fixtures/showtimes/brighton.html +0 -2071
- data/test/fixtures/showtimes/liverpool_one/film_first_dbox.html +0 -188
- data/test/fixtures/showtimes/manchester/film_first_imax.html +0 -182
- data/test/lib/odeon_uk/film_test.rb +0 -142
- data/test/lib/odeon_uk/internal/showtimes_page_test.rb +0 -51
- data/test/lib/odeon_uk/internal/website_test.rb +0 -59
@@ -1,2071 +0,0 @@
|
|
1
|
-
<div class="span9">
|
2
|
-
<section id="ind-film-list">
|
3
|
-
<div class="content-container text">
|
4
|
-
<h4>Listings from:</h4>
|
5
|
-
<h4>Wed 17 Sep 2014 to Tue 23 Sep 2014</h4>
|
6
|
-
<span>
|
7
|
-
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>.
|
8
|
-
</span>
|
9
|
-
</div>
|
10
|
-
<form class="film-order">
|
11
|
-
<label for="ind-sort-films">Sort by:</label>
|
12
|
-
<div class="selectpicker select-icon-select">
|
13
|
-
<select id="sort-showtimes-WEEK" data-size="10" name="WEEK">
|
14
|
-
<option value="0" class="ASC">A-Z</option>
|
15
|
-
<option value="0" class="DESC">Z-A</option>
|
16
|
-
<option value="2" class="DESC">ODEON rating</option>
|
17
|
-
<option value="1" class="ASC">Release date</option>
|
18
|
-
</select>
|
19
|
-
</div>
|
20
|
-
</form>
|
21
|
-
</section>
|
22
|
-
<div class="content-container grey">
|
23
|
-
<h5 class="grey">Click on a film time to view more information</h5>
|
24
|
-
</div>
|
25
|
-
<section id="ind-film-list-WEEK">
|
26
|
-
|
27
|
-
<div id="23231" class="film-detail WEEK">
|
28
|
-
|
29
|
-
<div class="content-container film _WEEK" id="film-23231">
|
30
|
-
<div class="grad-hor">
|
31
|
-
<a href="/films/a_most_wanted_man/14578/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_5c90831931ced559e84af38f832a6343.jpg" /></a>
|
32
|
-
<div class="presentation-info">
|
33
|
-
<h4><a href="/films/a_most_wanted_man/14578/">A Most Wanted Man</a></h4>
|
34
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
35
|
-
ID may be required </span>
|
36
|
-
</div>
|
37
|
-
<p><strong>A spy thriller examining contemporary counter-terrorism policies </strong></p>
|
38
|
-
|
39
|
-
<div class="presentation-info">
|
40
|
-
<div data-rating-master-id='14578' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
41
|
-
<div class="rating-icon-star-small-active s6" data-rating="6">
|
42
|
-
<div class="rate-over s1"></div>
|
43
|
-
<div class="rate-over s2"></div>
|
44
|
-
<div class="rate-over s3"></div>
|
45
|
-
<div class="rate-over s4"></div>
|
46
|
-
<div class="rate-over s5"></div>
|
47
|
-
</div>
|
48
|
-
</div>
|
49
|
-
<span class="description"><strong>Film length: 122 mins</strong></span>
|
50
|
-
</div>
|
51
|
-
<p class="description">Strong language.</p>
|
52
|
-
</div>
|
53
|
-
<div class="info-corner">
|
54
|
-
<div class="img-bundle">
|
55
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23231"></div> </div>
|
56
|
-
<div class="btn-group">
|
57
|
-
<a href="http://odeon.trailer.cineweb.de/a_most_wanted_man.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="14578" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
58
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
59
|
-
<span class="caret"></span>
|
60
|
-
</button>
|
61
|
-
<ul class="dropdown-menu">
|
62
|
-
<li><a href="#">Add to Playlist</a></li>
|
63
|
-
</ul>
|
64
|
-
</div> </div>
|
65
|
-
</div>
|
66
|
-
<div id="performances-WEEK-23231" class="content-container times-all _WEEK">
|
67
|
-
<div class="accordion-group times-all performances-WEEK _23231" id="tech-23231-0">
|
68
|
-
<div class="content-container tech accordion-heading _WEEK">
|
69
|
-
<a data-toggle="collapse" data-parent="#tech-23231-0-WEEK" class="accordion-toggle" href="#collapse-23231-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>
|
70
|
-
</div>
|
71
|
-
<div id="collapse-23231-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
72
|
-
<div class="accordion-inner">
|
73
|
-
|
74
|
-
<div class="content-container times containerWEEK">
|
75
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
76
|
-
<ul class="unstyled inline">
|
77
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NDQxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Super Saver - book A Most Wanted Man on 17/09/2014 15:00" data-popup="popup" data-duration="122" data-start="15:00" data-end="17:02" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTQxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 17/09/2014 17:50" data-popup="popup" data-duration="122" data-start="17:50" data-end="19:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">17:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDUxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 17/09/2014 20:40" data-popup="popup" data-duration="122" data-start="20:40" data-end="22:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
78
|
-
</div>
|
79
|
-
|
80
|
-
<div class="content-container times containerWEEK">
|
81
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
82
|
-
<ul class="unstyled inline">
|
83
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NTQxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Super Saver - book A Most Wanted Man on 18/09/2014 15:00" data-popup="popup" data-duration="122" data-start="15:00" data-end="17:02" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjQxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 18/09/2014 17:50" data-popup="popup" data-duration="122" data-start="17:50" data-end="19:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">17:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTUxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 18/09/2014 20:40" data-popup="popup" data-duration="122" data-start="20:40" data-end="22:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
84
|
-
</div>
|
85
|
-
|
86
|
-
<div class="content-container times containerWEEK">
|
87
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
88
|
-
<ul class="unstyled inline">
|
89
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzQyMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 20/09/2014 16:40" data-popup="popup" data-duration="122" data-start="16:40" data-end="18:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li> </ul>
|
90
|
-
</div>
|
91
|
-
|
92
|
-
<div class="content-container times containerWEEK">
|
93
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
94
|
-
<ul class="unstyled inline">
|
95
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjQyMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Peak - book A Most Wanted Man on 21/09/2014 16:40" data-popup="popup" data-duration="122" data-start="16:40" data-end="18:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li> </ul>
|
96
|
-
</div>
|
97
|
-
|
98
|
-
<div class="content-container times containerWEEK">
|
99
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
100
|
-
<ul class="unstyled inline">
|
101
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDUyMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Super Saver - book A Most Wanted Man on 22/09/2014 16:40" data-popup="popup" data-duration="122" data-start="16:40" data-end="18:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li> </ul>
|
102
|
-
</div>
|
103
|
-
|
104
|
-
<div class="content-container times containerWEEK">
|
105
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
106
|
-
<ul class="unstyled inline">
|
107
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTUyMzEwMDAwMjNVRFBETVhHIzcxIzE0NTc4/" class="performance-detail" title="Bargain - book A Most Wanted Man on 23/09/2014 16:40" data-popup="popup" data-duration="122" data-start="16:40" data-end="18:42" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li> </ul>
|
108
|
-
</div>
|
109
|
-
|
110
|
-
<div class="content-container times stopper performances-WEEK _23231"></div>
|
111
|
-
</div>
|
112
|
-
</div>
|
113
|
-
</div>
|
114
|
-
|
115
|
-
<!-- <div class="content-container times stopper performances-WEEK _23231"></div>-->
|
116
|
-
<div class="content-container white performances-WEEK _23231"></div>
|
117
|
-
</div>
|
118
|
-
</div>
|
119
|
-
|
120
|
-
<div id="25550" class="film-detail WEEK">
|
121
|
-
|
122
|
-
<div class="content-container film _WEEK" id="film-25550">
|
123
|
-
<div class="grad-hor">
|
124
|
-
<a href="/films/a_walk_among_the_tombstones/15103/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_c158eed3e314e97ec1762e63cf132bc3.jpg" /></a>
|
125
|
-
<div class="presentation-info">
|
126
|
-
<h4><a href="/films/a_walk_among_the_tombstones/15103/">A Walk Among The Tombstones</a></h4>
|
127
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
128
|
-
ID may be required </span>
|
129
|
-
</div>
|
130
|
-
<p><strong>Crime-drama centered on fictional private eye Matt Scudder.</strong></p>
|
131
|
-
|
132
|
-
<div class="presentation-info">
|
133
|
-
<div data-rating-master-id='15103' data-return-to='/showtimes/week/71/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
134
|
-
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
135
|
-
<div class="rate-over s1"></div>
|
136
|
-
<div class="rate-over s2"></div>
|
137
|
-
<div class="rate-over s3"></div>
|
138
|
-
<div class="rate-over s4"></div>
|
139
|
-
<div class="rate-over s5"></div>
|
140
|
-
</div>
|
141
|
-
<i class="rating-icon-buzz-small-icon"></i>
|
142
|
-
</div>
|
143
|
-
<span class="description"><strong>Film length: 114 mins</strong></span>
|
144
|
-
</div>
|
145
|
-
<p class="description">strong bloody violence, sexualised violence, very strong language</p>
|
146
|
-
</div>
|
147
|
-
<div class="info-corner">
|
148
|
-
<div class="img-bundle">
|
149
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25550"></div> </div>
|
150
|
-
<div class="btn-group">
|
151
|
-
<a href="http://odeon.trailer.cineweb.de/a_walk_among.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15103" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
152
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
153
|
-
<span class="caret"></span>
|
154
|
-
</button>
|
155
|
-
<ul class="dropdown-menu">
|
156
|
-
<li><a href="#">Add to Playlist</a></li>
|
157
|
-
</ul>
|
158
|
-
</div> </div>
|
159
|
-
</div>
|
160
|
-
<div id="performances-WEEK-25550" class="content-container times-all _WEEK">
|
161
|
-
<div class="accordion-group times-all performances-WEEK _25550" id="tech-25550-0">
|
162
|
-
<div class="content-container tech accordion-heading _WEEK">
|
163
|
-
<a data-toggle="collapse" data-parent="#tech-25550-0-WEEK" class="accordion-toggle" href="#collapse-25550-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>
|
164
|
-
</div>
|
165
|
-
<div id="collapse-25550-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
166
|
-
<div class="accordion-inner">
|
167
|
-
|
168
|
-
<div class="content-container times containerWEEK">
|
169
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
170
|
-
<ul class="unstyled inline">
|
171
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MUYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 19/09/2014 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MkYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 19/09/2014 15:40" data-popup="popup" data-duration="114" data-start="15:40" data-end="17:34" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">15:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/M0YxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 19/09/2014 18:20" data-popup="popup" data-duration="114" data-start="18:20" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">18:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NEYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 19/09/2014 21:00" data-popup="popup" data-duration="114" data-start="21:00" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
172
|
-
</div>
|
173
|
-
|
174
|
-
<div class="content-container times containerWEEK">
|
175
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
176
|
-
<ul class="unstyled inline">
|
177
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NUYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 20/09/2014 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QkYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 20/09/2014 15:40" data-popup="popup" data-duration="114" data-start="15:40" data-end="17:34" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">15:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 20/09/2014 18:20" data-popup="popup" data-duration="114" data-start="18:20" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">18:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 20/09/2014 21:00" data-popup="popup" data-duration="114" data-start="21:00" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
178
|
-
</div>
|
179
|
-
|
180
|
-
<div class="content-container times containerWEEK">
|
181
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
182
|
-
<ul class="unstyled inline">
|
183
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NkYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 21/09/2014 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/Q0YxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 21/09/2014 15:40" data-popup="popup" data-duration="114" data-start="15:40" data-end="17:34" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">15:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 21/09/2014 18:20" data-popup="popup" data-duration="114" data-start="18:20" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">18:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/ODAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 21/09/2014 21:00" data-popup="popup" data-duration="114" data-start="21:00" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
184
|
-
</div>
|
185
|
-
|
186
|
-
<div class="content-container times containerWEEK">
|
187
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
188
|
-
<ul class="unstyled inline">
|
189
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/N0YxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Super Saver - book A Walk Among The Tombstones on 22/09/2014 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/REYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Super Saver - book A Walk Among The Tombstones on 22/09/2014 15:40" data-popup="popup" data-duration="114" data-start="15:40" data-end="17:34" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">15:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MzAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 22/09/2014 18:20" data-popup="popup" data-duration="114" data-start="18:20" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">18:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OTAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Peak - book A Walk Among The Tombstones on 22/09/2014 21:00" data-popup="popup" data-duration="114" data-start="21:00" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
190
|
-
</div>
|
191
|
-
|
192
|
-
<div class="content-container times containerWEEK">
|
193
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
194
|
-
<ul class="unstyled inline">
|
195
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OEYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Bargain - book A Walk Among The Tombstones on 23/09/2014 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">13:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RUYxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Bargain - book A Walk Among The Tombstones on 23/09/2014 15:40" data-popup="popup" data-duration="114" data-start="15:40" data-end="17:34" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">15:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NDAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Bargain - book A Walk Among The Tombstones on 23/09/2014 18:20" data-popup="popup" data-duration="114" data-start="18:20" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">18:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTAz/" class="performance-detail" title="Bargain - book A Walk Among The Tombstones on 23/09/2014 21:00" data-popup="popup" data-duration="114" data-start="21:00" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
196
|
-
</div>
|
197
|
-
|
198
|
-
<div class="content-container times stopper performances-WEEK _25550"></div>
|
199
|
-
</div>
|
200
|
-
</div>
|
201
|
-
</div>
|
202
|
-
|
203
|
-
<!-- <div class="content-container times stopper performances-WEEK _25550"></div>-->
|
204
|
-
<div class="content-container white performances-WEEK _25550"></div>
|
205
|
-
</div>
|
206
|
-
</div>
|
207
|
-
|
208
|
-
<div id="25493" class="film-detail WEEK">
|
209
|
-
|
210
|
-
<div class="content-container film _WEEK" id="film-25493">
|
211
|
-
<div class="grad-hor">
|
212
|
-
<a href="/films/before_i_go_to_sleep/15129/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_2b82f49cfea3e2958f949dfef3486da3.jpg" /></a>
|
213
|
-
<div class="presentation-info">
|
214
|
-
<h4><a href="/films/before_i_go_to_sleep/15129/">Before I Go To Sleep</a></h4>
|
215
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
216
|
-
ID may be required </span>
|
217
|
-
</div>
|
218
|
-
<p><strong>A twist-filled mystery about a woman with memory problems.</strong></p>
|
219
|
-
|
220
|
-
<div class="presentation-info">
|
221
|
-
<div data-rating-master-id='15129' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
222
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
223
|
-
<div class="rate-over s1"></div>
|
224
|
-
<div class="rate-over s2"></div>
|
225
|
-
<div class="rate-over s3"></div>
|
226
|
-
<div class="rate-over s4"></div>
|
227
|
-
<div class="rate-over s5"></div>
|
228
|
-
</div>
|
229
|
-
</div>
|
230
|
-
<span class="description"><strong>Film length: 91 mins</strong></span>
|
231
|
-
</div>
|
232
|
-
<p class="description">Contains strong violence and language</p>
|
233
|
-
</div>
|
234
|
-
<div class="info-corner">
|
235
|
-
<div class="img-bundle">
|
236
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25493"></div> </div>
|
237
|
-
<div class="btn-group">
|
238
|
-
<a href="http://odeon.trailer.cineweb.de/before.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15129" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
239
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
240
|
-
<span class="caret"></span>
|
241
|
-
</button>
|
242
|
-
<ul class="dropdown-menu">
|
243
|
-
<li><a href="#">Add to Playlist</a></li>
|
244
|
-
</ul>
|
245
|
-
</div> </div>
|
246
|
-
</div>
|
247
|
-
<div id="performances-WEEK-25493" class="content-container times-all _WEEK">
|
248
|
-
<div class="accordion-group times-all performances-WEEK _25493" id="tech-25493-0">
|
249
|
-
<div class="content-container tech accordion-heading _WEEK">
|
250
|
-
<a data-toggle="collapse" data-parent="#tech-25493-0-WEEK" class="accordion-toggle" href="#collapse-25493-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>
|
251
|
-
</div>
|
252
|
-
<div id="collapse-25493-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
253
|
-
<div class="accordion-inner">
|
254
|
-
|
255
|
-
<div class="content-container times containerWEEK">
|
256
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
257
|
-
<ul class="unstyled inline">
|
258
|
-
<li class="WEEK performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Super Saver - book Before I Go To Sleep on 17/09/2014 16:00" data-popup="popup" data-duration="91" data-start="16:00" data-end="17:31" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">16:00</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NjMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 17/09/2014 18:15" data-popup="popup" data-duration="91" data-start="18:15" data-end="19:46" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:15</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 17/09/2014 20:30" data-popup="popup" data-duration="91" data-start="20:30" data-end="22:01" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
259
|
-
</div>
|
260
|
-
|
261
|
-
<div class="content-container times containerWEEK">
|
262
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
263
|
-
<ul class="unstyled inline">
|
264
|
-
<li class="WEEK performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjIxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Super Saver - book Before I Go To Sleep on 18/09/2014 13:45" data-popup="popup" data-duration="91" data-start="13:45" data-end="15:16" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:45</a></li><li class="WEEK performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Super Saver - book Before I Go To Sleep on 18/09/2014 16:00" data-popup="popup" data-duration="91" data-start="16:00" data-end="17:31" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">16:00</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 18/09/2014 18:15" data-popup="popup" data-duration="91" data-start="18:15" data-end="19:46" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:15</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDMxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 18/09/2014 20:30" data-popup="popup" data-duration="91" data-start="20:30" data-end="22:01" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
265
|
-
</div>
|
266
|
-
|
267
|
-
<div class="content-container times containerWEEK">
|
268
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
269
|
-
<ul class="unstyled inline">
|
270
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 19/09/2014 13:20" data-popup="popup" data-duration="91" data-start="13:20" data-end="14:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:20</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OTIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 19/09/2014 21:20" data-popup="popup" data-duration="91" data-start="21:20" data-end="22:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
271
|
-
</div>
|
272
|
-
|
273
|
-
<div class="content-container times containerWEEK">
|
274
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
275
|
-
<ul class="unstyled inline">
|
276
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 20/09/2014 13:20" data-popup="popup" data-duration="91" data-start="13:20" data-end="14:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:20</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 20/09/2014 21:20" data-popup="popup" data-duration="91" data-start="21:20" data-end="22:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
277
|
-
</div>
|
278
|
-
|
279
|
-
<div class="content-container times containerWEEK">
|
280
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
281
|
-
<ul class="unstyled inline">
|
282
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 21/09/2014 13:20" data-popup="popup" data-duration="91" data-start="13:20" data-end="14:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:20</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjMyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 21/09/2014 21:20" data-popup="popup" data-duration="91" data-start="21:20" data-end="22:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
283
|
-
</div>
|
284
|
-
|
285
|
-
<div class="content-container times containerWEEK">
|
286
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
287
|
-
<ul class="unstyled inline">
|
288
|
-
<li class="WEEK performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MzMyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Super Saver - book Before I Go To Sleep on 22/09/2014 13:20" data-popup="popup" data-duration="91" data-start="13:20" data-end="14:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:20</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NjMyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Peak - book Before I Go To Sleep on 22/09/2014 21:20" data-popup="popup" data-duration="91" data-start="21:20" data-end="22:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
289
|
-
</div>
|
290
|
-
|
291
|
-
<div class="content-container times containerWEEK">
|
292
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
293
|
-
<ul class="unstyled inline">
|
294
|
-
<li class="WEEK performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzMyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Bargain - book Before I Go To Sleep on 23/09/2014 13:20" data-popup="popup" data-duration="91" data-start="13:20" data-end="14:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">13:20</a></li><li class="WEEK performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTMyMzEwMDAwMjNVRFBETVhHIzcxIzE1MTI5/" class="performance-detail" title="Bargain - book Before I Go To Sleep on 23/09/2014 21:20" data-popup="popup" data-duration="91" data-start="21:20" data-end="22:51" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
295
|
-
</div>
|
296
|
-
|
297
|
-
<div class="content-container times stopper performances-WEEK _25493"></div>
|
298
|
-
</div>
|
299
|
-
</div>
|
300
|
-
</div>
|
301
|
-
|
302
|
-
<!-- <div class="content-container times stopper performances-WEEK _25493"></div>-->
|
303
|
-
<div class="content-container white performances-WEEK _25493"></div>
|
304
|
-
</div>
|
305
|
-
</div>
|
306
|
-
|
307
|
-
<div id="25302" class="film-detail WEEK">
|
308
|
-
|
309
|
-
<div class="content-container film _WEEK" id="film-25302">
|
310
|
-
<div class="grad-hor">
|
311
|
-
<a href="/films/guardians_of_the_galaxy/14690/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_8a1c5df689e494e8d6ce3f1794906bde.jpg" /></a>
|
312
|
-
<div class="presentation-info">
|
313
|
-
<h4><a href="/films/guardians_of_the_galaxy/14690/">Guardians Of The Galaxy</a></h4>
|
314
|
-
<a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
|
315
|
-
</span>
|
316
|
-
</div>
|
317
|
-
<p><strong>Action-packed sci-fi about a space-based superhero ensemble.</strong></p>
|
318
|
-
|
319
|
-
<div class="presentation-info">
|
320
|
-
<div data-rating-master-id='14690' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
321
|
-
<div class="rating-icon-star-small-active s9" data-rating="9">
|
322
|
-
<div class="rate-over s1"></div>
|
323
|
-
<div class="rate-over s2"></div>
|
324
|
-
<div class="rate-over s3"></div>
|
325
|
-
<div class="rate-over s4"></div>
|
326
|
-
<div class="rate-over s5"></div>
|
327
|
-
</div>
|
328
|
-
</div>
|
329
|
-
<span class="description"><strong>Film length: 128 mins</strong></span>
|
330
|
-
</div>
|
331
|
-
<p class="description">Moderate fantasy action violence, threat, moderate bad language.</p>
|
332
|
-
</div>
|
333
|
-
<div class="info-corner">
|
334
|
-
<div class="img-bundle">
|
335
|
-
<div class="film-icon-WEEK feature-icon-light-3d-medium WEEK_3D" data-schedule="3D" data-film="25302"></div><div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25302"></div> </div>
|
336
|
-
<div class="btn-group">
|
337
|
-
<a href="http://odeon.trailer.cineweb.de/guardian.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="14690" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
338
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
339
|
-
<span class="caret"></span>
|
340
|
-
</button>
|
341
|
-
<ul class="dropdown-menu">
|
342
|
-
<li><a href="#">Add to Playlist</a></li>
|
343
|
-
</ul>
|
344
|
-
</div> </div>
|
345
|
-
</div>
|
346
|
-
<div id="performances-WEEK-25302" class="content-container times-all _WEEK">
|
347
|
-
<div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-0">
|
348
|
-
<div class="content-container tech accordion-heading _WEEK">
|
349
|
-
<a data-toggle="collapse" data-parent="#tech-25302-0-WEEK" class="accordion-toggle" href="#collapse-25302-0-WEEK">in 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Touch the film and step inside. ODEON uses digital RealD 3D technology to give you the ultimate 3D experience. 3D glasses required."></a>
|
350
|
-
</div>
|
351
|
-
<div id="collapse-25302-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
352
|
-
<div class="accordion-inner">
|
353
|
-
|
354
|
-
<div class="content-container times containerWEEK">
|
355
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
356
|
-
<ul class="unstyled inline">
|
357
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/Q0IwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 17/09/2014 15:00" data-popup="popup" data-duration="128" data-start="15:00" data-end="17:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OEMwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 17/09/2014 20:30" data-popup="popup" data-duration="128" data-start="20:30" data-end="22:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
358
|
-
</div>
|
359
|
-
|
360
|
-
<div class="content-container times containerWEEK">
|
361
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
362
|
-
<ul class="unstyled inline">
|
363
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/REIwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 18/09/2014 15:00" data-popup="popup" data-duration="128" data-start="15:00" data-end="17:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OUMwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 20:30" data-popup="popup" data-duration="128" data-start="20:30" data-end="22:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
364
|
-
</div>
|
365
|
-
|
366
|
-
<div class="content-container times containerWEEK">
|
367
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
368
|
-
<ul class="unstyled inline">
|
369
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/REMxMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
370
|
-
</div>
|
371
|
-
|
372
|
-
<div class="content-container times containerWEEK">
|
373
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
374
|
-
<ul class="unstyled inline">
|
375
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RUMxMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
376
|
-
</div>
|
377
|
-
|
378
|
-
<div class="content-container times containerWEEK">
|
379
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
380
|
-
<ul class="unstyled inline">
|
381
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RkMxMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
382
|
-
</div>
|
383
|
-
|
384
|
-
<div class="content-container times containerWEEK">
|
385
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
386
|
-
<ul class="unstyled inline">
|
387
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_3D WEEK_AUDIODESCRIBED WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MEQxMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 20:15" data-popup="popup" data-duration="128" data-start="20:15" data-end="22:23" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
388
|
-
</div>
|
389
|
-
|
390
|
-
<div class="content-container times stopper performances-WEEK _25302"></div>
|
391
|
-
</div>
|
392
|
-
</div>
|
393
|
-
</div>
|
394
|
-
<div class="accordion-group times-all performances-WEEK _25302" id="tech-25302-1">
|
395
|
-
<div class="content-container tech accordion-heading _WEEK">
|
396
|
-
<a data-toggle="collapse" data-parent="#tech-25302-1-WEEK" class="accordion-toggle" href="#collapse-25302-1-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>
|
397
|
-
</div>
|
398
|
-
<div id="collapse-25302-1-WEEK" class="accordion-body in collapse" style="height: auto;">
|
399
|
-
<div class="accordion-inner">
|
400
|
-
|
401
|
-
<div class="content-container times containerWEEK">
|
402
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
403
|
-
<ul class="unstyled inline">
|
404
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MkMwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 17/09/2014 17:45" data-popup="popup" data-duration="128" data-start="17:45" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
405
|
-
</div>
|
406
|
-
|
407
|
-
<div class="content-container times containerWEEK">
|
408
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
409
|
-
<ul class="unstyled inline">
|
410
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/M0MwMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 18/09/2014 17:45" data-popup="popup" data-duration="128" data-start="17:45" data-end="19:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
411
|
-
</div>
|
412
|
-
|
413
|
-
<div class="content-container times containerWEEK">
|
414
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
415
|
-
<ul class="unstyled inline">
|
416
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/ODIyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QTIyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 19/09/2014 18:30" data-popup="popup" data-duration="128" data-start="18:30" data-end="20:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:30</a></li> </ul>
|
417
|
-
</div>
|
418
|
-
|
419
|
-
<div class="content-container times containerWEEK">
|
420
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
421
|
-
<ul class="unstyled inline">
|
422
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QzIyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RDIyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 20/09/2014 18:30" data-popup="popup" data-duration="128" data-start="18:30" data-end="20:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:30</a></li> </ul>
|
423
|
-
</div>
|
424
|
-
|
425
|
-
<div class="content-container times containerWEEK">
|
426
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
427
|
-
<ul class="unstyled inline">
|
428
|
-
<li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MDMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MTMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 21/09/2014 18:30" data-popup="popup" data-duration="128" data-start="18:30" data-end="20:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:30</a></li> </ul>
|
429
|
-
</div>
|
430
|
-
|
431
|
-
<div class="content-container times containerWEEK">
|
432
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
433
|
-
<ul class="unstyled inline">
|
434
|
-
<li class="WEEK performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NDMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Super Saver - book Guardians Of The Galaxy on 22/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NTMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Peak - book Guardians Of The Galaxy on 22/09/2014 18:30" data-popup="popup" data-duration="128" data-start="18:30" data-end="20:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:30</a></li> </ul>
|
435
|
-
</div>
|
436
|
-
|
437
|
-
<div class="content-container times containerWEEK">
|
438
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
439
|
-
<ul class="unstyled inline">
|
440
|
-
<li class="WEEK performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/ODMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 15:45" data-popup="popup" data-duration="128" data-start="15:45" data-end="17:53" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">15:45</a></li><li class="WEEK performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OTMyMzEwMDAwMjNVRFBETVhHIzcxIzE0Njkw/" class="performance-detail" title="Bargain - book Guardians Of The Galaxy on 23/09/2014 18:30" data-popup="popup" data-duration="128" data-start="18:30" data-end="20:38" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 7 (Not Wheelchair Accessible)" data-is-online="1">18:30</a></li> </ul>
|
441
|
-
</div>
|
442
|
-
|
443
|
-
<div class="content-container times stopper performances-WEEK _25302"></div>
|
444
|
-
</div>
|
445
|
-
</div>
|
446
|
-
</div>
|
447
|
-
|
448
|
-
<!-- <div class="content-container times stopper performances-WEEK _25302"></div>-->
|
449
|
-
<div class="content-container white performances-WEEK _25302"></div>
|
450
|
-
</div>
|
451
|
-
</div>
|
452
|
-
|
453
|
-
<div id="24907" class="film-detail WEEK">
|
454
|
-
|
455
|
-
<div class="content-container film _WEEK" id="film-24907">
|
456
|
-
<div class="grad-hor">
|
457
|
-
<a href="/films/how_to_train_your_dragon_2/15182/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_7dc416ecf1f40403159914d18351f6a4.jpg" /></a>
|
458
|
-
<div class="presentation-info">
|
459
|
-
<h4><a href="/films/how_to_train_your_dragon_2/15182/">How To Train Your Dragon 2</a></h4>
|
460
|
-
<a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
|
461
|
-
</span>
|
462
|
-
</div>
|
463
|
-
<p><strong>DreamWork's highly anticipated fantasy sequel.</strong></p>
|
464
|
-
|
465
|
-
<div class="presentation-info">
|
466
|
-
<div data-rating-master-id='15182' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
467
|
-
<div class="rating-icon-star-small-active s9" data-rating="9">
|
468
|
-
<div class="rate-over s1"></div>
|
469
|
-
<div class="rate-over s2"></div>
|
470
|
-
<div class="rate-over s3"></div>
|
471
|
-
<div class="rate-over s4"></div>
|
472
|
-
<div class="rate-over s5"></div>
|
473
|
-
</div>
|
474
|
-
</div>
|
475
|
-
<span class="description"><strong>Film length: 102 mins</strong></span>
|
476
|
-
</div>
|
477
|
-
<p class="description">Mild violence, threat.</p>
|
478
|
-
</div>
|
479
|
-
<div class="info-corner">
|
480
|
-
<div class="img-bundle">
|
481
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="24907"></div> </div>
|
482
|
-
<div class="btn-group">
|
483
|
-
<a href="http://odeon.trailer.cineweb.de/train_dragon_2.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15182" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
484
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
485
|
-
<span class="caret"></span>
|
486
|
-
</button>
|
487
|
-
<ul class="dropdown-menu">
|
488
|
-
<li><a href="#">Add to Playlist</a></li>
|
489
|
-
</ul>
|
490
|
-
</div> </div>
|
491
|
-
</div>
|
492
|
-
<div id="performances-WEEK-24907" class="content-container times-all _WEEK">
|
493
|
-
<div class="accordion-group times-all performances-WEEK _24907" id="tech-24907-0">
|
494
|
-
<div class="content-container tech accordion-heading _WEEK">
|
495
|
-
<a data-toggle="collapse" data-parent="#tech-24907-0-WEEK" class="accordion-toggle" href="#collapse-24907-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>
|
496
|
-
</div>
|
497
|
-
<div id="collapse-24907-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
498
|
-
<div class="accordion-inner">
|
499
|
-
|
500
|
-
<div class="content-container times containerWEEK">
|
501
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
502
|
-
<ul class="unstyled inline">
|
503
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_MORNING WEEK_2D WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/QTkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTgy/" class="performance-detail" title="Peak - book How To Train Your Dragon 2 on 20/09/2014 11:20" data-popup="popup" data-duration="102" data-start="11:20" data-end="13:02" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/QjkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTgy/" class="performance-detail" title="Peak - book How To Train Your Dragon 2 on 20/09/2014 13:45" data-popup="popup" data-duration="102" data-start="13:45" data-end="15:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
|
504
|
-
</div>
|
505
|
-
|
506
|
-
<div class="content-container times containerWEEK">
|
507
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
508
|
-
<ul class="unstyled inline">
|
509
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/QzkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MTgy/" class="performance-detail" title="Peak - book How To Train Your Dragon 2 on 21/09/2014 13:45" data-popup="popup" data-duration="102" data-start="13:45" data-end="15:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
|
510
|
-
</div>
|
511
|
-
|
512
|
-
<div class="content-container times stopper performances-WEEK _24907"></div>
|
513
|
-
</div>
|
514
|
-
</div>
|
515
|
-
</div>
|
516
|
-
|
517
|
-
<!-- <div class="content-container times stopper performances-WEEK _24907"></div>-->
|
518
|
-
<div class="content-container white performances-WEEK _24907"></div>
|
519
|
-
</div>
|
520
|
-
</div>
|
521
|
-
|
522
|
-
<div id="23478" class="film-detail WEEK">
|
523
|
-
|
524
|
-
<div class="content-container film _WEEK" id="film-23478">
|
525
|
-
<div class="grad-hor">
|
526
|
-
<a href="/films/labor_day/14679/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_db582d4bf58816238bd30e9cb3224e5e.jpg" /></a>
|
527
|
-
<div class="presentation-info">
|
528
|
-
<h4><a href="/films/labor_day/14679/">Labor Day</a></h4>
|
529
|
-
<a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
|
530
|
-
</span>
|
531
|
-
</div>
|
532
|
-
<p><strong>An unconventional love story starring Kate Winslet.</strong></p>
|
533
|
-
|
534
|
-
<div class="presentation-info">
|
535
|
-
<div data-rating-master-id='14679' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
536
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
537
|
-
<div class="rate-over s1"></div>
|
538
|
-
<div class="rate-over s2"></div>
|
539
|
-
<div class="rate-over s3"></div>
|
540
|
-
<div class="rate-over s4"></div>
|
541
|
-
<div class="rate-over s5"></div>
|
542
|
-
</div>
|
543
|
-
</div>
|
544
|
-
<span class="description"><strong>Film length: 111 mins</strong></span>
|
545
|
-
</div>
|
546
|
-
<p class="description">Contains infrequent moderate sex, sex references and violence.</p>
|
547
|
-
</div>
|
548
|
-
<div class="info-corner">
|
549
|
-
<div class="img-bundle">
|
550
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23478"></div> </div>
|
551
|
-
<div class="btn-group">
|
552
|
-
<a href="http://odeon.trailer.cineweb.de/labor_day.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="14679" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
553
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
554
|
-
<span class="caret"></span>
|
555
|
-
</button>
|
556
|
-
<ul class="dropdown-menu">
|
557
|
-
<li><a href="#">Add to Playlist</a></li>
|
558
|
-
</ul>
|
559
|
-
</div> </div>
|
560
|
-
</div>
|
561
|
-
<div id="performances-WEEK-23478" class="content-container times-all _WEEK">
|
562
|
-
<div class="accordion-group times-all performances-WEEK _23478" id="tech-23478-0">
|
563
|
-
<div class="content-container tech accordion-heading _WEEK">
|
564
|
-
<a data-toggle="collapse" data-parent="#tech-23478-0-WEEK" class="accordion-toggle" href="#collapse-23478-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>
|
565
|
-
</div>
|
566
|
-
<div id="collapse-23478-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
567
|
-
<div class="accordion-inner">
|
568
|
-
|
569
|
-
<div class="content-container times containerWEEK">
|
570
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
571
|
-
<ul class="unstyled inline">
|
572
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-darkgreen WEEK_12A WEEK_MORNING WEEK_SENIORSCREEN WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NDUxMzEwMDAwMjNVRFBETVhHIzcxIzE0Njc5/" class="performance-detail" title="Special Screening - book Labor Day on 18/09/2014 10:30" data-popup="popup" data-duration="111" data-start="10:30" data-end="12:21" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">10:30</a><i class="WEEK small moar ">Senior<br/>Screen</i></li> </ul>
|
573
|
-
</div>
|
574
|
-
|
575
|
-
<div class="content-container times stopper performances-WEEK _23478"></div>
|
576
|
-
</div>
|
577
|
-
</div>
|
578
|
-
</div>
|
579
|
-
|
580
|
-
<!-- <div class="content-container times stopper performances-WEEK _23478"></div>-->
|
581
|
-
<div class="content-container white performances-WEEK _23478"></div>
|
582
|
-
</div>
|
583
|
-
</div>
|
584
|
-
|
585
|
-
<div id="25434" class="film-detail WEEK">
|
586
|
-
|
587
|
-
<div class="content-container film _WEEK" id="film-25434">
|
588
|
-
<div class="grad-hor">
|
589
|
-
<a href="/films/lucy/15067/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_4eb8660a408116b12b95883f2f410d14.jpg" /></a>
|
590
|
-
<div class="presentation-info">
|
591
|
-
<h4><a href="/films/lucy/15067/">Lucy</a></h4>
|
592
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
593
|
-
ID may be required </span>
|
594
|
-
</div>
|
595
|
-
<p><strong>A sci-fi action thriller starring Scarlett Johansson.</strong></p>
|
596
|
-
|
597
|
-
<div class="presentation-info">
|
598
|
-
<div data-rating-master-id='15067' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
599
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
600
|
-
<div class="rate-over s1"></div>
|
601
|
-
<div class="rate-over s2"></div>
|
602
|
-
<div class="rate-over s3"></div>
|
603
|
-
<div class="rate-over s4"></div>
|
604
|
-
<div class="rate-over s5"></div>
|
605
|
-
</div>
|
606
|
-
</div>
|
607
|
-
<span class="description"><strong>Film length: 89 mins</strong></span>
|
608
|
-
</div>
|
609
|
-
<p class="description">strong bloody violence</p>
|
610
|
-
</div>
|
611
|
-
<div class="info-corner">
|
612
|
-
<div class="img-bundle">
|
613
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25434"></div> </div>
|
614
|
-
<div class="btn-group">
|
615
|
-
<a href="http://odeon.trailer.cineweb.de/lucy.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15067" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
616
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
617
|
-
<span class="caret"></span>
|
618
|
-
</button>
|
619
|
-
<ul class="dropdown-menu">
|
620
|
-
<li><a href="#">Add to Playlist</a></li>
|
621
|
-
</ul>
|
622
|
-
</div> </div>
|
623
|
-
</div>
|
624
|
-
<div id="performances-WEEK-25434" class="content-container times-all _WEEK">
|
625
|
-
<div class="accordion-group times-all performances-WEEK _25434" id="tech-25434-0">
|
626
|
-
<div class="content-container tech accordion-heading _WEEK">
|
627
|
-
<a data-toggle="collapse" data-parent="#tech-25434-0-WEEK" class="accordion-toggle" href="#collapse-25434-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>
|
628
|
-
</div>
|
629
|
-
<div id="collapse-25434-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
630
|
-
<div class="accordion-inner">
|
631
|
-
|
632
|
-
<div class="content-container times containerWEEK">
|
633
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
634
|
-
<ul class="unstyled inline">
|
635
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/Q0QwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Super Saver - book Lucy on 17/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MkUwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 17/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OEUwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 17/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
636
|
-
</div>
|
637
|
-
|
638
|
-
<div class="content-container times containerWEEK">
|
639
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
640
|
-
<ul class="unstyled inline">
|
641
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/N0QwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Super Saver - book Lucy on 18/09/2014 14:00" data-popup="popup" data-duration="89" data-start="14:00" data-end="15:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/REQwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Super Saver - book Lucy on 18/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/M0UwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 18/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OUUwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 18/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
642
|
-
</div>
|
643
|
-
|
644
|
-
<div class="content-container times containerWEEK">
|
645
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
646
|
-
<ul class="unstyled inline">
|
647
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/MkExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 19/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/M0ExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 19/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NEExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 19/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
648
|
-
</div>
|
649
|
-
|
650
|
-
<div class="content-container times containerWEEK">
|
651
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
652
|
-
<ul class="unstyled inline">
|
653
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NUExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 20/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/NkExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 20/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/N0ExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 20/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
654
|
-
</div>
|
655
|
-
|
656
|
-
<div class="content-container times containerWEEK">
|
657
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
658
|
-
<ul class="unstyled inline">
|
659
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OEExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 21/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/OUExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 21/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QUExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 21/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
660
|
-
</div>
|
661
|
-
|
662
|
-
<div class="content-container times containerWEEK">
|
663
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
664
|
-
<ul class="unstyled inline">
|
665
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/QkExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Super Saver - book Lucy on 22/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/Q0ExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Peak - book Lucy on 22/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
666
|
-
</div>
|
667
|
-
|
668
|
-
<div class="content-container times containerWEEK">
|
669
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
670
|
-
<ul class="unstyled inline">
|
671
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/REExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Bargain - book Lucy on 23/09/2014 16:30" data-popup="popup" data-duration="89" data-start="16:30" data-end="17:59" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RUExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Bargain - book Lucy on 23/09/2014 18:45" data-popup="popup" data-duration="89" data-start="18:45" data-end="20:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 show"><a href="https://www.odeon.co.uk/booking/init/RkExMzEwMDAwMjNVRFBETVhHIzcxIzE1MDY3/" class="performance-detail" title="Bargain - book Lucy on 23/09/2014 21:00" data-popup="popup" data-duration="89" data-start="21:00" data-end="22:29" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:00</a></li> </ul>
|
672
|
-
</div>
|
673
|
-
|
674
|
-
<div class="content-container times stopper performances-WEEK _25434"></div>
|
675
|
-
</div>
|
676
|
-
</div>
|
677
|
-
</div>
|
678
|
-
|
679
|
-
<!-- <div class="content-container times stopper performances-WEEK _25434"></div>-->
|
680
|
-
<div class="content-container white performances-WEEK _25434"></div>
|
681
|
-
</div>
|
682
|
-
</div>
|
683
|
-
|
684
|
-
<div id="25555" class="film-detail WEEK">
|
685
|
-
|
686
|
-
<div class="content-container film _WEEK" id="film-25555">
|
687
|
-
<div class="grad-hor">
|
688
|
-
<a href="/films/magic_in_the_moonlight/15265/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_16ce367bee8f3b859aa42493c2e2ca07.jpg" /></a>
|
689
|
-
<div class="presentation-info">
|
690
|
-
<h4><a href="/films/magic_in_the_moonlight/15265/">Magic In The Moonlight</a></h4>
|
691
|
-
<a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
|
692
|
-
</span>
|
693
|
-
</div>
|
694
|
-
<p><strong>A whimsical France-set romantic comedy from Woody Allen.</strong></p>
|
695
|
-
|
696
|
-
<div class="presentation-info">
|
697
|
-
<div data-rating-master-id='15265' data-return-to='/showtimes/week/71/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
698
|
-
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
699
|
-
<div class="rate-over s1"></div>
|
700
|
-
<div class="rate-over s2"></div>
|
701
|
-
<div class="rate-over s3"></div>
|
702
|
-
<div class="rate-over s4"></div>
|
703
|
-
<div class="rate-over s5"></div>
|
704
|
-
</div>
|
705
|
-
<i class="rating-icon-buzz-small-icon"></i>
|
706
|
-
</div>
|
707
|
-
<span class="description"><strong>Film length: 98 mins</strong></span>
|
708
|
-
</div>
|
709
|
-
<p class="description">Moderate sex reference</p>
|
710
|
-
</div>
|
711
|
-
<div class="info-corner">
|
712
|
-
<div class="img-bundle">
|
713
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25555"></div> </div>
|
714
|
-
<div class="btn-group">
|
715
|
-
<a href="http://odeon.trailer.cineweb.de/magic_in_the_moonlight.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15265" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
716
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
717
|
-
<span class="caret"></span>
|
718
|
-
</button>
|
719
|
-
<ul class="dropdown-menu">
|
720
|
-
<li><a href="#">Add to Playlist</a></li>
|
721
|
-
</ul>
|
722
|
-
</div> </div>
|
723
|
-
</div>
|
724
|
-
<div id="performances-WEEK-25555" class="content-container times-all _WEEK">
|
725
|
-
<div class="accordion-group times-all performances-WEEK _25555" id="tech-25555-0">
|
726
|
-
<div class="content-container tech accordion-heading _WEEK">
|
727
|
-
<a data-toggle="collapse" data-parent="#tech-25555-0-WEEK" class="accordion-toggle" href="#collapse-25555-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>
|
728
|
-
</div>
|
729
|
-
<div id="collapse-25555-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
730
|
-
<div class="accordion-inner">
|
731
|
-
|
732
|
-
<div class="content-container times containerWEEK">
|
733
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
734
|
-
<ul class="unstyled inline">
|
735
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/NUQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 19/09/2014 13:30" data-popup="popup" data-duration="98" data-start="13:30" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/NkQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 19/09/2014 15:50" data-popup="popup" data-duration="98" data-start="15:50" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">15:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/N0QxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 19/09/2014 18:10" data-popup="popup" data-duration="98" data-start="18:10" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:10</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/OEQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 19/09/2014 20:30" data-popup="popup" data-duration="98" data-start="20:30" data-end="22:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
736
|
-
</div>
|
737
|
-
|
738
|
-
<div class="content-container times containerWEEK">
|
739
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
740
|
-
<ul class="unstyled inline">
|
741
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/OUQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 20/09/2014 13:30" data-popup="popup" data-duration="98" data-start="13:30" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/QUQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 20/09/2014 15:50" data-popup="popup" data-duration="98" data-start="15:50" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">15:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/QkQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 20/09/2014 18:10" data-popup="popup" data-duration="98" data-start="18:10" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:10</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/Q0QxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 20/09/2014 20:30" data-popup="popup" data-duration="98" data-start="20:30" data-end="22:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
742
|
-
</div>
|
743
|
-
|
744
|
-
<div class="content-container times containerWEEK">
|
745
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
746
|
-
<ul class="unstyled inline">
|
747
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/REQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 21/09/2014 13:30" data-popup="popup" data-duration="98" data-start="13:30" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/RUQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 21/09/2014 15:50" data-popup="popup" data-duration="98" data-start="15:50" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">15:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/RkQxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 21/09/2014 18:10" data-popup="popup" data-duration="98" data-start="18:10" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:10</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/MEUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 21/09/2014 20:30" data-popup="popup" data-duration="98" data-start="20:30" data-end="22:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
748
|
-
</div>
|
749
|
-
|
750
|
-
<div class="content-container times containerWEEK">
|
751
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
752
|
-
<ul class="unstyled inline">
|
753
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/MUUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Super Saver - book Magic In The Moonlight on 22/09/2014 13:30" data-popup="popup" data-duration="98" data-start="13:30" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_SUBTITLEDFORHARDOFHEARING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/MkUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Super Saver - book Magic In The Moonlight on 22/09/2014 15:50" data-popup="popup" data-duration="98" data-start="15:50" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">15:50</a><i class="WEEK small moar ">Subtitled for <br/>hard of hearing</i></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/M0UxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 22/09/2014 18:10" data-popup="popup" data-duration="98" data-start="18:10" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:10</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/NEUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Peak - book Magic In The Moonlight on 22/09/2014 20:30" data-popup="popup" data-duration="98" data-start="20:30" data-end="22:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
754
|
-
</div>
|
755
|
-
|
756
|
-
<div class="content-container times containerWEEK">
|
757
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
758
|
-
<ul class="unstyled inline">
|
759
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/NUUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Bargain - book Magic In The Moonlight on 23/09/2014 13:30" data-popup="popup" data-duration="98" data-start="13:30" data-end="15:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">13:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/NkUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Bargain - book Magic In The Moonlight on 23/09/2014 15:50" data-popup="popup" data-duration="98" data-start="15:50" data-end="17:28" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">15:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/N0UxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Bargain - book Magic In The Moonlight on 23/09/2014 18:10" data-popup="popup" data-duration="98" data-start="18:10" data-end="19:48" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">18:10</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_13 show"><a href="https://www.odeon.co.uk/booking/init/OEUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MjY1/" class="performance-detail" title="Bargain - book Magic In The Moonlight on 23/09/2014 20:30" data-popup="popup" data-duration="98" data-start="20:30" data-end="22:08" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:30</a></li> </ul>
|
760
|
-
</div>
|
761
|
-
|
762
|
-
<div class="content-container times stopper performances-WEEK _25555"></div>
|
763
|
-
</div>
|
764
|
-
</div>
|
765
|
-
</div>
|
766
|
-
|
767
|
-
<!-- <div class="content-container times stopper performances-WEEK _25555"></div>-->
|
768
|
-
<div class="content-container white performances-WEEK _25555"></div>
|
769
|
-
</div>
|
770
|
-
</div>
|
771
|
-
|
772
|
-
<div id="25595" class="film-detail WEEK">
|
773
|
-
|
774
|
-
<div class="content-container film _WEEK" id="film-25595">
|
775
|
-
<div class="grad-hor">
|
776
|
-
<a href="/films/nt_live_medea_encore/100739/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_8fad2d0b9d0f6b92e1a2ef4f415eef0d.jpg" /></a>
|
777
|
-
<div class="presentation-info">
|
778
|
-
<h4><a href="/films/nt_live_medea_encore/100739/">Nt Live: Medea (encore)</a></h4>
|
779
|
-
<a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
|
780
|
-
</span>
|
781
|
-
</div>
|
782
|
-
<p><strong>Medea is a wife and a mother. For the sake of her husband, Jason, she's left her home and borne two sons in exile. But when he abandons his family for a new life, Medea faces banishment and separation from her children. Cornered, she begs for one day's grace.</strong></p>
|
783
|
-
|
784
|
-
<div class="presentation-info">
|
785
|
-
<div data-rating-master-id='100739' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
786
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
787
|
-
<div class="rate-over s1"></div>
|
788
|
-
<div class="rate-over s2"></div>
|
789
|
-
<div class="rate-over s3"></div>
|
790
|
-
<div class="rate-over s4"></div>
|
791
|
-
<div class="rate-over s5"></div>
|
792
|
-
</div>
|
793
|
-
</div>
|
794
|
-
<span class="description"><strong>Film length: 100 mins</strong></span>
|
795
|
-
</div>
|
796
|
-
<p class="description"></p>
|
797
|
-
</div>
|
798
|
-
<div class="info-corner">
|
799
|
-
<div class="img-bundle">
|
800
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25595"></div> </div>
|
801
|
-
</div>
|
802
|
-
</div>
|
803
|
-
<div id="performances-WEEK-25595" class="content-container times-all _WEEK">
|
804
|
-
<div class="accordion-group times-all performances-WEEK _25595" id="tech-25595-0">
|
805
|
-
<div class="content-container tech accordion-heading _WEEK">
|
806
|
-
<a data-toggle="collapse" data-parent="#tech-25595-0-WEEK" class="accordion-toggle" href="#collapse-25595-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>
|
807
|
-
</div>
|
808
|
-
<div id="collapse-25595-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
809
|
-
<div class="accordion-inner">
|
810
|
-
|
811
|
-
<div class="content-container times containerWEEK">
|
812
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
813
|
-
<ul class="unstyled inline">
|
814
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-darkgreen WEEK_12A WEEK_EVENING WEEK_ODEONPLUSCULTURE WEEK_2D show"><a href="https://www.odeon.co.uk/booking/init/RDhFMjEwMDAwMjNVRFBETVhHIzcxIzEwMDczOQ==/" class="performance-detail" title="Special Screening - book Nt Live: Medea (encore) on 23/09/2014 20:00" data-popup="popup" data-duration="100" data-start="20:00" data-end="21:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:00</a></li> </ul>
|
815
|
-
</div>
|
816
|
-
|
817
|
-
<div class="content-container times stopper performances-WEEK _25595"></div>
|
818
|
-
</div>
|
819
|
-
</div>
|
820
|
-
</div>
|
821
|
-
|
822
|
-
<!-- <div class="content-container times stopper performances-WEEK _25595"></div>-->
|
823
|
-
<div class="content-container white performances-WEEK _25595"></div>
|
824
|
-
</div>
|
825
|
-
</div>
|
826
|
-
|
827
|
-
<div id="25350" class="film-detail WEEK">
|
828
|
-
|
829
|
-
<div class="content-container film _WEEK" id="film-25350">
|
830
|
-
<div class="grad-hor">
|
831
|
-
<a href="/films/pride/15092/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_6d5e965f981747d01beb4e153efe3ae0.jpg" /></a>
|
832
|
-
<div class="presentation-info">
|
833
|
-
<h4><a href="/films/pride/15092/">Pride</a></h4>
|
834
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
835
|
-
ID may be required </span>
|
836
|
-
</div>
|
837
|
-
<p><strong>Feel-good comedy set during the miners' strike of 1984-5.</strong></p>
|
838
|
-
|
839
|
-
<div class="presentation-info">
|
840
|
-
<div data-rating-master-id='15092' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
841
|
-
<div class="rating-icon-star-small-active s8" data-rating="8">
|
842
|
-
<div class="rate-over s1"></div>
|
843
|
-
<div class="rate-over s2"></div>
|
844
|
-
<div class="rate-over s3"></div>
|
845
|
-
<div class="rate-over s4"></div>
|
846
|
-
<div class="rate-over s5"></div>
|
847
|
-
</div>
|
848
|
-
</div>
|
849
|
-
<span class="description"><strong>Film length: 120 mins</strong></span>
|
850
|
-
</div>
|
851
|
-
<p class="description">strong language, sex references</p>
|
852
|
-
</div>
|
853
|
-
<div class="info-corner">
|
854
|
-
<div class="img-bundle">
|
855
|
-
<div class="film-icon-WEEK feature-icon-light-backbritishfilm-medium WEEK_BACKBRITISHFILM" data-schedule="BACKBRITISHFILM" data-film="25350"></div><div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25350"></div> </div>
|
856
|
-
<div class="btn-group">
|
857
|
-
<a href="http://odeon.trailer.cineweb.de/pride.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15092" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
858
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
859
|
-
<span class="caret"></span>
|
860
|
-
</button>
|
861
|
-
<ul class="dropdown-menu">
|
862
|
-
<li><a href="#">Add to Playlist</a></li>
|
863
|
-
</ul>
|
864
|
-
</div> </div>
|
865
|
-
</div>
|
866
|
-
<div id="performances-WEEK-25350" class="content-container times-all _WEEK">
|
867
|
-
<div class="accordion-group times-all performances-WEEK _25350" id="tech-25350-0">
|
868
|
-
<div class="content-container tech accordion-heading _WEEK">
|
869
|
-
<a data-toggle="collapse" data-parent="#tech-25350-0-WEEK" class="accordion-toggle" href="#collapse-25350-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>
|
870
|
-
</div>
|
871
|
-
<div id="collapse-25350-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
872
|
-
<div class="accordion-inner">
|
873
|
-
|
874
|
-
<div class="content-container times containerWEEK">
|
875
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
876
|
-
<ul class="unstyled inline">
|
877
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NzgwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Super Saver - book Pride on 17/09/2014 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_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RDgwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 17/09/2014 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><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkYwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 17/09/2014 19:00" data-popup="popup" data-duration="120" data-start="19:00" data-end="21:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">19:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MzkwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 17/09/2014 20:15" data-popup="popup" data-duration="120" data-start="20:15" data-end="22:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
878
|
-
</div>
|
879
|
-
|
880
|
-
<div class="content-container times containerWEEK">
|
881
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
882
|
-
<ul class="unstyled inline">
|
883
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTUxMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Super Saver - book Pride on 18/09/2014 13:15" data-popup="popup" data-duration="120" data-start="13:15" data-end="15:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/ODgwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Super Saver - book Pride on 18/09/2014 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_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTgwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 18/09/2014 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><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDAxMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 18/09/2014 19:00" data-popup="popup" data-duration="120" data-start="19:00" data-end="21:00" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">19:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NDkwMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 18/09/2014 20:15" data-popup="popup" data-duration="120" data-start="20:15" data-end="22:15" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">20:15</a></li> </ul>
|
884
|
-
</div>
|
885
|
-
|
886
|
-
<div class="content-container times containerWEEK">
|
887
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
888
|
-
<ul class="unstyled inline">
|
889
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NDUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 19/09/2014 19:30" data-popup="popup" data-duration="120" data-start="19:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:30</a></li> </ul>
|
890
|
-
</div>
|
891
|
-
|
892
|
-
<div class="content-container times containerWEEK">
|
893
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
894
|
-
<ul class="unstyled inline">
|
895
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RDQyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 20/09/2014 19:30" data-popup="popup" data-duration="120" data-start="19:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:30</a></li> </ul>
|
896
|
-
</div>
|
897
|
-
|
898
|
-
<div class="content-container times containerWEEK">
|
899
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
900
|
-
<ul class="unstyled inline">
|
901
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NTUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 21/09/2014 19:30" data-popup="popup" data-duration="120" data-start="19:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:30</a></li> </ul>
|
902
|
-
</div>
|
903
|
-
|
904
|
-
<div class="content-container times containerWEEK">
|
905
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
906
|
-
<ul class="unstyled inline">
|
907
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/ODQyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Super Saver - book Pride on 22/09/2014 13:50" data-popup="popup" data-duration="120" data-start="13:50" data-end="15:50" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">13:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NjUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Peak - book Pride on 22/09/2014 19:30" data-popup="popup" data-duration="120" data-start="19:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:30</a></li> </ul>
|
908
|
-
</div>
|
909
|
-
|
910
|
-
<div class="content-container times containerWEEK">
|
911
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
912
|
-
<ul class="unstyled inline">
|
913
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OTQyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Bargain - book Pride on 23/09/2014 13:50" data-popup="popup" data-duration="120" data-start="13:50" data-end="15:50" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">13:50</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NzUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MDky/" class="performance-detail" title="Bargain - book Pride on 23/09/2014 19:30" data-popup="popup" data-duration="120" data-start="19:30" data-end="21:30" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:30</a></li> </ul>
|
914
|
-
</div>
|
915
|
-
|
916
|
-
<div class="content-container times stopper performances-WEEK _25350"></div>
|
917
|
-
</div>
|
918
|
-
</div>
|
919
|
-
</div>
|
920
|
-
|
921
|
-
<!-- <div class="content-container times stopper performances-WEEK _25350"></div>-->
|
922
|
-
<div class="content-container white performances-WEEK _25350"></div>
|
923
|
-
</div>
|
924
|
-
</div>
|
925
|
-
|
926
|
-
<div id="23378" class="film-detail WEEK">
|
927
|
-
<div class="content-container red"><h6>Last chance to see</h6></div>
|
928
|
-
<div class="content-container film _WEEK" id="film-23378">
|
929
|
-
<div class="grad-hor">
|
930
|
-
<a href="/films/sex_tape/14642/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_e7384fe4400803c4db27d0a812252bc0.jpg" /></a>
|
931
|
-
<div class="presentation-info">
|
932
|
-
<h4><a href="/films/sex_tape/14642/">Sex Tape</a></h4>
|
933
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
934
|
-
ID may be required </span>
|
935
|
-
</div>
|
936
|
-
<p><strong>Raunchy comedy about a couple whose private sex tape goes public.</strong></p>
|
937
|
-
|
938
|
-
<div class="presentation-info">
|
939
|
-
<div data-rating-master-id='14642' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
940
|
-
<div class="rating-icon-star-small-active s6" data-rating="6">
|
941
|
-
<div class="rate-over s1"></div>
|
942
|
-
<div class="rate-over s2"></div>
|
943
|
-
<div class="rate-over s3"></div>
|
944
|
-
<div class="rate-over s4"></div>
|
945
|
-
<div class="rate-over s5"></div>
|
946
|
-
</div>
|
947
|
-
</div>
|
948
|
-
<span class="description"><strong>Film length: 94 mins</strong></span>
|
949
|
-
</div>
|
950
|
-
<p class="description">Strong sex references, sex, very strong language, drug use</p>
|
951
|
-
</div>
|
952
|
-
<div class="info-corner">
|
953
|
-
<div class="img-bundle">
|
954
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23378"></div> </div>
|
955
|
-
<div class="btn-group">
|
956
|
-
<a href="http://odeon.trailer.cineweb.de/sex_tape.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="14642" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
957
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
958
|
-
<span class="caret"></span>
|
959
|
-
</button>
|
960
|
-
<ul class="dropdown-menu">
|
961
|
-
<li><a href="#">Add to Playlist</a></li>
|
962
|
-
</ul>
|
963
|
-
</div> </div>
|
964
|
-
</div>
|
965
|
-
<div id="performances-WEEK-23378" class="content-container times-all _WEEK">
|
966
|
-
<div class="accordion-group times-all performances-WEEK _23378" id="tech-23378-0">
|
967
|
-
<div class="content-container tech accordion-heading _WEEK">
|
968
|
-
<a data-toggle="collapse" data-parent="#tech-23378-0-WEEK" class="accordion-toggle" href="#collapse-23378-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>
|
969
|
-
</div>
|
970
|
-
<div id="collapse-23378-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
971
|
-
<div class="accordion-inner">
|
972
|
-
|
973
|
-
<div class="content-container times containerWEEK">
|
974
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
975
|
-
<ul class="unstyled inline">
|
976
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MzYxMzEwMDAwMjNVRFBETVhHIzcxIzE0NjQy/" class="performance-detail" title="Super Saver - book Sex Tape on 17/09/2014 16:40" data-popup="popup" data-duration="94" data-start="16:40" data-end="18:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/RjYxMzEwMDAwMjNVRFBETVhHIzcxIzE0NjQy/" class="performance-detail" title="Peak - book Sex Tape on 17/09/2014 21:20" data-popup="popup" data-duration="94" data-start="21:20" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
977
|
-
</div>
|
978
|
-
|
979
|
-
<div class="content-container times containerWEEK">
|
980
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
981
|
-
<ul class="unstyled inline">
|
982
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NDYxMzEwMDAwMjNVRFBETVhHIzcxIzE0NjQy/" class="performance-detail" title="Super Saver - book Sex Tape on 18/09/2014 16:40" data-popup="popup" data-duration="94" data-start="16:40" data-end="18:14" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">16:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MDcxMzEwMDAwMjNVRFBETVhHIzcxIzE0NjQy/" class="performance-detail" title="Peak - book Sex Tape on 18/09/2014 21:20" data-popup="popup" data-duration="94" data-start="21:20" data-end="22:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">21:20</a></li> </ul>
|
983
|
-
</div>
|
984
|
-
|
985
|
-
<div class="content-container times stopper performances-WEEK _23378"></div>
|
986
|
-
</div>
|
987
|
-
</div>
|
988
|
-
</div>
|
989
|
-
|
990
|
-
<!-- <div class="content-container times stopper performances-WEEK _23378"></div>-->
|
991
|
-
<div class="content-container white performances-WEEK _23378"></div>
|
992
|
-
</div>
|
993
|
-
</div>
|
994
|
-
|
995
|
-
<div id="23229" class="film-detail WEEK">
|
996
|
-
|
997
|
-
<div class="content-container film _WEEK" id="film-23229">
|
998
|
-
<div class="grad-hor">
|
999
|
-
<a href="/films/tarzan/14572/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_a99dc6d2672dfdebf7610f8cf0afebb5.jpg" /></a>
|
1000
|
-
<div class="presentation-info">
|
1001
|
-
<h4><a href="/films/tarzan/14572/">Tarzan</a></h4>
|
1002
|
-
<a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
|
1003
|
-
</span>
|
1004
|
-
</div>
|
1005
|
-
<p><strong>An animated family adventure following the king of the jungle</strong></p>
|
1006
|
-
|
1007
|
-
<div class="presentation-info">
|
1008
|
-
<div data-rating-master-id='14572' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
1009
|
-
<div class="rating-icon-star-small-active s6" data-rating="6">
|
1010
|
-
<div class="rate-over s1"></div>
|
1011
|
-
<div class="rate-over s2"></div>
|
1012
|
-
<div class="rate-over s3"></div>
|
1013
|
-
<div class="rate-over s4"></div>
|
1014
|
-
<div class="rate-over s5"></div>
|
1015
|
-
</div>
|
1016
|
-
</div>
|
1017
|
-
<span class="description"><strong>Film length: 99 mins</strong></span>
|
1018
|
-
</div>
|
1019
|
-
<p class="description">Mild violence, threat.</p>
|
1020
|
-
</div>
|
1021
|
-
<div class="info-corner">
|
1022
|
-
<div class="img-bundle">
|
1023
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="23229"></div> </div>
|
1024
|
-
<div class="btn-group">
|
1025
|
-
<a href="http://odeon.trailer.cineweb.de/tarzan.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="14572" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
1026
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
1027
|
-
<span class="caret"></span>
|
1028
|
-
</button>
|
1029
|
-
<ul class="dropdown-menu">
|
1030
|
-
<li><a href="#">Add to Playlist</a></li>
|
1031
|
-
</ul>
|
1032
|
-
</div> </div>
|
1033
|
-
</div>
|
1034
|
-
<div id="performances-WEEK-23229" class="content-container times-all _WEEK">
|
1035
|
-
<div class="accordion-group times-all performances-WEEK _23229" id="tech-23229-0">
|
1036
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1037
|
-
<a data-toggle="collapse" data-parent="#tech-23229-0-WEEK" class="accordion-toggle" href="#collapse-23229-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>
|
1038
|
-
</div>
|
1039
|
-
<div id="collapse-23229-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1040
|
-
<div class="accordion-inner">
|
1041
|
-
|
1042
|
-
<div class="content-container times containerWEEK">
|
1043
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
1044
|
-
<ul class="unstyled inline">
|
1045
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-darkgreen WEEK_PG WEEK_MORNING WEEK_N/A WEEK_2D WEEK_KIDS WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/M0QxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTcy/" class="performance-detail" title="Special Screening - book Tarzan on 20/09/2014 11:00" data-popup="popup" data-duration="99" data-start="11:00" data-end="12:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">11:00</a><i class="WEEK small ">Kids</i></li> </ul>
|
1046
|
-
</div>
|
1047
|
-
|
1048
|
-
<div class="content-container times containerWEEK">
|
1049
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
1050
|
-
<ul class="unstyled inline">
|
1051
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-darkgreen WEEK_PG WEEK_MORNING WEEK_N/A WEEK_2D WEEK_KIDS WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/NEQxMzEwMDAwMjNVRFBETVhHIzcxIzE0NTcy/" class="performance-detail" title="Special Screening - book Tarzan on 21/09/2014 11:00" data-popup="popup" data-duration="99" data-start="11:00" data-end="12:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">11:00</a><i class="WEEK small ">Kids</i></li> </ul>
|
1052
|
-
</div>
|
1053
|
-
|
1054
|
-
<div class="content-container times stopper performances-WEEK _23229"></div>
|
1055
|
-
</div>
|
1056
|
-
</div>
|
1057
|
-
</div>
|
1058
|
-
|
1059
|
-
<!-- <div class="content-container times stopper performances-WEEK _23229"></div>-->
|
1060
|
-
<div class="content-container white performances-WEEK _23229"></div>
|
1061
|
-
</div>
|
1062
|
-
</div>
|
1063
|
-
|
1064
|
-
<div id="25529" class="film-detail WEEK">
|
1065
|
-
|
1066
|
-
<div class="content-container film _WEEK" id="film-25529">
|
1067
|
-
<div class="grad-hor">
|
1068
|
-
<a href="/films/the_boxtrolls/15380/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_0f562b81f53660ac030191b1e7f7c08b.jpg" /></a>
|
1069
|
-
<div class="presentation-info">
|
1070
|
-
<h4><a href="/films/the_boxtrolls/15380/">The Boxtrolls</a></h4>
|
1071
|
-
<a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
|
1072
|
-
</span>
|
1073
|
-
</div>
|
1074
|
-
<p><strong>A charming stop-motion family comedy.</strong></p>
|
1075
|
-
|
1076
|
-
<div class="presentation-info">
|
1077
|
-
<div data-rating-master-id='15380' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
1078
|
-
<div class="rating-icon-star-small-active s6" data-rating="6">
|
1079
|
-
<div class="rate-over s1"></div>
|
1080
|
-
<div class="rate-over s2"></div>
|
1081
|
-
<div class="rate-over s3"></div>
|
1082
|
-
<div class="rate-over s4"></div>
|
1083
|
-
<div class="rate-over s5"></div>
|
1084
|
-
</div>
|
1085
|
-
</div>
|
1086
|
-
<span class="description"><strong>Film length: 97 mins</strong></span>
|
1087
|
-
</div>
|
1088
|
-
<p class="description">Mild violence, threat.</p>
|
1089
|
-
</div>
|
1090
|
-
<div class="info-corner">
|
1091
|
-
<div class="img-bundle">
|
1092
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25529"></div><div class="film-icon-WEEK feature-icon-light-3d-medium WEEK_3D" data-schedule="3D" data-film="25529"></div> </div>
|
1093
|
-
<div class="btn-group">
|
1094
|
-
<a href="http://odeon.trailer.cineweb.de/boxtrolls.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15380" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
1095
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
1096
|
-
<span class="caret"></span>
|
1097
|
-
</button>
|
1098
|
-
<ul class="dropdown-menu">
|
1099
|
-
<li><a href="#">Add to Playlist</a></li>
|
1100
|
-
</ul>
|
1101
|
-
</div> </div>
|
1102
|
-
</div>
|
1103
|
-
<div id="performances-WEEK-25529" class="content-container times-all _WEEK">
|
1104
|
-
<div class="accordion-group times-all performances-WEEK _25529" id="tech-25529-0">
|
1105
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1106
|
-
<a data-toggle="collapse" data-parent="#tech-25529-0-WEEK" class="accordion-toggle" href="#collapse-25529-0-WEEK">in 3D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Touch the film and step inside. ODEON uses digital RealD 3D technology to give you the ultimate 3D experience. 3D glasses required."></a>
|
1107
|
-
</div>
|
1108
|
-
<div id="collapse-25529-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1109
|
-
<div class="accordion-inner">
|
1110
|
-
|
1111
|
-
<div class="content-container times containerWEEK">
|
1112
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
1113
|
-
<ul class="unstyled inline">
|
1114
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_3D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NEYwMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Super Saver - book The Boxtrolls on 18/09/2014 14:20" data-popup="popup" data-duration="97" data-start="14:20" data-end="15:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">14:20</a></li> </ul>
|
1115
|
-
</div>
|
1116
|
-
|
1117
|
-
<div class="content-container times containerWEEK">
|
1118
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
1119
|
-
<ul class="unstyled inline">
|
1120
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_3D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MzQyMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 12:00" data-popup="popup" data-duration="97" data-start="12:00" data-end="13:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_3D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NTQyMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 14:20" data-popup="popup" data-duration="97" data-start="14:20" data-end="15:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">14:20</a></li> </ul>
|
1121
|
-
</div>
|
1122
|
-
|
1123
|
-
<div class="content-container times containerWEEK">
|
1124
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
1125
|
-
<ul class="unstyled inline">
|
1126
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_3D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NDQyMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 12:00" data-popup="popup" data-duration="97" data-start="12:00" data-end="13:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">12:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_3D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NjQyMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 14:20" data-popup="popup" data-duration="97" data-start="14:20" data-end="15:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">14:20</a></li> </ul>
|
1127
|
-
</div>
|
1128
|
-
|
1129
|
-
<div class="content-container times stopper performances-WEEK _25529"></div>
|
1130
|
-
</div>
|
1131
|
-
</div>
|
1132
|
-
</div>
|
1133
|
-
<div class="accordion-group times-all performances-WEEK _25529" id="tech-25529-1">
|
1134
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1135
|
-
<a data-toggle="collapse" data-parent="#tech-25529-1-WEEK" class="accordion-toggle" href="#collapse-25529-1-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>
|
1136
|
-
</div>
|
1137
|
-
<div id="collapse-25529-1-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1138
|
-
<div class="accordion-inner">
|
1139
|
-
|
1140
|
-
<div class="content-container times containerWEEK">
|
1141
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
1142
|
-
<ul class="unstyled inline">
|
1143
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/OUYwMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Super Saver - book The Boxtrolls on 17/09/2014 16:40" data-popup="popup" data-duration="97" data-start="16:40" data-end="18:17" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">16:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/OTYxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 17/09/2014 19:00" data-popup="popup" data-duration="97" data-start="19:00" data-end="20:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:00</a></li> </ul>
|
1144
|
-
</div>
|
1145
|
-
|
1146
|
-
<div class="content-container times containerWEEK">
|
1147
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
1148
|
-
<ul class="unstyled inline">
|
1149
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/QUYwMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Super Saver - book The Boxtrolls on 18/09/2014 16:40" data-popup="popup" data-duration="97" data-start="16:40" data-end="18:17" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 5 (Wheelchair Accessible)" data-is-online="1">16:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/QTYxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 18/09/2014 19:00" data-popup="popup" data-duration="97" data-start="19:00" data-end="20:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">19:00</a></li> </ul>
|
1150
|
-
</div>
|
1151
|
-
|
1152
|
-
<div class="content-container times containerWEEK">
|
1153
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
1154
|
-
<ul class="unstyled inline">
|
1155
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/OEIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 19/09/2014 13:15" data-popup="popup" data-duration="97" data-start="13:15" data-end="14:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/OUIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 19/09/2014 15:30" data-popup="popup" data-duration="97" data-start="15:30" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/QUIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 19/09/2014 17:45" data-popup="popup" data-duration="97" data-start="17:45" data-end="19:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
1156
|
-
</div>
|
1157
|
-
|
1158
|
-
<div class="content-container times containerWEEK">
|
1159
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
1160
|
-
<ul class="unstyled inline">
|
1161
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_MORNING WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NkIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 11:00" data-popup="popup" data-duration="97" data-start="11:00" data-end="12:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">11:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/QkIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 13:15" data-popup="popup" data-duration="97" data-start="13:15" data-end="14:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/Q0IxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 15:30" data-popup="popup" data-duration="97" data-start="15:30" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/REIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 20/09/2014 17:45" data-popup="popup" data-duration="97" data-start="17:45" data-end="19:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
1162
|
-
</div>
|
1163
|
-
|
1164
|
-
<div class="content-container times containerWEEK">
|
1165
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
1166
|
-
<ul class="unstyled inline">
|
1167
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_MORNING WEEK_2D WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/N0IxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 11:00" data-popup="popup" data-duration="97" data-start="11:00" data-end="12:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">11:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/RUIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 13:15" data-popup="popup" data-duration="97" data-start="13:15" data-end="14:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/RkIxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 15:30" data-popup="popup" data-duration="97" data-start="15:30" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MEMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 21/09/2014 17:45" data-popup="popup" data-duration="97" data-start="17:45" data-end="19:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
1168
|
-
</div>
|
1169
|
-
|
1170
|
-
<div class="content-container times containerWEEK">
|
1171
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
1172
|
-
<ul class="unstyled inline">
|
1173
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MUMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Super Saver - book The Boxtrolls on 22/09/2014 13:15" data-popup="popup" data-duration="97" data-start="13:15" data-end="14:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MkMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Super Saver - book The Boxtrolls on 22/09/2014 15:30" data-popup="popup" data-duration="97" data-start="15:30" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/M0MxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Peak - book The Boxtrolls on 22/09/2014 17:45" data-popup="popup" data-duration="97" data-start="17:45" data-end="19:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
1174
|
-
</div>
|
1175
|
-
|
1176
|
-
<div class="content-container times containerWEEK">
|
1177
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
1178
|
-
<ul class="unstyled inline">
|
1179
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NEMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Bargain - book The Boxtrolls on 23/09/2014 13:15" data-popup="popup" data-duration="97" data-start="13:15" data-end="14:52" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">13:15</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NUMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Bargain - book The Boxtrolls on 23/09/2014 15:30" data-popup="popup" data-duration="97" data-start="15:30" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">15:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_PG WEEK_EVENING WEEK_2D WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_2 WEEK_GENRE_3 WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NkMxMzEwMDAwMjNVRFBETVhHIzcxIzE1Mzgw/" class="performance-detail" title="Bargain - book The Boxtrolls on 23/09/2014 17:45" data-popup="popup" data-duration="97" data-start="17:45" data-end="19:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:45</a></li> </ul>
|
1180
|
-
</div>
|
1181
|
-
|
1182
|
-
<div class="content-container times stopper performances-WEEK _25529"></div>
|
1183
|
-
</div>
|
1184
|
-
</div>
|
1185
|
-
</div>
|
1186
|
-
|
1187
|
-
<!-- <div class="content-container times stopper performances-WEEK _25529"></div>-->
|
1188
|
-
<div class="content-container white performances-WEEK _25529"></div>
|
1189
|
-
</div>
|
1190
|
-
</div>
|
1191
|
-
|
1192
|
-
<div id="25822" class="film-detail WEEK">
|
1193
|
-
|
1194
|
-
<div class="content-container film _WEEK" id="film-25822">
|
1195
|
-
<div class="grad-hor">
|
1196
|
-
<a href="/films/the_giver/15481/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_7e13922985aa4980a5d9b6dbbf70c801.jpg" /></a>
|
1197
|
-
<div class="presentation-info">
|
1198
|
-
<h4><a href="/films/the_giver/15481/">The Giver</a></h4>
|
1199
|
-
<a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a> <span class="description">
|
1200
|
-
</span>
|
1201
|
-
</div>
|
1202
|
-
<p><strong>Sci-fi drama about a boy in a perfect future society.</strong></p>
|
1203
|
-
|
1204
|
-
<div class="presentation-info">
|
1205
|
-
<div data-rating-master-id='15481' data-return-to='/showtimes/week/71/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
1206
|
-
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
1207
|
-
<div class="rate-over s1"></div>
|
1208
|
-
<div class="rate-over s2"></div>
|
1209
|
-
<div class="rate-over s3"></div>
|
1210
|
-
<div class="rate-over s4"></div>
|
1211
|
-
<div class="rate-over s5"></div>
|
1212
|
-
</div>
|
1213
|
-
<i class="rating-icon-buzz-small-icon"></i>
|
1214
|
-
</div>
|
1215
|
-
<span class="description"><strong>Film length: 97 mins</strong></span>
|
1216
|
-
</div>
|
1217
|
-
<p class="description">Moderate violence, threat</p>
|
1218
|
-
</div>
|
1219
|
-
<div class="info-corner">
|
1220
|
-
<div class="img-bundle">
|
1221
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25822"></div> </div>
|
1222
|
-
</div>
|
1223
|
-
</div>
|
1224
|
-
<div id="performances-WEEK-25822" class="content-container times-all _WEEK">
|
1225
|
-
<div class="accordion-group times-all performances-WEEK _25822" id="tech-25822-0">
|
1226
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1227
|
-
<a data-toggle="collapse" data-parent="#tech-25822-0-WEEK" class="accordion-toggle" href="#collapse-25822-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>
|
1228
|
-
</div>
|
1229
|
-
<div id="collapse-25822-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1230
|
-
<div class="accordion-inner">
|
1231
|
-
|
1232
|
-
<div class="content-container times containerWEEK">
|
1233
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
1234
|
-
<ul class="unstyled inline">
|
1235
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTcxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 19/09/2014 14:00" data-popup="popup" data-duration="97" data-start="14:00" data-end="15:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjcxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 19/09/2014 16:20" data-popup="popup" data-duration="97" data-start="16:20" data-end="17:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 19/09/2014 18:45" data-popup="popup" data-duration="97" data-start="18:45" data-end="20:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MTgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 19/09/2014 21:10" data-popup="popup" data-duration="97" data-start="21:10" data-end="22:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
1236
|
-
</div>
|
1237
|
-
|
1238
|
-
<div class="content-container times containerWEEK">
|
1239
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
1240
|
-
<ul class="unstyled inline">
|
1241
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_MORNING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QzcxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 20/09/2014 11:40" data-popup="popup" data-duration="97" data-start="11:40" data-end="13:17" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MjgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 20/09/2014 14:00" data-popup="popup" data-duration="97" data-start="14:00" data-end="15:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/ODgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 20/09/2014 16:20" data-popup="popup" data-duration="97" data-start="16:20" data-end="17:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 20/09/2014 18:45" data-popup="popup" data-duration="97" data-start="18:45" data-end="20:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NDkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 20/09/2014 21:10" data-popup="popup" data-duration="97" data-start="21:10" data-end="22:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
1242
|
-
</div>
|
1243
|
-
|
1244
|
-
<div class="content-container times containerWEEK">
|
1245
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
1246
|
-
<ul class="unstyled inline">
|
1247
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_MORNING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RDcxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 21/09/2014 11:40" data-popup="popup" data-duration="97" data-start="11:40" data-end="13:17" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">11:40</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MzgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 21/09/2014 14:00" data-popup="popup" data-duration="97" data-start="14:00" data-end="15:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OTgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 21/09/2014 16:20" data-popup="popup" data-duration="97" data-start="16:20" data-end="17:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 21/09/2014 18:45" data-popup="popup" data-duration="97" data-start="18:45" data-end="20:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NTkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 21/09/2014 21:10" data-popup="popup" data-duration="97" data-start="21:10" data-end="22:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
1248
|
-
</div>
|
1249
|
-
|
1250
|
-
<div class="content-container times containerWEEK">
|
1251
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
1252
|
-
<ul class="unstyled inline">
|
1253
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NDgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Super Saver - book The Giver on 22/09/2014 14:00" data-popup="popup" data-duration="97" data-start="14:00" data-end="15:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QTgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Super Saver - book The Giver on 22/09/2014 16:20" data-popup="popup" data-duration="97" data-start="16:20" data-end="17:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 22/09/2014 18:45" data-popup="popup" data-duration="97" data-start="18:45" data-end="20:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NjkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Peak - book The Giver on 22/09/2014 21:10" data-popup="popup" data-duration="97" data-start="21:10" data-end="22:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
1254
|
-
</div>
|
1255
|
-
|
1256
|
-
<div class="content-container times containerWEEK">
|
1257
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
1258
|
-
<ul class="unstyled inline">
|
1259
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NTgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Bargain - book The Giver on 23/09/2014 14:00" data-popup="popup" data-duration="97" data-start="14:00" data-end="15:37" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">14:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QjgxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Bargain - book The Giver on 23/09/2014 16:20" data-popup="popup" data-duration="97" data-start="16:20" data-end="17:57" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">16:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MTkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Bargain - book The Giver on 23/09/2014 18:45" data-popup="popup" data-duration="97" data-start="18:45" data-end="20:22" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_12A WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NzkxMzEwMDAwMjNVRFBETVhHIzcxIzE1NDgx/" class="performance-detail" title="Bargain - book The Giver on 23/09/2014 21:10" data-popup="popup" data-duration="97" data-start="21:10" data-end="22:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
1260
|
-
</div>
|
1261
|
-
|
1262
|
-
<div class="content-container times stopper performances-WEEK _25822"></div>
|
1263
|
-
</div>
|
1264
|
-
</div>
|
1265
|
-
</div>
|
1266
|
-
|
1267
|
-
<!-- <div class="content-container times stopper performances-WEEK _25822"></div>-->
|
1268
|
-
<div class="content-container white performances-WEEK _25822"></div>
|
1269
|
-
</div>
|
1270
|
-
</div>
|
1271
|
-
|
1272
|
-
<div id="25496" class="film-detail WEEK">
|
1273
|
-
|
1274
|
-
<div class="content-container film _WEEK" id="film-25496">
|
1275
|
-
<div class="grad-hor">
|
1276
|
-
<a href="/films/the_hundred_foot_journey/15367/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_70d8ac5617ee4a51759c6047e424208f.jpg" /></a>
|
1277
|
-
<div class="presentation-info">
|
1278
|
-
<h4><a href="/films/the_hundred_foot_journey/15367/">The Hundred-foot Journey</a></h4>
|
1279
|
-
<a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
|
1280
|
-
</span>
|
1281
|
-
</div>
|
1282
|
-
<p><strong>A culture-clash culinary drama starring Helen Mirren.</strong></p>
|
1283
|
-
|
1284
|
-
<div class="presentation-info">
|
1285
|
-
<div data-rating-master-id='15367' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
1286
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
1287
|
-
<div class="rate-over s1"></div>
|
1288
|
-
<div class="rate-over s2"></div>
|
1289
|
-
<div class="rate-over s3"></div>
|
1290
|
-
<div class="rate-over s4"></div>
|
1291
|
-
<div class="rate-over s5"></div>
|
1292
|
-
</div>
|
1293
|
-
</div>
|
1294
|
-
<span class="description"><strong>Film length: 122 mins</strong></span>
|
1295
|
-
</div>
|
1296
|
-
<p class="description">mild bad language, threat</p>
|
1297
|
-
</div>
|
1298
|
-
<div class="info-corner">
|
1299
|
-
<div class="img-bundle">
|
1300
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25496"></div> </div>
|
1301
|
-
<div class="btn-group">
|
1302
|
-
<a href="http://odeon.trailer.cineweb.de/hundred_foot.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15367" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
1303
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
1304
|
-
<span class="caret"></span>
|
1305
|
-
</button>
|
1306
|
-
<ul class="dropdown-menu">
|
1307
|
-
<li><a href="#">Add to Playlist</a></li>
|
1308
|
-
</ul>
|
1309
|
-
</div> </div>
|
1310
|
-
</div>
|
1311
|
-
<div id="performances-WEEK-25496" class="content-container times-all _WEEK">
|
1312
|
-
<div class="accordion-group times-all performances-WEEK _25496" id="tech-25496-0">
|
1313
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1314
|
-
<a data-toggle="collapse" data-parent="#tech-25496-0-WEEK" class="accordion-toggle" href="#collapse-25496-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>
|
1315
|
-
</div>
|
1316
|
-
<div id="collapse-25496-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1317
|
-
<div class="accordion-inner">
|
1318
|
-
|
1319
|
-
<div class="content-container times containerWEEK">
|
1320
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
1321
|
-
<ul class="unstyled inline">
|
1322
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QkEwMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Peak - book The Hundred-foot Journey on 17/09/2014 18:45" data-popup="popup" data-duration="122" data-start="18:45" data-end="20:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li> </ul>
|
1323
|
-
</div>
|
1324
|
-
|
1325
|
-
<div class="content-container times containerWEEK">
|
1326
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
1327
|
-
<ul class="unstyled inline">
|
1328
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_MORNING WEEK_NEWBIES WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MzcxMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Peak - book The Hundred-foot Journey on 18/09/2014 11:00" data-popup="popup" data-duration="122" data-start="11:00" data-end="13:02" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:00</a><i class="WEEK small ">Newbies</i></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MEEwMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Super Saver - book The Hundred-foot Journey on 18/09/2014 13:45" data-popup="popup" data-duration="122" data-start="13:45" data-end="15:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/Q0EwMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Peak - book The Hundred-foot Journey on 18/09/2014 18:45" data-popup="popup" data-duration="122" data-start="18:45" data-end="20:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">18:45</a></li> </ul>
|
1329
|
-
</div>
|
1330
|
-
|
1331
|
-
<div class="content-container times containerWEEK">
|
1332
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
1333
|
-
<ul class="unstyled inline">
|
1334
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RDkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Peak - book The Hundred-foot Journey on 19/09/2014 13:45" data-popup="popup" data-duration="122" data-start="13:45" data-end="15:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
|
1335
|
-
</div>
|
1336
|
-
|
1337
|
-
<div class="content-container times containerWEEK">
|
1338
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
1339
|
-
<ul class="unstyled inline">
|
1340
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Super Saver - book The Hundred-foot Journey on 22/09/2014 13:45" data-popup="popup" data-duration="122" data-start="13:45" data-end="15:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
|
1341
|
-
</div>
|
1342
|
-
|
1343
|
-
<div class="content-container times containerWEEK">
|
1344
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
1345
|
-
<ul class="unstyled inline">
|
1346
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_PG WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjkxMzEwMDAwMjNVRFBETVhHIzcxIzE1MzY3/" class="performance-detail" title="Bargain - book The Hundred-foot Journey on 23/09/2014 13:45" data-popup="popup" data-duration="122" data-start="13:45" data-end="15:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">13:45</a></li> </ul>
|
1347
|
-
</div>
|
1348
|
-
|
1349
|
-
<div class="content-container times stopper performances-WEEK _25496"></div>
|
1350
|
-
</div>
|
1351
|
-
</div>
|
1352
|
-
</div>
|
1353
|
-
|
1354
|
-
<!-- <div class="content-container times stopper performances-WEEK _25496"></div>-->
|
1355
|
-
<div class="content-container white performances-WEEK _25496"></div>
|
1356
|
-
</div>
|
1357
|
-
</div>
|
1358
|
-
|
1359
|
-
<div id="25210" class="film-detail WEEK">
|
1360
|
-
<div class="content-container red"><h6>Last chance to see</h6></div>
|
1361
|
-
<div class="content-container film _WEEK" id="film-25210">
|
1362
|
-
<div class="grad-hor">
|
1363
|
-
<a href="/films/the_inbetweeners_2/15195/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_f9e7145431b1e96c28e3c73de9535b4e.jpg" /></a>
|
1364
|
-
<div class="presentation-info">
|
1365
|
-
<h4><a href="/films/the_inbetweeners_2/15195/">The Inbetweeners 2</a></h4>
|
1366
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
1367
|
-
ID may be required </span>
|
1368
|
-
</div>
|
1369
|
-
<p><strong>British comedy sequel about four socially inept teenagers.</strong></p>
|
1370
|
-
|
1371
|
-
<div class="presentation-info">
|
1372
|
-
<div data-rating-master-id='15195' data-return-to='/showtimes/week/71/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
1373
|
-
<div class="rating-icon-star-small-active s7" data-rating="7">
|
1374
|
-
<div class="rate-over s1"></div>
|
1375
|
-
<div class="rate-over s2"></div>
|
1376
|
-
<div class="rate-over s3"></div>
|
1377
|
-
<div class="rate-over s4"></div>
|
1378
|
-
<div class="rate-over s5"></div>
|
1379
|
-
</div>
|
1380
|
-
</div>
|
1381
|
-
<span class="description"><strong>Film length: 96 mins</strong></span>
|
1382
|
-
</div>
|
1383
|
-
<p class="description">Strong sex references, nudity, very strong language, drug misuse</p>
|
1384
|
-
</div>
|
1385
|
-
<div class="info-corner">
|
1386
|
-
<div class="img-bundle">
|
1387
|
-
<div class="film-icon-WEEK feature-icon-light-backbritishfilm-medium WEEK_BACKBRITISHFILM" data-schedule="BACKBRITISHFILM" data-film="25210"></div><div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25210"></div> </div>
|
1388
|
-
<div class="btn-group">
|
1389
|
-
<a href="http://odeon.trailer.cineweb.de/inbetweeners_2_new.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15195" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
1390
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
1391
|
-
<span class="caret"></span>
|
1392
|
-
</button>
|
1393
|
-
<ul class="dropdown-menu">
|
1394
|
-
<li><a href="#">Add to Playlist</a></li>
|
1395
|
-
</ul>
|
1396
|
-
</div> </div>
|
1397
|
-
</div>
|
1398
|
-
<div id="performances-WEEK-25210" class="content-container times-all _WEEK">
|
1399
|
-
<div class="accordion-group times-all performances-WEEK _25210" id="tech-25210-0">
|
1400
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1401
|
-
<a data-toggle="collapse" data-parent="#tech-25210-0-WEEK" class="accordion-toggle" href="#collapse-25210-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>
|
1402
|
-
</div>
|
1403
|
-
<div id="collapse-25210-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1404
|
-
<div class="accordion-inner">
|
1405
|
-
|
1406
|
-
<div class="content-container times containerWEEK">
|
1407
|
-
<div class="presentation-info week"><strong>Wednesday</strong><br>17 Sep</div>
|
1408
|
-
<ul class="unstyled inline">
|
1409
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NUEwMzEwMDAwMjNVRFBETVhHIzcxIzE1MTk1/" class="performance-detail" title="Super Saver - book The Inbetweeners 2 on 17/09/2014 16:30" data-popup="popup" data-duration="96" data-start="16:30" data-end="18:06" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MUIwMzEwMDAwMjNVRFBETVhHIzcxIzE1MTk1/" class="performance-detail" title="Peak - book The Inbetweeners 2 on 17/09/2014 21:30" data-popup="popup" data-duration="96" data-start="21:30" data-end="23:06" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:30</a></li> </ul>
|
1410
|
-
</div>
|
1411
|
-
|
1412
|
-
<div class="content-container times containerWEEK">
|
1413
|
-
<div class="presentation-info week"><strong>Thursday</strong><br>18 Sep</div>
|
1414
|
-
<ul class="unstyled inline">
|
1415
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/NkEwMzEwMDAwMjNVRFBETVhHIzcxIzE1MTk1/" class="performance-detail" title="Super Saver - book The Inbetweeners 2 on 18/09/2014 16:30" data-popup="popup" data-duration="96" data-start="16:30" data-end="18:06" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">16:30</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_BACKBRITISHFILM WEEK_2D WEEK_GENRE_5 show"><a href="https://www.odeon.co.uk/booking/init/MkIwMzEwMDAwMjNVRFBETVhHIzcxIzE1MTk1/" class="performance-detail" title="Peak - book The Inbetweeners 2 on 18/09/2014 21:30" data-popup="popup" data-duration="96" data-start="21:30" data-end="23:06" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">21:30</a></li> </ul>
|
1416
|
-
</div>
|
1417
|
-
|
1418
|
-
<div class="content-container times stopper performances-WEEK _25210"></div>
|
1419
|
-
</div>
|
1420
|
-
</div>
|
1421
|
-
</div>
|
1422
|
-
|
1423
|
-
<!-- <div class="content-container times stopper performances-WEEK _25210"></div>-->
|
1424
|
-
<div class="content-container white performances-WEEK _25210"></div>
|
1425
|
-
</div>
|
1426
|
-
</div>
|
1427
|
-
|
1428
|
-
<div id="25559" class="film-detail WEEK">
|
1429
|
-
|
1430
|
-
<div class="content-container film _WEEK" id="film-25559">
|
1431
|
-
<div class="grad-hor">
|
1432
|
-
<a href="/films/the_riot_club/15263/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_4d569b2ca1a461a627d547b857b6fe62.jpg" /></a>
|
1433
|
-
<div class="presentation-info">
|
1434
|
-
<h4><a href="/films/the_riot_club/15263/">The Riot Club</a></h4>
|
1435
|
-
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
1436
|
-
ID may be required </span>
|
1437
|
-
</div>
|
1438
|
-
<p><strong>Drama about a fictional version of Oxford's Bullingdon Club.</strong></p>
|
1439
|
-
|
1440
|
-
<div class="presentation-info">
|
1441
|
-
<div data-rating-master-id='15263' data-return-to='/showtimes/week/71/' class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
1442
|
-
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
1443
|
-
<div class="rate-over s1"></div>
|
1444
|
-
<div class="rate-over s2"></div>
|
1445
|
-
<div class="rate-over s3"></div>
|
1446
|
-
<div class="rate-over s4"></div>
|
1447
|
-
<div class="rate-over s5"></div>
|
1448
|
-
</div>
|
1449
|
-
<i class="rating-icon-buzz-small-icon"></i>
|
1450
|
-
</div>
|
1451
|
-
<span class="description"><strong>Film length: 107 mins</strong></span>
|
1452
|
-
</div>
|
1453
|
-
<p class="description">Strong violence, very strong language, strong sex, sex references, drug use</p>
|
1454
|
-
</div>
|
1455
|
-
<div class="info-corner">
|
1456
|
-
<div class="img-bundle">
|
1457
|
-
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="25559"></div> </div>
|
1458
|
-
<div class="btn-group">
|
1459
|
-
<a href="http://odeon.trailer.cineweb.de/riotclub.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/showtimes/week/71/' data-film-id="15263" data-showbooknowbutton="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
1460
|
-
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
1461
|
-
<span class="caret"></span>
|
1462
|
-
</button>
|
1463
|
-
<ul class="dropdown-menu">
|
1464
|
-
<li><a href="#">Add to Playlist</a></li>
|
1465
|
-
</ul>
|
1466
|
-
</div> </div>
|
1467
|
-
</div>
|
1468
|
-
<div id="performances-WEEK-25559" class="content-container times-all _WEEK">
|
1469
|
-
<div class="accordion-group times-all performances-WEEK _25559" id="tech-25559-0">
|
1470
|
-
<div class="content-container tech accordion-heading _WEEK">
|
1471
|
-
<a data-toggle="collapse" data-parent="#tech-25559-0-WEEK" class="accordion-toggle" href="#collapse-25559-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>
|
1472
|
-
</div>
|
1473
|
-
<div id="collapse-25559-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
1474
|
-
<div class="accordion-inner">
|
1475
|
-
|
1476
|
-
<div class="content-container times containerWEEK">
|
1477
|
-
<div class="presentation-info week"><strong>Friday</strong><br>19 Sep</div>
|
1478
|
-
<ul class="unstyled inline">
|
1479
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 19/09/2014 12:45" data-popup="popup" data-duration="107" data-start="12:45" data-end="14:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">12:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjAyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 19/09/2014 15:20" data-popup="popup" data-duration="107" data-start="15:20" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 19/09/2014 18:00" data-popup="popup" data-duration="107" data-start="18:00" data-end="19:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 19/09/2014 20:40" data-popup="popup" data-duration="107" data-start="20:40" data-end="22:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
1480
|
-
</div>
|
1481
|
-
|
1482
|
-
<div class="content-container times containerWEEK">
|
1483
|
-
<div class="presentation-info week"><strong>Saturday</strong><br>20 Sep</div>
|
1484
|
-
<ul class="unstyled inline">
|
1485
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MzEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 20/09/2014 12:45" data-popup="popup" data-duration="107" data-start="12:45" data-end="14:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">12:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NDEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 20/09/2014 15:20" data-popup="popup" data-duration="107" data-start="15:20" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NTEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 20/09/2014 18:00" data-popup="popup" data-duration="107" data-start="18:00" data-end="19:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NjEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 20/09/2014 20:40" data-popup="popup" data-duration="107" data-start="20:40" data-end="22:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
1486
|
-
</div>
|
1487
|
-
|
1488
|
-
<div class="content-container times containerWEEK">
|
1489
|
-
<div class="presentation-info week"><strong>Sunday</strong><br>21 Sep</div>
|
1490
|
-
<ul class="unstyled inline">
|
1491
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_SUBTITLEDFORHARDOFHEARING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 21/09/2014 12:45" data-popup="popup" data-duration="107" data-start="12:45" data-end="14:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">12:45</a><i class="WEEK small moar ">Subtitled for <br/>hard of hearing</i></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 21/09/2014 15:20" data-popup="popup" data-duration="107" data-start="15:20" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 21/09/2014 18:00" data-popup="popup" data-duration="107" data-start="18:00" data-end="19:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 21/09/2014 20:40" data-popup="popup" data-duration="107" data-start="20:40" data-end="22:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
1492
|
-
</div>
|
1493
|
-
|
1494
|
-
<div class="content-container times containerWEEK">
|
1495
|
-
<div class="presentation-info week"><strong>Monday</strong><br>22 Sep</div>
|
1496
|
-
<ul class="unstyled inline">
|
1497
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Super Saver - book The Riot Club on 22/09/2014 12:45" data-popup="popup" data-duration="107" data-start="12:45" data-end="14:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">12:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Super Saver - book The Riot Club on 22/09/2014 15:20" data-popup="popup" data-duration="107" data-start="15:20" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 22/09/2014 18:00" data-popup="popup" data-duration="107" data-start="18:00" data-end="19:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDUyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Peak - book The Riot Club on 22/09/2014 20:40" data-popup="popup" data-duration="107" data-start="20:40" data-end="22:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
1498
|
-
</div>
|
1499
|
-
|
1500
|
-
<div class="content-container times containerWEEK">
|
1501
|
-
<div class="presentation-info week"><strong>Tuesday</strong><br>23 Sep</div>
|
1502
|
-
<ul class="unstyled inline">
|
1503
|
-
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjEyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Bargain - book The Riot Club on 23/09/2014 12:45" data-popup="popup" data-duration="107" data-start="12:45" data-end="14:32" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">12:45</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Bargain - book The Riot Club on 23/09/2014 15:20" data-popup="popup" data-duration="107" data-start="15:20" data-end="17:07" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">15:20</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Bargain - book The Riot Club on 23/09/2014 18:00" data-popup="popup" data-duration="107" data-start="18:00" data-end="19:47" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">18:00</a></li><li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjIyMzEwMDAwMjNVRFBETVhHIzcxIzE1MjYz/" class="performance-detail" title="Bargain - book The Riot Club on 23/09/2014 20:40" data-popup="popup" data-duration="107" data-start="20:40" data-end="22:27" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 6 (Wheelchair Accessible)" data-is-online="1">20:40</a></li> </ul>
|
1504
|
-
</div>
|
1505
|
-
|
1506
|
-
<div class="content-container times stopper performances-WEEK _25559"></div>
|
1507
|
-
</div>
|
1508
|
-
</div>
|
1509
|
-
</div>
|
1510
|
-
|
1511
|
-
<!-- <div class="content-container times stopper performances-WEEK _25559"></div>-->
|
1512
|
-
<div class="content-container white performances-WEEK _25559"></div>
|
1513
|
-
</div>
|
1514
|
-
</div>
|
1515
|
-
</section>
|
1516
|
-
</div>
|
1517
|
-
<div class="span3">
|
1518
|
-
<div id="show-only-this-film" class="accordion-group times-filter">
|
1519
|
-
<div class="accordion-heading">
|
1520
|
-
<a class="accordion-toggle blue form" data-toggle="collapse" data-parent="#show-only-this-film" href="#collapseOne-WEEK">
|
1521
|
-
<i class="filter-icon-opened"></i>Show only this film
|
1522
|
-
</a>
|
1523
|
-
</div>
|
1524
|
-
<div id="collapseOne-WEEK" class="accordion-body collapse in">
|
1525
|
-
<div class="accordion-inner">
|
1526
|
-
<div class="selectpicker select-icon-select">
|
1527
|
-
<select id="filter-film-WEEK" data-size="10">
|
1528
|
-
<option value="null">Select a film</option>
|
1529
|
-
<option value="23231">A Most Wanted Man</option>
|
1530
|
-
<option value="25550">A Walk Among The Tombstones</option>
|
1531
|
-
<option value="25493">Before I Go To Sleep</option>
|
1532
|
-
<option value="25302">Guardians Of The Galaxy</option>
|
1533
|
-
<option value="24907">How To Train Your Dragon 2</option>
|
1534
|
-
<option value="23478">Labor Day</option>
|
1535
|
-
<option value="25434">Lucy</option>
|
1536
|
-
<option value="25555">Magic In The Moonlight</option>
|
1537
|
-
<option value="25595">Nt Live: Medea (encore)</option>
|
1538
|
-
<option value="25350">Pride</option>
|
1539
|
-
<option value="23378">Sex Tape</option>
|
1540
|
-
<option value="23229">Tarzan</option>
|
1541
|
-
<option value="25529">The Boxtrolls</option>
|
1542
|
-
<option value="25822">The Giver</option>
|
1543
|
-
<option value="25496">The Hundred-foot Journey</option>
|
1544
|
-
<option value="25210">The Inbetweeners 2</option>
|
1545
|
-
<option value="25559">The Riot Club</option>
|
1546
|
-
</select>
|
1547
|
-
</div>
|
1548
|
-
</div>
|
1549
|
-
</div>
|
1550
|
-
</div>
|
1551
|
-
|
1552
|
-
<div id="WEEK-container-watch-in" class="accordion-group times-filter">
|
1553
|
-
<div class="accordion-heading">
|
1554
|
-
<a id="WEEK-toggler-watch-in" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#watch-in" href="#collapseTwo-WEEK">
|
1555
|
-
<i class="filter-icon-opened"></i>Watch in
|
1556
|
-
</a>
|
1557
|
-
</div>
|
1558
|
-
<div id="collapseTwo-WEEK" class="accordion-body collapse">
|
1559
|
-
<div class="accordion-inner">
|
1560
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-isense3d-WEEK" value="isense3D">
|
1561
|
-
<label for="ind-isense3d-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> ISENSE 3D</label>
|
1562
|
-
|
1563
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-isense-WEEK" value="isense">
|
1564
|
-
<label for="ind-isense-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> ISENSE</label>
|
1565
|
-
|
1566
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-imax3d-WEEK" value="imax3D">
|
1567
|
-
<label for="ind-imax3d-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> IMAX 3D</label>
|
1568
|
-
|
1569
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-imax-WEEK" value="imax">
|
1570
|
-
<label for="ind-imax-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> IMAX</label>
|
1571
|
-
|
1572
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-3d-WEEK" value="3D">
|
1573
|
-
<label for="ind-3d-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 3D</label>
|
1574
|
-
|
1575
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-watch-in" id="ind-2d-WEEK" value="2D">
|
1576
|
-
<label for="ind-2d-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 2D</label>
|
1577
|
-
</div>
|
1578
|
-
</div>
|
1579
|
-
</div>
|
1580
|
-
|
1581
|
-
<div id="WEEK-container-seating" class="accordion-group times-filter">
|
1582
|
-
<div class="accordion-heading">
|
1583
|
-
<a id="WEEK-toggler-seating" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#seating" href="#collapseThree-WEEK">
|
1584
|
-
<i class="filter-icon-opened"></i>Seating
|
1585
|
-
</a>
|
1586
|
-
</div>
|
1587
|
-
<div id="collapseThree-WEEK" class="accordion-body collapse">
|
1588
|
-
<div class="accordion-inner">
|
1589
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-seating" id="ind-gallery-WEEK" value="gallery">
|
1590
|
-
<label for="ind-gallery-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Gallery</label>
|
1591
|
-
|
1592
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-seating" id="ind-dbox-WEEK" value="dbox">
|
1593
|
-
<label for="ind-dbox-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> D-Box</label>
|
1594
|
-
|
1595
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-seating" id="ind-club-WEEK" value="club">
|
1596
|
-
<label for="ind-club-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Club seats</label>
|
1597
|
-
|
1598
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-seating" id="ind-ols-premiere-screen-WEEK" value="ols-premiere-screen">
|
1599
|
-
<label for="ind-ols-premiere-screen-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Premiere Screen</label>
|
1600
|
-
|
1601
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-seating" id="ind-ols-studio-WEEK" value="ols-studio">
|
1602
|
-
<label for="ind-ols-studio-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Studios</label>
|
1603
|
-
</div>
|
1604
|
-
</div>
|
1605
|
-
</div>
|
1606
|
-
|
1607
|
-
<div id="WEEK-container-pricing" class="accordion-group times-filter">
|
1608
|
-
<div class="accordion-heading">
|
1609
|
-
<a id="WEEK-toggler-pricing" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#pricing" href="#collapseFour-WEEK">
|
1610
|
-
<i class="filter-icon-opened"></i>Pricing
|
1611
|
-
</a>
|
1612
|
-
</div>
|
1613
|
-
<div id="collapseFour-WEEK" class="accordion-body collapse">
|
1614
|
-
<div class="accordion-inner">
|
1615
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-pricing" id="ind-supersaver-WEEK" value="isSuperSaver">
|
1616
|
-
<label for="ind-supersaver-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Supersaver</label>
|
1617
|
-
|
1618
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-pricing" id="ind-peak-WEEK" value="isPeak">
|
1619
|
-
<label for="ind-peak-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Peak</label>
|
1620
|
-
|
1621
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-pricing" id="ind-bargain-WEEK" value="isBargin">
|
1622
|
-
<label for="ind-bargain-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i>
|
1623
|
-
Bargain Tuesday </label>
|
1624
|
-
</div>
|
1625
|
-
</div>
|
1626
|
-
</div>
|
1627
|
-
|
1628
|
-
<div id="WEEK-container-certificate" class="accordion-group times-filter">
|
1629
|
-
<div class="accordion-heading">
|
1630
|
-
<a id="WEEK-toggler-certificate" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#certificate" href="#collapseFive-WEEK">
|
1631
|
-
<i class="filter-icon-opened"></i>Certificate
|
1632
|
-
</a>
|
1633
|
-
</div>
|
1634
|
-
<div id="collapseFive-WEEK" class="accordion-body collapse">
|
1635
|
-
<div class="accordion-inner">
|
1636
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-TBC-WEEK" value="TBC">
|
1637
|
-
<label for="ind-TBC-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> TBC <a href="/film-classifications/" alt="TBC" title="More about film classifications"><div class="cert-icon-uk-TBC-small"></div></a></label>
|
1638
|
-
|
1639
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-GEN-WEEK" value="GEN">
|
1640
|
-
<label for="ind-GEN-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> GEN <a href="/film-classifications/" alt="GEN" title="More about film classifications"><div class="cert-icon-uk-GEN-small"></div></a></label>
|
1641
|
-
|
1642
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-U-WEEK" value="U">
|
1643
|
-
<label for="ind-U-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> U <a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a></label>
|
1644
|
-
|
1645
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-PG-WEEK" value="PG">
|
1646
|
-
<label for="ind-PG-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> PG <a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a></label>
|
1647
|
-
|
1648
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-12-WEEK" value="12">
|
1649
|
-
<label for="ind-12-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 12 <a href="/film-classifications/" alt="12" title="More about film classifications"><div class="cert-icon-uk-12-small"></div></a></label>
|
1650
|
-
|
1651
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-12PG-WEEK" value="12PG">
|
1652
|
-
<label for="ind-12PG-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 12PG <a href="/film-classifications/" alt="12PG" title="More about film classifications"><div class="cert-icon-uk-12PG-small"></div></a></label>
|
1653
|
-
|
1654
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-12A-WEEK" value="12A">
|
1655
|
-
<label for="ind-12A-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 12A <a href="/film-classifications/" alt="12A" title="More about film classifications"><div class="cert-icon-uk-12A-small"></div></a></label>
|
1656
|
-
|
1657
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-15-WEEK" value="15">
|
1658
|
-
<label for="ind-15-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 15 <a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a></label>
|
1659
|
-
|
1660
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-15PG-WEEK" value="15PG">
|
1661
|
-
<label for="ind-15PG-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 15PG <a href="/film-classifications/" alt="15PG" title="More about film classifications"><div class="cert-icon-uk-15PG-small"></div></a></label>
|
1662
|
-
|
1663
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-15A-WEEK" value="15A">
|
1664
|
-
<label for="ind-15A-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 15A <a href="/film-classifications/" alt="15A" title="More about film classifications"><div class="cert-icon-uk-15A-small"></div></a></label>
|
1665
|
-
|
1666
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-16-WEEK" value="16">
|
1667
|
-
<label for="ind-16-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 16 <a href="/film-classifications/" alt="16" title="More about film classifications"><div class="cert-icon-uk-16-small"></div></a></label>
|
1668
|
-
|
1669
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-certificate" id="ind-18-WEEK" value="18">
|
1670
|
-
<label for="ind-18-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> 18 <a href="/film-classifications/" alt="18" title="More about film classifications"><div class="cert-icon-uk-18-small"></div></a></label>
|
1671
|
-
</div>
|
1672
|
-
</div>
|
1673
|
-
</div>
|
1674
|
-
|
1675
|
-
<div id="WEEK-container-genre" class="accordion-group times-filter">
|
1676
|
-
<div class="accordion-heading">
|
1677
|
-
<a id="WEEK-toggler-genre" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#genre" href="#collapseSix-WEEK">
|
1678
|
-
<i class="filter-icon-opened"></i>Genre
|
1679
|
-
</a>
|
1680
|
-
</div>
|
1681
|
-
<div id="collapseSix-WEEK" class="accordion-body collapse">
|
1682
|
-
<div class="accordion-inner">
|
1683
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-action-WEEK" value="genre_1">
|
1684
|
-
<label for="ind-action-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Action</label>
|
1685
|
-
|
1686
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-adventure-WEEK" value="genre_2">
|
1687
|
-
<label for="ind-adventure-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Adventure</label>
|
1688
|
-
|
1689
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-animated-WEEK" value="genre_3">
|
1690
|
-
<label for="ind-animated-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Animated</label>
|
1691
|
-
|
1692
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-bollywood-WEEK" value="genre_4">
|
1693
|
-
<label for="ind-bollywood-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Bollywood</label>
|
1694
|
-
|
1695
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-comedy-WEEK" value="genre_5">
|
1696
|
-
<label for="ind-comedy-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Comedy</label>
|
1697
|
-
|
1698
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-documentary-WEEK" value="genre_6">
|
1699
|
-
<label for="ind-documentary-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Documentary</label>
|
1700
|
-
|
1701
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-drama-WEEK" value="genre_7">
|
1702
|
-
<label for="ind-drama-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Drama</label>
|
1703
|
-
|
1704
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-fantasy-WEEK" value="genre_8">
|
1705
|
-
<label for="ind-fantasy-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Fantasy</label>
|
1706
|
-
|
1707
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-foreignLanguage-WEEK" value="genre_9">
|
1708
|
-
<label for="ind-foreignLanguage-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Foreign Language</label>
|
1709
|
-
|
1710
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-family-WEEK" value="genre_10">
|
1711
|
-
<label for="ind-family-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Family</label>
|
1712
|
-
|
1713
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-horror-WEEK" value="genre_11">
|
1714
|
-
<label for="ind-horror-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Horror</label>
|
1715
|
-
|
1716
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-musical-WEEK" value="genre_12">
|
1717
|
-
<label for="ind-musical-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Musical</label>
|
1718
|
-
|
1719
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-romanticComedy-WEEK" value="genre_13">
|
1720
|
-
<label for="ind-romanticComedy-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Romantic comedy</label>
|
1721
|
-
|
1722
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-scienceFiction-WEEK" value="genre_14">
|
1723
|
-
<label for="ind-scienceFiction-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Science Fiction</label>
|
1724
|
-
|
1725
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-thriller-WEEK" value="genre_15">
|
1726
|
-
<label for="ind-thriller-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Thriller</label>
|
1727
|
-
|
1728
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-urban-WEEK" value="genre_17">
|
1729
|
-
<label for="ind-urban-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Urban</label>
|
1730
|
-
|
1731
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-sports-WEEK" value="genre_18">
|
1732
|
-
<label for="ind-sports-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Sports</label>
|
1733
|
-
|
1734
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-genre" id="ind-music-WEEK" value="genre_19">
|
1735
|
-
<label for="ind-music-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Music</label>
|
1736
|
-
</div>
|
1737
|
-
</div>
|
1738
|
-
</div>
|
1739
|
-
|
1740
|
-
<div id="WEEK-container-showtimes" class="accordion-group times-filter">
|
1741
|
-
<div class="accordion-heading">
|
1742
|
-
<a id="WEEK-toggler-showtimes" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#showtimes" href="#collapseEight-WEEK">
|
1743
|
-
<i class="filter-icon-opened"></i>Showtimes
|
1744
|
-
</a>
|
1745
|
-
</div>
|
1746
|
-
<div id="collapseEight-WEEK" class="accordion-body collapse">
|
1747
|
-
<div class="accordion-inner">
|
1748
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-showtimes" id="ind-morning-WEEK" value="morning">
|
1749
|
-
<label for="ind-morning-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Morning (before 12pm)</label>
|
1750
|
-
|
1751
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-showtimes" id="ind-afternoon-WEEK" value="afternoon">
|
1752
|
-
<label for="ind-afternoon-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Afternoon (12pm to 5pm)</label>
|
1753
|
-
|
1754
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-showtimes" id="ind-evening-WEEK" value="evening">
|
1755
|
-
<label for="ind-evening-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Evening (after 5pm)</label>
|
1756
|
-
</div>
|
1757
|
-
</div>
|
1758
|
-
</div>
|
1759
|
-
|
1760
|
-
<div id="WEEK-container-accessibility" class="accordion-group times-filter">
|
1761
|
-
<div class="accordion-heading">
|
1762
|
-
<a id="WEEK-toggler-accessibility" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#accessibility" href="#collapseNine-WEEK">
|
1763
|
-
<i class="filter-icon-opened"></i>Accessibility
|
1764
|
-
</a>
|
1765
|
-
</div>
|
1766
|
-
<div id="collapseNine-WEEK" class="accordion-body collapse">
|
1767
|
-
<div class="accordion-inner">
|
1768
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-accessibility" id="ind-wheelchair-WEEK" value="wheelchair">
|
1769
|
-
<label for="ind-wheelchair-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Wheelchair-friendly</label>
|
1770
|
-
|
1771
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-accessibility" id="ind-audio-WEEK" value="audioDescribed">
|
1772
|
-
<label for="ind-audio-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Audio-described</label>
|
1773
|
-
|
1774
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-accessibility" id="ind-subtitled-WEEK" value="subtitledForHardOfHearing">
|
1775
|
-
<label for="ind-subtitled-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Subtitled</label>
|
1776
|
-
|
1777
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-accessibility" id="ind-autism-WEEK" value="autism">
|
1778
|
-
<label for="ind-autism-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Autism Friendly</label>
|
1779
|
-
</div>
|
1780
|
-
</div>
|
1781
|
-
</div>
|
1782
|
-
|
1783
|
-
<div id="WEEK-container-special_screenings" class="accordion-group times-filter">
|
1784
|
-
<div class="accordion-heading">
|
1785
|
-
<a id="WEEK-toggler-special_screenings" class="accordion-toggle blue form collapsed" data-toggle="collapse" data-parent="#special-screenings" href="#collapseTen-WEEK">
|
1786
|
-
<i class="filter-icon-opened"></i>Special screenings
|
1787
|
-
</a>
|
1788
|
-
</div>
|
1789
|
-
<div id="collapseTen-WEEK" class="accordion-body collapse">
|
1790
|
-
<div class="accordion-inner">
|
1791
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-culture-WEEK" value="ODEONPlusCulture">
|
1792
|
-
<label for="ind-culture-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Culture</label>
|
1793
|
-
|
1794
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-sport-WEEK" value="ODEONPlusSport">
|
1795
|
-
<label for="ind-sport-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Sport</label>
|
1796
|
-
|
1797
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-musics-WEEK" value="ODEONPlusMusic">
|
1798
|
-
<label for="ind-musics-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Music</label>
|
1799
|
-
|
1800
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-kids-club-WEEK" value="kids">
|
1801
|
-
<label for="ind-kids-club-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i>ODEON Kids</label>
|
1802
|
-
|
1803
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-newbies-WEEK" value="newbies">
|
1804
|
-
<label for="ind-newbies-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Newbies</label>
|
1805
|
-
|
1806
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-senior-screen-WEEK" value="seniorScreen">
|
1807
|
-
<label for="ind-senior-screen-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Senior Screen</label>
|
1808
|
-
|
1809
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-bollywood-WEEK-2" value="bollywood">
|
1810
|
-
<label for="ind-bollywood-WEEK-2" class="checkbox"><i class="checkbox-icon-unchecked"></i> Bollywood</label>
|
1811
|
-
|
1812
|
-
<input type="checkbox" class="filter-WEEK" name="WEEK-special_screenings" id="ind-back-british-films-WEEK" value="backBritishFilm">
|
1813
|
-
<label for="ind-back-british-films-WEEK" class="checkbox"><i class="checkbox-icon-unchecked"></i> Back British Film</label>
|
1814
|
-
</div>
|
1815
|
-
</div>
|
1816
|
-
</div>
|
1817
|
-
|
1818
|
-
<button id="resetFilterWEEK" class="btn orange" type="reset">Reset all filters</button>
|
1819
|
-
<script type="text/javascript">
|
1820
|
-
<!--//
|
1821
|
-
/* Javascript for filtering performances in Day and Week views. */
|
1822
|
-
var filterWEEKPerformances = {};
|
1823
|
-
|
1824
|
-
function greyoutFiltersWEEK(){
|
1825
|
-
$('input.filter-WEEK').each(function(){
|
1826
|
-
if(!$(this).attr('checked') && !$('li.WEEK.WEEK_' + $(this).val().toUpperCase()).hasClass('show')){
|
1827
|
-
$(this).attr('disabled', true);
|
1828
|
-
$('label[for="' + $(this).prop('id') + '"]').addClass('grey-disabled-text');
|
1829
|
-
} else {
|
1830
|
-
$(this).attr('disabled', false);
|
1831
|
-
$('label[for="' + $(this).prop('id') + '"]').removeClass('grey-disabled-text');
|
1832
|
-
}
|
1833
|
-
});
|
1834
|
-
}
|
1835
|
-
//Called on init for filter the filter options vs performance attributes
|
1836
|
-
function deleteFilterOptionsWEEK(){
|
1837
|
-
$('input.filter-WEEK').each(function(){
|
1838
|
-
if ($('li.WEEK').hasClass('WEEK_' + $(this).val().toUpperCase())) {
|
1839
|
-
return;
|
1840
|
-
}
|
1841
|
-
$(this).next('label').remove();
|
1842
|
-
$(this).remove();
|
1843
|
-
});
|
1844
|
-
var showButtonWEEK = false;
|
1845
|
-
$.each(['watch-in', 'seating', 'pricing', 'certificate', 'genre', 'showtimes', 'accessibility','special_screenings'], function(index, value){
|
1846
|
-
if ($('input[name="WEEK-' + value + '"]').doesExist()) {
|
1847
|
-
$('#WEEK-toggler-' + value).click();
|
1848
|
-
showButtonWEEK = true;
|
1849
|
-
return;
|
1850
|
-
}
|
1851
|
-
$('#WEEK-container-' + value).remove();
|
1852
|
-
});
|
1853
|
-
if (showButtonWEEK) {
|
1854
|
-
$('#resetFilterWEEK').show();
|
1855
|
-
} else {
|
1856
|
-
$('#resetFilterWEEK').hide();
|
1857
|
-
}
|
1858
|
-
}
|
1859
|
-
|
1860
|
-
//Filter with selectors and hides or shows all elements
|
1861
|
-
function filterShowtimesWEEK(selectors){
|
1862
|
-
|
1863
|
-
if(selectors.length > 0) {
|
1864
|
-
$('li.WEEK').each(function(){
|
1865
|
-
$(this).removeClass('show').addClass('hide');
|
1866
|
-
});
|
1867
|
-
} else {
|
1868
|
-
//Show all posible elements if no option is checked in the filter
|
1869
|
-
$('li.WEEK').each(function(){
|
1870
|
-
$(this).removeClass('hide').addClass('show');
|
1871
|
-
});
|
1872
|
-
|
1873
|
-
$('div.accordion-group.times-all.performances-WEEK').each(function(){
|
1874
|
-
$(this).removeClass('hide').addClass('show');
|
1875
|
-
});
|
1876
|
-
|
1877
|
-
|
1878
|
-
$('div.content-container.tech.accordion-heading._WEEK').each(function(){
|
1879
|
-
$(this).removeClass('hide').addClass('show');
|
1880
|
-
});
|
1881
|
-
|
1882
|
-
$('div.content-container.times.containerWEEK').each(function(){
|
1883
|
-
$(this).removeClass('hide').addClass('show');
|
1884
|
-
});
|
1885
|
-
|
1886
|
-
$('div.content-container.film._WEEK').each(function(){
|
1887
|
-
$(this).removeClass('hide').addClass('show');
|
1888
|
-
});
|
1889
|
-
|
1890
|
-
$('div.content-container.times.stopper.performances-WEEK').each(function(){
|
1891
|
-
$(this).removeClass('hide').addClass('show');
|
1892
|
-
});
|
1893
|
-
|
1894
|
-
$('div.film-icon-WEEK').each(function(){
|
1895
|
-
$(this).removeClass('hide').addClass('show');
|
1896
|
-
});
|
1897
|
-
|
1898
|
-
$('div.film-detail.WEEK').each(function(){
|
1899
|
-
if($('#filter-film-WEEK').length > 0 && $('#filter-film-WEEK').val() != 'null'){
|
1900
|
-
if($(this).prop('id') == $('#filter-film-WEEK').val()){
|
1901
|
-
$(this).removeClass('hide').addClass('show');
|
1902
|
-
}
|
1903
|
-
} else {
|
1904
|
-
$(this).removeClass('hide').addClass('show');
|
1905
|
-
}
|
1906
|
-
});
|
1907
|
-
//No option is checked in the filter and after show all elements we go out of the function
|
1908
|
-
greyoutFiltersWEEK();
|
1909
|
-
return;
|
1910
|
-
}
|
1911
|
-
|
1912
|
-
//Show all performances who are in the selectors list
|
1913
|
-
$.each(selectors, function(key, value) {
|
1914
|
-
$('li' + value).each(function(){
|
1915
|
-
$(this).removeClass('hide').addClass('show');
|
1916
|
-
});
|
1917
|
-
});
|
1918
|
-
|
1919
|
-
//Show or hide all times container
|
1920
|
-
$('div.content-container.times.containerWEEK').each(function(){
|
1921
|
-
if ( $(this).children('ul').children('li').hasClass('show')) {
|
1922
|
-
$(this).removeClass('hide').addClass('show');
|
1923
|
-
} else {
|
1924
|
-
$(this).removeClass('show').addClass('hide');
|
1925
|
-
}
|
1926
|
-
});
|
1927
|
-
|
1928
|
-
//Show or hide accordion container
|
1929
|
-
$('div.accordion-group.times-all.performances-WEEK').each(function(){
|
1930
|
-
if($(this).find('li.WEEK').hasClass('show')) {
|
1931
|
-
$(this).removeClass('hide').addClass('show');
|
1932
|
-
} else {
|
1933
|
-
$(this).removeClass('show').addClass('hide');
|
1934
|
-
}
|
1935
|
-
});
|
1936
|
-
|
1937
|
-
//Show or hide Film Detail
|
1938
|
-
$('div.film-detail.WEEK').each(function(){
|
1939
|
-
if($(this).find('li.WEEK').hasClass('show')) {
|
1940
|
-
if($('#filter-film-WEEK').length > 0 && $('#filter-film-WEEK').val() != 'null'){
|
1941
|
-
if($(this).prop('id') == $('#filter-film-WEEK').val()){
|
1942
|
-
$(this).find('div.content-container.film._WEEK').removeClass('hide').addClass('show');
|
1943
|
-
$(this).removeClass('hide').addClass('show');
|
1944
|
-
}
|
1945
|
-
} else {
|
1946
|
-
$(this).find('div.content-container.film._WEEK').removeClass('hide').addClass('show');
|
1947
|
-
$(this).removeClass('hide').addClass('show');
|
1948
|
-
}
|
1949
|
-
} else {
|
1950
|
-
$(this).find('div.content-container.film._WEEK').removeClass('show').addClass('hide');
|
1951
|
-
$(this).removeClass('show').addClass('hide');
|
1952
|
-
}
|
1953
|
-
});
|
1954
|
-
|
1955
|
-
//Show/hide film icon attributes
|
1956
|
-
$('div.film-icon-WEEK').each(function(){
|
1957
|
-
if($('#' + $(this).data('film') + '.WEEK').find('li.WEEK_' + $(this).data('schedule')).hasClass('show')) {
|
1958
|
-
$(this).removeClass('hide').addClass('show');
|
1959
|
-
} else {
|
1960
|
-
$(this).removeClass('show').addClass('hide');
|
1961
|
-
}
|
1962
|
-
});
|
1963
|
-
|
1964
|
-
greyoutFiltersWEEK();
|
1965
|
-
}
|
1966
|
-
|
1967
|
-
//Click on a filter option
|
1968
|
-
$('.filter-WEEK').click(function(){
|
1969
|
-
if (typeof filterWEEKPerformances[this.name.toString()] === 'undefined'){
|
1970
|
-
filterWEEKPerformances[this.name.toString()] = [];
|
1971
|
-
}
|
1972
|
-
|
1973
|
-
var filterItemValue = ('.WEEK_' + this.value).toUpperCase();
|
1974
|
-
|
1975
|
-
if (this.checked) {
|
1976
|
-
filterWEEKPerformances[this.name].push(filterItemValue);
|
1977
|
-
} else {
|
1978
|
-
if ($.inArray(filterItemValue, filterWEEKPerformances[this.name]) !== -1) {
|
1979
|
-
filterWEEKPerformances[this.name].splice($.inArray(filterItemValue, filterWEEKPerformances[this.name]), 1);
|
1980
|
-
}
|
1981
|
-
}
|
1982
|
-
|
1983
|
-
filterWEEKSelectors(this.name);
|
1984
|
-
});
|
1985
|
-
|
1986
|
-
//Create the selectors list with all checked filter options
|
1987
|
-
function filterWEEKSelectors(type)
|
1988
|
-
{
|
1989
|
-
var selectors = [];
|
1990
|
-
$.each(filterWEEKPerformances, function(key, value) {
|
1991
|
-
selectors = parseFilter(selectors, value);
|
1992
|
-
});
|
1993
|
-
filterShowtimesWEEK(selectors);
|
1994
|
-
}
|
1995
|
-
|
1996
|
-
//Parse filter options and to create all possible selectors
|
1997
|
-
function parseFilter(first, second)
|
1998
|
-
{
|
1999
|
-
ret = [];
|
2000
|
-
if(first.length == 0 && second.length > 0 ) {
|
2001
|
-
return second;
|
2002
|
-
} else if (first.length > 0 && second.length == 0) {
|
2003
|
-
return first;
|
2004
|
-
} else if (first.length == 0 && second.length == 0) {
|
2005
|
-
return ret;
|
2006
|
-
}
|
2007
|
-
|
2008
|
-
$.each(first, function(firstKey, firstValue){
|
2009
|
-
$.each(second, function(secondKey, secondValue){
|
2010
|
-
ret.push(firstValue+secondValue);
|
2011
|
-
});
|
2012
|
-
});
|
2013
|
-
|
2014
|
-
return ret;
|
2015
|
-
}
|
2016
|
-
|
2017
|
-
/* Film filter functionality */
|
2018
|
-
$('#filter-film-WEEK').change(function(){
|
2019
|
-
if ($(this).val() != 'null') {
|
2020
|
-
$('div.film-detail.WEEK').each(function(){
|
2021
|
-
if (this.id === $('#filter-film-WEEK').val()) {
|
2022
|
-
$(this).removeClass('hide').addClass('show');
|
2023
|
-
} else {
|
2024
|
-
$(this).removeClass('show').addClass('hide');
|
2025
|
-
}
|
2026
|
-
});
|
2027
|
-
} else {
|
2028
|
-
//No film is selected and we must refilter
|
2029
|
-
filterWEEKSelectors();
|
2030
|
-
}
|
2031
|
-
});
|
2032
|
-
|
2033
|
-
//Reset filter for Week and Day View
|
2034
|
-
$('#resetFilterWEEK').click(function(){
|
2035
|
-
//Set all film for Day or Week View visible
|
2036
|
-
$('#filter-film-WEEK').val('null');
|
2037
|
-
$('input.filter-WEEK').attr('checked', false);
|
2038
|
-
filterWEEKPerformances = {};
|
2039
|
-
|
2040
|
-
//Refilter
|
2041
|
-
filterWEEKSelectors();
|
2042
|
-
});
|
2043
|
-
|
2044
|
-
//-->
|
2045
|
-
</script>
|
2046
|
-
</div>
|
2047
|
-
<script type="text/javascript">
|
2048
|
-
var showtimesFilmListWEEK = [];
|
2049
|
-
showtimesFilmListWEEK['23231'] = ['A Most Wanted Man', '2014/09/12', '3.088235294117647'];
|
2050
|
-
showtimesFilmListWEEK['25550'] = ['A Walk Among The Tombstones', '2014/09/19', '0'];
|
2051
|
-
showtimesFilmListWEEK['25493'] = ['Before I Go To Sleep', '2014/09/05', '3.659340659340659'];
|
2052
|
-
showtimesFilmListWEEK['25302'] = ['Guardians Of The Galaxy', '2014/07/31', '4.527964205816555'];
|
2053
|
-
showtimesFilmListWEEK['24907'] = ['How To Train Your Dragon 2', '2014/07/10', '4.373563218390805'];
|
2054
|
-
showtimesFilmListWEEK['23478'] = ['Labor Day', '2014/03/21', '3.473684210526316'];
|
2055
|
-
showtimesFilmListWEEK['25434'] = ['Lucy', '2014/08/22', '3.3002915451895043'];
|
2056
|
-
showtimesFilmListWEEK['25555'] = ['Magic In The Moonlight', '2014/09/19', '0'];
|
2057
|
-
showtimesFilmListWEEK['25595'] = ['Nt Live: Medea (encore)', '2014/09/04', '3.6666666666666665'];
|
2058
|
-
showtimesFilmListWEEK['25350'] = ['Pride', '2014/09/12', '3.9871794871794872'];
|
2059
|
-
showtimesFilmListWEEK['23378'] = ['Sex Tape', '2014/09/03', '3.13'];
|
2060
|
-
showtimesFilmListWEEK['23229'] = ['Tarzan', '2014/05/02', '3.0128205128205128'];
|
2061
|
-
showtimesFilmListWEEK['25529'] = ['The Boxtrolls', '2014/09/12', '3.218390804597701'];
|
2062
|
-
showtimesFilmListWEEK['25822'] = ['The Giver', '2014/09/19', '0'];
|
2063
|
-
showtimesFilmListWEEK['25496'] = ['The Hundred-foot Journey', '2014/09/05', '3.457627118644068'];
|
2064
|
-
showtimesFilmListWEEK['25210'] = ['The Inbetweeners 2', '2014/08/06', '3.6554121151936445'];
|
2065
|
-
showtimesFilmListWEEK['25559'] = ['The Riot Club', '2014/09/19', '0'];
|
2066
|
-
$(document).ready(function() {
|
2067
|
-
deleteFilterOptionsWEEK();
|
2068
|
-
$('.info-icon-form-info-small').popover();
|
2069
|
-
refreshScrollspy();
|
2070
|
-
});
|
2071
|
-
</script>
|