spotlite 0.1.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.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,3 @@
1
+ ## v0.1.0 26-Jan-2013
2
+
3
+ * Initial release. Movie class with methods for most relevant data
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in spotlite.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Artem Pakk
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,90 @@
1
+ # Spotlite
2
+
3
+ Spotlite is a ruby gem to retrieve movie information from IMDb.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'spotlite'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install spotlite
18
+
19
+ ## Usage
20
+
21
+ > require 'spotlite'
22
+ > movie = Spotlite::Movie.new("0133093")
23
+ > movie.title
24
+ => "The Matrix"
25
+ > movie.runtime
26
+ => 136
27
+ > movie.genres
28
+ => ["Action", "Adventure", "Sci-Fi"]
29
+ > movie.countries
30
+ => [{:code=>"us", :name=>"USA"}, {:code=>"au", :name=>"Australia"}]
31
+ > movie.directors
32
+ => [{:imdb_id=>"0905152", :name=>"Andy Wachowski"},
33
+ {:imdb_id=>"0905154", :name=>"Lana Wachowski"}]
34
+ > movie.cast[0..4]
35
+ => [{:imdb_id=>"0000206", :name=>"Keanu Reeves", :character=>"Neo"},
36
+ {:imdb_id=>"0000401", :name=>"Laurence Fishburne", :character=>"Morpheus"},
37
+ {:imdb_id=>"0005251", :name=>"Carrie-Anne Moss", :character=>"Trinity"},
38
+ {:imdb_id=>"0915989", :name=>"Hugo Weaving", :character=>"Agent Smith"},
39
+ {:imdb_id=>"0287825", :name=>"Gloria Foster", :character=>"Oracle"}]
40
+
41
+ ## Contributing
42
+
43
+ 1. Fork it
44
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
45
+ 3. Write code
46
+ 4. Test it (`rake` or `rake spec`)
47
+ 5. Commit your changes (`git commit -am 'Add some feature'`)
48
+ 6. Push to the branch (`git push origin my-new-feature`)
49
+ 7. Create new Pull Request
50
+
51
+ ## Testing
52
+
53
+ Spotlite uses RSpec as a test framework. So, first make sure you have it installed
54
+
55
+ $ gem install rspec
56
+
57
+ Run the tests
58
+
59
+ $ rake
60
+
61
+ Spotlite uses gem FakeWeb in order to stub out HTTP responses from IMDb. These
62
+ stubs are located in `spec/fixtures` directory.
63
+
64
+ Install FakeWeb gem:
65
+
66
+ $ gem install fakeweb
67
+
68
+ If you want to make a new feature that uses data from a page which is not stubbed out yet:
69
+
70
+ $ cd spotlite
71
+ $ curl -is http://www.imdb.com/title/tt[IMDB_ID]/ > spec/fixtures/tt[IMDB_ID]/index
72
+
73
+ or, for example:
74
+
75
+ $ curl -is http://www.imdb.com/title/tt[IMDB_ID]/fullcredits > spec/fixtures/tt[IMDB_ID]/fullcredits
76
+
77
+ You get the idea. And don't forget to add corresponding line to `IMDB_SAMPLES`
78
+ hash in `spec/spec_helper.rb` file.
79
+
80
+ Sometimes IMDb makes changes to its HTML layout. When this happens, Spotlite will not return
81
+ expected data, or more likely, methods will return nil or empty arrays.
82
+ First, run tests with `LIVE_TEST=true` environment variable:
83
+
84
+ $ LIVE_TEST=true rake
85
+
86
+ Adjust methods that are failing, according to the new layout. And refresh fixtures:
87
+
88
+ $ rake fixtures:refresh
89
+
90
+ It will run through all elements of `IMDB_SAMPLES` hash to get fresh data.
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ load File.expand_path(File.dirname(__FILE__) + "/tasks/fixtures.rake")
5
+
6
+ RSpec::Core::RakeTask.new("spec")
7
+
8
+ task :default => :spec
@@ -0,0 +1,9 @@
1
+ $:.unshift(File.dirname(__FILE__)) unless
2
+ $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
+
4
+ require "rubygems"
5
+ require "open-uri"
6
+ require "nokogiri"
7
+
8
+ require "spotlite/version"
9
+ require "spotlite/movie"
@@ -0,0 +1,240 @@
1
+ module Spotlite
2
+
3
+ # Represents a movie on IMDb.com
4
+ class Movie
5
+ attr_accessor :imdb_id, :title, :url
6
+
7
+ # Initialize a new movie object by its IMDb ID as a string
8
+ #
9
+ # movie = Spotlite::Movie.new("0133093")
10
+ #
11
+ # Spotlite::Movie class objects are lazy loading. No HTTP request
12
+ # will be performed upon object initialization. HTTP request will
13
+ # be performed once when you use a method that needs remote data
14
+ # Currently, all data is spead across 5 pages: main movie page,
15
+ # /releaseinfo, /fullcredits, /keywords, and /trivia
16
+ def initialize(imdb_id, title = nil, url = nil)
17
+ @imdb_id = imdb_id
18
+ @title = title
19
+ @url = "http://www.imdb.com/title/tt#{imdb_id}/"
20
+ end
21
+
22
+ # Returns title as a string
23
+ def title
24
+ @title ||= details.at("h1[itemprop='name']").children.first.text.strip
25
+ end
26
+
27
+ # Returns original non-english title as a string
28
+ def original_title
29
+ details.at("h1[itemprop='name'] span.title-extra").children.first.text.strip rescue nil
30
+ end
31
+
32
+ # Returns year of original release as an integer
33
+ def year
34
+ details.at("h1[itemprop='name'] a[href^='/year/']").text.to_i rescue nil
35
+ end
36
+
37
+ # Returns IMDb rating as a float
38
+ def rating
39
+ details.at("div.star-box span[itemprop='ratingValue']").text.to_f rescue nil
40
+ end
41
+
42
+ # Returns number of votes as an integer
43
+ def votes
44
+ details.at("div.star-box span[itemprop='ratingCount']").text.gsub(/[^\d+]/, "").to_i rescue nil
45
+ end
46
+
47
+ # Returns short description as a string
48
+ def description
49
+ details.at("p[itemprop='description']").children.first.text.strip rescue nil
50
+ end
51
+
52
+ # Returns a list of genres as an array of strings
53
+ def genres
54
+ details.css("div.infobar a[href^='/genre/']").map { |genre| genre.text } rescue []
55
+ end
56
+
57
+ # Returns a list of countries as an array of hashes
58
+ # with keys: +code+ (string) and +name+ (string)
59
+ def countries
60
+ block = details.at("#maindetails_center_bottom .txt-block a[href^='/country/']").parent
61
+ names = block.css("a[href^='/country/']").map { |node| node.text } rescue []
62
+ links = block.css("a[href^='/country/']").map { |node| node["href"] } rescue []
63
+ codes = links.map { |link| link.split("/").last } unless links.empty?
64
+
65
+ array = []
66
+ 0.upto(names.size - 1) do |i|
67
+ array << {:code => codes[i], :name => names[i]}
68
+ end
69
+
70
+ array
71
+ end
72
+
73
+ # Returns a list of languages as an array of hashes
74
+ # with keys: +code+ (string) and +name+ (string)
75
+ def languages
76
+ block = details.at("#maindetails_center_bottom .txt-block a[href^='/language/']").parent
77
+ names = block.css("a[href^='/language/']").map { |node| node.text } rescue []
78
+ links = block.css("a[href^='/language/']").map { |node| node["href"] } rescue []
79
+ codes = links.map { |link| link.split("/").last } unless links.empty?
80
+
81
+ array = []
82
+ 0.upto(names.size - 1) do |i|
83
+ array << {:code => codes[i], :name => names[i]}
84
+ end
85
+
86
+ array
87
+ end
88
+
89
+ # Returns runtime (length) in minutes as an integer
90
+ def runtime
91
+ details.at("time[itemprop='duration']").text.to_i rescue nil ||
92
+ details.at("#overview-top .infobar").text.strip[/\d{2,3} min/].to_i rescue nil
93
+ end
94
+
95
+ # Returns MPAA content rating as a hash
96
+ # with keys: +code+ (string) and +description+ (string)
97
+ def content_rating
98
+ code = details.at("div.infobar span.titlePageSprite.absmiddle")['title'] rescue nil
99
+ description = details.at("span[itemprop='contentRating']").text.strip rescue nil
100
+
101
+ hash = {:code => code, :description => description} if code
102
+ end
103
+
104
+ # Returns primary poster URL as a string
105
+ def poster_url
106
+ src = details.at("#img_primary img")["src"] rescue nil
107
+
108
+ if src =~ /^(http:.+@@)/ || src =~ /^(http:.+?)\.[^\/]+$/
109
+ $1 + ".jpg"
110
+ end
111
+ end
112
+
113
+ # Returns a list of keywords as an array of strings
114
+ def keywords
115
+ plot_keywords.css("li b.keyword").map { |keyword| keyword.text.strip } rescue []
116
+ end
117
+
118
+ # Returns a list of trivia facts as an array of strings
119
+ def trivia
120
+ movie_trivia.css("div.sodatext").map { |node| node.text.strip } rescue []
121
+ end
122
+
123
+ # Returns a list of directors as an array of hashes
124
+ # with keys: +imdb_id+ (string) and +name+ (string)
125
+ def directors
126
+ names = full_credits.at("a[name='directors']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node.text } rescue []
127
+ links = full_credits.at("a[name='directors']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
128
+ imdb_ids = links.map { |link| link[/\d+/] } unless links.empty?
129
+
130
+ array = []
131
+ 0.upto(names.size - 1) do |i|
132
+ array << {:imdb_id => imdb_ids[i], :name => names[i]}
133
+ end
134
+
135
+ array
136
+ end
137
+
138
+ # Returns a list of writers as an array of hashes
139
+ # with keys: +imdb_id+ (string) and +name+ (string)
140
+ def writers
141
+ names = full_credits.at("a[name='writers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node.text } rescue []
142
+ links = full_credits.at("a[name='writers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
143
+ imdb_ids = links.map { |link| link[/\d+/] } unless links.empty?
144
+
145
+ array = []
146
+ 0.upto(names.size - 1) do |i|
147
+ array << {:imdb_id => imdb_ids[i], :name => names[i]}
148
+ end
149
+
150
+ array
151
+ end
152
+
153
+ # Returns a list of producers as an array of hashes
154
+ # with keys: +imdb_id+ (string) and +name+ (string)
155
+ def producers
156
+ names = full_credits.at("a[name='producers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node.text } rescue []
157
+ links = full_credits.at("a[name='producers']").parent.parent.parent.parent.css("a[href^='/name/nm']").map { |node| node["href"] } rescue []
158
+ imdb_ids = links.map { |link| link[/\d+/] } unless links.empty?
159
+
160
+ array = []
161
+ 0.upto(names.size - 1) do |i|
162
+ array << {:imdb_id => imdb_ids[i], :name => names[i]}
163
+ end
164
+
165
+ array
166
+ end
167
+
168
+ # Returns a list of actors as an array of hashes
169
+ # with keys: +imdb_id+ (string), +name+ (string), and +character+ (string)
170
+ def cast
171
+ table = full_credits.css("table.cast")
172
+ names = table.css("td.nm").map { |node| node.text } rescue []
173
+ links = table.css("td.nm a").map { |node| node["href"] } rescue []
174
+ imdb_ids = links.map { |link| link[/\d+/] } unless links.empty?
175
+ characters = table.css("td.char").map { |node| node.text }
176
+
177
+ array = []
178
+ 0.upto(names.size - 1) do |i|
179
+ array << {:imdb_id => imdb_ids[i], :name => names[i], :character => characters[i]}
180
+ end
181
+
182
+ array
183
+ end
184
+
185
+ # Returns a list of regions and corresponding release dates
186
+ # as an array of hashes with keys:
187
+ # region +code+ (string), +region+ name (string), and +date+ (date)
188
+ # If day is unknown, 1st day of month is assigned
189
+ # If day and month are unknown, 1st of January is assigned
190
+ def release_dates
191
+ table = release_info.at("a[href^='/calendar/?region']").parent.parent.parent.parent rescue nil
192
+ regions = table.css("b a[href^='/calendar/?region']").map { |node| node.text } rescue []
193
+ links = table.css("b a[href^='/calendar/?region']").map { |node| node["href"] } rescue []
194
+ codes = links.map { |link| link.split("=").last.downcase } unless links.empty?
195
+ dates = table.css("td[align='right']").map { |node| node.text.strip }
196
+
197
+ array = []
198
+ 0.upto(regions.size - 1) do |i|
199
+ array << {:code => codes[i], :region => regions[i], :date => parse_date(dates[i])}
200
+ end
201
+
202
+ array
203
+ end
204
+
205
+ private
206
+
207
+ def details # :nodoc:
208
+ @details ||= Nokogiri::HTML(open_page(@imdb_id))
209
+ end
210
+
211
+ def release_info # :nodoc:
212
+ @release_info ||= Nokogiri::HTML(open_page(@imdb_id, "releaseinfo"))
213
+ end
214
+
215
+ def full_credits # :nodoc:
216
+ @full_credits ||= Nokogiri::HTML(open_page(@imdb_id, "fullcredits"))
217
+ end
218
+
219
+ def plot_keywords # :nodoc:
220
+ @plot_keywords ||= Nokogiri::HTML(open_page(@imdb_id, "keywords"))
221
+ end
222
+
223
+ def movie_trivia # :nodoc:
224
+ @movie_trivia ||= Nokogiri::HTML(open_page(@imdb_id, "trivia"))
225
+ end
226
+
227
+ def open_page(imdb_id, page = nil) # :nodoc:
228
+ open("http://www.imdb.com/title/tt#{imdb_id}/#{page}")
229
+ end
230
+
231
+ def parse_date(date) # :nodoc:
232
+ begin
233
+ date.length > 4 ? Date.parse(date) : Date.new(date.to_i)
234
+ rescue
235
+ nil
236
+ end
237
+ end
238
+ end
239
+
240
+ end
@@ -0,0 +1,3 @@
1
+ module Spotlite
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,1920 @@
1
+ HTTP/1.1 200 OK
2
+ Date: Thu, 24 Jan 2013 21:14:30 GMT
3
+ Server: Server
4
+ Cache-Control: private
5
+ nnCoection: close
6
+ Content-Type: text/html
7
+ Set-Cookie: uu=BCYgl4CVG6qYME_EhViERndnmxzYlENtLYlgsygqhY68VdhFl4Ujiu5YiwBbxSfL3ST9y22cc2A0gmLtFvpYIAUulsJMssAbSjcH3qI6jLYhiyZopgjc33J8XME_lydTZf9Mx9-hyT1tgF-BNlr7xjIdQ_G1Z4SiQQ5dz6ec_Ig2-_k;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
8
+ Set-Cookie: cs=f604rQtU9HkoLzwkhKO9awbGfbqgkW2NmIHl2qOSHrojAm7ZgDJ+ifCRbYoGES2aoJFb/feVTbqjlzrf99HNybCRWyxAGW26oKdbraCRbbqgsW26oJFt+uDBHYqg==;expires=Fri, 25 Jan 2013 08:00:00 GMT;path=/;domain=.imdb.com
9
+ Set-Cookie: cs=yBb6RI5tmERZq3DCvzFYFAbGfbqgkW2NmIHl2qOSHrojAm7ZgDJ+ifCRbYoGES2aoJFb/faEzbqjpB4+x9HNySCRWyxAGW26oKdbraCRbbqgsW26oJFt+uDBHYqg==;expires=Fri, 25 Jan 2013 08:00:00 GMT;path=/;domain=.imdb.com
10
+ Vary: Accept-Encoding,User-Agent
11
+ P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC "
12
+ Transfer-Encoding: chunked
13
+
14
+
15
+
16
+
17
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
18
+ <html
19
+ xmlns="http://www.w3.org/1999/xhtml"
20
+ xmlns:og="http://opengraphprotocol.org/schema/"
21
+ xmlns:fb="http://www.facebook.com/2008/fbml">
22
+ <head>
23
+ <script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
24
+ <script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
25
+
26
+ <script>
27
+ var addClickstreamHeadersToAjax = function(xhr) {
28
+ xhr.setRequestHeader("x-imdb-parent-id", "06PFYQ73CK3NVS3BHSHV");
29
+ };
30
+ </script>
31
+
32
+ <title>The Flying Circus (1912) - IMDb</title>
33
+ <script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
34
+
35
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
36
+ <meta name="title" content="The Flying Circus (1912) - IMDb" />
37
+ <meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits" />
38
+ <meta name="description" content="Directed by Alfred Lind. With Rasmus Ottesen, Emilie Otterdahl, Lili Beck, Kirstine Friis-Hjort." />
39
+
40
+
41
+
42
+
43
+
44
+
45
+ <script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
46
+
47
+ <link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF8b70e464cc883d78a4fe7d6f25a9e50a/css/min/falkor.css" ><!--[if IE]><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFec66a5816f05752bd7e0081357307c4f/css/min/falkor-ie.css" ><![endif]--><link rel='image_src' href='http://i.media-imdb.com/images/SF007a3f88c795cfb71af4856df1fb5fee/imdb-share-logo.png'/><meta property="og:title" content="The Flying Circus (1912)"/><meta property="og:type" content="video.movie"/><meta property="og:image" content="http://i.media-imdb.com/images/SF007a3f88c795cfb71af4856df1fb5fee/imdb-share-logo.png"/><meta property="og:site_name" content="IMDb"/><meta property="fb:app_id" content="115109575169727"/><script type="text/javascript">aax_pubkeywords = [];aax_pubasins = [];</script>
48
+ <script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
49
+
50
+
51
+
52
+ <meta name="application-name" content="IMDb" />
53
+ <meta name="msapplication-tooltip" content="IMDb Web App" />
54
+ <meta name="msapplication-window" content="width=1500;height=900" />
55
+ <meta name="msapplication-task" content="name=Find Movie Showtimes;action-uri=/showtimes/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
56
+ <meta name="msapplication-task" content="name=Watch HD Trailers;action-uri=/features/hdgallery;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
57
+ <meta name="msapplication-task" content="name=What's On TV Tonight;action-uri=/sections/tv/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
58
+ <meta name="msapplication-task" content="name=Get Latest Entertainment News;action-uri=/news/top;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
59
+ <meta name="msapplication-task" content="name=Sign-in;action-uri=/register/login;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
60
+
61
+ <script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
62
+
63
+ <link rel="icon" type="image/ico"
64
+ href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico" />
65
+ <link rel="shortcut icon" type="image/x-icon"
66
+ href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/desktop-favicon.ico" />
67
+ <link rel="apple-touch-icon"
68
+ href="http://i.media-imdb.com/images/SFc8a0bc1039862e1386365008f0507ea9/apple-touch-icon.png" />
69
+ <link rel="search" type="application/opensearchdescription+xml"
70
+ href="http://i.media-imdb.com/images/SFccbe1e4d909ef8b8077201c3c5aac349/imdbsearch.xml" title="IMDb" />
71
+
72
+ <script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
73
+
74
+ <link rel="canonical" href="http://www.imdb.com/title/tt0002186/" /><meta property="og:url" content="http://www.imdb.com/title/tt0002186/" />
75
+
76
+ <script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
77
+
78
+ <!-- start m/s/a/_g_a_s , head -->
79
+ <script>window.ads_js_start = new Date().getTime();</script><script src="http://i.media-imdb.com/images/SF1c7da19ff8ed519c00cddaae81d16e9a/js/cc/ads.js" ></script><script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
80
+ <div id="advertising_scripts"></div>
81
+ <script type="text/javascript">
82
+ ad_utils.fallback.set_kill_threshold({"top_rhs":4600,"top_ad":4600});
83
+ generic.monitoring.set_forester_info("title");
84
+ generic.monitoring.set_twilight_info(
85
+ "title",
86
+ "Other",
87
+ "c288d35d9359e262340cf66d399d2d36f64421fe",
88
+ "2013-01-24T21%3A14%3A30GMT",
89
+ "http://s.media-imdb.com/twilight/?");
90
+
91
+ generic.send_csm_head_metrics && generic.send_csm_head_metrics();
92
+
93
+ generic.monitoring.start_timing("page_load");
94
+ generic.seconds_to_midnight = 42390;
95
+ generic.days_to_midnight = 0.490625;
96
+ custom.full_page.data_url = "http://i.media-imdb.com/images/SF52343caf319e887027f13568332cdfd7/a/js/graffiti_data.js";
97
+ ad_utils.ad_prediction.init();
98
+ consoleLog('advertising initialized','ads');
99
+ </script>
100
+
101
+ <script>
102
+ (function(url,onload,oncall) {
103
+ var elem = document.createElement('script'),
104
+ script = document.getElementsByTagName('script')[0],
105
+ final_url = url.replace(ad_utils.ord_regex, ad_utils.ord);
106
+ if (! navigator.userAgent.match('Firefox/(1|2)\\.')) {
107
+ elem.async = true;
108
+ elem.src = final_url;
109
+ if (onload) {
110
+ elem.onload = onload;
111
+ }
112
+ script.parentNode.insertBefore(elem, script);
113
+ if (oncall) {
114
+ oncall();
115
+ }
116
+ }
117
+ })("http://www.amazon.com/aan/2009-05-01/imdb/default?slot=sitewide-iframe&u=[CLIENT_SIDE_ORD]&ord=[CLIENT_SIDE_ORD]",undefined,custom.amazon.aan_iframe_oncall);
118
+ </script>
119
+
120
+ <!-- end m/s/a/_g_a_s , head -->
121
+
122
+
123
+ <script>
124
+ if ('csm' in window) {
125
+ csm.measure('csm_head_delivery_finished');
126
+ }
127
+ </script>
128
+
129
+ </head>
130
+ <body id="styleguide-v2" class="fixed">
131
+
132
+ <script>
133
+ if ('csm' in window) {
134
+ csm.measure('csm_body_delivery_started');
135
+ }
136
+ </script>
137
+
138
+ <div id="hidden_pre_root_content">
139
+ <!-- start m/s/a/_g_a_s , body -->
140
+
141
+ <script>
142
+ (function(url,itemName,h,w) {
143
+ if (flashAdUtils.canPlayFlash(9)) {
144
+ var flashTags = flashAdUtils.makeFlashAd({
145
+ id:itemName,
146
+ src:url,
147
+ height:h || 1,
148
+ width:w || 1
149
+ });
150
+ document.write('<div style="position:absolute;">' + flashTags + '</div>');
151
+ }
152
+ })("http://ia.media-imdb.com/images/M/MV5BMTMzMzgxNzM2M15BMl5Bc3dmXkFtZTcwNzM0MTkxNw@@._V1_.swf","baker",1,1);
153
+ </script>
154
+ <!-- end m/s/a/_g_a_s , body -->
155
+
156
+ </div>
157
+ <div id="wrapper">
158
+ <div id="root" class="redesign">
159
+
160
+
161
+
162
+
163
+ <div id="nb20" class="navbarSprite">
164
+ <div id="supertab">
165
+
166
+
167
+ <!-- begin TOP_AD -->
168
+ <div id="top_ad_wrapper" class="dfp_slot">
169
+ <script type="text/javascript">
170
+ ad_utils.register_ad('top_ad');
171
+ </script>
172
+ <iframe data-bid-url="http://aax-us-east.amazon-adsystem.com/e/dtb/bid?src=201&u=http%3A%2F%2Fimdb.com%2F728x90_1" data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_ad" name="top_ad" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
173
+
174
+ <noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=3;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=3;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
175
+
176
+ </div>
177
+ <div id="top_ad_reflow_helper"></div>
178
+ <script>ad_utils.render_ad_fast('top_ad'); ad_utils.fallback.start_kill_timer('top_ad'); </script>
179
+ <!-- End TOP_AD -->
180
+ </div>
181
+ <div id="navbar" class="navbarSprite">
182
+ <noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF52e6b9f11712d3ec552179f6c869b63a/css2/site/consumer-navbar-no-js.css"></noscript>
183
+ <span id="home_img_holder"> <a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" id='home_img' class='navbarSprite' title='Home' ></a>
184
+
185
+ <span class="alt_logo">
186
+ <a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" title='Home' >IMDb</a>
187
+ </span>
188
+ </span>
189
+
190
+
191
+ <form onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';" action="/find" method="get" id="navbar-form" class="nav-searchbar-inner" >
192
+
193
+ <div id="nb_search" >
194
+
195
+ <noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
196
+ <button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
197
+ <input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more..." >
198
+ <div class="quicksearch_dropdown_wrapper">
199
+
200
+ <select
201
+ class="quicksearch_dropdown navbarSprite"
202
+ name="s"
203
+ id="quicksearch"
204
+ onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
205
+
206
+ <option
207
+ value="all">All</option>
208
+ <option
209
+ value="tt">Titles</option>
210
+ <option
211
+ value="ep">TV Episodes</option>
212
+ <option
213
+ value="nm">Names</option>
214
+ <option
215
+ value="co">Companies</option>
216
+ <option
217
+ value="kw">Keywords</option>
218
+ <option
219
+ value="ch">Characters</option>
220
+ <option
221
+ value="vi">Videos</option>
222
+ <option
223
+ value="qu">Quotes</option>
224
+ <option
225
+ value="bi">Bios</option>
226
+ <option
227
+ value="pl">Plots</option>
228
+ </select>
229
+
230
+ </div>
231
+
232
+ <div id="navbar-suggestionsearch"></div>
233
+ </div>
234
+
235
+ </form>
236
+
237
+ <div id="nb_personal">
238
+
239
+ <a onclick="(new Image()).src='/rg/register-v2/navbar/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fregister-imdb%2Fform-v2';" href="https://secure.imdb.com/register-imdb/form-v2" >Register</a>
240
+ | <a onclick="(new Image()).src='/rg/login/navbar/images/b.gif?link=%2Fregister%2Flogin';" rel=login href="/register/login" id='nblogin' >Login</a>
241
+ | <a onclick="(new Image()).src='/rg/help/navbar/images/b.gif?link=%2Fhelp%2F';" href="/help/" >Help</a>
242
+
243
+
244
+ </div>
245
+
246
+
247
+ <div>
248
+ <ul id="consumer_main_nav" class="main_nav">
249
+
250
+ <li class="css_nav_item" aria-haspopup="true">
251
+
252
+
253
+ <a onclick="(new Image()).src='/rg/navbar-movies/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_1_inth';" href="/movies-in-theaters/?ref_=nb_mv_1_inth" class='navbarSprite' > Movies</a>
254
+
255
+ <ul class="sub_nav">
256
+
257
+
258
+ <li>
259
+ <a onclick="(new Image()).src='/rg/intheaters/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_2_inth';" href="/movies-in-theaters/?ref_=nb_mv_2_inth" >In Theaters</a>
260
+ </li>
261
+
262
+ <li>
263
+ <a onclick="(new Image()).src='/rg/top250/navbar/images/b.gif?link=%2Fchart%2Ftop%3Fref_%3Dnb_mv_3_chttp';" href="/chart/top?ref_=nb_mv_3_chttp" >Top 250</a>
264
+ </li>
265
+
266
+ <li>
267
+ <a onclick="(new Image()).src='/rg/usboxoffice/navbar/images/b.gif?link=%2Fchart%2F%3Fref_%3Dnb_mv_4_cht';" href="/chart/?ref_=nb_mv_4_cht" >US Box Office</a>
268
+ </li>
269
+
270
+ <li>
271
+ <a onclick="(new Image()).src='/rg/comingsoon/navbar/images/b.gif?link=%2Fmovies-coming-soon%2F%3Fref_%3Dnb_mv_5_cs';" href="/movies-coming-soon/?ref_=nb_mv_5_cs" >Coming Soon</a>
272
+ </li>
273
+
274
+ <li>
275
+ <a onclick="(new Image()).src='/rg/showtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_mv_6_sh';" href="/showtimes/?ref_=nb_mv_6_sh" >Showtimes</a>
276
+ </li>
277
+
278
+ <li>
279
+ <a onclick="(new Image()).src='/rg/dvdbluray/navbar/images/b.gif?link=%2Fsections%2Fdvd%2F%3Fref_%3Dnb_mv_7_dvd';" href="/sections/dvd/?ref_=nb_mv_7_dvd" >On DVD & Blu-Ray</a>
280
+ </li>
281
+
282
+ <li>
283
+ <a onclick="(new Image()).src='/rg/xrayformovies/navbar/images/b.gif?link=%2Fx-ray%2F%3Fref_%3Dnb_mv_8_xray';" href="/x-ray/?ref_=nb_mv_8_xray" >X-Ray for Movies</a>
284
+ </li>
285
+
286
+ <li>
287
+ <a onclick="(new Image()).src='/rg/oscars/navbar/images/b.gif?link=%2Foscars%2F%3Fref_%3Dnb_mv_9_rto';" href="/oscars/?ref_=nb_mv_9_rto" >Road to the Oscars</a>
288
+ </li>
289
+
290
+ </ul>
291
+ </li>
292
+ <li class="css_nav_item" aria-haspopup="true">
293
+
294
+
295
+ <a onclick="(new Image()).src='/rg/navbar-tv/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_1_hm';" href="/tv/?ref_=nb_tv_1_hm" class='navbarSprite' > TV</a>
296
+
297
+ <ul class="sub_nav">
298
+
299
+
300
+ <li>
301
+ <a onclick="(new Image()).src='/rg/tvhome/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_2_hm';" href="/tv/?ref_=nb_tv_2_hm" >TV Home</a>
302
+ </li>
303
+
304
+ <li>
305
+ <a onclick="(new Image()).src='/rg/besttv/navbar/images/b.gif?link=%2Fsearch%2Ftitle%3Fnum_votes%3D5000%2C%26amp%3Bsort%3Duser_rating%2Cdesc%26amp%3Btitle_type%3Dtv_series%26amp%3Bref_%3Dnb_tv_3_srs';" href="/search/title?num_votes=5000,&sort=user_rating,desc&title_type=tv_series&ref_=nb_tv_3_srs" >Top TV Series</a>
306
+ </li>
307
+
308
+ <li>
309
+ <a onclick="(new Image()).src='/rg/tvlistings/navbar/images/b.gif?link=%2Ftvgrid%2F%3Fref_%3Dnb_tv_4_ls';" href="/tvgrid/?ref_=nb_tv_4_ls" >TV Listings</a>
310
+ </li>
311
+
312
+ <li>
313
+ <a onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Ffeatures%2Fvideo%2Ftv%2F%3Fref_%3Dnb_tv_5_ep';" href="http://www.imdb.com/features/video/tv/?ref_=nb_tv_5_ep" >TV Episodes</a>
314
+ </li>
315
+
316
+ </ul>
317
+ </li>
318
+ <li class="css_nav_item" aria-haspopup="true">
319
+
320
+
321
+ <a onclick="(new Image()).src='/rg/navbar-news/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_1_tp';" href="/news/top?ref_=nb_nw_1_tp" class='navbarSprite' > News</a>
322
+
323
+ <ul class="sub_nav">
324
+
325
+
326
+ <li>
327
+ <a onclick="(new Image()).src='/rg/topnews/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_2_tp';" href="/news/top?ref_=nb_nw_2_tp" >Top News</a>
328
+ </li>
329
+
330
+ <li>
331
+ <a onclick="(new Image()).src='/rg/movienews/navbar/images/b.gif?link=%2Fnews%2Fmovie%3Fref_%3Dnb_nw_3_mv';" href="/news/movie?ref_=nb_nw_3_mv" >Movie News</a>
332
+ </li>
333
+
334
+ <li>
335
+ <a onclick="(new Image()).src='/rg/tvnews/navbar/images/b.gif?link=%2Fnews%2Ftv%3Fref_%3Dnb_nw_4_tv';" href="/news/tv?ref_=nb_nw_4_tv" >TV News</a>
336
+ </li>
337
+
338
+ <li>
339
+ <a onclick="(new Image()).src='/rg/celebritynews/navbar/images/b.gif?link=%2Fnews%2Fcelebrity%3Fref_%3Dnb_nw_5_cel';" href="/news/celebrity?ref_=nb_nw_5_cel" >Celebrity News</a>
340
+ </li>
341
+
342
+ </ul>
343
+ </li>
344
+ <li class="css_nav_item" aria-haspopup="true">
345
+
346
+
347
+ <a onclick="(new Image()).src='/rg/navbar-videos/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_vi_1_tr';" href="/trailers?ref_=nb_vi_1_tr" class='navbarSprite' > Trailers</a>
348
+
349
+ <ul class="sub_nav">
350
+
351
+
352
+ <li>
353
+ <a onclick="(new Image()).src='/rg/trailergallery/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_vi_2_tr';" href="/trailers?ref_=nb_vi_2_tr" >Trailer Gallery</a>
354
+ </li>
355
+
356
+ </ul>
357
+ </li>
358
+ <li class="css_nav_item" aria-haspopup="true">
359
+
360
+
361
+ <a onclick="(new Image()).src='/rg/navbar-community/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_1_bd';" href="/boards/?ref_=nb_cm_1_bd" class='navbarSprite' > Community</a>
362
+
363
+ <ul class="sub_nav">
364
+
365
+
366
+ <li>
367
+ <a onclick="(new Image()).src='/rg/messageboards/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_2_bd';" href="/boards/?ref_=nb_cm_2_bd" >Message Boards</a>
368
+ </li>
369
+
370
+ <li>
371
+ <a onclick="(new Image()).src='/rg/lists/navbar/images/b.gif?link=%2Flists%2F%3Fref_%3Dnb_cm_3_nls';" href="/lists/?ref_=nb_cm_3_nls" >Newest Lists</a>
372
+ </li>
373
+
374
+ <li>
375
+ <a onclick="(new Image()).src='/rg/yourlists/navbar/images/b.gif?link=%2Fprofile%2Flists%3Fref_%3Dnb_cm_4_yls';" href="/profile/lists?ref_=nb_cm_4_yls" >Your Lists</a>
376
+ </li>
377
+
378
+ <li>
379
+ <a onclick="(new Image()).src='/rg/ratings/navbar/images/b.gif?link=%2Flist%2Fratings%3Fref_%3Dnb_cm_5_yrt';" href="/list/ratings?ref_=nb_cm_5_yrt" >Your Ratings</a>
380
+ </li>
381
+
382
+ <li>
383
+ <a onclick="(new Image()).src='/rg/contributorzone/navbar/images/b.gif?link=%2Fczone%2F%3Fref_%3Dnb_cm_6_cz';" href="/czone/?ref_=nb_cm_6_cz" >Contributor Zone</a>
384
+ </li>
385
+
386
+ <li>
387
+ <a onclick="(new Image()).src='/rg/quiz/navbar/images/b.gif?link=%2Fgames%2Fguess%3Fref_%3Dnb_cm_7_qz';" href="/games/guess?ref_=nb_cm_7_qz" >Quiz Game</a>
388
+ </li>
389
+
390
+ </ul>
391
+ </li>
392
+ <li class="css_nav_item" aria-haspopup="true">
393
+
394
+
395
+ <a onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=%2Fr%2FIMDbTabNB%2F';" href="/r/IMDbTabNB/" class='navbarSprite' > IMDbPro</a>
396
+
397
+ <ul class="sub_nav">
398
+
399
+
400
+ <li>
401
+ <a onclick="(new Image()).src='/rg/resume/prosystem/images/b.gif?link=http%3A%2F%2Fpro.imdb.com%2Fresume%2F';" href="http://pro.imdb.com/resume/" >Add a Resume</a>
402
+ </li>
403
+
404
+ <li>
405
+ <a onclick="(new Image()).src='/rg/procontact/navbar/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fsignup%2Findex.html%3Fd%3Dnm_ovrview_contact';" href="https://secure.imdb.com/signup/index.html?d=nm_ovrview_contact" >Contact Info</a>
406
+ </li>
407
+
408
+ <li>
409
+ <a onclick="(new Image()).src='/rg/demoreels/navbar/images/b.gif?link=http%3A%2F%2Fpro.imdb.com%2Fdemoreels%2Flist';" href="http://pro.imdb.com/demoreels/list" >Add Demo Reels</a>
410
+ </li>
411
+
412
+ </ul>
413
+ </li>
414
+ <li class="css_nav_item" aria-haspopup="true">
415
+
416
+
417
+ <a onclick="(new Image()).src='/rg/navbar-apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_1_hm';" href="/apps/?ref_=nb_app_1_hm" class='navbarSprite' > Apps</a>
418
+
419
+ <ul class="sub_nav">
420
+
421
+
422
+ <li>
423
+ <a onclick="(new Image()).src='/rg/apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_2_hm';" href="/apps/?ref_=nb_app_2_hm" >Apps Home</a>
424
+ </li>
425
+
426
+ <li>
427
+ <a onclick="(new Image()).src='/rg/iosapps/navbar/images/b.gif?link=%2Fapps%2Fios%2F%3Fref_%3Dnb_app_3_ios';" href="/apps/ios/?ref_=nb_app_3_ios" >iPhone + iPad Apps</a>
428
+ </li>
429
+
430
+ <li>
431
+ <a onclick="(new Image()).src='/rg/androidapps/navbar/images/b.gif?link=%2Fapps%2Fandroid%2F%3Fref_%3Dnb_app_4_andr';" href="/apps/android/?ref_=nb_app_4_andr" >Android Apps</a>
432
+ </li>
433
+
434
+ <li>
435
+ <a onclick="(new Image()).src='/rg/kindlefireapp/navbar/images/b.gif?link=%2Fapps%2Fkindlefire%2F%3Fref_%3Dnb_app_5_fire';" href="/apps/kindlefire/?ref_=nb_app_5_fire" >Kindle Fire App</a>
436
+ </li>
437
+
438
+ </ul>
439
+ </li>
440
+
441
+ </ul>
442
+ </div>
443
+
444
+
445
+
446
+ <div class="nb_extra">
447
+ <a onclick="(new Image()).src='/rg/watchlist/navbar/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Your Watchlist</a>
448
+ </div>
449
+
450
+
451
+ </div>
452
+ </div>
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+ <!-- begin injectable INJECTED_NAVSTRIP -->
461
+ <div id="injected_navstrip_wrapper" class="injected_slot">
462
+ <iframe data-bid-url="" id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
463
+ </div>
464
+ <script>ad_utils.inject_ad.register('injected_navstrip');</script>
465
+ <div id="injected_navstrip_reflow_helper"></div>
466
+ <!-- end injectable INJECTED_NAVSTRIP -->
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+ <div id="pagecontent">
478
+
479
+
480
+
481
+ <!-- begin injectable INJECTED_BILLBOARD -->
482
+ <div id="injected_billboard_wrapper" class="injected_slot">
483
+ <iframe data-bid-url="" id="injected_billboard" name="injected_billboard" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
484
+ </div>
485
+ <script>ad_utils.inject_ad.register('injected_billboard');</script>
486
+ <div id="injected_billboard_reflow_helper"></div>
487
+ <!-- end injectable INJECTED_BILLBOARD -->
488
+
489
+
490
+
491
+ <div id="content-2-wide" class="redesign" itemscope itemtype="http://schema.org/Movie">
492
+
493
+
494
+ <div class="top-rhs" >
495
+
496
+
497
+
498
+
499
+ <!-- begin TOP_RHS -->
500
+ <div id="top_rhs_wrapper" class="dfp_slot">
501
+ <script type="text/javascript">
502
+ ad_utils.register_ad('top_rhs');
503
+ </script>
504
+ <iframe data-bid-url="http://aax-us-east.amazon-adsystem.com/e/dtb/bid?src=201&u=http%3A%2F%2Fimdb.com%2F300x250_1" data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_rhs" name="top_rhs" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
505
+
506
+ <noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=4;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=4;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
507
+
508
+ </div>
509
+ <div id="top_rhs_reflow_helper"></div>
510
+ <script>ad_utils.render_ad_fast('top_rhs'); ad_utils.fallback.start_kill_timer('top_rhs'); </script>
511
+ <!-- End TOP_RHS -->
512
+ <div id="top_rhs_after" class="after_ad ads-invisible"><a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a></div>
513
+
514
+ </div>
515
+
516
+
517
+ <div id="maindetails_center_top" class="maindetails_center">
518
+
519
+
520
+
521
+
522
+
523
+ <div class="article title-overview" >
524
+
525
+
526
+
527
+
528
+ <div id="title-overview-widget">
529
+ <table border="0" cellpadding="0" cellspacing="0" id="title-overview-widget-layout">
530
+ <tr>
531
+ <td rowspan="2" id="img_primary">
532
+ </td>
533
+
534
+ <td id="overview-top">
535
+
536
+
537
+ <div id="prometer_container">
538
+ <div id="prometer" class="meter-collapsed down">
539
+ <div id="meterHeaderBox">
540
+ <div id="meterTitle" class="meterToggleOnHover">MOVIEmeter</div>
541
+ <a onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=%2Fr%2Ftt_moviemeter_why%2Ftitle%2Ftt0002186%2F';" href="/r/tt_moviemeter_why/title/tt0002186/" id='meterRank' class='' >SEE RANK</a>
542
+ </div>
543
+ <div id="meterChangeRow" class="meterToggleOnHover">
544
+ <span>Down</span>
545
+ <span id="meterChange">90,519</span>
546
+ <span>this week</span>
547
+ </div>
548
+ <div id="meterSeeMoreRow" class="meterToggleOnHover">
549
+ <a onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=%2Fr%2Ftt_moviemeter_why%2Ftitle%2Ftt0002186%2F';" href="/r/tt_moviemeter_why/title/tt0002186/" >View rank on IMDbPro</a>
550
+ <span> &raquo;</span>
551
+ </div>
552
+ </div>
553
+ </div>
554
+
555
+
556
+
557
+
558
+
559
+ <h1 class="header" itemprop="name">
560
+ The Flying Circus
561
+
562
+
563
+ <span class="nobr">
564
+ (<a href="/year/1912/">1912</a>)</span>
565
+
566
+
567
+ <br /><span class="title-extra">
568
+ Den flyvende cirkus
569
+ <i>(original title)</i>
570
+ </span>
571
+
572
+ </h1>
573
+
574
+
575
+ <div class="infobar">
576
+
577
+ 46 min&nbsp;&nbsp;-&nbsp;&nbsp;<a onclick="(new Image()).src='/rg/title-overview/genre/images/b.gif?link=%2Fgenre%2FDrama';" href="/genre/Drama" >Drama</a>&nbsp;&nbsp;-&nbsp;&nbsp;
578
+ <span class="nobr">
579
+ <a onclick="(new Image()).src='/rg/title-overview/releaseinfo/images/b.gif?link=%2Ftitle%2Ftt0002186%2Freleaseinfo';" href="/title/tt0002186/releaseinfo" title="See all release dates"
580
+ >
581
+ 28&nbsp;June&nbsp;1913 (USA)</a></span>
582
+
583
+
584
+
585
+ </div>
586
+
587
+
588
+
589
+
590
+
591
+
592
+ <div class="star-box giga-star" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
593
+ <div class="titlePageSprite star-box-giga-star">
594
+ 6.7
595
+ </div>
596
+ <div class="star-box-rating-widget">
597
+ <span class="star-box-rating-label">Your rating:</span>
598
+
599
+
600
+ <div class="rating rating-list" data-auth="BCYqZdp1VLxZzaYw10knaRM-DR3YlENtLYlgsygqhY68Vdi53gO3KDOmHP0SndO6pLVfvfqu2d1oF0B5mdGv0gZNUDHcNlqEjvKxPW5iWIMo0MoHSr6o6zpD5axe14EHsDa1" id="tt0002186|imdb|0|0|title-maindetails" data-ga-identifier="title"
601
+ title="Users rated this 6.7/10 (36 votes) - click stars to rate">
602
+ <span class="rating-bg">&nbsp;</span>
603
+ <span class="rating-imdb" style="width: 0px">&nbsp;</span>
604
+ <span class="rating-stars">
605
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>1</span></a>
606
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>2</span></a>
607
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>3</span></a>
608
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>4</span></a>
609
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>5</span></a>
610
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>6</span></a>
611
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>7</span></a>
612
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>8</span></a>
613
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>9</span></a>
614
+ <a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>10</span></a>
615
+ </span>
616
+ <span class="rating-rating"><span class="value">-</span><span class="grey">/</span><span class="grey">10</span></span>
617
+ <span class="rating-cancel"><a href="/title/tt0002186/vote?v=X;k=BCYqZdp1VLxZzaYw10knaRM-DR3YlENtLYlgsygqhY68Vdi53gO3KDOmHP0SndO6pLVfvfqu2d1oF0B5mdGv0gZNUDHcNlqEjvKxPW5iWIMo0MoHSr6o6zpD5axe14EHsDa1" title="Delete" rel="nofollow"><span>X</span></a></span>
618
+ &nbsp;</div>
619
+
620
+ </div>
621
+ <div class="star-box-details">
622
+ Ratings: <strong><span itemprop="ratingValue">6.7</span></strong><span class="mellow">/<span itemprop="bestRating">10</span></span> from <a onclick="(new Image()).src='/rg/title-gigastar/votes/images/b.gif?link=ratings';" href="ratings" title="36 IMDb users have given an average vote of 6.7/10"
623
+ ><span itemprop="ratingCount">36</span> users</a>
624
+ </a>&nbsp;
625
+ <br/>Reviews: <a onclick="(new Image()).src='/rg/title-gigastar/user-reviews/images/b.gif?link=reviews';" href="reviews" title="4 IMDb user reviews"
626
+ ><span itemprop="reviewCount">4</span> user</a></div>
627
+ <div class="clear"></div>
628
+ </div>
629
+
630
+
631
+
632
+ <p><p itemprop="description">
633
+ </p>
634
+ </p>
635
+
636
+
637
+ <div class="txt-block">
638
+ <h4 class="inline">
639
+ Director:
640
+ </h4>
641
+ <a onclick="(new Image()).src='/rg/title-overview/director-1/images/b.gif?link=%2Fname%2Fnm0511155%2F';" href="/name/nm0511155/" itemprop="director"
642
+ >Alfred Lind</a></div>
643
+
644
+ <div class="txt-block">
645
+ <h4 class="inline">
646
+ Writers:
647
+ </h4>
648
+
649
+ <a onclick="(new Image()).src='/rg/title-overview/writer-1/images/b.gif?link=%2Fname%2Fnm0511155%2F';" href="/name/nm0511155/" >Alfred Lind</a>,
650
+ <a onclick="(new Image()).src='/rg/title-overview/writer-2/images/b.gif?link=%2Fname%2Fnm1921007%2F';" href="/name/nm1921007/" >Carl Otto Dumreicher</a></div>
651
+
652
+
653
+
654
+
655
+ <div class="txt-block">
656
+ <h4 class="inline">Stars:</h4>
657
+ <a onclick="(new Image()).src='/rg/title-overview/star-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" itemprop="actors"
658
+ >Rasmus Ottesen</a>, <a onclick="(new Image()).src='/rg/title-overview/star-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" itemprop="actors"
659
+ >Emilie Otterdahl</a> and <a onclick="(new Image()).src='/rg/title-overview/star-3/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" itemprop="actors"
660
+ >Lili Beck</a>
661
+ <span>|</span>
662
+ <a onclick="(new Image()).src='/rg/title-overview-w/all-cast/images/b.gif?link=fullcredits%23cast';" href="fullcredits#cast" >See full cast and crew</a>
663
+ </div>
664
+
665
+
666
+ </td>
667
+ </tr>
668
+
669
+ <tr>
670
+ <td id="overview-bottom">
671
+
672
+
673
+ <div class="wlb_classic_wrapper wlb_loading_on large" data-tconst="tt0002186" data-ga-identifier="title" data-lcn="title" data-weblab-id="control" data-context="title-overview" data-required-action="login">
674
+ <span class="btn2_wrapper"><a onclick='' class="wlb_message wlb_is_loading btn2 large primary btn2_glyph_on btn2_text_on" ><span class="btn2_glyph">&nbsp;</span><span class="btn2_text">Loading</span></a></span><span class="btn2_wrapper"><a onclick='' class="wlb_watchlist_toggle wlb_message wlb_is_enabled lefty btn2 large primary btn2_glyph_on btn2_text_on" ><span class="btn2_glyph">+</span><span class="btn2_text">Watchlist</span></a></span><span class="btn2_wrapper"><a onclick='' class="wlb_dropdown_btn wlb_extra wlb_is_enabled righty btn2 large primary btn2_glyph_on" ><span class="btn2_glyph"><div class="btn2_down"></div>
675
+ </span><span class="btn2_text"></span></a></span>
676
+ <div class="wlb_dropdown">
677
+
678
+ <div class="wlb_drop_item"><a onclick='' href="/list/watchlist" class="wlb_message"><span class="wlb_text">View Watchlist</span> &raquo;
679
+ </a></div>
680
+ <div class="wlb_drop_cluster wlb_drop_loading">
681
+ </div>
682
+
683
+ <div class="wlb_drop_item"><a onclick='' href="/list/create" class="wlb_message"><span class="wlb_text">New List</span> &raquo;
684
+ </a></div>
685
+ </div>
686
+
687
+
688
+
689
+ <div class="wlb_alert wlb_add_ok" style="display:none">
690
+ <div class="message_box small">
691
+ <div class="success">
692
+ <h2></h2>
693
+ <p>Added to <span class="wlb_list_name">{$list_name}</span></p>
694
+ </div>
695
+ </div>
696
+
697
+ </div>
698
+ <div class="wlb_alert wlb_remove_ok" style="display:none">
699
+ <div class="message_box small">
700
+ <div class="success">
701
+ <h2></h2>
702
+ <p>Removed from <span class="wlb_list_name">{$list_name}</span></p>
703
+ </div>
704
+ </div>
705
+
706
+ </div>
707
+ <div class="wlb_alert wlb_fail" style="display:none">
708
+ <div class="message_box small">
709
+ <div class="error">
710
+ <h2></h2>
711
+ <p>Could not update <span class="wlb_list_name">{$list_name}</span></p>
712
+ </div>
713
+ </div>
714
+
715
+ </div>
716
+
717
+ </div>
718
+ </script>
719
+
720
+
721
+
722
+ <div id="share-checkin">
723
+ <div class="add_to_checkins" data-const="tt0002186" data-lcn="title" ><span class="btn2_wrapper"><a onclick='' onclick="(new Image()).src=&#39;/rg/watchlist/J569/images/b.gif?link=checkins-button-disabled&#39;;" class="disabled checkins_action_btn btn2 large btn2_text_on" ><span class="btn2_glyph">0</span><span class="btn2_text">Check In</span></a></span><div class="popup checkin-dialog">
724
+ <a class="small disabled close btn">X</a>
725
+ <span class="beta">Beta</span>
726
+ <span class="title">I'm Watching This!</span>
727
+ <div class="body">
728
+ <div class="info">Keep track of everything you watch; tell your friends.</div>
729
+ <div class="small message_box">
730
+ <div class="hidden error"><h2>Error</h2> Please try again!</div>
731
+ <div class="hidden success"><h2>Added to Your Check-Ins.</h2> <a href="/list/checkins">View</a></div>
732
+ </div>
733
+ <textarea data-msg="Enter a comment..."></textarea>
734
+ <div class="share">
735
+ <button class="large primary btn"><span>Check in</span></button>
736
+ Check-ins are more fun when<br>
737
+ you <a href="/register/sharing">enable Facebook sharing</a>!
738
+ </div>
739
+ </div>
740
+ </div>
741
+ <input type="hidden" name="49e6c" value="da29" />
742
+
743
+ </div>
744
+
745
+
746
+ </div>
747
+ <span class="btn2_wrapper"><a onclick='' class="launch-share-popover btn2 large btn2_text_on" ><span class="btn2_glyph">0</span><span class="btn2_text">Share...</span></a></span>
748
+ <div id="share-popover">
749
+ <a class="close-popover" href="#">X</a>
750
+ <h4>Share</h4>
751
+ <a onclick="window.open('http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186%2F', 'newWindow', 'width=626, height=436'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186%2F" target="_blank" title="Share on Facebook" class="facebook">
752
+ <div class="option facebook">
753
+ <span class="titlePageSprite share_facebook"></span>
754
+ <div>Facebook</div>
755
+ </div>
756
+ </a>
757
+ <a onclick="window.open('http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186%2F', 'newWindow', 'width=815, height=436'); return false;" href="http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186%2F" target="_blank" title="Share on Twitter" class="twitter">
758
+ <div class="option twitter">
759
+ <span class="titlePageSprite share_twitter"></span>
760
+ <div>Twitter</div>
761
+ </div>
762
+ </a>
763
+ <a href="mailto:?subject=IMDb%3A%20The%20Flying%20Circus%20(1912)&body=The%20Flying%20Circus%20(1912)%0Ahttp://www.imdb.com/rg/em_share/title_web/title/tt0002186/" title="Share by e-mail">
764
+ <div class="option email">
765
+ <span class="titlePageSprite share_email"></span>
766
+ <div>E-mail</div>
767
+ </div>
768
+ </a>
769
+ <a href="#" class="open-checkin-popover">
770
+ <div class="option checkin">
771
+ <span class="titlePageSprite share_checkin"></span>
772
+ <div>Check in</div>
773
+ </div>
774
+ </a>
775
+ </div>
776
+
777
+ <div class="pro-list-no-trailer-watchlist">
778
+ <a onclick="(new Image()).src='/rg/title-overview/add-poster/images/b.gif?link=%2Fr%2Ftt_owntherights%2Fhttps%3A%2F%2Fsecure.imdb.com%2Fstore%2Fphotos%2F';" href="/r/tt_owntherights/https://secure.imdb.com/store/photos/" > Own the rights? Add a poster</a> &raquo;
779
+ </div>
780
+ </td>
781
+
782
+ </tr>
783
+
784
+ </table>
785
+ </div>
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+ </div>
795
+
796
+
797
+ <script>
798
+ if ('csm' in window){
799
+ csm.measure('csm_atf_main');
800
+ }
801
+ </script>
802
+
803
+
804
+ </div>
805
+
806
+ <div id="maindetails_sidebar_top" class="maindetails_sidebar">
807
+
808
+
809
+ <script>
810
+ if ('csm' in window){
811
+ csm.measure('csm_atf_sidebar');
812
+ }
813
+ </script>
814
+
815
+
816
+ </div>
817
+
818
+ <script src="http://i.media-imdb.com/images/SF14176f459bd0474f6a0284a9c3ba61f7/a/js/beacon.js" ></script><script>COMSCORE.beacon({c1:2,c2:"6034961",c3:"",c4:"http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",c5:"",c6:"",c15:""});</script>
819
+ <noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F&c5=c6=&15=&cj=1"/></noscript>
820
+
821
+
822
+ <div id="maindetails_sidebar_bottom" class="maindetails_sidebar">
823
+
824
+
825
+
826
+
827
+
828
+ <div class="aux-content-widget-2" >
829
+
830
+
831
+
832
+ <div class="social">
833
+ <script type="text/javascript">
834
+ generic.monitoring.start_timing("facebook_like_iframe");
835
+ </script>
836
+ <div class="social_networking_like" ><iframe id="iframe_like" name="fbLikeIFrame_0" class="social-iframe" scrolling="no" frameborder="0" allowTransparency="allowTransparency" width=280 height=65></iframe></div>
837
+
838
+ </div>
839
+
840
+
841
+
842
+ </div>
843
+
844
+
845
+
846
+
847
+ <div class="aux-content-widget-3 links" >
848
+
849
+ <h4 class="inline">Quick Links:</h4>
850
+ <form style="display:inline;">
851
+ <select id="quicklinks_select" name="quicklinks_select">
852
+
853
+ <option selected="selected" value="/title/tt0002186/maindetails" dataslot="maindetails" datatag="title-quicklinks">overview</option>
854
+
855
+ <option value="/title/tt0002186/fullcredits" dataslot="fullcredits" datatag="title-quicklinks">full cast and crew</option>
856
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
857
+ <option value="/title/tt0002186/keywords" dataslot="keywords" datatag="title-quicklinks">plot keywords</option>
858
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
859
+ <option value="/title/tt0002186/trivia?tab=mc" dataslot="trivia?tab=mc" datatag="title-quicklinks">connections</option>
860
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
861
+ <option value="/title/tt0002186/releaseinfo" dataslot="releaseinfo" datatag="title-quicklinks">release dates</option>
862
+
863
+ <option value="/title/tt0002186/companycredits" dataslot="companycredits" datatag="title-quicklinks">company credits</option>
864
+
865
+ <option value="/title/tt0002186/locations" dataslot="locations" datatag="title-quicklinks">filming locations</option>
866
+
867
+ <option value="/title/tt0002186/technical" dataslot="technical" datatag="title-quicklinks">technical specs</option>
868
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
869
+ <option value="/title/tt0002186/photogallery" dataslot="photogallery" datatag="title-quicklinks">photo gallery</option>
870
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
871
+ <option value="/title/tt0002186/recommendations" dataslot="recommendations" datatag="title-quicklinks">recommendations</option>
872
+ <option value="">- - - - - - - - - - - - - - - - - - - - -</option>
873
+ <option value="/title/tt0002186/reviews" dataslot="reviews" datatag="title-quicklinks">user reviews</option>
874
+
875
+ <option value="/title/tt0002186/ratings" dataslot="ratings" datatag="title-quicklinks">user ratings</option>
876
+
877
+ </select>
878
+ </form>
879
+
880
+
881
+
882
+ </div>
883
+
884
+
885
+
886
+
887
+
888
+
889
+
890
+
891
+ <div class="aux-content-widget-2" >
892
+
893
+
894
+ <div>
895
+ <div class="rightcornerlink">
896
+ <a href="/list/create">Create a list </a>&nbsp;&raquo;
897
+ </div>
898
+ <h3>Related Lists</h3>
899
+ <div class="list-preview even">
900
+
901
+ <div class="list-preview-item-narrow">
902
+ <a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-image/images/b.gif?link=%2Flist%2F1dVkOjknDTA%2F';" href="/list/1dVkOjknDTA/" ><img
903
+ height="86"
904
+ width="86"
905
+ alt="image of title" title="image of title"
906
+
907
+ src="http://i.media-imdb.com/images/SFaa265aa19162c9e4f3781fbae59f856d/nopicture/medium/film.png" class="" />
908
+ </a></div>
909
+
910
+ <div class="list_name"><b><a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-title/images/b.gif?link=%2Flist%2F1dVkOjknDTA%2F';" href="/list/1dVkOjknDTA/" >My favorite 100 movies from the tens</a></b></div>
911
+ <div class="list_meta">a list of 100 titles by <a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/byline/images/b.gif?link=%2Fuser%2Fur25801750%2Flists';" href="/user/ur25801750/lists" >jprats-31-787859</a>
912
+ created 11 Aug 2011
913
+ </div>
914
+ <div class="clear">&nbsp;</div>
915
+ </div>
916
+ <div class="list-preview odd">
917
+
918
+ <div class="list-preview-item-narrow">
919
+ <a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-image/images/b.gif?link=%2Flist%2FSlIUqt40foI%2F';" href="/list/SlIUqt40foI/" ><img
920
+ height="86"
921
+ width="86"
922
+ alt="image of title" title="image of title"
923
+
924
+ src="http://i.media-imdb.com/images/SFaa265aa19162c9e4f3781fbae59f856d/nopicture/medium/film.png" class="" />
925
+ </a></div>
926
+
927
+ <div class="list_name"><b><a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-title/images/b.gif?link=%2Flist%2FSlIUqt40foI%2F';" href="/list/SlIUqt40foI/" >MyCollection - Timeline</a></b></div>
928
+ <div class="list_meta">a list of 612 titles by <a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/byline/images/b.gif?link=%2Fuser%2Fur18787288%2Flists';" href="/user/ur18787288/lists" >mark-4345</a>
929
+ created 10 Sep 2011
930
+ </div>
931
+ <div class="clear">&nbsp;</div>
932
+ </div>
933
+ <div class="see-more"><a href="/lists/tt0002186">See all related lists</a>&nbsp;&raquo;</div>
934
+ </div>
935
+
936
+
937
+
938
+ </div>
939
+
940
+
941
+
942
+
943
+ <div class="aux-content-widget-2">
944
+ <h3>Connect with IMDb</h3>
945
+ <div style="overflow: hidden; width: 278px; height: 156px;">
946
+ <iframe src="http://www.facebook.com/plugins/likebox.php?href=facebook.com%2Fimdb&amp;width=300&amp;connections=5&amp;stream=false&amp;header=false&amp;height=190" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:298px; height:188px; margin: -4px -10px;" allowTransparency="true"></iframe>
947
+ </div>
948
+ <hr>
949
+ <iframe allowtransparency="true" frameborder="0" role="presentation" scrolling="no" style="width:100%;height:21px" src="http://i.media-imdb.com/images/social/twitter.html?10#imdb"></iframe>
950
+ </div>
951
+
952
+
953
+
954
+ <div class="aux-content-widget-2" >
955
+
956
+ <div id="ratingWidget">
957
+ <h3>Share this Rating</h3>
958
+ <p>
959
+ Title: <strong>The Flying Circus</strong>
960
+ (1912)
961
+ </p>
962
+
963
+ <span class="imdbRatingPlugin" data-user="" data-title="tt0002186" data-style="t1">
964
+ <a href="http://www.imdb.com/title/tt0002186/?ref_=plg_rt_1">
965
+ <img src="http://g-ecx.images-amazon.com/images/G/01/imdb/plugins/rating/images/imdb_46x22.png" alt="The Flying Circus (1912) on IMDb" />
966
+ </a></span><script>
967
+ (function(d,s,id){var js,stags=d.getElementsByTagName(s)[0];
968
+ if(d.getElementById(id)){return;}js=d.createElement(s);js.id=id;
969
+ js.src="http://g-ec2.images-amazon.com/images/G/01/imdb/plugins/rating/js/rating.min.js";
970
+ stags.parentNode.insertBefore(js,stags);})(document,'script','imdb-rating-api');
971
+ </script>
972
+
973
+ <p>Want to share IMDb's rating on your own site? Use the HTML below.</p>
974
+ <div id="ratingPluginHTML" class="hidden">
975
+ <div class="message_box small">
976
+ <div class="error">
977
+ <p>
978
+ You must be a registered user to use the IMDb rating plugin.
979
+ <a href="/register/login" class="cboxElement" rel="login">Login</a>
980
+ </p>
981
+ </div>
982
+ </div>
983
+ </div>
984
+ <div id="ratingWidgetLinks">
985
+ <span class="titlePageSprite arrows show"></span>
986
+ <a id="toggleRatingPluginHTML" href="/plugins?titleId=tt0002186&ref_=tt_plg_rt">Show HTML</a>
987
+ <a href="/plugins?titleId=tt0002186&ref_=tt_plg_rt">View more styles</a>
988
+ </div>
989
+ </div>
990
+
991
+
992
+
993
+ </div>
994
+
995
+
996
+ <link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFaea7f5161b58ce93ee6aef91d67dc694/css2/app/games/promote_widget.css" >
997
+ <div class="aux-content-widget-2 games_guess_promote_widget">
998
+ <h3>Take The Quiz!</h3>
999
+ <a class="icon" href="/rg/quiz/title/games/guess/tt0002186"></a><span>Test your knowledge of <a href="/rg/quiz/title/games/guess/tt0002186">"The Flying Circus"</a>.</span>
1000
+ </div>
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+ <div class="rhs-sl" id="rhs-sl">
1008
+
1009
+
1010
+
1011
+
1012
+ <!-- sid: test01-channel : RHS_SL -->
1013
+
1014
+ <script type="text/javascript">
1015
+ if (typeof afc_data == "undefined") {
1016
+ afc_data = new Object();
1017
+ }
1018
+
1019
+ afc_data["RHS_SL"] = { channel: "test01-channel",
1020
+ client: "ca-amazon-imdb_js",
1021
+ title: "Sponsored Links",
1022
+ help: "What&#x27;s This?",
1023
+ hints: "circus,circus performer"
1024
+ };
1025
+ </script>
1026
+
1027
+ <div id="sponsored_links_afc_div_RHS_SL" name="sponsored_links_afc_div_RHS_SL"></div>
1028
+
1029
+ <iframe id="sponsored_links_afc_iframe_RHS_SL" width="0" height="0" scrolling="no" frameborder="0"
1030
+ allowtransparency="true" marginheight="0" marginwidth="0"
1031
+ name="sponsored_links_afc_iframe"
1032
+ src="/images/a/ifb/google_afc_rhs.html#key:RHS_SL">
1033
+ </iframe>
1034
+
1035
+
1036
+ </div>
1037
+
1038
+
1039
+
1040
+
1041
+ <div class="btf-rhs2" id="btf-rhs2">
1042
+
1043
+
1044
+
1045
+
1046
+ <!-- begin BTF_RHS2 -->
1047
+ <div id="btf_rhs2_wrapper" class="dfp_slot">
1048
+ <script type="text/javascript">
1049
+ ad_utils.register_ad('btf_rhs2');
1050
+ </script>
1051
+ <iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="btf_rhs2" name="btf_rhs2" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
1052
+
1053
+ <noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=2;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=2;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
1054
+
1055
+ </div>
1056
+ <div id="btf_rhs2_reflow_helper"></div>
1057
+ <script>ad_utils.render_ad_fast('btf_rhs2'); ad_utils.fallback.start_kill_timer('btf_rhs2'); </script>
1058
+ <!-- End BTF_RHS2 -->
1059
+
1060
+
1061
+ </div>
1062
+
1063
+
1064
+ </div>
1065
+
1066
+ <div id="maindetails_center_bottom" class="maindetails_center">
1067
+
1068
+
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+
1075
+ <div class="article" >
1076
+
1077
+
1078
+
1079
+
1080
+ <span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-cast/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
1081
+
1082
+
1083
+ <h2>Cast</h2>
1084
+
1085
+ <table class="cast_list">
1086
+
1087
+ <tr><td class="castlist_label" colspan="4">Credited cast:</td></tr>
1088
+
1089
+ <tr class="odd">
1090
+ <td class="primary_photo">
1091
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" >
1092
+
1093
+ <img
1094
+ height="44"
1095
+ width="32"
1096
+ alt="Rasmus Ottesen" title="Rasmus Ottesen"
1097
+
1098
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1099
+ </a>
1100
+ </td>
1101
+ <td class="name">
1102
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" >Rasmus Ottesen</a>
1103
+ </td>
1104
+ <td class="ellipsis">
1105
+ ...
1106
+ </td>
1107
+ <td class="character">
1108
+
1109
+ <div>
1110
+
1111
+ Borgmester Str&#xF8;m
1112
+
1113
+
1114
+ </div>
1115
+
1116
+ </td>
1117
+ </tr>
1118
+
1119
+
1120
+ <tr class="even">
1121
+ <td class="primary_photo">
1122
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" >
1123
+
1124
+ <img
1125
+ height="44"
1126
+ width="32"
1127
+ alt="Emilie Otterdahl" title="Emilie Otterdahl"
1128
+
1129
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1130
+ </a>
1131
+ </td>
1132
+ <td class="name">
1133
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" >Emilie Otterdahl</a>
1134
+ </td>
1135
+ <td class="ellipsis">
1136
+ ...
1137
+ </td>
1138
+ <td class="character">
1139
+
1140
+ <div>
1141
+
1142
+ Erna, hans Datter
1143
+
1144
+
1145
+ </div>
1146
+
1147
+ </td>
1148
+ </tr>
1149
+
1150
+
1151
+
1152
+ <tr><td class="castlist_label" colspan="4">Rest of cast listed alphabetically:</td></tr>
1153
+
1154
+ <tr class="odd">
1155
+ <td class="primary_photo">
1156
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" >
1157
+
1158
+ <img
1159
+ height="44"
1160
+ width="32"
1161
+ alt="Lili Beck" title="Lili Beck"
1162
+
1163
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1164
+ </a>
1165
+ </td>
1166
+ <td class="name">
1167
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" >Lili Beck</a>
1168
+ </td>
1169
+ <td class="ellipsis">
1170
+ ...
1171
+ </td>
1172
+ <td class="character">
1173
+
1174
+ <div>
1175
+
1176
+ Ula Kiri-Maja, Slanget&#xE6;mmerske
1177
+
1178
+
1179
+ (as Lilli Beck)
1180
+ </div>
1181
+
1182
+ </td>
1183
+ </tr>
1184
+
1185
+
1186
+ <tr class="even">
1187
+ <td class="primary_photo">
1188
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm1932889%2F';" href="/name/nm1932889/" >
1189
+
1190
+ <img
1191
+ height="44"
1192
+ width="32"
1193
+ alt="Kirstine Friis-Hjort" title="Kirstine Friis-Hjort"
1194
+
1195
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1196
+ </a>
1197
+ </td>
1198
+ <td class="name">
1199
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm1932889%2F';" href="/name/nm1932889/" >Kirstine Friis-Hjort</a>
1200
+ </td>
1201
+ <td class="ellipsis">
1202
+ </td>
1203
+ <td class="character">
1204
+
1205
+
1206
+ </td>
1207
+ </tr>
1208
+
1209
+
1210
+ <tr class="odd">
1211
+ <td class="primary_photo">
1212
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-3/images/b.gif?link=%2Fname%2Fnm1925034%2F';" href="/name/nm1925034/" >
1213
+
1214
+ <img
1215
+ height="44"
1216
+ width="32"
1217
+ alt="Kirstine Friis-Hjorth" title="Kirstine Friis-Hjorth"
1218
+
1219
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1220
+ </a>
1221
+ </td>
1222
+ <td class="name">
1223
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-3/images/b.gif?link=%2Fname%2Fnm1925034%2F';" href="/name/nm1925034/" >Kirstine Friis-Hjorth</a>
1224
+ </td>
1225
+ <td class="ellipsis">
1226
+ ...
1227
+ </td>
1228
+ <td class="character">
1229
+
1230
+ <div>
1231
+
1232
+ Cirkustjener
1233
+
1234
+
1235
+ </div>
1236
+
1237
+ </td>
1238
+ </tr>
1239
+
1240
+
1241
+ <tr class="even">
1242
+ <td class="primary_photo">
1243
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-4/images/b.gif?link=%2Fname%2Fnm0421656%2F';" href="/name/nm0421656/" >
1244
+
1245
+ <img
1246
+ height="44"
1247
+ width="32"
1248
+ alt="Richard Jensen" title="Richard Jensen"
1249
+
1250
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1251
+ </a>
1252
+ </td>
1253
+ <td class="name">
1254
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-4/images/b.gif?link=%2Fname%2Fnm0421656%2F';" href="/name/nm0421656/" >Richard Jensen</a>
1255
+ </td>
1256
+ <td class="ellipsis">
1257
+ ...
1258
+ </td>
1259
+ <td class="character">
1260
+
1261
+ <div>
1262
+
1263
+ Laurento, Linedanser
1264
+
1265
+
1266
+ </div>
1267
+
1268
+ </td>
1269
+ </tr>
1270
+
1271
+
1272
+ <tr class="odd">
1273
+ <td class="primary_photo">
1274
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-5/images/b.gif?link=%2Fname%2Fnm1923782%2F';" href="/name/nm1923782/" >
1275
+
1276
+ <img
1277
+ height="44"
1278
+ width="32"
1279
+ alt="Stella Lind" title="Stella Lind"
1280
+
1281
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1282
+ </a>
1283
+ </td>
1284
+ <td class="name">
1285
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-5/images/b.gif?link=%2Fname%2Fnm1923782%2F';" href="/name/nm1923782/" >Stella Lind</a>
1286
+ </td>
1287
+ <td class="ellipsis">
1288
+ ...
1289
+ </td>
1290
+ <td class="character">
1291
+
1292
+ <div>
1293
+
1294
+ Str&#xF8;ms stuepige
1295
+
1296
+
1297
+ </div>
1298
+
1299
+ </td>
1300
+ </tr>
1301
+
1302
+
1303
+ <tr class="even">
1304
+ <td class="primary_photo">
1305
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-6/images/b.gif?link=%2Fname%2Fnm0517327%2F';" href="/name/nm0517327/" >
1306
+
1307
+ <img
1308
+ height="44"
1309
+ width="32"
1310
+ alt="Charles L&#xF8;waas" title="Charles L&#xF8;waas"
1311
+
1312
+ src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
1313
+ </a>
1314
+ </td>
1315
+ <td class="name">
1316
+ <a onclick="(new Image()).src='/rg/tt-cast/cast-6/images/b.gif?link=%2Fname%2Fnm0517327%2F';" href="/name/nm0517327/" >Charles L&oslash;waas</a>
1317
+ </td>
1318
+ <td class="ellipsis">
1319
+ ...
1320
+ </td>
1321
+ <td class="character">
1322
+
1323
+ <div>
1324
+
1325
+ Cirkusg&#xE6;st
1326
+
1327
+
1328
+ </div>
1329
+
1330
+ </td>
1331
+ </tr>
1332
+
1333
+
1334
+ </table>
1335
+
1336
+ <div class="see-more">
1337
+ <a onclick="(new Image()).src='/rg/tt-cast/full/images/b.gif?link=fullcredits%23cast';" href="fullcredits#cast" >Full cast and crew</a>&nbsp;&raquo;
1338
+ </div>
1339
+ <div id="charlink_move_from" class="hidden">
1340
+
1341
+
1342
+
1343
+ <div class="form-box">
1344
+ <form action="/character/create" method="post" onsubmit="$(&#39;#nblogin&#39;).click(); return false;">
1345
+ <input type="hidden" name="title" value="tt0002186">
1346
+ <div class="form-txt">Create a character page for:</div>
1347
+ <select name="name"
1348
+ onchange="if (this.options[this.selectedIndex].value == '...') document.location='fullcredits#cast'">
1349
+
1350
+ <option>Borgmester Str&#xF8;m</option>
1351
+ <option>Erna, hans Datter</option>
1352
+ <option>Ula Kiri-Maja, Slanget&#xE6;mmerske</option>
1353
+ <option>Cirkustjener</option>
1354
+ <option>Laurento, Linedanser</option>
1355
+ <option>Str&#xF8;ms stuepige</option>
1356
+ <option>Cirkusg&#xE6;st</option>
1357
+
1358
+
1359
+ <option disabled="disabled">-----------</option>
1360
+ <option value="...">more...</option>
1361
+ </select>&nbsp;<button class="btn small" >Create &raquo;</button>&nbsp;<a target="_blank" class="btn small"
1362
+ href="/help/show_leaf?createchar">?</a>
1363
+ </form>
1364
+ </div>
1365
+
1366
+ </div>
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+ </div>
1375
+
1376
+
1377
+
1378
+
1379
+ <div class="article" >
1380
+
1381
+
1382
+
1383
+
1384
+ <span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-storyline/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
1385
+
1386
+
1387
+ <h2>Storyline</h2>
1388
+
1389
+ <span class="see-more inline">
1390
+ <span class=""><a onclick="(new Image()).src='/rg/tt-storyline/addplot/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Add Full Plot</a></span>
1391
+ <span>|</span>
1392
+ <a onclick="(new Image()).src='/rg/tt-storyline/addsynopsis/images/b.gif?link=synopsis';" href="synopsis" >Add Synopsis</a>
1393
+ </span>
1394
+
1395
+ <hr />
1396
+ <div class="see-more inline canwrap">
1397
+ <h4 class="inline">Plot Keywords:</h4>
1398
+ <a onclick="(new Image()).src='/rg/tt-storyline/plotkeyword-1/images/b.gif?link=%2Fkeyword%2Fcircus';" href="/keyword/circus" >Circus</a>&nbsp;<span>|</span> <a onclick="(new Image()).src='/rg/tt-storyline/plotkeyword-2/images/b.gif?link=%2Fkeyword%2Fcircus-performer';" href="/keyword/circus-performer" >Circus Performer</a>
1399
+ </div>
1400
+
1401
+
1402
+ <hr />
1403
+ <div class="see-more inline canwrap">
1404
+ <h4 class="inline">Genres:</h4>
1405
+ <a onclick="(new Image()).src='/rg/tt-storyline/genre-1/images/b.gif?link=%2Fgenre%2FDrama';" href="/genre/Drama" itemprop="genre"
1406
+ >Drama</a>
1407
+ </div>
1408
+
1409
+ <hr/>
1410
+
1411
+
1412
+ <div class="txt-block">
1413
+ <h4 class="inline">Parents Guide:</h4>
1414
+ <span class="see-more inline">
1415
+ <a onclick="(new Image()).src='/rg/tt-storyline/advisory/images/b.gif?link=parentalguide';" href="parentalguide" >Add content advisory for parents</a>&nbsp;&raquo;
1416
+ </a></span>
1417
+ </div>
1418
+
1419
+
1420
+ </div>
1421
+
1422
+
1423
+
1424
+
1425
+ <div class="article" >
1426
+
1427
+
1428
+
1429
+
1430
+ <span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-details/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
1431
+
1432
+
1433
+ <h2>Details</h2>
1434
+
1435
+
1436
+ <div class="txt-block">
1437
+ <h4 class="inline">Country:</h4>
1438
+
1439
+ <a onclick="(new Image()).src='/rg/tt-details/country/images/b.gif?link=%2Fcountry%2Fdk';" href="/country/dk" >Denmark</a>
1440
+ </div>
1441
+
1442
+
1443
+ <div class="txt-block">
1444
+ <h4 class="inline">Release Date:</h4>
1445
+ <time itemprop="datePublished" datetime="1913-06-28">28 June 1913</time>
1446
+ (USA)
1447
+ <span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/releasedate/images/b.gif?link=releaseinfo';" href="releaseinfo" >See more</a></span>&nbsp;&raquo;
1448
+ </div>
1449
+
1450
+ <div class="txt-block">
1451
+ <h4 class="inline">Also Known As:</h4> Der fliegende Cirkus
1452
+ <span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/aka/images/b.gif?link=releaseinfo%23akas';" href="releaseinfo#akas" >See more</a></span>&nbsp;&raquo;
1453
+ </div>
1454
+
1455
+ <div class="txt-block">
1456
+ <h4 class="inline">Filming Locations:</h4>
1457
+ <a onclick="(new Image()).src='/rg/tt-details/location/images/b.gif?link=%2Fsearch%2Ftitle%3Flocations%3DBr%25F8nsh%25F8j%2C%2520Copenhagen%2C%2520Denmark';" href="/search/title?locations=Br%F8nsh%F8j,%20Copenhagen,%20Denmark" >Br&#xF8;nsh&#xF8;j, Copenhagen, Denmark</a>
1458
+ </div>
1459
+
1460
+
1461
+
1462
+ <hr />
1463
+ <h3>Company Credits</h3>
1464
+ <div class="txt-block">
1465
+ <h4 class="inline">Production Co:</h4>
1466
+
1467
+
1468
+ <a onclick="(new Image()).src='/rg/tt-details/company-1/images/b.gif?link=%2Fcompany%2Fco0154222%2F';" href="/company/co0154222/" >Det Skandinavisk-Russiske Handelshus</a>
1469
+ <span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/company-more/images/b.gif?link=companycredits';" href="companycredits" >See more</a></span>&nbsp;&raquo;
1470
+ </div>
1471
+
1472
+ <div class="txt-block">
1473
+ Show detailed
1474
+ <a onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=%2Fr%2Ftt_details_contact%2Ftitle%2Ftt0002186%2Fcompanycredits';" href="/r/tt_details_contact/title/tt0002186/companycredits" >company contact information</a> on
1475
+ <a onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=%2Fr%2Ftt_details_contact%2F';" href="/r/tt_details_contact/" >IMDbPro</a>&nbsp;&raquo;
1476
+ </div>
1477
+
1478
+ <hr />
1479
+ <h3>Technical Specs</h3>
1480
+ <div class="txt-block">
1481
+ <h4 class="inline">Runtime:</h4>
1482
+
1483
+ <time itemprop="duration" datetime="PT46M">46 min</time>
1484
+
1485
+ </div>
1486
+ <div class="txt-block">
1487
+ <h4 class="inline">Sound Mix:</h4> <a onclick="(new Image()).src='/rg/tt-details/soundmix-1/images/b.gif?link=%2Fsearch%2Ftitle%3Fsound_mixes%3Dsilent';" href="/search/title?sound_mixes=silent" >Silent</a>
1488
+ </div>
1489
+ <div class="txt-block">
1490
+ <h4 class="inline">Color:</h4>
1491
+ <a onclick="(new Image()).src='/rg/tt-details/color/images/b.gif?link=%2Fsearch%2Ftitle%3Fcolors%3Dblack_and_white';" href="/search/title?colors=black_and_white" >Black and White</a>
1492
+ </div>
1493
+ <div class="txt-block">
1494
+ <h4 class="inline">Aspect Ratio:</h4> 1.33 : 1
1495
+ </div>
1496
+ See <a onclick="(new Image()).src='/rg/tt-details/technicalspecs/images/b.gif?link=technical';" href="technical" >full technical specs</a>&nbsp;&raquo;
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+ </div>
1504
+
1505
+
1506
+
1507
+
1508
+ <div class="article" >
1509
+
1510
+
1511
+
1512
+ <span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-didyouknow/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
1513
+
1514
+
1515
+ <h2>Did You Know?</h2>
1516
+
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+ <div class="txt-block">
1523
+ <h4>Connections</h4>
1524
+ Featured in
1525
+
1526
+ <a href="/title/tt1622075/" >&#x22;Cinema Europe: The Other Hollywood: Art&#x27;s Promised Land (#1.2)&#x22;</a> (1995)
1527
+ <span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-didyouknow/connections-more/images/b.gif?link=trivia%3Ftab%3Dmc';" href="trivia?tab=mc" class="nobr" >See more</a></span>&nbsp;&raquo;
1528
+
1529
+ </div>
1530
+
1531
+
1532
+
1533
+
1534
+ </div>
1535
+
1536
+
1537
+
1538
+
1539
+ <div class="article" >
1540
+
1541
+
1542
+
1543
+ <div id="lateload-recs-widget">
1544
+ </div>
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+ </div>
1552
+
1553
+
1554
+
1555
+ </div>
1556
+
1557
+ </div>
1558
+
1559
+ <div id="content-1" class="redesign clear">
1560
+ <div class="ajaxfooter">
1561
+ <noscript>
1562
+ <iframe src="_ajax/iframe?component=footer&parent_request_id=06PFYQ73CK3NVS3BHSHV"
1563
+ width="100%" height="2500px"
1564
+ scrolling="no" frameborder="0" marginheight="0" marginwidth="0"></iframe>
1565
+ </noscript>
1566
+ </div>
1567
+
1568
+
1569
+ </div>
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+ </div>
1601
+ <div id="footer" class="ft">
1602
+ <hr width="100%" size=1>
1603
+ <div id="rvi-div">
1604
+ <div class="recently-viewed">&nbsp;</div>
1605
+ <br class="clear">
1606
+ <hr width="100%" size="1">
1607
+ </div>
1608
+
1609
+ <p class="footer" align="center">
1610
+ <a onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=%2F';" href="/" >Home</a>
1611
+ | <a onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=%2Fsearch';" href="/search" >Search</a>
1612
+ | <a onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=%2Fa2z';" href="/a2z" >Site Index</a>
1613
+ | <a onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=%2Fmovies-in-theaters%2F';" href="/movies-in-theaters/" >In Theaters</a>
1614
+ | <a onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=%2Fmovies-coming-soon%2F';" href="/movies-coming-soon/" >Coming Soon</a>
1615
+ | <a onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=%2Fchart%2F';" href="/chart/" >Top Movies</a>
1616
+ | <a onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=%2Flist%2Fwatchlist';" href="/list/watchlist" >Watchlist</a>
1617
+ | <a onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=%2Fchart%2Ftop';" href="/chart/top" >Top 250</a>
1618
+ | <a onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=%2Fsections%2Ftv%2F';" href="/sections/tv/" >TV</a>
1619
+ | <a onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=%2Fnews%2F';" href="/news/" >News</a>
1620
+ | <a onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=%2Ffeatures%2Fvideo%2F';" href="/features/video/" >Video</a>
1621
+ | <a onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=%2Fboards%2F';" href="/boards/" >Message Boards</a>
1622
+ | <a onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=%2Fpressroom%2F';" href="/pressroom/" >Press Room</a>
1623
+ <br>
1624
+
1625
+ <a onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https%3A%2F%2Fsecure.imdb.com%2Fregister-imdb%2Fform-v2';" href="https://secure.imdb.com/register-imdb/form-v2" >Register</a>
1626
+
1627
+ | <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" id="footer_rss_image" class="navbarSprite" ></a> <a onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=%2Fhelp%2Fshow_article%3Frssavailable';" href="/help/show_article?rssavailable" >RSS</a>
1628
+ | <a onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=%2Fadvertising%2F';" href="/advertising/" >Advertising</a>
1629
+ | <a onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=%2Fhelpdesk%2Fcontact';" href="/helpdesk/contact" >Contact Us</a>
1630
+ | <a onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=%2Fjobs';" href="/jobs" >Jobs</a>
1631
+ | <a href="https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627" onClick="(new Image()).src='/rg/IMDbFooter/prosystem/images/b.gif?link=https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627';">IMDbPro</a>
1632
+ | <a href="http://www.boxofficemojo.com" onClick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com';">Box Office Mojo</a>
1633
+ | <a href="http://www.withoutabox.com" onClick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com';">Withoutabox</a>
1634
+ | <a href="http://www.lovefilm.com/browse/film/watch-online/" onClick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';">LOVEFiLM</a>
1635
+ <br /><br />
1636
+ IMDb Mobile:
1637
+ <a onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=%2Fapps%2Fios%2F';" href="/apps/ios/" >iPhone/iPad</a>
1638
+ | <a onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=%2Fandroid';" href="/android" >Android</a>
1639
+ | <a onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http%3A%2F%2Fm.imdb.com';" href="http://m.imdb.com" >Mobile site</a>
1640
+ | <a onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=%2Fwindowsphone';" href="/windowsphone" >Windows Phone 7</a>
1641
+ | IMDb Social:
1642
+ <a onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http%3A%2F%2Fwww.facebook.com%2Fimdb';" href="http://www.facebook.com/imdb" >Facebook</a>
1643
+ | <a onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http%3A%2F%2Ftwitter.com%2Fimdb';" href="http://twitter.com/imdb" >Twitter</a>
1644
+ <br /><br />
1645
+ International Sites: <a href="http://www.imdb.de">IMDb Germany</a>
1646
+ | <a href="http://www.imdb.it">IMDb Italy</a>
1647
+ | <a href="http://www.imdb.es">IMDb Spain</a>
1648
+ | <a href="http://www.imdb.fr">IMDb France</a>
1649
+ <br><br>
1650
+ </p>
1651
+ <p class="footer" align="center">
1652
+
1653
+ <a href="/help/show_article?conditions">Copyright &copy;</a> 1990-2013
1654
+ <a href="/help/">IMDb.com, Inc.</a>
1655
+ <br>
1656
+ <a href="/help/show_article?conditions">Terms of Use</a> | <a href="/privacy">Privacy Policy</a> | <a href="//www.amazon.com/InterestBasedAds">Interest-Based Ads</a>
1657
+ <br>
1658
+
1659
+ An <img id="amazon_logo" align="middle" style="width:80px;height:19px;border:0 none" src="http://i.media-imdb.com/images/SF9bb191c6827273aa978cab39a3587950/b.gif"/> company.
1660
+
1661
+ </p>
1662
+ <table class="footer" id="amazon-affiliates">
1663
+ <tr>
1664
+ <td colspan="10">
1665
+ Amazon Affiliates
1666
+ </td>
1667
+ </tr>
1668
+ <tr>
1669
+ <td class="amazon-affiliate-site-first">
1670
+ <a class="amazon-affiliate-site-link"
1671
+ href="http://www.amazon.com/b?ie=UTF8&node=2858778011&tag=imdbpr1-20">
1672
+ <span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
1673
+ <span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
1674
+ </a>
1675
+ </td>
1676
+ <td class="amazon-affiliate-site-item-nth">
1677
+ <a class="amazon-affiliate-site-link"
1678
+ href="http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20">
1679
+ <span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
1680
+ <span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
1681
+ </a>
1682
+ </td>
1683
+ <td class="amazon-affiliate-site-item-nth">
1684
+ <a class="amazon-affiliate-site-link"
1685
+ href="http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21">
1686
+ <span class="amazon-affiliate-site-name">Amazon Germany</span><br>
1687
+ <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
1688
+ </a>
1689
+ </td>
1690
+ <td class="amazon-affiliate-site-item-nth">
1691
+ <a class="amazon-affiliate-site-link"
1692
+ href="http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21">
1693
+ <span class="amazon-affiliate-site-name">Amazon Italy</span><br>
1694
+ <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
1695
+ </a>
1696
+ </td>
1697
+ <td class="amazon-affiliate-site-item-nth">
1698
+ <a class="amazon-affiliate-site-link"
1699
+ href="http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21">
1700
+ <span class="amazon-affiliate-site-name">Amazon France</span><br>
1701
+ <span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
1702
+ </a>
1703
+ </td>
1704
+ <td class="amazon-affiliate-site-item-nth">
1705
+ <a class="amazon-affiliate-site-link" href="http://www.lovefilm.com/browse/film/watch-online/">
1706
+ <span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
1707
+ <span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
1708
+ </a>
1709
+ </td>
1710
+ <td class="amazon-affiliate-site-item-nth">
1711
+ <a class="amazon-affiliate-site-link" href="http://wireless.amazon.com">
1712
+ <span class="amazon-affiliate-site-name">Amazon Wireless</span><br>
1713
+ <span class="amazon-affiliate-site-desc">Cellphones &<br>Wireless Plans</span>
1714
+ </a>
1715
+ </td>
1716
+ <td class="amazon-affiliate-site-item-nth">
1717
+ <a class="amazon-affiliate-site-link" href="http://www.junglee.com/">
1718
+ <span class="amazon-affiliate-site-name">Junglee</span><br>
1719
+ <span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
1720
+ </a>
1721
+ </td>
1722
+ <td class="amazon-affiliate-site-item-nth">
1723
+ <a class="amazon-affiliate-site-link" href="http://www.dpreview.com">
1724
+ <span class="amazon-affiliate-site-name">DPReview</span><br>
1725
+ <span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
1726
+ </a>
1727
+ </td>
1728
+ <td class="amazon-affiliate-site-item-nth">
1729
+ <a class="amazon-affiliate-site-link" href="http://www.audible.com">
1730
+ <span class="amazon-affiliate-site-name">Audible</span><br>
1731
+ <span class="amazon-affiliate-site-desc">Download<br>Audio Books</span></a>
1732
+ </td>
1733
+ </tr>
1734
+ </table>
1735
+
1736
+ </div>
1737
+
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+ <!-- begin BOTTOM_AD -->
1744
+ <div id="bottom_ad_wrapper" class="dfp_slot">
1745
+ <script type="text/javascript">
1746
+ ad_utils.register_ad('bottom_ad');
1747
+ </script>
1748
+ <iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=728x90,2x1;p=b;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="bottom_ad" name="bottom_ad" class="yesScript" width="728" height="90" data-original-width="728" data-original-height="90" data-config-width="728" data-config-height="90" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
1749
+
1750
+ <noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=1;sz=728x90,2x1;p=b;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=1;sz=728x90,2x1;p=b;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
1751
+
1752
+ </div>
1753
+ <div id="bottom_ad_reflow_helper"></div>
1754
+ <script>ad_utils.render_ad_fast('bottom_ad'); ad_utils.fallback.start_kill_timer('bottom_ad'); </script>
1755
+ <!-- End BOTTOM_AD -->
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+ </div>
1770
+ </div>
1771
+
1772
+ <!-- h=iop133 i=2013-01-24 s=legacy(default) t='Thu Jan 24 13:14:30 2013' -->
1773
+ <div id="servertime" time="511.679" treatment="A"></div>
1774
+ <script src="http://i.media-imdb.com/images/SFa0af51ec6e9f35bb9a1079bf8b618bc0/js/cc/falkor.js" ></script><script type="text/javascript">jQuery(function(){generic.document_is_ready()})</script><!-- Begin SIS code -->
1775
+ <iframe id="sis_pixel" style="display:none"></iframe>
1776
+ <iframe id="sis_pixel_3" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
1777
+
1778
+
1779
+ <script>
1780
+ setTimeout(function(){
1781
+ try{
1782
+ //sis2.0 pixel
1783
+ var url = 'http://sis.amazon.com/iu?',
1784
+ params = [
1785
+ "dmnId=imdb.com",
1786
+ "dId=",
1787
+ "tId=",
1788
+ "pId=tt0002186",
1789
+ "r=1",
1790
+ "rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F"
1791
+ ];
1792
+ (document.getElementById('sis_pixel')).src = url + params.join('&');
1793
+
1794
+ //sis3.0 pixel
1795
+ var url_sis3 = 'http://s.amazon-adsystem.com/iu3?',
1796
+ params_sis3 = [
1797
+ "d=imdb.com",
1798
+ "a1=",
1799
+ "a2=",
1800
+ "pId=tt0002186",
1801
+ "r=1",
1802
+ "rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",
1803
+ "ex-hargs=v%3D1.0%3Bc%3DIMDB%3Bp%3Dtt0002186%3Bt%3Dimdb_title_view%3B",
1804
+ "encoding=server",
1805
+ "cb=" + parseInt(Math.random()*99999999)
1806
+ ];
1807
+ (document.getElementById('sis_pixel_3')).src = url_sis3 + params_sis3.join('&');
1808
+ }
1809
+ catch(e){
1810
+ consoleLog('Pixel failure ' + e.toString(),'sis');
1811
+ }
1812
+ }, 5);
1813
+
1814
+ </script>
1815
+ <!-- End SIS code -->
1816
+ <!-- Begin SIS-SW code -->
1817
+ <iframe id="sis_pixel_sitewide" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
1818
+
1819
+
1820
+ <script>
1821
+ setTimeout(function(){
1822
+ try{
1823
+ if (! document.getElementById('sis_pixel_3')) {
1824
+ var url_sis = 'http://s.amazon-adsystem.com/iu3?',
1825
+ params_sis = [
1826
+ "d=imdb.com",
1827
+ "a1=",
1828
+ "a2=",
1829
+ "pId=tt0002186",
1830
+ "r=1",
1831
+ "rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",
1832
+ "encoding=server",
1833
+ "cb=" + parseInt(Math.random()*99999999)
1834
+ ];
1835
+ (document.getElementById('sis_pixel_sitewide')).src = url_sis + params_sis.join('&');
1836
+ }
1837
+ }
1838
+ catch(e){
1839
+ consoleLog('Pixel failure ' + e.toString(),'sis');
1840
+ }
1841
+ }, 5);
1842
+
1843
+ </script>
1844
+ <!-- End SIS-SW code -->
1845
+ <script type="text/javascript">generic.monitoring.stop_timing('page_load', '', true);generic.monitoring.all_events_started();</script><script type="text/imdblogin-js" id="login">
1846
+ jQuery(document).ready(function(){
1847
+ window.imdb.login_lightbox("https://secure.imdb.com",
1848
+ "http://www.imdb.com/title/tt0002186/");
1849
+ });
1850
+ </script>
1851
+ <script type="text/javascript">jQuery(".rating-list").each(function (i) {
1852
+ jQuery(this).rating({
1853
+ uconst: '',
1854
+ widgetClass: 'rating-list',
1855
+ ajaxURL: '/ratings/_ajax/title',
1856
+ starWidth: 14,
1857
+ errorMessage: 'Oops! Please try again later.',
1858
+ images: {
1859
+ imdb: "http://i.media-imdb.com/images/SFf61e3b0b4070522a50ac31a460101228/rating/rating-list/imdb.gif",
1860
+ off: "http://i.media-imdb.com/images/SF13607e633558b20fdf862870dd0bb1ab/rating/rating-list/off.gif",
1861
+ your: "http://i.media-imdb.com/images/SF9f5d09c8801a6161ee170b59446b1551/rating/rating-list/your.gif",
1862
+ del: "http://i.media-imdb.com/images/SF053ad2c5a9b53404112dc05b8074cb4a/rating/rating-list/del.gif",
1863
+ info: "http://i.media-imdb.com/images/SFf4976e5624107ef5bf7bc9acad68a79c/rating/rating-list/info.gif"
1864
+ }
1865
+ });
1866
+ });
1867
+ </script>
1868
+ <script>
1869
+ (function($){
1870
+ $('span.btn2_wrapper').not('.btn2_active').imdb_btn2();
1871
+ })(jQuery);
1872
+ </script><script type="text/javascript">jQuery("div.wlb_classic_wrapper").wl_button();</script><script type="text/javascript">jQuery(document).checkins_listener({doLogin: true, context: 'title-overview'});
1873
+ </script><script type="text/javascript">jQuery(document).trigger('checkins_add', [jQuery('div.add_to_checkins')]);
1874
+ </script><script type="text/javascript">setTimeout(function() {
1875
+ var url = "http://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&ref=title%3Asb_mid%3Att0002186&href=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F";
1876
+ var like = document.getElementById('iframe_like');
1877
+ like.src = url;
1878
+ like.onload = function () { generic.monitoring.stop_timing('facebook_like_iframe', '', false); } }, 5);
1879
+ </script>
1880
+ <script type="text/javascript">
1881
+ var MIN_ITEMS = 6;
1882
+ csm.listen('csm_core_ads_load', function() {
1883
+ $('#lateload-recs-widget').load(
1884
+ "/widget/recommendations/recs",
1885
+ {"count":"24","noIncludes":"1","standards":"p13nsims:tt0002186","caller_name":"p13nsims-title","start":"0"},
1886
+ function( response, status, xhr ) {
1887
+ if (status == "error") {
1888
+ if ($('.rec_slide .rec_item').length < MIN_ITEMS) {
1889
+ $('.rec_heading_wrapper').parents('.article').hide();
1890
+ }
1891
+ }
1892
+ if ('csm' in window) {
1893
+ csm.measure('csm_recs_delivered');
1894
+ }
1895
+ }
1896
+ );
1897
+ });
1898
+ </script>
1899
+
1900
+
1901
+ <script type="text/javascript">
1902
+
1903
+ var _gaq = _gaq || [];
1904
+ _gaq.push(['_setAccount', 'UA-3916519-1']);
1905
+ _gaq.push(['_setDomainName', '.imdb.com']); _gaq.push(['_setSampleRate', '10']); _gaq.push(['_setCustomVar', 2, 'Falkor', 'true']);
1906
+ _gaq.push(['_trackPageview']); // must come last
1907
+
1908
+ (function() {
1909
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
1910
+ ga.src = 'http://www.google-analytics.com/ga.js';
1911
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
1912
+ })();
1913
+
1914
+ </script>
1915
+
1916
+ </body>
1917
+ </html>
1918
+
1919
+
1920
+