cineworld_uk 1.0.5 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/CHANGELOG.md +64 -0
  4. data/README.md +2 -1
  5. data/cineworld_uk.gemspec +3 -3
  6. data/lib/cineworld_uk/cinema.rb +60 -69
  7. data/lib/cineworld_uk/film.rb +25 -7
  8. data/lib/cineworld_uk/internal/film_with_screenings_parser.rb +29 -71
  9. data/lib/cineworld_uk/internal/name_parser.rb +20 -18
  10. data/lib/cineworld_uk/internal/screening_parser.rb +132 -0
  11. data/lib/cineworld_uk/internal/titleize.rb +19 -19
  12. data/lib/cineworld_uk/internal/website.rb +33 -0
  13. data/lib/cineworld_uk/internal/whatson_parser.rb +44 -0
  14. data/lib/cineworld_uk/screening.rb +65 -20
  15. data/lib/cineworld_uk/version.rb +2 -2
  16. data/lib/cineworld_uk.rb +4 -0
  17. data/test/fixture_updater.rb +64 -0
  18. data/test/fixtures/cinemas.html +134 -41
  19. data/test/fixtures/{cinemas/bury-st-edmunds.html → information/brighton.html} +488 -437
  20. data/test/fixtures/{cinemas → information}/bristol.html +463 -410
  21. data/test/fixtures/whatson/brighton/film_first.html +775 -0
  22. data/test/fixtures/whatson/brighton/film_last.html +52 -0
  23. data/test/fixtures/whatson/brighton/film_second.html +645 -0
  24. data/test/fixtures/whatson/brighton.html +3564 -2690
  25. data/test/fixtures/whatson/glasgow-imax-at-gsc/film_first.html +140 -0
  26. data/test/fixtures/whatson/the-o2-greenwich/film_first.html +1242 -0
  27. data/test/lib/cineworld_uk/cinema_test.rb +104 -301
  28. data/test/lib/cineworld_uk/film_test.rb +49 -2
  29. data/test/lib/cineworld_uk/internal/film_with_screenings_parser_test.rb +83 -81
  30. data/test/lib/cineworld_uk/internal/titleize_test.rb +12 -5
  31. data/test/lib/cineworld_uk/internal/website_test.rb +57 -0
  32. data/test/lib/cineworld_uk/internal/whatson_parser_test.rb +58 -0
  33. data/test/lib/cineworld_uk/screening_test.rb +155 -23
  34. data/test/lib/cineworld_uk/version_test.rb +1 -1
  35. data/test/test_helper.rb +3 -1
  36. metadata +30 -33
  37. data/test/fixtures/cinemas/brighton.html +0 -8
  38. data/test/fixtures/cinemas/chelsea.html +0 -1030
  39. data/test/fixtures/cinemas/glasgow-imax-at-gsc.html +0 -916
  40. data/test/fixtures/cinemas/the-o2-grenwich.html +0 -1191
  41. data/test/fixtures/whatson/brighton/gravity.html +0 -2129
  42. data/test/fixtures/whatson/glasgow-imax-at-gsc/the-hunger-games-catching-fire.html +0 -498
  43. data/test/fixtures/whatson/glasgow-imax-at-gsc-cinema.html +0 -3160
  44. data/test/fixtures/whatson/the-o2-greenwich/gravity.html +0 -784
  45. data/test/fixtures/whatson/the-o2-greenwich/the-hobbit-desolation-of-smaug.html +0 -764
  46. data/test/fixtures/whatson/the-o2-greenwich.html +0 -6854
  47. data/test/fixtures/whatson/wandsworth.html +0 -13729
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cineworld_uk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Croll
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-27 00:00:00.000000000 Z
11
+ date: 2014-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -25,7 +25,7 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
28
+ name: minitest-reporters
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: webmock
42
+ name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -53,13 +53,13 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: httparty
56
+ name: webmock
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :runtime
62
+ type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -128,29 +128,29 @@ files:
128
128
  - lib/cineworld_uk/film.rb
129
129
  - lib/cineworld_uk/internal/film_with_screenings_parser.rb
130
130
  - lib/cineworld_uk/internal/name_parser.rb
131
+ - lib/cineworld_uk/internal/screening_parser.rb
131
132
  - lib/cineworld_uk/internal/titleize.rb
133
+ - lib/cineworld_uk/internal/website.rb
134
+ - lib/cineworld_uk/internal/whatson_parser.rb
132
135
  - lib/cineworld_uk/screening.rb
133
136
  - lib/cineworld_uk/version.rb
137
+ - test/fixture_updater.rb
134
138
  - test/fixtures/cinemas.html
135
- - test/fixtures/cinemas/brighton.html
136
- - test/fixtures/cinemas/bristol.html
137
- - test/fixtures/cinemas/bury-st-edmunds.html
138
- - test/fixtures/cinemas/chelsea.html
139
- - test/fixtures/cinemas/glasgow-imax-at-gsc.html
140
- - test/fixtures/cinemas/the-o2-grenwich.html
139
+ - test/fixtures/information/brighton.html
140
+ - test/fixtures/information/bristol.html
141
141
  - test/fixtures/whatson/brighton.html
142
- - test/fixtures/whatson/brighton/gravity.html
143
- - test/fixtures/whatson/glasgow-imax-at-gsc-cinema.html
144
- - test/fixtures/whatson/glasgow-imax-at-gsc/the-hunger-games-catching-fire.html
145
- - test/fixtures/whatson/the-o2-greenwich.html
146
- - test/fixtures/whatson/the-o2-greenwich/gravity.html
147
- - test/fixtures/whatson/the-o2-greenwich/the-hobbit-desolation-of-smaug.html
148
- - test/fixtures/whatson/wandsworth.html
142
+ - test/fixtures/whatson/brighton/film_first.html
143
+ - test/fixtures/whatson/brighton/film_last.html
144
+ - test/fixtures/whatson/brighton/film_second.html
145
+ - test/fixtures/whatson/glasgow-imax-at-gsc/film_first.html
146
+ - test/fixtures/whatson/the-o2-greenwich/film_first.html
149
147
  - test/lib/cineworld_uk/cinema_test.rb
150
148
  - test/lib/cineworld_uk/film_test.rb
151
149
  - test/lib/cineworld_uk/internal/film_with_screenings_parser_test.rb
152
150
  - test/lib/cineworld_uk/internal/name_parser_test.rb
153
151
  - test/lib/cineworld_uk/internal/titleize_test.rb
152
+ - test/lib/cineworld_uk/internal/website_test.rb
153
+ - test/lib/cineworld_uk/internal/whatson_parser_test.rb
154
154
  - test/lib/cineworld_uk/screening_test.rb
155
155
  - test/lib/cineworld_uk/version_test.rb
156
156
  - test/test_helper.rb
@@ -174,31 +174,28 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  requirements: []
176
176
  rubyforge_project:
177
- rubygems_version: 2.2.0
177
+ rubygems_version: 2.2.2
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: Parses cinema and showing data from the cineworld.co.uk website
181
181
  test_files:
182
+ - test/fixture_updater.rb
182
183
  - test/fixtures/cinemas.html
183
- - test/fixtures/cinemas/brighton.html
184
- - test/fixtures/cinemas/bristol.html
185
- - test/fixtures/cinemas/bury-st-edmunds.html
186
- - test/fixtures/cinemas/chelsea.html
187
- - test/fixtures/cinemas/glasgow-imax-at-gsc.html
188
- - test/fixtures/cinemas/the-o2-grenwich.html
184
+ - test/fixtures/information/brighton.html
185
+ - test/fixtures/information/bristol.html
189
186
  - test/fixtures/whatson/brighton.html
190
- - test/fixtures/whatson/brighton/gravity.html
191
- - test/fixtures/whatson/glasgow-imax-at-gsc-cinema.html
192
- - test/fixtures/whatson/glasgow-imax-at-gsc/the-hunger-games-catching-fire.html
193
- - test/fixtures/whatson/the-o2-greenwich.html
194
- - test/fixtures/whatson/the-o2-greenwich/gravity.html
195
- - test/fixtures/whatson/the-o2-greenwich/the-hobbit-desolation-of-smaug.html
196
- - test/fixtures/whatson/wandsworth.html
187
+ - test/fixtures/whatson/brighton/film_first.html
188
+ - test/fixtures/whatson/brighton/film_last.html
189
+ - test/fixtures/whatson/brighton/film_second.html
190
+ - test/fixtures/whatson/glasgow-imax-at-gsc/film_first.html
191
+ - test/fixtures/whatson/the-o2-greenwich/film_first.html
197
192
  - test/lib/cineworld_uk/cinema_test.rb
198
193
  - test/lib/cineworld_uk/film_test.rb
199
194
  - test/lib/cineworld_uk/internal/film_with_screenings_parser_test.rb
200
195
  - test/lib/cineworld_uk/internal/name_parser_test.rb
201
196
  - test/lib/cineworld_uk/internal/titleize_test.rb
197
+ - test/lib/cineworld_uk/internal/website_test.rb
198
+ - test/lib/cineworld_uk/internal/whatson_parser_test.rb
202
199
  - test/lib/cineworld_uk/screening_test.rb
203
200
  - test/lib/cineworld_uk/version_test.rb
204
201
  - test/test_helper.rb
@@ -1,8 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><title>Brighton | Cineworld Cinemas</title> <meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="robots" content="index, follow" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link type="image/x-icon" rel="shortcut icon" href="/cw/assets/favicon.ico" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/bootstrap.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/jquery.fancybox.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/nivo.slider.default.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/zebra.datepicker.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld.typography.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld.layout.packed.css" media="all" /><link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld.print.packed.css" media="print" /><!--[if IE]><link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld.ie.packed.css" media="all" /><![endif]--><!--[if lt IE 8]><link type="text/css" rel="stylesheet" href="/cw/assets/css/cineworld.ie7.packed.css" media="all" /><![endif]--><script type="text/javascript" src="/cw/assets/javascript/log4j.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.packed.js"></script> <!--[if lt IE 8]><script type="text/javascript" src="/cw/assets/javascript/jquery.pseudo.packed.js"></script> <![endif]--><!--//--><meta name="Description" content="Cineworld Brighton - Brighton Marina, Brighton, East Sussex, BN2 5UF - Brighton Cinema Listings - Book tickets online" /><meta name="" content=""/><script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script> <link rel="canonical" href="http://www.cineworld.co.uk/cinemas/brighton/information" /><script type="text/javascript">$(document).ready(function() {
2
- $('.pricing .accessible-tabs').bind('after.setup', function(event, tabs) {
3
-
4
- // Select current day for pricing table after setup
5
- $(tabs).find('.navigation .day-' + new Date().getDay()).trigger('click');
6
- });
7
- });
8
- </script> <!--//--></head><body class="cineworld gb cinema"><div id="fb-root"></div><div id="wallpaper"><div id="header" role="banner"><div class="container"><h1><a href="/">Cineworld Cinemas</a></h1><div class="account"><span class="icon-logo-mycineworld ">mycineworld</span><p><a class="action secondary dark" data-type="login" href="/login?location=">Login</a> <a class="action secondary dark" data-type="register" href="/register?location=&amp;source=mycineworld&amp;favouriteCinema=-1">Register</a> <a class="action secondary dark" data-type="why" href="/mycineworld">Find out why?</a></p></div></div></div><div class="navigation" role="navigation"><ul><li><a href="/">Home</a></li> <li><a href="/whatson">What's On</a><ul><li><a href="/events">Bollywood &amp; Live Events</a></li> <li><a href="/whatson/category/junior">Movies for Juniors</a></li></ul></li><li><a href="/cinemas">Our Cinemas</a> </li><li><a href="/prices">Prices</a> </li><li><a href="/explore">Explore Cineworld</a><ul><li><a href="/explore/reald">RealD 3D</a></li> <li><a href="/explore/imax">IMAX</a></li> <li><a href="/explore/dbox">D-BOX</a></li> <li><a href="/blog">Cineworld Blog</a></li> <li><a href="/competitions">Offers &amp; Competitions</a></li> <li><a href="/baftascotland">BAFTA Scotland</a></li> <li><a href="/take2">Take 2 Thursdays</a></li> <li><a href="/starbucks">Starbucks at Cineworld</a></li></ul></li><li><a href="/unlimited">Unlimited Card</a><ul><li><a href="/unlimited/howitworks">How it works</a></li> <li><a href="/unlimited/discounts">Unlimited discounts</a></li> <li><a href="/unlimited/premium">Premium Unlimited</a></li> <li><a href="https://www.unlimitedcineworld.com/uk/pages/Login.aspx">Apply for Unlimited</a></li></ul></li><li><a href="/giftcards">Gifts</a></li> <li><form action="/search" method="get" class="search" role="search" data-ajax-action="/search/suggestions"><label class="no-margin inline"><span class="accessible-hide-html-self">Search</span> <input accesskey="s" autocomplete="off" placeholder="Search" type="search" name="q" /> </label><ol class="results"></ol><button type="submit">Search</button></form></li></ul></div><div class="container" role="main"><div class="layout"><div id="content"><div class="section dark gradient clearfix info"><div class="row"><div class="span8"><h1>Cineworld Brighton <a id="changeCinema" class="action secondary dark" href="/cinemas?path=/cinemas/id/information">Change cinema</a></h1><h2>About Brighton</h2><p>Cineworld Brighton is an 8 screen cinema located on the seafont close to Brighton Pier. The complex is served by a free car park and a wide range of restaurants in short proximity.</p><ul class="unstyled navigation"><li><a class="icon-navigation-large-food-drink" href="#services">Summary of facilities</a></li> <li><a class="icon-navigation-large-tickets" href="#prices">How much do tickets cost?</a></li> <li><a class="icon-navigation-large-map" href="#directions">How do I get there?</a></li> <li><a class="icon-navigation-large-hire" href="#hire">Hire this cinema</a></li></ul></div><div class="span4"><h2>What's on at Brighton</h2><ul class="grid films clearfix"><li><div class="poster"><a href="/whatson/6543?cinema=3"><div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6543_poster_large.jpg" alt="Poster for Film The Hunger Games: Catching Fire" /></div></a></div><a href="/whatson/6543?cinema=3">The Hunger Games: Catching Fire</a> </li><li><div class="poster"><a href="/whatson/6515?cinema=3"><div class="image"><img src="/cw/assets/images/whatson/film.placeholder.poster.jpg" data-original="/assets/media/films/6515_poster_large.jpg" alt="Poster for Film Gravity" /></div></a></div><a href="/whatson/6515?cinema=3">Gravity</a> </li></ul><p><a class="action primary" href="/whatson?cinema=3">See all films at Brighton</a></p></div></div></div><div class="section light clearfix "><h1 id="prices" class="ribbon overlap">How much do tickets cost?</h1><div class="pricing"><div class="panel anonymous dark"><h2>Register free with <span class="icon-logo-mycineworld">MyCineworld</span> and save 10% on the Standard ticket price every time you book online</h2><a class="action mycineworld" href="/register">Sign Up</a> <a class="action mycineworld" href="/login">Login</a></div><div class="accessible-tabs" data-header="Choose the day of your performance"><h2 class="day-0 action secondary">Sun</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-1 action secondary">Mon</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-2 action secondary">Tues</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">&pound;5.22</td><td class="dark value border-right ">&pound;5.22</td><td class="value border-right ">&pound;5.80</td><td class="value border-right ">&pound;5.80</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-3 action secondary">Wed</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-4 action secondary">Thurs</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-5 action secondary">Fri</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div><h2 class="day-6 action secondary">Sat</h2><div class="tab"><table class="tickets"><thead><tr><th colspan="2" class="transparent">&nbsp;</th><th colspan="2" class="dark border-left border-right"><span class="icon-logo-mycineworld">MyCineworld</span> Tickets</th><th colspan="2" class="border-right">Standard Tickets</th></tr><tr><th class="border-top border-right border-left radius-top-left">Ticket Type</th><th class="border-top">Details</th><th class="dark border-left border-right">Before 5pm</th><th class="dark border-right">After 5pm</th><th class="border-right">Before 5pm</th><th class="border-right">After 5pm</th></tr></thead><tbody><tr><td class="border-left border-right "><strong>Adult</strong></td><td class="align-left ">Customers aged 18+, customers aged 15-17 pay 'Student' rate, ID may be required</td><td class="dark value border-left border-right ">&pound;7.02</td><td class="dark value border-right ">&pound;8.10</td><td class="value border-right ">&pound;7.80</td><td class="value border-right ">&pound;9.00</td></tr><tr><td class="border-left border-right "><strong>Child</strong></td><td class="align-left ">Child tickets are for customers aged 14 and under</td><td class="dark value border-left border-right ">&pound;5.40</td><td class="dark value border-right ">&pound;5.40</td><td class="value border-right ">&pound;6.00</td><td class="value border-right ">&pound;6.00</td></tr><tr><td class="border-left border-right "><strong>Student</strong></td><td class="align-left ">Valid student photo ID must be shown or full adult rate may be charged</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Senior</strong></td><td class="align-left ">Senior tickets are for customers aged 60+</td><td class="dark value border-left border-right ">&pound;5.76</td><td class="dark value border-right ">&pound;5.76</td><td class="value border-right ">&pound;6.40</td><td class="value border-right ">&pound;6.40</td></tr><tr><td class="border-left border-right "><strong>Family</strong></td><td class="align-left ">Discount applies if tickets for 2 adults & 2 children or 1 adult & 3 children exceed the family ticket cost</td><td class="dark value border-left border-right ">&pound;22.14</td><td class="dark value border-right ">&pound;24.30</td><td class="value border-right ">&pound;24.60</td><td class="value border-right ">&pound;27.00</td></tr><tr><td class="border-left border-right "><strong>Bargain Day</strong></td><td class="align-left "></td><td class="dark value border-left border-right ">N/A</td><td class="dark value border-right ">N/A</td><td class="value border-right ">N/A</td><td class="value border-right ">N/A</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">&pound;1.00</td><td class="dark value border-right ">&pound;1.00</td><td class="value border-right ">&pound;1.50</td><td class="value border-right ">&pound;1.50</td></tr><tr><td class="border-left border-right "><strong>Movies for Juniors 3D</strong></td><td class="align-left ">Parent and child screenings, price is specific to Movies for Juniors shows only (before 12am)</td><td class="dark value border-left border-right ">&pound;2.70</td><td class="dark value border-right ">&pound;2.70</td><td class="value border-right ">&pound;3.00</td><td class="value border-right ">&pound;3.00</td></tr><tr><td class="border-left border-right border-bottom radius-bottom-left"><strong>3D Glasses</strong></td><td class="align-left border-bottom">Per pair, retain your 3D glasses and reuse them in future 3D performances</td><td class="dark value border-left border-right border-bottom">&pound;0.80</td><td class="dark value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom">&pound;0.80</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.80</td></tr></tbody></table></div></div><p class="message information"><strong>Please note:</strong> Weekend pricing applies on Bank Holidays. The cost of certain performances such as live events, theatre and opera etc may vary. Check your booking carefully before payment is made.</p><table class="extras"><thead><tr><th class="transparent">&nbsp;</th><th colspan="1" class="dark border-left border-top border-right radius-top-left"><span class="icon-logo-mycineworld">MyCineworld</span> Price</th><th colspan="1" class="border-top border-right radius-top-right">Standard Price</th></tr><tr><th class="border-top border-left radius-top-left">Additional Charges</th><th class="dark border-left border-right">3D</th><th class="border-right">3D</th></tr></thead><tbody><tr><td class="border-left "><strong>Adult</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;1.89</td><td class="value border-right ">&pound;2.10</td></tr><tr><td class="border-left "><strong>Child</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;1.35</td><td class="value border-right ">&pound;1.50</td></tr><tr><td class="border-left "><strong>Student</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;1.35</td><td class="value border-right ">&pound;1.50</td></tr><tr><td class="border-left "><strong>Senior</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;1.35</td><td class="value border-right ">&pound;1.50</td></tr><tr><td class="border-left "><strong>Family</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;5.04</td><td class="value border-right ">&pound;5.60</td></tr><tr><td class="border-left "><strong>Unlimited</strong><span class="notes"></span></td><td class="dark value border-left border-right ">&pound;1.50</td><td class="value border-right ">&pound;1.50</td></tr><tr><td class="border-left border-bottom radius-bottom-left"><strong>Unlimited Premium</strong><span class="notes"></span></td><td class="dark value border-left border-right border-bottom">&pound;0.00</td><td class="value border-right border-bottom radius-bottom-right">&pound;0.00</td></tr></tbody></table></div></div><div class="section light clearfix "><h1 id="services" class="ribbon">Summary of facilities</h1><ul class="unstyled clearfix services"><li><h2>Screens and Ticketing</h2><ul class="unstyled"><li class="icon-service-pre">Advance screenings</li> <li class="icon-service-dig">Digital</li> <li class="icon-service-thrd">3D</li> <li class="icon-service-vh">Venue hire</li> <li class="icon-service-eticket">E-ticketing</li></ul></li><li><h2>Food and Drink</h2><ul class="unstyled"><li class="icon-service-con">Concessions</li> <li class="icon-service-baj">Ben &amp; Jerrys Scoop Ice cream</li></ul></li><li><h2>Facilities for Families</h2><ul class="unstyled"><li class="icon-service-m4j">Movies for juniors</li></ul></li><li><h2>Accessibility</h2><ul class="unstyled"><li class="icon-service-dba">Disabled access</li> <li class="icon-service-dbp">Disabled parking</li> <li class="icon-service-sub">Subtitled</li> <li class="icon-service-gdog">Guide dogs allowed</li></ul></li></ul></div><div class="section light clearfix "><h1 id="directions" class="ribbon">How do I get there?</h1><div class="row"><div class="span6"><h2>Details</h2><address class="marker"><div class="pin primary small">1</div><strong>Cineworld Brighton</strong><br />Brighton Marina, Brighton, East Sussex BN2 5UF<br />0871 200 2000</address><div class="map interactive deferred" data-key="Aj8bhxskJR1S8CqbKYkL4SpvWzacmzzB2iTfZSwi-HFLHpPN6ISfu8wccbH6Rra4" data-width="458" data-height="400" data-coordinates="50.812631,-0.100665" data-zoom="15" data-nearby="0"><div id="bing-3" class="bing viewport" style="display: none;"></div></div></div><div class="span6"><h3>Transport Information</h3><h4>By train</h4><p>Brighton Railway Station is approx 2 miles away from the cinema. Bus 7 runs every 15 mins from the train station to the Marina at peak times</p><h4>By bus</h4><p>Numbers 7 &amp; 12 from the town centre stop near the cinema.</p><h4>By car</h4><p>Head down A23 to seafront, turn left and follow tourist signs to Brighton Marina. The cinema is 1 mile east of Brighton Pier.</p><h3>Parking</h3><p>Free multi storey car park is available nearby the cinema.</p><h3>Disabled Access</h3><h4>Disabled Parking</h4><p>Designated spaces for disabled parking are available on the lowest floor near the Asda garage</p></div></div></div><div class="section light clearfix "><h1 id="hire" class="ribbon">Hire Cineworld Brighton</h1><div class="row hire"><div class="span6"><p>Cineworld Brighton's experienced events team can provide a variety of additional audio, visual and lighting to suit all your requirements, and with flexible space at the front of our auditoria we can accommodate a variety of different staging setups.</p><p>Our professional caterers can provide anything from pastries on arrival to a full hot buffet, and we can offer fantastic corporate deals on refreshments.</p><a class="action secondary light" href="/venuehire/venues/3">Visit our venue hire website</a></div></div></div></div><div id="footer" role="contentinfo"><div class="section dark clearfix "><div class="row"><hr class="highlight" /><div class="span4"><h3>Venue hire</h3><ul><li><a href="/venuehire">Find out more</a></li></ul></div><div class="span3"><h3>My booking</h3><ul><li><a href="/checkbooking">Check my booking</a></li></ul><h3>Follow us</h3><ul class="social"><li class="twitter"><a href="http://twitter.com/cineworld" target="_blank">Twitter</a></li> <li class="facebook"><a href="http://www.facebook.com/cineworld" target="_blank">Facebook</a></li> <li class="youtube"><a href="http://www.youtube.com/user/CineworldCinemas" target="_blank">YouTube</a></li></ul></div><div class="span5"><h3>Around Cineworld</h3><ul><li><a href="/contact">Contact us</a></li> <li><a href="/terms">Terms &amp; conditions</a></li> <li><a href="/policy">Privacy policy</a></li> <li><a href="/cw/assets/downloads/cineworld_nutritional_information.pdf">Nutritional information</a></li> <li><a href="/cookies/settings">Cookie settings</a></li> <li><a href="/faq">FAQs</a></li> <li><a href="/careers">Careers</a></li> <li><a href="/press">Press</a></li> <li><a href="http://www.cineworldplc.com/" target="_blank">Cineworld Group PLC</a></li> <li><a href="/accessibility">Accessibility</a></li></ul><h3>Cineworld apps</h3><ul><li><a href="http://itunes.apple.com/gb/app/cineworld/id377707014">iPhone app</a></li> <li><a href="https://play.google.com/store/apps/details?id=com.cineworld">Android app</a></li> <li><a href="http://itunes.apple.com/gb/app/cineworld-magazine/id508350271">iPad magazine</a></li></ul></div></div><div class="row"><div class="span12 smallprint small"><p>All rights reserved Cineworld Cinemas 2013 &copy;</p></div></div></div></div></div></div></div><div id="tooltip-template-performance-unavailable" class="tooltip-box performance unavailable"><h3 data-field="title" class="default">This showtime is unavailable</h3><hr class="thin" /><p data-field="explanation" class="default">Booking is unavailable for this showtime as it may have already started, finished or been sold out.</p></div><div class="notification cookie" style="display: none;"><h1 class="">Cookies Notification</h1><div><p>This website uses cookies to provide you with a better experience.<br /><br />You can adjust your cookie settings at any time at the bottom of each page.&nbsp; If you do not adjust your settings, you are consenting to us issuing all cookies to you.<br /><br /></p><p><a href="/cookies/settings">Change settings</a><br /><a href="/cookies/about" target="_blank">Find out more about Cookies</a></p><p><a class="action primary">No, thanks</a></p><p>This notification will be automatically dismissed in <span class="remaining">15</span> seconds, <a class="dismiss">dismiss this countdown</a>.</p></div></div><script type="text/javascript" src="/cw/assets/javascript/jquery.blockui.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.lazyload.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.validate.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.form.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.tabs.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.masonry.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.fancybox.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.nivo.slider.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/zebra.datepicker.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jwplayer.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.quickbook.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.core.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.cookies.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.mycineworld.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.instant_search.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.whatson.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/jquery.cineworld.tooltip.packed.js"></script> <script type="text/javascript" src="/cw/assets/javascript/initialise.packed.js"></script> <!--//--></body></html>