hulu-show 0.4.3 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +65 -9
- data/VERSION +1 -1
- data/hulu-show.gemspec +5 -3
- data/lib/hulu/show.rb +4 -4
- data/lib/hulu/show/episode.rb +22 -7
- data/spec/hulu/show_spec.rb +55 -5
- data/spec/support/vcr_cassettes/fringe.yml +2469 -0
- data/spec/support/vcr_cassettes/white_collar.yml +4885 -0
- metadata +95 -147
data/README.md
CHANGED
@@ -1,8 +1,18 @@
|
|
1
|
+
# Updates
|
2
|
+
|
3
|
+
01/22/2012
|
4
|
+
|
5
|
+
Added coming_soon attribute to Episode
|
6
|
+
|
7
|
+
?
|
8
|
+
|
9
|
+
Added show_title and description attributes to Episode
|
10
|
+
|
1
11
|
# hulu-show
|
2
12
|
|
3
13
|
[![Build Status](https://secure.travis-ci.org/CraigWilliams/hulu-show.png)](http://travis-ci.org/CraigWilliams/hulu-show)
|
4
14
|
|
5
|
-
Hulu::Show fetches all episodes for the current season of
|
15
|
+
Hulu::Show fetches all episodes for the current season of a specified show.
|
6
16
|
|
7
17
|
## Show attributes:
|
8
18
|
|
@@ -16,6 +26,7 @@ Hulu::Show fetches all episodes for the current season of the specified show.
|
|
16
26
|
|
17
27
|
## Episode attributes:
|
18
28
|
|
29
|
+
:show_title,
|
19
30
|
:title,
|
20
31
|
:episode,
|
21
32
|
:running_time,
|
@@ -24,28 +35,73 @@ Hulu::Show fetches all episodes for the current season of the specified show.
|
|
24
35
|
:url,
|
25
36
|
:beaconid,
|
26
37
|
:thumbnail_url,
|
27
|
-
:embed_html
|
38
|
+
:embed_html,
|
39
|
+
:description,
|
40
|
+
:coming_soon
|
28
41
|
|
29
42
|
## Usage
|
30
43
|
|
31
|
-
```
|
44
|
+
```
|
45
|
+
gem install hulu-show
|
46
|
+
```
|
32
47
|
|
33
|
-
```
|
48
|
+
```
|
49
|
+
require 'hulu/show'
|
50
|
+
```
|
34
51
|
|
35
|
-
```
|
52
|
+
```
|
53
|
+
burn_notice = Hulu::Show.new('Burn Notice')
|
54
|
+
```
|
36
55
|
|
37
|
-
|
56
|
+
```ruby
|
57
|
+
#<Hulu::Show:0x007f972a04f740
|
58
|
+
@title="Burn Notice",
|
59
|
+
@episodes=[
|
60
|
+
#<Hulu::Episode:0x007f972a02c7b8
|
61
|
+
@episode="13",
|
62
|
+
@title="Damned If You Do",
|
63
|
+
@url="http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do?c=Action-and-Adventure#x-4,cEpisodes,1,0",
|
64
|
+
@beaconid="296648",
|
65
|
+
@running_time="43:09",
|
66
|
+
@air_date="11/03/2011",
|
67
|
+
@embed_html="<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>",
|
68
|
+
@thumbnail_url="http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg">
|
69
|
+
],
|
70
|
+
@doc=nil,
|
71
|
+
@errors=[],
|
72
|
+
@network="USA",
|
73
|
+
@genre="Action and Adventure",
|
74
|
+
@description="A \"burned\" spy returns to Miami where he uses his special ops training to help those in need, and bring justice against the men who wrongly burned him.",
|
75
|
+
@url="http://www.hulu.com/burn-notice">
|
76
|
+
```
|
38
77
|
|
39
78
|
## Retrieve show episodes
|
40
79
|
|
41
|
-
```
|
80
|
+
```ruby
|
81
|
+
burn_notice.episodes
|
82
|
+
```
|
83
|
+
|
42
84
|
|
43
|
-
|
85
|
+
```ruby
|
86
|
+
|
87
|
+
[
|
88
|
+
#<Hulu::Episode:0x007f961a02be00
|
89
|
+
@episode="13",
|
90
|
+
@title="Damned If You Do",
|
91
|
+
@url="http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do?c=Action-and-Adventure#x-4,cEpisodes,1,0",
|
92
|
+
@beaconid="296648",
|
93
|
+
@running_time="43:09",
|
94
|
+
@air_date="11/03/2011",
|
95
|
+
@embed_html="<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>",
|
96
|
+
@thumbnail_url="http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg">
|
97
|
+
]
|
44
98
|
```
|
45
99
|
|
46
100
|
## Retrieve multiple shows with their episodes at one time.
|
47
101
|
|
48
|
-
```
|
102
|
+
```ruby
|
103
|
+
Hulu.shows(['Burn Notice', 'Warehouse 13'])
|
104
|
+
```
|
49
105
|
|
50
106
|
|
51
107
|
Copyright (c) 2011 Craig Williams. See LICENSE.txt for
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.5.0
|
data/hulu-show.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "hulu-show"
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.5.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Craig Williams"]
|
12
|
-
s.date = "
|
12
|
+
s.date = "2012-01-22"
|
13
13
|
s.description = "Really, that is about it. For each show, Hulu::Show will return an array of Episode objects with details about the episode."
|
14
14
|
s.email = "cwilliams.allancraig@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -40,11 +40,13 @@ Gem::Specification.new do |s|
|
|
40
40
|
"spec/support/vcr_cassettes/additional_attributes.yml",
|
41
41
|
"spec/support/vcr_cassettes/burn_notice.yml",
|
42
42
|
"spec/support/vcr_cassettes/description.yml",
|
43
|
+
"spec/support/vcr_cassettes/fringe.yml",
|
43
44
|
"spec/support/vcr_cassettes/law_and_order_special_victims_unit.yml",
|
44
45
|
"spec/support/vcr_cassettes/non_existent_show.yml",
|
45
46
|
"spec/support/vcr_cassettes/shows.yml",
|
46
47
|
"spec/support/vcr_cassettes/special_victims_unit.yml",
|
47
|
-
"spec/support/vcr_cassettes/terra_nova.yml"
|
48
|
+
"spec/support/vcr_cassettes/terra_nova.yml",
|
49
|
+
"spec/support/vcr_cassettes/white_collar.yml"
|
48
50
|
]
|
49
51
|
s.homepage = "http://github.com/CraigWilliams/hulu-show"
|
50
52
|
s.licenses = ["BSD"]
|
data/lib/hulu/show.rb
CHANGED
@@ -35,15 +35,15 @@ class Hulu::Show < Hulu::Base
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def error_404?
|
38
|
-
error = @doc.css('.fixed-lg .section .gr').text.strip
|
38
|
+
error = @doc.css('.fixed-lg .section .gr').text.strip rescue ''
|
39
39
|
error =~ /404/ ? true : false
|
40
40
|
end
|
41
41
|
|
42
42
|
def parse_show_details
|
43
43
|
details = @doc.css(".fixed-lg.container .section.details .relative .info")
|
44
|
-
@network = details[0].text.strip
|
45
|
-
@genre = details[2].text.split('|').first.gsub(/\302\240/, ' ').strip
|
46
|
-
@description = details[3].text.strip
|
44
|
+
@network = details[0].text.strip rescue ''
|
45
|
+
@genre = details[2].text.split('|').first.gsub(/\302\240/, ' ').strip rescue ''
|
46
|
+
@description = details[3].text.strip rescue ''
|
47
47
|
end
|
48
48
|
|
49
49
|
def parse_episodes
|
data/lib/hulu/show/episode.rb
CHANGED
@@ -9,7 +9,8 @@ class Hulu::Episode < Hulu::Base
|
|
9
9
|
:thumbnail_url,
|
10
10
|
:embed_html,
|
11
11
|
:description,
|
12
|
-
:show_title
|
12
|
+
:show_title,
|
13
|
+
:coming_soon
|
13
14
|
|
14
15
|
def initialize(show_title = '')
|
15
16
|
self.show_title = show_title
|
@@ -42,11 +43,12 @@ class Hulu::Episode < Hulu::Base
|
|
42
43
|
end
|
43
44
|
|
44
45
|
def process(season, episode)
|
45
|
-
@season
|
46
|
-
@episode
|
47
|
-
@title
|
48
|
-
@
|
49
|
-
@
|
46
|
+
@season = season.scan(/\d+/).first
|
47
|
+
@episode = episode.css('td.c0').text.strip rescue ''
|
48
|
+
@title = episode.css('td.c1 a').text.strip rescue ''
|
49
|
+
@coming_soon = parse_coming_soon(episode)
|
50
|
+
@url = episode.css('td.c1 .vex-h a').last.attr('href').strip rescue ''
|
51
|
+
@beaconid = episode.css('td.c1 .vex-h a').last.attr('beaconid').strip rescue ''
|
50
52
|
|
51
53
|
parse_running_time(episode)
|
52
54
|
end
|
@@ -63,6 +65,18 @@ class Hulu::Episode < Hulu::Base
|
|
63
65
|
end
|
64
66
|
end
|
65
67
|
|
68
|
+
def parse_coming_soon(episode)
|
69
|
+
cs = episode.css('td.c1 .vex-h a').first.css('img').attr('alt').value.strip rescue false
|
70
|
+
cs ? true : false
|
71
|
+
end
|
72
|
+
|
73
|
+
def parse_coming_soon_date
|
74
|
+
# In order to accomplish this, the episode will need access to
|
75
|
+
# the entire html document
|
76
|
+
# The following will get the available date on Hulu
|
77
|
+
# ("#episode-container .coming-soon span").first.text
|
78
|
+
end
|
79
|
+
|
66
80
|
def additional_attributes
|
67
81
|
url = "http://www.hulu.com/api/oembed.json?url=http://www.hulu.com/watch/#{@beaconid}/#{Hulu::Base.prepare_name(@title)}"
|
68
82
|
Hulu::Fetcher::Page.get(url).parsed_response
|
@@ -80,7 +94,8 @@ class Hulu::Episode < Hulu::Base
|
|
80
94
|
beaconid: beaconid,
|
81
95
|
thumbnail_url: thumbnail_url,
|
82
96
|
embed_html: embed_html,
|
83
|
-
description: description
|
97
|
+
description: description,
|
98
|
+
coming_soon: coming_soon
|
84
99
|
}
|
85
100
|
end
|
86
101
|
end
|
data/spec/hulu/show_spec.rb
CHANGED
@@ -6,7 +6,7 @@ require 'spec_helper'
|
|
6
6
|
|
7
7
|
describe Hulu::Show do
|
8
8
|
|
9
|
-
let(:additional_attributes) {
|
9
|
+
let(:additional_attributes) {
|
10
10
|
{
|
11
11
|
"thumbnail_width" => 145,
|
12
12
|
"type" => "video",
|
@@ -28,9 +28,9 @@ describe Hulu::Show do
|
|
28
28
|
}
|
29
29
|
|
30
30
|
context "When show is found" do
|
31
|
-
let(:burn_notice_erb) {
|
31
|
+
let(:burn_notice_erb) {
|
32
32
|
{
|
33
|
-
title: 'Burn baby burn',
|
33
|
+
title: 'Burn baby burn',
|
34
34
|
running_time: '43:09',
|
35
35
|
air_date: '11/03/2011',
|
36
36
|
episode: '13',
|
@@ -96,7 +96,7 @@ describe Hulu::Show do
|
|
96
96
|
end
|
97
97
|
|
98
98
|
context "When Terra Nova" do
|
99
|
-
before do
|
99
|
+
before do
|
100
100
|
Hulu::Episode.any_instance.stub(:additional_attributes).and_return(additional_attributes)
|
101
101
|
Hulu::Episode.any_instance.stub(:fetch_description).and_return("No mans land")
|
102
102
|
|
@@ -116,11 +116,12 @@ describe Hulu::Show do
|
|
116
116
|
episode.episode.should == '8'
|
117
117
|
episode.season.should == '1'
|
118
118
|
episode.url.should == "http://www.hulu.com/watch/302363/terra-nova-vs#x-0,vepisode,1,0"
|
119
|
+
episode.coming_soon.should == true
|
119
120
|
end
|
120
121
|
end
|
121
122
|
|
122
123
|
context "Show name has special characters" do
|
123
|
-
before do
|
124
|
+
before do
|
124
125
|
Hulu::Episode.any_instance.stub(:additional_attributes).and_return(additional_attributes)
|
125
126
|
Hulu::Episode.any_instance.stub(:fetch_description).and_return("No mans land")
|
126
127
|
|
@@ -140,6 +141,55 @@ describe Hulu::Show do
|
|
140
141
|
episode.episode.should == '8'
|
141
142
|
episode.season.should == '13'
|
142
143
|
episode.url.should == "http://www.hulu.com/watch/300844/law-and-order-special-victims-unit-educated-guess#x-0,vepisode,1,0"
|
144
|
+
episode.coming_soon.should == false
|
143
145
|
end
|
144
146
|
end
|
147
|
+
|
148
|
+
context "Coming Soon - Dish Only" do
|
149
|
+
before do
|
150
|
+
Hulu::Episode.any_instance.stub(:additional_attributes).and_return(additional_attributes)
|
151
|
+
Hulu::Episode.any_instance.stub(:fetch_description).and_return("Enemy of My Enemy")
|
152
|
+
|
153
|
+
VCR.insert_cassette('fringe')
|
154
|
+
end
|
155
|
+
|
156
|
+
after { VCR.eject_cassette }
|
157
|
+
|
158
|
+
it 'should know when its available' do
|
159
|
+
episodes = Hulu::Show.new('Fringe').episodes
|
160
|
+
episode = episodes.first
|
161
|
+
|
162
|
+
episode.beaconid.should == '321420'
|
163
|
+
episode.title.should == 'Enemy of My Enemy'
|
164
|
+
episode.running_time.should == '44:00'
|
165
|
+
episode.air_date.should == '01/20/2012'
|
166
|
+
episode.episode.should == '9'
|
167
|
+
episode.season.should == '4'
|
168
|
+
episode.url.should == "http://www.hulu.com/watch/321420/fringe-enemy-of-my-enemy?c=Science-Fiction#x-0,vepisode,1,0"
|
169
|
+
episode.coming_soon.should == true
|
170
|
+
end
|
171
|
+
|
172
|
+
it "#to_param" do
|
173
|
+
episodes = Hulu::Show.new('Fringe').episodes
|
174
|
+
episode = episodes.first
|
175
|
+
|
176
|
+
params = {
|
177
|
+
:show_title=>"Fringe",
|
178
|
+
:title=>"Enemy of My Enemy",
|
179
|
+
:episode=>"9",
|
180
|
+
:running_time=>"44:00",
|
181
|
+
:air_date=>"01/20/2012",
|
182
|
+
:season=>"4",
|
183
|
+
:url=>"http://www.hulu.com/watch/321420/fringe-enemy-of-my-enemy?c=Science-Fiction#x-0,vepisode,1,0",
|
184
|
+
:beaconid=>"321420",
|
185
|
+
:thumbnail_url=>"http://thumbnails.hulu.com/188/40038188/40038188_145x80_generated.jpg",
|
186
|
+
:embed_html=>"<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/Gp_eWf7PQr697Ol0j7OfEg\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/Gp_eWf7PQr697Ol0j7OfEg\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>",
|
187
|
+
:description=>nil,
|
188
|
+
:coming_soon=>true
|
189
|
+
}
|
190
|
+
|
191
|
+
episode.to_param.should == params
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
145
195
|
end
|
@@ -0,0 +1,2469 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://www.hulu.com:80/fringe
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
server:
|
14
|
+
- nginx
|
15
|
+
content-type:
|
16
|
+
- text/html; charset=utf-8
|
17
|
+
status:
|
18
|
+
- 200 OK
|
19
|
+
x-ua-compatible:
|
20
|
+
- IE=EmulateIE9; IE=EmulateIE7
|
21
|
+
ntcoent-length:
|
22
|
+
- '216027'
|
23
|
+
expires:
|
24
|
+
- Sun, 22 Jan 2012 18:37:16 GMT
|
25
|
+
cache-control:
|
26
|
+
- max-age=0, no-cache, no-store
|
27
|
+
pragma:
|
28
|
+
- no-cache
|
29
|
+
date:
|
30
|
+
- Sun, 22 Jan 2012 18:37:16 GMT
|
31
|
+
transfer-encoding:
|
32
|
+
- chunked
|
33
|
+
connection:
|
34
|
+
- Transfer-Encoding
|
35
|
+
body: ! "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html
|
36
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\" xmlns:media=\"http://search.yahoo.com/searchmonkey/media/\"
|
37
|
+
xmlns:fb=\"http://www.facebook.com/2008/fbml\">\n<head prefix=\"og: http://ogp.me/ns#
|
38
|
+
fb: http://ogp.me/ns/fb# video: http://ogp.me/ns/video#\">\n <title>Fringe
|
39
|
+
- Full Episodes and Clips streaming online - Hulu</title>\n \n <link rel=\"search\"
|
40
|
+
type=\"application/opensearchdescription+xml\" href=\"/opensearch.xml?v=May10\"
|
41
|
+
title=\"Hulu\"> \n \n <meta http-equiv=\"content-type\" content=\"text/html;
|
42
|
+
charset=UTF-8\" />\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE9;
|
43
|
+
IE=EmulateIE7\" />\n <link rel=\"shortcut icon\" href=\"/fat-favicon.ico\"
|
44
|
+
/>\n \n <meta name=\"application-name\" content=\"Hulu\"/>\n <meta name=\"msapplication-tooltip\"
|
45
|
+
content=\"Start Hulu with Internet Explorer 9 enhancements.\"/>\n <meta name=\"msapplication-starturl\"
|
46
|
+
content=\"http://www.hulu.com\"/>\n\n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/\n
|
47
|
+
\ var _startTime = (new Date).getTime();\n /*]]>*/</script>\n\n <meta name=\"keywords\"
|
48
|
+
content=\"Fringe TV Series, About Fringe, Videos on Fringe\"/><meta name=\"description\"
|
49
|
+
content=\"Fringe: From J.J. Abrams ('Lost'), Roberto Orci and Alex Kurtzman,
|
50
|
+
the team behind 'Star Trek,' 'Mission: Impossible III' and 'Alias,' comes a
|
51
|
+
new drama that will thrill, terrify and explore the blurring line between science
|
52
|
+
fiction and reality.When an international flight lands at Boston's Logan Airport
|
53
|
+
\"/>\n \n <meta property=\"fb:app_id\" content=\"40582213222\"/>\n\n <script
|
54
|
+
type=\"text/javascript\">\n//<![CDATA[\n\n var READ_ONLY = false;\n var
|
55
|
+
RAILS_ENV = \"production\";\n \n//]]>\n</script>\n\n <link href=\"http://static.huluim.com/system/hulu_b7e08454_1.css\"
|
56
|
+
media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n<link href=\"http://static.huluim.com/system/hulu_b7e08454_2.css\"
|
57
|
+
media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n <script src=\"http://static.huluim.com/system/hulu_917a9562_base_1.js\"
|
58
|
+
type=\"text/javascript\"></script>\n<script src=\"http://static.huluim.com/system/hulu_652092e0_1.js\"
|
59
|
+
type=\"text/javascript\"></script>\n\n <link class=\"mbf-only\" href=\"http://www.hulu.com/feed/recent/tv\"
|
60
|
+
rel=\"alternate\" title=\"Recently added tv (RSS)\" type=\"application/rss+xml\"
|
61
|
+
/>\n <link rel=\"home\" href=\"http://www.hulu.com\" />\n\n \n \n <meta
|
62
|
+
property=\"og:title\" content=\"Fringe\"/>\n <meta property=\"og:type\"
|
63
|
+
content=\"tv_show\"/>\n <meta property=\"og:image\" content=\"http://assets.huluim.com/shows/show_thumbnail_fringe.jpg\"/>\n
|
64
|
+
\ <meta property=\"og:site_name\" content=\"Hulu\"/>\n <meta property=\"og:description\"
|
65
|
+
content=\"From J.J. Abrams ("Lost"), Roberto Orci and Alex Kurtzman,
|
66
|
+
the team behind "Star Trek," "Mission: Impossible III" and
|
67
|
+
"Alias," comes a new drama that will thrill, terrify and explore the
|
68
|
+
blurring line between science fiction and reality.\n\nWhen an international
|
69
|
+
flight lands at Boston's Logan Airport and the passengers and crew have all
|
70
|
+
died grisly deaths, FBI Special Agent Olivia Dunham (newcomer Anna Torv) is
|
71
|
+
called in to investigate. After her partner, Special Agent John Scott (Mark
|
72
|
+
Valley, "Boston Legal"), is nearly killed during the investigation,
|
73
|
+
a desperate Olivia searches frantically for someone to help, leading her to
|
74
|
+
Dr. Walter Bishop (John Noble, "Lord of the Rings: Return of the King"),
|
75
|
+
our generation's Einstein. There's only one catch: he's been institutionalized
|
76
|
+
for the last 20 years, and the only way to question him requires pulling his
|
77
|
+
estranged son Peter (Joshua Jackson, "Dawson's Creek") in to help.
|
78
|
+
\n\nWhen Olivia's investigation leads her to manipulative corporate executive
|
79
|
+
Nina Sharp (Blair Brown, "Altered States"), our unlikely trio along
|
80
|
+
with fellow FBI Agents Phillip Broyles (Lance Reddick, "The Wire"),
|
81
|
+
Charlie Francis (Kirk Acevedo, "Oz") and Astrid Farnsworth (Jasika
|
82
|
+
Nicole, "Law & Order: Criminal Intent") will discover that what
|
83
|
+
happened on Flight 627 is only a small piece of a larger, more shocking truth.\"/>\n
|
84
|
+
\ \n <meta property=\"og:url\" content=\"http://www.hulu.com/fringe\"/>\n
|
85
|
+
\ \n \n <style type=\"text/css\" media=\"screen\">\n #infinite-background,#headliner-background
|
86
|
+
{\n background: #222 url(http://assets.huluim.com/shows/background_art_fringe.jpg)
|
87
|
+
repeat-x scroll left top;\n }\n #headliner-background {\n text-align:
|
88
|
+
center;\n position:relative;\n }\n #show-page-bar {\n position:
|
89
|
+
relative;\n font-size: 12px;\n padding-top: 3px;\n padding-bottom:3px;\n
|
90
|
+
\ margin-bottom: 15px;\n text-align: center;\n background: #fafafa
|
91
|
+
url( \"/images/bg-show-bottom.gif\" ) bottom left repeat-x;\n\n }\n div.info
|
92
|
+
h1 { font-size:12px; }\n div.login-form form { display: inline; }\n #show-page-bar
|
93
|
+
h2 {\n position: absolute;\n width: 45%;\n top: 0;\n left:
|
94
|
+
0;\n }\n #show-page-bar a {\n margin-left: 12ex;\n margin-right:
|
95
|
+
12ex;\n font-weight: bold;\n font-size:11px;\n }\n .details-spacer
|
96
|
+
{ padding-left:10px;padding-right:10px; color:#666;}\n .description { padding-top:5px;
|
97
|
+
}\n\n div.show-bar {\n background: url(/images/showbar-bg.gif?cb=1)
|
98
|
+
repeat-x scroll 0 0 transparent;\n min-height: 28px;\n height: auto
|
99
|
+
!important;\n margin-bottom: 40px;\n }\n\n div.show-bar div.share-links
|
100
|
+
a img {\n float: left;\n }\n\n div.subscription-links {\n position:
|
101
|
+
relative;\n }\n\n div.subscription-links div {\n position: relative;\n
|
102
|
+
\ }\n\n div.subscription-links span {\n color:#FFF;\n font-weight:
|
103
|
+
bold;\n font-size: 11px;\n height: 22px;\n }\n\n div.subscription-links
|
104
|
+
span.video-rating {\n display: block;\n }\n\n div.subscription-links
|
105
|
+
span.video-rating span {\n display: block;\n width: 16px;\n margin-left:
|
106
|
+
6px;\n vertical-align: middle;\n float: left;\n }\n\n div.subscription-links
|
107
|
+
span.video-rating img.star {\n margin-top: 5px;\n float: left;\n }\n\n
|
108
|
+
\ div.subscription-links span img.subscribe-image {\n margin-right: 3px;\n
|
109
|
+
\ }\n\n\n div.subscription-links a.small-subscription {\n background:
|
110
|
+
url(/images/showbar-subscribe.gif) no-repeat scroll 0 0 transparent;\n color:
|
111
|
+
#FFFFFF;\n font-weight: bold;\n font-size: 11px;\n }\n div.subscription-links
|
112
|
+
a.small-subscription:hover {\n background: url(/images/showbar-subscribe-hover.gif)
|
113
|
+
no-repeat scroll 0 0 transparent;\n color: #99cc33;\n text-decoration:
|
114
|
+
none;\n }\n\n div.rate-and-subscribe ul {\n margin: 0;\n }\n\n
|
115
|
+
\ div.rate-and-subscribe ul li {\n float: left;\n display: block;\n
|
116
|
+
\ height: 22px;\n line-height: 22px;\n margin: 0;\n padding:
|
117
|
+
0;\n }\n\n #iicd-breadcrumb {\n margin: -20px 0 10px 0;\n }\n\n
|
118
|
+
\ #show-play-button {\n height:96px;\n left:407px;\n position:absolute;\n
|
119
|
+
\ top:124px;\n width:96px;\n z-index:10;\n }\n #live-container
|
120
|
+
{\n text-align:center;\n color:#444;\n font-size: 14px;\n font-weight:
|
121
|
+
bold;\n margin-top:18px;\n }\n #live-container a {\n color:#5588bb;\n
|
122
|
+
\ }\n #live-container a:hover {\n color:#5588bb;\n text-decoration:underline;\n
|
123
|
+
\ }\n \n .related-links a, .tweets-container a.from_user {\n font-weight:
|
124
|
+
normal;\n color: #5588bb;\n }\n .related-links a:hover, .tweets-container
|
125
|
+
a.from_user:hover { text-decoration: underline; }\n \n .related-links
|
126
|
+
a.logo {\n float: left;\n width: 70px;\n }\n \n .related-links
|
127
|
+
span {\n display: block;\n margin-left: 70px;\n }\n \n .related-links
|
128
|
+
.relative div { margin-bottom: 10px; }\n \n div.share-links {\n font-size:
|
129
|
+
11px;\n font-weight: bold;\n line-height: 22px;\n text-align:
|
130
|
+
right;\n } \n \n div.share-label {\n vertical-align: top;\n
|
131
|
+
\ color: #535353;\n padding-right: 0px;\n float: left;\n }\n
|
132
|
+
\ \n .fb-like-button {\n \tbackground: url(/images/fb-like-shim.gif)
|
133
|
+
no-repeat scroll 0 0 transparent;\n \twidth: 74px; \n \tfloat: left; \n
|
134
|
+
\ \tdisplay: block; \n \tpadding-left: 8px;\n }\n\n #twitter-container
|
135
|
+
.related-links a { font-size: 11px; }\n \n .tweets-container {\n border:
|
136
|
+
1px solid #999; \n padding: 2px 10px;\n margin: 3px 0px 40px;\n }\n
|
137
|
+
\ \n #tweetbox-container a {\n float: right;\n width: 80px;\n
|
138
|
+
\ height: 20px;\n border: 1px solid #999;\n text-align: center;\n
|
139
|
+
\ margin-left: 12px;\n }\n \n #tweetbox-container span {\n float:
|
140
|
+
right;\n width: 40px;\n color: #333;\n font-size: 14px;\n font-weight:
|
141
|
+
bold;\n text-align: right;\n color: #69B521;\n margin-top: 1px;\n
|
142
|
+
\ }\n \n #tweetbox-container a.disabled {\n cursor: default;\n
|
143
|
+
\ }\n \n #tweetbox {\n width: 418px;\n height: 75px;\n padding:
|
144
|
+
4px 10px;\n margin-bottom: 13px;\n font-size: 100%;\n }\n \n
|
145
|
+
\ #tweetbox-container textarea.unfocused {\n color: #888;\n height:
|
146
|
+
19px;\n }\n \n .tweets-container ul { margin: 0px; }\n .tweets-container
|
147
|
+
li {\n display: block;\n border-bottom: 1px solid #eee;\n padding:
|
148
|
+
3px 0px 12px;\n word-wrap: break-word;\n }\n .tweets-container li
|
149
|
+
span {\n display: block;\n color: #ccc;\n }\n .tweets-container
|
150
|
+
li.last {\n border: none;\n padding-bottom: 6px;\n }\n div.sponsorship
|
151
|
+
{\n z-index: 90;\n position: absolute;\n left: 685px;\n top:
|
152
|
+
288px;\n \n }\n div#sponsorship-caption {\n font-family: \"Helvetica\",
|
153
|
+
\"Arial\", \"Verdana\", sans-serif;\n font-size: 13px;\n font-weight:
|
154
|
+
500;\n color: #666666\n }\n </style>\n <script type=\"text/javascript\"
|
155
|
+
charset=\"utf-8\">/*![CDATA[*/\n Behaviors.in_show_page = true;\n\n \n
|
156
|
+
\ Tag.Taggable = {\n id : 1241,\n type : \"Show\"\n }\n var
|
157
|
+
url_for_tagged_tags = \"/taggings/user_taggings?\" +\n \"taggable_id=1241&\"
|
158
|
+
+\n \"taggable_type=Show&\" + \n \"show_id=1241\" ;\n var LoggedIn
|
159
|
+
= null; \n function setLoggedOut(){\n try{\n $('recommend-login-prompt').innerHTML
|
160
|
+
= \"<a href=\\\"#\\\" onclick=\\\"FloatingLoginForm.showTop(this.up()); return
|
161
|
+
false;\\\">Log in</a>\" + \" for personalized recommendations. \" +\n \"Don't
|
162
|
+
have an account? \" + \"<a href=\\\"/signup\\\">Sign up</a>\" + \" now.\";\n
|
163
|
+
\ if (LoggedIn != false) {\n var obj_css_id = $('related-container').down('.vsl').identify();\n
|
164
|
+
\ var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n if(obj
|
165
|
+
&& !obj.is_first_load) {\n obj._rTracking = new RecommendTracking();\n
|
166
|
+
\ obj.repopulate();\n }\n LoggedIn = false;\n }
|
167
|
+
\n Tag.ClearTagged();\n return;\n } catch(ex) {\n return;\n
|
168
|
+
\ }\n }\n function setLoggedIn(){\n try {\n $('recommend-login-prompt').innerHTML
|
169
|
+
= \"Click here to \" +\n \"<a href=\\\"/recommendations?check_out_show=1241\\\">see
|
170
|
+
all recommendations</a>\" + \n \". \" + \n \"If you are not
|
171
|
+
\" + \n Behaviors.getUsername().escapeHTML() + \", \" + \"<a href=\\\"#\\\"
|
172
|
+
onclick=\\\"new Ajax.Request('/logout', {asynchronous:true, evalScripts:true,
|
173
|
+
onComplete:function(request){Behaviors.setLoggedOut(true)}}); return false;\\\">click
|
174
|
+
here</a>\" + \".\" ;\n if (LoggedIn != true) {\n var obj_css_id
|
175
|
+
= $('related-container').down('.vsl').identify();\n var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n
|
176
|
+
\ if(obj && !obj.is_first_load) {\n obj._rTracking = new
|
177
|
+
RecommendTracking();\n obj.repopulate();\n }\n LoggedIn
|
178
|
+
= true;\n }\n Tag.LoadTagged(url_for_tagged_tags) ;\n return;\n
|
179
|
+
\ } catch(ex) {\n return;\n }\n }\n /*]]>*/</script>\n <script>\n
|
180
|
+
\ function anchorToShowExpander(){\n var url = window.location.href;\n
|
181
|
+
\ if (url.split(\"#\")[1] == \"show_expander\"){\n if ($('show-expander')){\n
|
182
|
+
\ $('show-expander').scrollTo(); \n }\n }\n anchorToCategory();\n
|
183
|
+
\ }\n function anchorToCategory(){\n var url = window.location.href;\n
|
184
|
+
\ var category = url.split(\"#\")[1];\n if(category){\n category
|
185
|
+
= unescape(category.toUpperCase());\n for(var i=0; i < $$(\"h2\").size();
|
186
|
+
i++){\n var h2 = $$(\"h2\")[i];\n if(h2.textContent.toUpperCase().include(category)){\n
|
187
|
+
\ h2.scrollTo();\n break;\n } \n
|
188
|
+
\ }\n }\n }\n </script>\n\n\n <script type=\"text/javascript\"
|
189
|
+
charset=\"utf-8\">/*<![CDATA[*/\n if (typeof(TestGTM) != \"undefined\") TestGTM.run();\n
|
190
|
+
\ \n //initialize beacons\n Beacon.production = true;\n //Beacon.region_prefix
|
191
|
+
= ;\n\n document.observe(\"dom:loaded\", function() {\n if (/\\.facebook\\.com/.test(top.location.hostname))
|
192
|
+
return;\n if (top.location != location) {\n top.location.href =
|
193
|
+
document.location.href;\n }\n });\n \n document.observe(\"dom:loaded\",
|
194
|
+
function() {\n Beacon.trackPageLoad(); //fire the page load beacon\n Beacon.init();
|
195
|
+
//we can get rid of this once we rewrite the beacons\n });\n\n function
|
196
|
+
setFs(value){\n TrackingUtility.setCookie(\"fs\", value, -1);\n }\n
|
197
|
+
\ function getFs(key){\n var fs = $(key);\n if (fs) {\n fs.value
|
198
|
+
= TrackingUtility.getCookie(\"fs\");\n }\n }\n function getSt(key){\n
|
199
|
+
\ var st = $(key);\n if (st){\n if (Math.random() < 0.2){\n
|
200
|
+
\ st.value = 1;\n } else {\n st.value = 0;\n }\n
|
201
|
+
\ }\n }\n\n \n\n var ie9 = new PinnedSite();\n (function()
|
202
|
+
{\n var loader = function() {\n Behaviors.getCramSwf(); //pre-load
|
203
|
+
the cram swf\n ie9.SetupGA();\n MobileDevice.onLoad();\n Behaviors.onLoad();\n
|
204
|
+
\ Behaviors.setLoggedIn();\n Login.setup();\n ie9.Initialize();\n
|
205
|
+
\ Tracking.track_ga_event_from_cram();\n BookmarkTracking.trackFromCram()
|
206
|
+
;\n };\n\n if (MobileDevice.flags.useWindowLoad) {\n Event.observe(window,
|
207
|
+
\"load\", loader);\n }\n else {\n document.observe(\"dom:loaded\",
|
208
|
+
loader);\n }\n\n Event.observe(document, \"fb:init\", function() {\n
|
209
|
+
\ Social.Facebook.onFBinit();\n });\n })();\n Login.auth
|
210
|
+
= function(login, password, stay_logged_in, from) { if (Prototype.Browser.IE
|
211
|
+
&& from != 'facebook-popup') { /* Sorry, IE users... */ Login.heavyFormAuth(login,
|
212
|
+
password, stay_logged_in, \"https://secure.hulu.com/account/authenticate\");
|
213
|
+
return; } document.cookie = 'login=' + encodeURIComponent(login) + '; path=/account/authenticate;
|
214
|
+
secure; domain=.hulu.com'; document.cookie = 'password=' + encodeURIComponent(password)
|
215
|
+
+ '; path=/account/authenticate; secure; domain=.hulu.com'; if (stay_logged_in)
|
216
|
+
document.cookie = 'sli=1; path=/account/authenticate; secure; domain=.hulu.com';
|
217
|
+
else document.cookie = 'sli=0; path=/account/authenticate; secure; domain=.hulu.com';
|
218
|
+
el = $$('body').first(); if (el) { var script = document.createElement('script');
|
219
|
+
script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
|
220
|
+
+ '?' + parseInt(Math.random() * 1000000000); if (typeof(from) != 'undefined')
|
221
|
+
{ script.src += \"&from=\" + encodeURIComponent(from); } el.appendChild(script);
|
222
|
+
} }; Social.Facebook.submitSettings = function(options) { document.cookie =
|
223
|
+
'fb_passwd=' + encodeURIComponent(options.password) + '; ; secure; domain=.hulu.com;
|
224
|
+
path=/social;'; document.cookie = 'fb_passwd_c=' + encodeURIComponent(options.confirm_password)
|
225
|
+
+ '; ; secure; domain=.hulu.com; path=/social;'; Behaviors.setSecureFBCookie(\"secure.hulu.com\");
|
226
|
+
var el = $$('body').first(); if (el) { var url = \"https://secure.hulu.com/social/facebook_new_account\";
|
227
|
+
var connect_canvas_only_url = \"https://secure.hulu.com/social/convert_canvas_only_user\";
|
228
|
+
if (options.action == 'connect_canvas') { url = connect_canvas_only_url; } url
|
229
|
+
+= '?fuid=' + encodeURIComponent(options.fuid) + '&cb=' + (new Date).getTime();
|
230
|
+
if (options.email) { url += \"&email=\" + encodeURIComponent(options.email);
|
231
|
+
} if (options.gender) { url += \"&gender=\" + encodeURIComponent(options.gender);
|
232
|
+
} if (options.birth_date) { url += \"&birth_date=\" + encodeURIComponent(options.birth_date);
|
233
|
+
} if (options.privacy_level) { url += \"&privacy_level=\" + encodeURIComponent(options.privacy_level);
|
234
|
+
} var script = document.createElement('script'); script.type = 'text/javascript';
|
235
|
+
script.src = url; el.appendChild(script); } }; Login.accept_privacy = function()
|
236
|
+
{ el = $$('body').first(); if (el) { var script = document.createElement('script');
|
237
|
+
script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
|
238
|
+
+ '?privacy_acceptance=1&' + parseInt(Math.random() * 1000000000); el.appendChild(script);
|
239
|
+
} };\n /*]]>*/</script>\n \n <!--[if IE]>\n <script type=\"text/javascript\"
|
240
|
+
event=\"FSCommand(command,args)\" for=\"vcs\">\n vcs_DoFSCommand(command,
|
241
|
+
args);\n </script>\n <![endif]-->\n \n <script src=\"http://www.google-analytics.com/ga.js\"
|
242
|
+
type=\"text/javascript\"></script><script type=\"text/javascript\">\n//<![CDATA[\n
|
243
|
+
var _pt = (function(gat) { if (typeof(gat) == \"undefined\" || !gat) return
|
244
|
+
null; var pt = gat._getTracker(\"UA-1384159-3\"); pt._setDomainName(\".hulu.com\");
|
245
|
+
pt._setAllowHash(false); var seg_status = Behaviors.isLoggedIn() ? (Behaviors.isPlusUser()
|
246
|
+
? \"plus\" : \"loggedin\") : \"anonymous\"; var removePrefix = /^.*\\.(.*)/.exec(Behaviors.getCookie(\"__utmv\"));
|
247
|
+
if (removePrefix && removePrefix[1]) { if (removePrefix[1] != seg_status) {
|
248
|
+
pt._setVar(seg_status); } } else { pt._setVar(seg_status); } if (/^\\/plus\\/signup/.test(window.location.pathname))
|
249
|
+
{ pt._trackPageview(\"/plus/signup\"); } else { pt._trackPageview(); } pt._trackPageLoadTime();
|
250
|
+
return pt; })(_gat); \n//]]>\n</script>\n</head>\n\n<body class=\"center\">\n
|
251
|
+
\ \n <div id=\"fb-root\"></div>\n <script type=\"text/javascript\">//<![CDATA[\n
|
252
|
+
\ window.fbAsyncInit = function() {\n FB.init({appId: '40582213222',
|
253
|
+
status: true, cookie: true, xfbml: true, channelUrl: \"http://www.hulu.com/fb_channel.html\",
|
254
|
+
oauth: true});\n if (Social.Common.fbDefined()) {\n FB.Event.subscribe('auth.login',
|
255
|
+
function(response) {\n Social.Facebook.loginCallback(response);\n
|
256
|
+
\ });\n FB.Event.subscribe('auth.logout', function(response)
|
257
|
+
{\n Social.Facebook.logoutCallback(response);\n });\n
|
258
|
+
\ }\n // call the api to parse XFBML tags again to avoid browser
|
259
|
+
specific issue (Firefox 3.5.5 on Mac reported by Betina)\n FB.XFBML.parse();\n
|
260
|
+
\ \n FB.Event.subscribe('edge.create', function(response) {\n
|
261
|
+
\ Behaviors.onFBLiked(response);\n });\n document.fire(\"fb:init\");\n
|
262
|
+
\ };\n\n function facebook_init() {\n // Sorry IE: http://bugs.developers.facebook.net/show_bug.cgi?id=9777\n
|
263
|
+
\ if (!Behaviors.isFlashEnabled() && Prototype.Browser.IE) return;\n\n
|
264
|
+
\ var e = document.createElement('script');\n e.async = true;\n
|
265
|
+
\ e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';\n
|
266
|
+
\ document.getElementById('fb-root').appendChild(e);\n };\n\n
|
267
|
+
\ Event.observe(window, \"load\", facebook_init); \n //]]></script>\n
|
268
|
+
\ \n <!--[if lte IE 6]> \n<div id=\"no-ie6\" class=\"relative container\"
|
269
|
+
style=\"text-align: left; height: 40px; background-color: #CFCFCF; display:none;\">\n
|
270
|
+
\ <div style=\"font-size: 14px; padding: 12px 0 8px 0;\" class=\"container
|
271
|
+
fixed-lg\">\n <img alt=\"Icon-ie6-close\" src=\"http://static.huluim.com/images/icon-ie6-close.png?1007151874\"
|
272
|
+
style=\"margin-left: 86px; vertical-align: middle;\" />\n <span style=\"margin-left:
|
273
|
+
20px; vertical-align: middle;\">\n Internet Explorer 6.0 is no longer
|
274
|
+
a supported browser. Please click <a href=\"http://www.hulu.com/support\">here</a>
|
275
|
+
for our system requirements.\n </span>\n <span style=\"margin-left:
|
276
|
+
20px;\">\n <a alt=\"Close this notice\" href=\"#\" onclick=\"Behaviors.hideIE6();;
|
277
|
+
return false;\"><img alt=\"Close this notice\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
|
278
|
+
style=\"vertical-align: middle;\" /></a>\n </span>\n </div>\n</div>\n\n<script
|
279
|
+
type=\"text/javascript\">\n//<![CDATA[\nBehaviors.showIE6();\n//]]>\n</script>\n<![endif]-->\n\n
|
280
|
+
\ <div class=\"relative container plus-hold-banner\" id=\"plus-hold-banner\"
|
281
|
+
style=\"display:none\">\n</div>\n\n <div id=\"delayed-js-container\"></div>\n
|
282
|
+
\ \n <div id=\"vc\"></div>\n \n <div class=\"fixed-lg relative\" id=\"container\"
|
283
|
+
style=\"z-index:98;position:relative;\">\n <div class=\"section top\">\n <div
|
284
|
+
class=\"standard tidy\">\n <ul id=\"logged-in-nav\" class=\"usernav\" style=\"display:none\">\n
|
285
|
+
\ <li class=\"first\">\n <span style=\"position:relative;\">\n
|
286
|
+
\ <span id=\"profile-drop-down-span\">\n <img alt=\"[!]\"
|
287
|
+
id=\"hold-icon\" src=\"http://static.huluim.com/images/icon-orange-alert.gif?990053788\"
|
288
|
+
style=\"display:none\" title=\"There are problems with your subscription.\"
|
289
|
+
/>\n Welcome <a href=\"javascript:void(0);\" class=\"profile-drop-down-link
|
290
|
+
utility-link\" id=\"user-greeting\">User</a>\n </span>\n <div
|
291
|
+
id=\"profile-drop-down-placeholder\" style=\"position:absolute; height:12px;
|
292
|
+
top:12px; width:10px; left:0px;\"></div>\n <div class=\"profile-drop-down\"
|
293
|
+
style=\"display:none;\">\n <ul>\n <li><a href=\"/inbox\"
|
294
|
+
id=\"inbox-link\">Inbox</a></li>\n <li><a href=\"/profile/profile\">Profile</a></li>\n
|
295
|
+
\ <li><a href=\"/profile/activity_feed\">Community</a></li>\n
|
296
|
+
\ <li><a href=\"/profile/queue\">Content</a></li>\n <li><a
|
297
|
+
href=\"/profile/settings\">Privacy & Settings</a></li>\n \t\t<li><a href=\"/profile/ad_tailor?src=account-dropdown\">Ad
|
298
|
+
Tailor</a></li>\n <li><a href=\"/help\">Help</a></li>\n <li><a
|
299
|
+
class=\"utility-link\" href=\"#\" id=\"top-nav-sign-out\" onclick=\"Behaviors.logoutFromTop();;
|
300
|
+
return false;\">Log Out</a></li>\n </ul>\n </div>\n
|
301
|
+
\ <div class=\"profile-drop-down-pointer\" style=\"display:none; background-image:url('/images/profile_dropdown_pointer.png');
|
302
|
+
background-position:0 0px;\"></div>\n </span>\n </li>\n \n
|
303
|
+
\ <li>\n <a href=\"/profile\" class=\"utility-link\">Account</a>\n
|
304
|
+
\ </li>\n \n <li>\n <a href=\"http://www.hulu.com/profile/queue\"
|
305
|
+
class=\"utility-link queue-count\" id=\"your-queue-link\">Queue</a>\n </li>\n
|
306
|
+
\ \n \n </ul>\n\n <ul id=\"logged-out-nav\" class=\"usernav\"
|
307
|
+
style=\"display:none\">\n <li class=\"first\">\n <a class=\"utility-link\"
|
308
|
+
href=\"#\" id=\"login-link\" onclick=\"FloatingLoginForm.showTop(this); return
|
309
|
+
false;\">Log In</a>\n </li>\n \n <li class=\"signin-border-left\">\n
|
310
|
+
\ <a href=\"http://www.hulu.com/users/find_account\" class=\"utility-link\">Forgot
|
311
|
+
Password?</a>\n </li>\n \n <li class=\"signin-border-left\">\n
|
312
|
+
\ <a href=\"http://www.hulu.com/signup\" class=\"utility-link\">Sign
|
313
|
+
Up</a>\n </li>\n \n \n </ul>\n\n <noscript>\n
|
314
|
+
\ <ul class=\"nojs usernav\">\n <li>\n Please <a href=\"/support/login_faq#cant_login\">enable
|
315
|
+
javascript</a> to log in.\n </li>\n </ul>\n </noscript>\n\n
|
316
|
+
\ \n \n <ul class=\"nv\"><li class=\"first\" style=\"\" id=\"home\"><a
|
317
|
+
href=\"http://www.hulu.com/?src=topnav\" rel=\"home\"><img alt=\"Hulu\" border=\"0\"
|
318
|
+
height=\"42\" id=\"main-hulu-logo\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
|
319
|
+
title=\"Hulu\" width=\"97\" /></a></li><li class=\"\" id=\"tv\"><a href=\"http://www.hulu.com/tv?src=topnav\"><img
|
320
|
+
alt=\"TV\" border=\"0\" height=\"42\" src=\"http://static.huluim.com/images/tab-active-tv.gif?1004936090\"
|
321
|
+
title=\"TV\" width=\"94\" /></a></li><li class=\"\" id=\"movies\"><a href=\"http://www.hulu.com/movies?src=topnav\"><img
|
322
|
+
alt=\"Movies\" border=\"0\" class=\"hover-me\" id=\"tab-movies.gif132725435868898\"
|
323
|
+
src=\"http://static.huluim.com/images/tab-movies.gif?996649533\" title=\"Movies\"
|
324
|
+
/></a></li><li class=\"\" id=\"huluplus\"><a href=\"http://www.hulu.com/plus-?src=topnav\"><img
|
325
|
+
alt=\"More TV. On more devices.\" border=\"0\" class=\"hover-me\" id=\"tab-huluplus.gif132725435868949\"
|
326
|
+
src=\"http://static.huluim.com/images/tab-huluplus.gif?1034071429\" title=\"More
|
327
|
+
TV. On more devices.\" /></a></li></ul>\n \n </div>\n </div>\n</div>\n\n<div
|
328
|
+
id=\"header-search-auto-complete\"></div>\n\n<div class=\"fluid bar\" id=\"top-sec-nv\"
|
329
|
+
style=\"\">\n <div class=\"fixed-lg container\" style=\"position:relative\">\n
|
330
|
+
\ <ul class=\"snv tv\"><li id=\"snv-browse-tv\"><a href=\"http://www.hulu.com/browse/tv?src=topnav\"
|
331
|
+
class=\"menu-top\"><div alt=\"Browse TV\" class=\"css-sprite subnav-browsetv
|
332
|
+
css-hover-me\"></div></a><div class=\"nav-menus long\" style=\"display:none;\">
|
333
|
+
<div class=\"liner\"></div> <div class=\"three-items\"> <h2 class=\"menu-item
|
334
|
+
first\"> <a href=\"http://www.hulu.com/browse/tv?src=topnav\" title=\"Alphabetical\">Alphabetical</a>
|
335
|
+
</h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/browse/network?src=topnav\"
|
336
|
+
title=\"By Network\">By Network</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/genres/tv?src=topnav\"
|
337
|
+
title=\"By Genre\">By Genre</a> </h2> </div><div class=\"more-items\"> <h2 class=\"menu-item\">
|
338
|
+
<a href=\"http://www.hulu.com/playlists?src=topnav\" title=\"Playlists\">Playlists</a>
|
339
|
+
</h2> </div></div></li><li id=\"snv-popular-shows\"><a href=\"http://www.hulu.com/popular/tv?src=topnav\"
|
340
|
+
class=\"menu-top\"><div alt=\"Popular Shows\" class=\"css-sprite subnav-mostpopular
|
341
|
+
css-hover-me\"></div></a><div class=\"nav-menus long\" style=\"display:none;\">
|
342
|
+
<div class=\"liner\"></div> <div class=\"three-items\"> <h2 class=\"menu-item
|
343
|
+
first\"> <a href=\"http://www.hulu.com/browse/popular/tv?src=topnav\" title=\"Shows\">Shows</a>
|
344
|
+
</h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/episodes?src=topnav\"
|
345
|
+
title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/clips?src=topnav\"
|
346
|
+
title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-recently-added\"><a
|
347
|
+
href=\"http://www.hulu.com/recent/tv?src=topnav\" class=\"menu-top\"><div alt=\"Recently
|
348
|
+
Added\" class=\"css-sprite subnav-recentlyadded css-hover-me\"></div></a><div
|
349
|
+
class=\"nav-menus long\" style=\"display:none;\"> <div class=\"liner\"></div>
|
350
|
+
<div class=\"three-items\"> <h2 class=\"menu-item first\"> <a href=\"http://www.hulu.com/browse/recent/tv?src=topnav\"
|
351
|
+
title=\"Shows\">Shows</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/episodes?src=topnav\"
|
352
|
+
title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/clips?src=topnav\"
|
353
|
+
title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-coming-soon\"><a
|
354
|
+
href=\"http://www.hulu.com/coming-soon?src=topnav\" class=\"menu-top\"><div
|
355
|
+
alt=\"Coming Soon\" class=\"css-sprite subnav-comingsoon css-hover-me\"></div></a></li><li
|
356
|
+
id=\"snv-favorites\"><a href=\"http://www.hulu.com/favorites?src=topnav\" class=\"menu-top\"><div
|
357
|
+
alt=\"Favorites\" class=\"css-sprite subnav-favorites css-hover-me\"></div></a><div
|
358
|
+
class=\"nav-menus fullwidth short requirelogin\" style=\"display:none;width:920px;left:-545px;height:129px;\">
|
359
|
+
<div class=\"liner\"></div> <div class='favorites-loading'></div> </div></li><li
|
360
|
+
id=\"snv-latino\"><a href=\"http://www.hulu.com/latino?src=topnav\" class=\"menu-top\"><div
|
361
|
+
alt=\"Latino\" class=\"css-sprite subnav-spanish css-hover-me\"></div></a></li></ul>
|
362
|
+
<script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/ pingImage('/images/subnav-menus-bg-3items.gif');
|
363
|
+
pingImage('/images/subnav-menus-liner.gif'); /*]]>*/</script> \n <div class=\"searchnav\">\n
|
364
|
+
\ <form name=\"search_form\" id=\"search_form\" action=\"http://www.hulu.com/search\"
|
365
|
+
method=\"get\" onsubmit=\"if((typeof stopSearchSubmit) != 'undefined') {return
|
366
|
+
false;} if(this.query.value == '') {return false;} getSt('st');getFs('fs');if(!$('header-search-auto-complete').visible()){SearchTracking.trackSearchForm('search_form')}\">\n
|
367
|
+
\ <input id=\"video_search_term\" style=\"margin-right:-3px;\" type=\"text\"
|
368
|
+
\ value=\"\" autocomplete=\"off\" name=\"query\"/>\n <a href=\"javascript:void(0)\"><img
|
369
|
+
alt=\"Search\" border=\"0\" class=\"hover-me\" id=\"top-nav-search-button\"
|
370
|
+
onclick=\"if($('search_form').query.value == '') {return false;} SearchTracking.trackSearchForm('search_form');
|
371
|
+
getSt('st');getFs('fs'); $('search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
|
372
|
+
title=\"Search\" /></a>\n <input type=\"hidden\" name=\"st\" id=\"st\"
|
373
|
+
/>\n <input type=\"hidden\" name=\"fs\" id=\"fs\" />\n </form>\n
|
374
|
+
\ </div>\n </div>\n</div>\n\n<script type=\"text/javascript\">//<![CDATA[\n
|
375
|
+
\ var search_query_auto_completer = new Ajax.HuluAutocompleter(\n 'video_search_term',\n
|
376
|
+
\ 'header-search-auto-complete',\n '/search/suggest_html',\n {\n onSelected
|
377
|
+
: function() {\n getSt('st');\n getFs('fs');\n $('search_form').submit();\n
|
378
|
+
\ },\n onSelectNone : function() {\n getSt('st');\n getFs('fs');\n
|
379
|
+
\ $('search_form').submit();\n SearchTracking.trackSearchForm('search_form');\n
|
380
|
+
\ },\n widthExpand : 54,\n parameters : getPageInfo(),\n method
|
381
|
+
: 'get'\n }\n );\n \n//]]></script>\n\n\n\n \n\n\n \n\n\n <script type=\"text/javascript\">Share.activity_data
|
382
|
+
= {\"item_id\":1241,\"item_type\":\"show\"}</script>\n <div id=\"email-share-popup\"
|
383
|
+
class=\"popup\" style=\"display: none;\">\n <div class=\"popup-bar\">\n <a
|
384
|
+
href=\"#\" onclick=\"$('email-share-popup').hide();; return false;\"><img alt=\"Popup-close\"
|
385
|
+
border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
386
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"share-content\">\n
|
387
|
+
\ \n <form action=\"/users/send_email_share\" id=\"email-share-form\" method=\"post\"
|
388
|
+
onsubmit=\"if(!Share.checkEmailShare(this)) return false;; new Ajax.Request('/users/send_email_share',
|
389
|
+
{asynchronous:true, evalScripts:true, onComplete:function(request){$('email-share-popup').down('img.loading').hide();},
|
390
|
+
onFailure:function(request){$('email-share-popup').down('span.error').update('Something
|
391
|
+
wrong, try again.');}, onSuccess:function(request){Share.afterEmailSent();},
|
392
|
+
parameters:Form.serialize(this)}); return false;\">\n <div style=\"font-weight:
|
393
|
+
bold;\">Share This Show</div>\n <span style=\"color: #444444;\">Email your
|
394
|
+
friends and let them know what you think.</span><br/>\n \n <input
|
395
|
+
type=\"hidden\" name=\"shared_id\" value=\"1241\" />\n <input type=\"hidden\"
|
396
|
+
name=\"shared_type\" value=\"show\" />\n <textarea id=\"email-addresses\"
|
397
|
+
name=\"addresses\" onfocus=\"if ('email address(es) - use a comma to separate.'
|
398
|
+
== value) value = ''; this.setStyle({color:'#000000'});\">email address(es)
|
399
|
+
- use a comma to separate.</textarea>\n\n \n \n \n\n <textarea
|
400
|
+
id=\"email-messages\" name=\"message\" onfocus=\"this.setStyle({color:'#000000'});\">Check
|
401
|
+
out Fringe on Hulu.</textarea>\n\n <span class=\"error\" style=\"display:none;\"></span>\n
|
402
|
+
\ <span class=\"success-msg\" style=\"display:none;\">\n <img alt=\"Icon-check\"
|
403
|
+
border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/icon-check.gif?1125927925\"
|
404
|
+
style=\"vertical-align: middle; margin-right: 5px;\" title=\"sent\" width=\"16\"
|
405
|
+
/>\n Message sent.\n </span>\n <div class=\"actions\" style=\"float:
|
406
|
+
right; margin-bottom: 15px;\">\n <div>\n <img alt=\"Loading-animated-circle\"
|
407
|
+
border=\"0\" class=\"loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
408
|
+
style=\"display: none; margin: 2px 5px 0 0; float: left;\" title=\"loading\"
|
409
|
+
width=\"16\" />\n <input alt=\"send email\" border=\"0\" class=\"hover-me\"
|
410
|
+
id=\"btn-send.gif132725435850531\" size=\"160x20\" src=\"http://static.huluim.com/images/btn-send.gif?1142158961\"
|
411
|
+
style=\"float: left;\" title=\"send email\" type=\"image\" />\n </div>\n
|
412
|
+
\ <br style=\"clear: both;\" />\n </div>\n <br style=\"clear:
|
413
|
+
both;\" />\n </form>\n </div>\n <div class=\"shw-top-right\"></div>\n <div
|
414
|
+
class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n <div
|
415
|
+
class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n</div>\n\n\n<div
|
416
|
+
id=\"overlay-bottom\" style=\"top:0px\" onclick=\"hideSearchPopup();\"></div>\n<div
|
417
|
+
class=\"fluid bg\" id=\"infinite-background\">\n <div class=\"fixed-lg container\">\n
|
418
|
+
\ <div class=\"section\">\n \n\n \n \n \n <div
|
419
|
+
class=\"relative\">\n \n<div class=\"sponsorship\">\n <div id=\"sponsorship-caption\">\n
|
420
|
+
\ <div id=\"sponsorship-container\"></div>\n </div>\n</div>\n<script type=\"text/javascript\"
|
421
|
+
charset=\"utf-8\">/*<![CDATA[*/\n (function() {\n var so = new SWFObject(\"/siteplacement.swf?v1\",
|
422
|
+
\"siteplacement\", 1, 1, \"1\");\n so.addParam(\"allowScriptAccess\", \"always\");\n
|
423
|
+
\ so.addParam(\"wmode\", \"transparent\");\n so.addParam(\"bgcolor\", \"#eeeeee\");\n
|
424
|
+
\ so.addParam(\"quality\", \"high\");\n so.addVariable(\"captionDivId\",
|
425
|
+
\"sponsorship-caption\");\n so.addVariable(\"embedId\", \"siteplacement\");\n
|
426
|
+
\ so.addVariable(\"env\", \"prod\");\n so.addVariable(\"pageUrl\",
|
427
|
+
window.location);\n so.addVariable(\"siteLocation\", \"/Show Page/fringe\");\n
|
428
|
+
\ VersionCheck.write(so, \"sponsorship-container\");\n })();\n/*]]>*/</script>\n\n
|
429
|
+
\ <div class=\"headliner\" onmouseover=\"Element.show('show-play-button');\"
|
430
|
+
onmouseout=\"Element.hide('show-play-button');\" id=\"headliner-background\">\n
|
431
|
+
\ <a href=\"http://www.hulu.com/watch/318897/fringe-back-to-where-youve-never-been\"><img
|
432
|
+
alt=\"Fringe\" border=\"0\" src=\"http://assets.huluim.com/shows/key_art_fringe.jpg\"
|
433
|
+
style=\"max-width: 920px;\" /></a>\n <a id=\"show-play-button\" style=\"display:none;\"
|
434
|
+
href=\"http://www.hulu.com/watch/318897/fringe-back-to-where-youve-never-been\">\n
|
435
|
+
\ <img height=\"102\" border=\"0\" width=\"106\" src=\"/images/btn-play-show.png\"/>\n
|
436
|
+
\ </a>\n </div>\n </div>\n \n \n\n </div>\n
|
437
|
+
\ </div>\n</div>\n<div class=\"fluid show-bar\">\n <div class=\"fixed-lg container
|
438
|
+
subscription-links\">\n <div>\n \n <div class=\"rate-and-subscribe\"
|
439
|
+
style=\"float: left;\">\n \n <ul>\n <li><img
|
440
|
+
alt=\"\" border=\"0\" height=\"28\" src=\"http://static.huluim.com/images/showbar-rate-this.gif?1100498242\"
|
441
|
+
width=\"79\" /></li>\n <li style=\"margin-left: 10px; padding-top:
|
442
|
+
2px;\"> <span id=\"rating-show-1241-showbar\" class=\"video-rating\"></span>\n
|
443
|
+
\ <script type=\"text/javascript\">\n new VideoRating(\n 'rating-show-1241-showbar',\n
|
444
|
+
\ 1241,\n 4.48066292519893,\n null,\n \"show\"\n
|
445
|
+
\ );\n </script>\n</li>\n \n <li>\n <div
|
446
|
+
style=\"color: #FFF; float: left; margin: 0px 20px 0px 10px;\"><img src=\"/images/showbar-rate-divider.gif\"></div>\n
|
447
|
+
\ <a class=\"showbar-subscription\" data-show-id=\"1241\" href=\"#\"
|
448
|
+
onclick=\"Subscription.toggle_popup(this, 'Fringe', 'fringe', '1241', true);
|
449
|
+
return false;\">add to favorites</a>\n </li>\n \n
|
450
|
+
\ </ul>\n \n </div>\n <div id=\"social_data\"
|
451
|
+
class=\"social-face-pile beaconregion\" beaconregion=\"show_page_footer\"></div>\n
|
452
|
+
\ \n </div>\n </div>\n</div>\n\n<div class=\"fixed-lg container\">\n
|
453
|
+
\ <div>\n \n </div>\n</div>\n\n<div id=\"show-and-watch-container\" style=\"position:
|
454
|
+
relative;*position:static !important;*position:static;\">\n <div class=\"fixed-lg
|
455
|
+
container\">\n <ul class=\"tab-container\" id=\"tab-container\" style=\"position:
|
456
|
+
relative;\"><li class=\"tab-selected\" id=\"tab-main\"><a href=\"#\"><img alt=\"Main\"
|
457
|
+
border=\"0\" class=\"hover-me\" height=\"28\" id=\"tab-main-img\" onclick=\"Tab.loadTab('main',
|
458
|
+
null, false, null); return false;\" src=\"http://static.huluim.com/images/tab-main-disabled.gif?1293982274\"
|
459
|
+
style=\"padding-right:2px;\" title=\"Main\" width=\"93\" /></a></li><li class=\"tab-unselected\"
|
460
|
+
id=\"tab-reviews\"><a href=\"#\"><img alt=\"Reviews\" border=\"0\" class=\"hover-me\"
|
461
|
+
height=\"28\" id=\"tab-reviews-img\" onclick=\"Tab.loadTab('reviews', "http://www.hulu.com/reviews/tab_load?reviewable_id=1241&reviewable_type=Show&show_id=1241",
|
462
|
+
false, null); return false;\" src=\"http://static.huluim.com/images/tab-reviews.gif?1314538723\"
|
463
|
+
style=\"padding-right:2px;\" title=\"Reviews\" width=\"93\" /></a></li><li class=\"tab-unselected\"
|
464
|
+
id=\"tab-forums\"><a href=\"#\"><img alt=\"Discussions\" border=\"0\" class=\"hover-me\"
|
465
|
+
height=\"28\" id=\"tab-forums-img\" onclick=\"Tab.loadTab('forums', "http://www.hulu.com/topics/tab_load?show_id=1241&topicable_id=1241&topicable_type=Show",
|
466
|
+
false, null); return false;\" src=\"http://static.huluim.com/images/tab-forums.gif?1315535690\"
|
467
|
+
style=\"padding-right:2px;\" title=\"Discussions\" width=\"93\" /></a></li><li
|
468
|
+
class=\"tab-unselected\" id=\"tab-tag\"><a href=\"#\"><img alt=\"Tag\" border=\"0\"
|
469
|
+
class=\"hover-me\" height=\"28\" id=\"tab-tag-img\" onclick=\"\n TagTracking.track('click_to_tab',
|
470
|
+
'tab', Tag.Taggable) ;\n Tab.loadTab('tag', "/taggings/tab_load?show_id=1241&taggable_id=1241&taggable_type=Show",
|
471
|
+
false, null); return false;\n \" src=\"http://static.huluim.com/images/tab-tag.gif?1111034483\"
|
472
|
+
style=\"padding-right:2px;\" title=\"Tag\" width=\"93\" /></a></li><li class=\"tab-unselected\"
|
473
|
+
id=\"tab-captions\"><a href=\"#\"><img alt=\"Captions\" border=\"0\" class=\"hover-me\"
|
474
|
+
height=\"28\" id=\"tab-captions-img\" onclick=\"Tab.loadTab('captions', "http://www.hulu.com/transcripts/tab_load?show_id=1241",
|
475
|
+
false, null); return false;\" src=\"http://static.huluim.com/images/tab-captions.gif?1085977942\"
|
476
|
+
style=\"padding-right:2px;\" title=\"Captions\" width=\"93\" /></a></li><li
|
477
|
+
style=\"display: inline; position: absolute; left: auto; top: auto;\"><span
|
478
|
+
id=\"tab-loading\" class=\"tab-loading\" style=\"display:none\"><img alt=\"Loading-animated-circle\"
|
479
|
+
border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
480
|
+
width=\"16\" /></span></li><li style=\"display: inline; position: absolute;
|
481
|
+
right: 0; float: left;\"><div class=\"share-links\"><div><div class=\"share-label\"
|
482
|
+
style=\"display: inline;\">Share this show:</div><div style=\"float: left;\"><a
|
483
|
+
href=\"#\" onclick=\"Share.openEmailPopup(this);; return false;\"><img alt=\"\"
|
484
|
+
border=\"0\" class=\"hover-me\" id=\"showbar-email.gif132725435851495\" src=\"http://static.huluim.com/images/showbar-email.gif?1306334933\"
|
485
|
+
/></a></div><div style=\"float: left;\"><a href=\"#\" onclick=\"Share.popup('http://twitter.com/share?url=http%3A%2F%2Fwww.hulu.com%2Ffringe&text=Check%20out%20Fringe%20on%20%40hulu%3A',
|
486
|
+
'show', 1241);; return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\"
|
487
|
+
id=\"showbar-twitter.gif132725435851551\" src=\"http://static.huluim.com/images/showbar-twitter.gif?1039060158\"
|
488
|
+
/></a></div><div class=\"fb-like-button\"><div style=\"float: right;\"><img
|
489
|
+
src=\"/images/fb-like-shim.gif\"></div><fb:like href=\"http://www.hulu.com/fringe\"
|
490
|
+
style=\"vertical-align: top\" layout=\"button_count\" show_faces=\"false\" width=\"90\"
|
491
|
+
font=\"lucida grande\"></fb:like> </div> </div></div></li></ul></div><ul class=\"pane-container\"
|
492
|
+
id=\"pane-container\">\n <li id=\"pane-main\" class=\"pane-selected\">\n
|
493
|
+
\ <div class=\"fluid container\">\n \n <div class=\"tab-header
|
494
|
+
main white activatable\" style=\"padding: 0px;\">\n <div class=\"fixed-lg
|
495
|
+
container availability \">\n <div class=\"availability-title\">Availability:</div>\n
|
496
|
+
\ \n <div class=\"availability-text\" id=\"availability-text-1\"
|
497
|
+
style='display:none'>\n New episodes will be available the day after airing
|
498
|
+
to registered DISH Network subscribers. The episodes will be available to everyone
|
499
|
+
8 days after airing.<div style='height:6px; line-height:6px;' class='availability-note-break'></div><span
|
500
|
+
class=\"plus-availability-notes\"><span>We currently don't have the rights to
|
501
|
+
make this show available on TV or mobile devices — <a class=\"blue-link\"
|
502
|
+
href=\"javascript:void(0)\" onclick=\"Behaviors.requestPlusContent(this, 1241)\">request</a>
|
503
|
+
to be notified if it becomes available in Hulu Plus.</span><div style=\"margin-top:
|
504
|
+
6px;\"/><img src=\"/images/auth/authentication.gif\" style=\"margin: 0 5px 0
|
505
|
+
0;\" />Connect to your DISH Network account to watch new episodes on your computer
|
506
|
+
the day after air. <a class=\"blue-link\" href=\"/authenticate?src=show¶m=1241\">Learn
|
507
|
+
more</a></div></span>\n </div>\n <script>\n AvailabilityNotes.init(
|
508
|
+
$(\"availability-text-1\"), 1000 ) ;\n </script>\n \n <br style=\"clear:both;\"/>\n
|
509
|
+
\ \n \n </div>\n </div>\n \n <br style=\"clear:both\"
|
510
|
+
/> \n</div>\n\n\n<div id=\"filters_and_presenters\">\n \n\n\n\n\n\n\n <div
|
511
|
+
class=\"fluid container\" style=\"width:920px; margin-top: -10px; margin-bottom:
|
512
|
+
25px;\">\n <div class=\"embed_search_bar\" id=\"search-bar\">\n <div class=\"fixed-lg
|
513
|
+
container\" >\n <div class=\"video-info\" style=\"padding:2px 0 0 9px; overflow:hidden;\">\n
|
514
|
+
\ <form style=\"float:left; width:96%\" id=\"channel_search_form\" name=\"search_form\"
|
515
|
+
action=\"/search/search_video_within_show?item_id=1241&place=show&show_id=1241&show_type=tv&showname=Fringe\"
|
516
|
+
method=\"get\" onsubmit=\"return searchInChannel()\">\n <div style=\"float:left;\">\n
|
517
|
+
\ <span style=\"font-size: 11px; font-weight: bold; color:#646464; margin-right:8px;
|
518
|
+
vertical-align:middle\">Search this show</span>\n <input id=\"embed-search-bar-query\"
|
519
|
+
class=\"search channel_search_term\" style=\"vertical-align:middle;width:230px;height:17px;border-color:#CCCCCC;color:#030303;border-right:0px;\"
|
520
|
+
type=\"text\" name=\"query\" autocomplete=\"off\" value=\"\" />\n <a
|
521
|
+
href=\"javascript:void(0);\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"embed-search-button\"
|
522
|
+
onclick=\"searchInChannel();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
|
523
|
+
style=\"vertical-align: middle; margin-left: -4px;\" title=\"Find specific shows
|
524
|
+
from this show\" /></a>\n </div>\n <div id='popular-terms' class=\"relative
|
525
|
+
search_bar_content\">\n \n \n <span class=\"label\">Popular
|
526
|
+
Searches:</span>\n \n <a href=\"javascript:void(0)\"
|
527
|
+
onclick=\"$('embed-search-bar-query').value=this.innerHTML; SearchAjaxCall('/search/search_video_within_show?item_id=1241&place=show&query=season+1&show_id=1241&show_type=tv&showname=Fringe')\">season
|
528
|
+
1</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
|
529
|
+
SearchAjaxCall('/search/search_video_within_show?item_id=1241&place=show&query=season+2&show_id=1241&show_type=tv&showname=Fringe')\">season
|
530
|
+
2</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
|
531
|
+
SearchAjaxCall('/search/search_video_within_show?item_id=1241&place=show&query=season+3&show_id=1241&show_type=tv&showname=Fringe')\">season
|
532
|
+
3</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
|
533
|
+
SearchAjaxCall('/search/search_video_within_show?item_id=1241&place=show&query=fringe+season+1&show_id=1241&show_type=tv&showname=Fringe')\">fringe
|
534
|
+
season 1</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
|
535
|
+
SearchAjaxCall('/search/search_video_within_show?item_id=1241&place=show&query=season&show_id=1241&show_type=tv&showname=Fringe')\">season</a>\n
|
536
|
+
\ \n \n </div>\n <div id='related-terms'></div>\n
|
537
|
+
\ </form>\n <div id=\"popup-close-button\" style=\"float:right; padding-right:6px;
|
538
|
+
display:none;\">\n <a href=\"javascript:void(null);\"><img alt=\"Close
|
539
|
+
results\" border=\"0\" class=\"hover-me\" id=\"channel-search-close-button\"
|
540
|
+
onclick=\"hideSearchPopup();\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
|
541
|
+
style=\"float:right; margin:3px 2px 0 0\" title=\"Close results\" /></a>\n </div>\n
|
542
|
+
\ </div>\n </div>\n</div>\n\n<div style=\"display:none\" id=\"search-result\"
|
543
|
+
class=\"search_result\"></div>\n\n </div>\n\n\n\n\n<div class=\"fixed-lg container\"
|
544
|
+
style=\"margin-top:10px;\">\n \n\n \n \n \n \n \n \n <div
|
545
|
+
class=\"vslc\" id=\"episode-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
|
546
|
+
href=\"http://www.hulu.com/feed/show/1241/episodes\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
|
547
|
+
class=\"rss-link\" onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img
|
548
|
+
alt=\"Hulu RSS feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132725290596876\"
|
549
|
+
src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\" title=\"Hulu
|
550
|
+
RSS feed\" /></a><h2 class=\"cufonable\">Episodes (5)</h2></div><a class=\"season-playlist\"
|
551
|
+
href=\"#\" onclick=\"s9042_17hohd9_episodes5.addSeasonToPlaylist(this, 'episode');
|
552
|
+
return false;\">Add All to Queue</a><span class=\"season-playlist\" style=\"display:
|
553
|
+
none;\">Added to Queue</span></div><div class=\"vslnav\"><div class=\"vl\"><div
|
554
|
+
class=\"mod sort-filter\" style=\"display:none\" id=\"s9042_17hohd9_episodes5-sort\"><b>Sort
|
555
|
+
by:</b><ul><li class=\"active\" id=\"s9042_17hohd9_episodes5-sort-original_premiere_date\">Air
|
556
|
+
Date</li><li id=\"s9042_17hohd9_episodes5-sort-released_at\">Recently Added</li><li
|
557
|
+
id=\"s9042_17hohd9_episodes5-sort-view_count_today\">Most Popular Today</li><li
|
558
|
+
id=\"s9042_17hohd9_episodes5-sort-views\">Most Popular All Time</li><li id=\"s9042_17hohd9_episodes5-sort-rating\">User
|
559
|
+
Rating</li></ul></div></div><div style=\"padding:4px;\"></div></div><div class=\"vsl
|
560
|
+
vsl-short\" id=\"s9042_17hohd9_episodes5\"><ul><li style=\"position:relative\"><span
|
561
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/321420/fringe-enemy-of-my-enemy?c=Science-Fiction\"
|
562
|
+
beaconid=\"321420\" beacontype=\"video\" class=\"beaconid beacontype info_hover
|
563
|
+
link_disabled\" onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null,
|
564
|
+
null, null, null, 'hulu_321420:-1')\"><img src=\"http://thumbnails.huluim.com/408/60028408/60028408_145x80_generated.jpg\"
|
565
|
+
class=\"thumbnail thumbnail_disabled\" border=\"0\" onerror=\"thumbnailLoadError(window.event
|
566
|
+
|| event)\" alt=\"Fringe: Enemy of My Enemy (season 4, episode 9)\" width=\"145\"
|
567
|
+
height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><div
|
568
|
+
class=\"coming-soon\" style=\"top:60px; width:145px; height:20px\"><span style='position:relative;left:7px;top:1px;'>Coming
|
569
|
+
Soon: 01/28</span></div><span class=\"add-me super_plus\" title=\"Add to queue
|
570
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
571
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
572
|
+
321420}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13272529059734\"
|
573
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
574
|
+
href=\"/authenticate?src=show¶m=1241\"><img alt=\"Available on the computer
|
575
|
+
to DISH subscribers\" class=\"hplus-sticker auth-keyicon\" src=\"http://static.huluim.com/images/auth/authentication.gif?1083766096\"
|
576
|
+
title=\"Available on the computer to DISH subscribers\" /></a><a href=\"http://www.hulu.com/watch/321420/fringe-enemy-of-my-enemy?c=Science-Fiction\"
|
577
|
+
beaconid=\"321420\" beacontype=\"video\" class=\"beaconid beacontype info_hover
|
578
|
+
link_disabled\" onclick=\"; Beacon.trackThumbnailClick(this);\">Enemy of My
|
579
|
+
Enemy</a><span class=\"video-info\" style=\"white-space: nowrap;\">Season 4
|
580
|
+
: Ep. 9 (44:00)<img alt=\"Closed Captions available\" class=\"closed-captions\"
|
581
|
+
height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
582
|
+
style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
|
583
|
+
Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-321420\"
|
584
|
+
style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
585
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
586
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/318897/fringe-back-to-where-youve-never-been?c=Science-Fiction\"
|
587
|
+
beaconid=\"318897\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
588
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
589
|
+
null, null, 'hulu_318897:-1')\"><img src=\"http://thumbnails.huluim.com/730/60025730/60025730_145x80_generated.jpg\"
|
590
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
591
|
+
event)\" alt=\"Fringe: Back to Where You've Never Been (season 4, episode 8)\"
|
592
|
+
width=\"145\" height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\"
|
593
|
+
/></a></span><span class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a
|
594
|
+
href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
595
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
596
|
+
318897}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290597864\"
|
597
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
598
|
+
href=\"http://www.hulu.com/watch/318897/fringe-back-to-where-youve-never-been?c=Science-Fiction\"
|
599
|
+
beaconid=\"318897\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
600
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Back to Where You've Never Been</a><span
|
601
|
+
class=\"video-info\" style=\"white-space: nowrap;\">Season 4 : Ep. 8 (43:58)<img
|
602
|
+
alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
603
|
+
style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
|
604
|
+
Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-318897\"
|
605
|
+
style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
606
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
607
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/302374/fringe-wallflower?c=Science-Fiction\"
|
608
|
+
beaconid=\"302374\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
609
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
610
|
+
null, null, 'hulu_302374:-1')\"><img src=\"http://thumbnails.huluim.com/899/60005899/60005899_145x80_generated.jpg\"
|
611
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
612
|
+
event)\" alt=\"Fringe: Wallflower (season 4, episode 7)\" width=\"145\" height=\"80\"
|
613
|
+
title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
|
614
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
615
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
616
|
+
302374}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13272529059833\"
|
617
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
618
|
+
href=\"http://www.hulu.com/watch/302374/fringe-wallflower?c=Science-Fiction\"
|
619
|
+
beaconid=\"302374\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
620
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Wallflower</a><span class=\"video-info\"
|
621
|
+
style=\"white-space: nowrap;\">Season 4 : Ep. 7 (43:35)<img
|
622
|
+
alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
623
|
+
style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
|
624
|
+
Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-302374\"
|
625
|
+
style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
626
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
627
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/299449/fringe-and-those-we-left-behind?c=Science-Fiction\"
|
628
|
+
beaconid=\"299449\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
629
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
630
|
+
null, null, 'hulu_299449:-1')\"><img src=\"http://thumbnails.huluim.com/896/60002896/60002896_145x80_generated.jpg\"
|
631
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
632
|
+
event)\" alt=\"Fringe: And Those We Left Behind (season 4, episode 6)\" width=\"145\"
|
633
|
+
height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
|
634
|
+
class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
|
635
|
+
onclick=\"SuperPlus.show(window.event||event,{"is_movie": false, "auth_valid":
|
636
|
+
true, "plus_only": false, "id": 299449}); return false;\"><img
|
637
|
+
alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290598788\"
|
638
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
639
|
+
href=\"http://www.hulu.com/watch/299449/fringe-and-those-we-left-behind?c=Science-Fiction\"
|
640
|
+
beaconid=\"299449\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
641
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">And Those We Left Behind</a><span
|
642
|
+
class=\"video-info\" style=\"white-space: nowrap;\">Season 4 : Ep. 6 (44:03)<img
|
643
|
+
alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
644
|
+
style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
|
645
|
+
Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-299449\"
|
646
|
+
style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
647
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
648
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/296854/fringe-novation?c=Science-Fiction\"
|
649
|
+
beaconid=\"296854\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
650
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
651
|
+
null, null, 'hulu_296854:-1')\"><img src=\"http://thumbnails.huluim.com/312/60000312/60000312_145x80_generated.jpg\"
|
652
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
653
|
+
event)\" alt=\"Fringe: Novation (season 4, episode 5)\" width=\"145\" height=\"80\"
|
654
|
+
title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
|
655
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
656
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
657
|
+
296854}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290613342\"
|
658
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
659
|
+
href=\"http://www.hulu.com/watch/296854/fringe-novation?c=Science-Fiction\"
|
660
|
+
beaconid=\"296854\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
661
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Novation</a><span class=\"video-info\"
|
662
|
+
style=\"white-space: nowrap;\">Season 4 : Ep. 5 (43:01)<img
|
663
|
+
alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
664
|
+
style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
|
665
|
+
Captions available\" width=\"17\" /></span><span class=\"expire-warning\"><img
|
666
|
+
alt=\"Icon-expire-flag-gray\" class=\"expired-icon\" src=\"http://static.huluim.com/images/icon-expire-flag-gray.gif?1080089087\"
|
667
|
+
title=\"Expires in 5 days\" /> Expires in 5 days</span><div class=\"currently-playing
|
668
|
+
cp-296854\" style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\"
|
669
|
+
src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\" style=\"vertical-align:middle;\"
|
670
|
+
/> Now playing</div></li></ul></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
|
671
|
+
s9042_17hohd9_episodes5 = new VideoSlider(\"s9042_17hohd9_episodes5\", {\"maxCount\":
|
672
|
+
5, \"urlOptions\": {\"show_id\": 1241, \"type\": \"episode\", \"page\": 1, \"sort\":
|
673
|
+
\"original_premiere_date\", \"show_placeholders\": \"1\", \"items_per_page\":
|
674
|
+
5, \"season\": \"\"}, \"seasonCounts\": {\"episode\": {\"s3\": 0, \"all\": 5,
|
675
|
+
\"s4\": 5, \"s0\": 0, \"s1\": 0, \"s2\": 0}, \"all\": {\"s3\": 31, \"all\":
|
676
|
+
114, \"s4\": 31, \"s0\": 32, \"s1\": 16, \"s2\": 4}, \"clip\": {\"s3\": 31,
|
677
|
+
\"all\": 109, \"s4\": 26, \"s0\": 32, \"s1\": 16, \"s2\": 4}}, \"url\": \"http://www.hulu.com/videos/slider\"})\n//]]>\n</script></div><div
|
678
|
+
class=\"vslc\" id=\"clip-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
|
679
|
+
href=\"http://www.hulu.com/feed/show/1241/clips\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
|
680
|
+
class=\"rss-link\" onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img
|
681
|
+
alt=\"Hulu RSS feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132725290687281\"
|
682
|
+
src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\" title=\"Hulu
|
683
|
+
RSS feed\" /></a><h2 class=\"cufonable\">Clips (109)</h2></div><div class=\"vr\"><div
|
684
|
+
class=\"mod season-filter\" style=\"display:none\" id=\"s1778_17hohda_clips109-season\"><b>Seasons:</b><ul><li
|
685
|
+
id=\"s1778_17hohda_clips109-season-1\">1</li><li id=\"s1778_17hohda_clips109-season-2\">2</li><li
|
686
|
+
id=\"s1778_17hohda_clips109-season-3\">3</li><li id=\"s1778_17hohda_clips109-season-4\">4</li><li
|
687
|
+
class=\"active\" id=\"s1778_17hohda_clips109-season-all\">All</li></ul></div></div><a
|
688
|
+
class=\"season-playlist\" href=\"#\" onclick=\"s1778_17hohda_clips109.addSeasonToPlaylist(this,
|
689
|
+
'clip'); return false;\">Add All to Queue</a><span class=\"season-playlist\"
|
690
|
+
style=\"display: none;\">Added to Queue</span></div><div class=\"vslnav\"><div
|
691
|
+
class=\"vl\"><div class=\"mod sort-filter\" style=\"display:none\" id=\"s1778_17hohda_clips109-sort\"><b>Sort
|
692
|
+
by:</b><ul><li class=\"active\" id=\"s1778_17hohda_clips109-sort-released_at\">Recently
|
693
|
+
Added</li><li id=\"s1778_17hohda_clips109-sort-view_count_today\">Most Popular
|
694
|
+
Today</li><li id=\"s1778_17hohda_clips109-sort-views\">Most Popular All Time</li><li
|
695
|
+
id=\"s1778_17hohda_clips109-sort-rating\">User Rating</li></ul></div></div><div
|
696
|
+
class=\"vr\"><ul class=\"pages\" style=\"display: none;\" id=\"s1778_17hohda_clips109-nav\"><li
|
697
|
+
title=\"Go to the first page\" class=\"btn first\"></li><li title=\"Go to the
|
698
|
+
previous page\" class=\"btn prev\"></li><li class=\"input\"><input autocomplete=\"off\"
|
699
|
+
name=\"page\" onfocus=\"$(this).select();\" onkeydown=\"if(event.keyCode ==
|
700
|
+
13) s1778_17hohda_clips109.move(event, 'input');\" type=\"text\" value=\"\"
|
701
|
+
/></li><li class=\"of\">of</li><li title=\"Go to the last page\" class=\"total\"></li><li
|
702
|
+
title=\"Go to the next page\" class=\"btn next\"></li></ul></div></div><div
|
703
|
+
class=\"vsl vsl-short\" id=\"s1778_17hohda_clips109\"><ul><li style=\"position:relative\"><span
|
704
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/320895/fringe-noble-intentions-back-to-where-youve-never-been?c=Science-Fiction\"
|
705
|
+
beaconid=\"320895\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
706
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
707
|
+
null, null, 'hulu_320895:-1')\"><img src=\"http://thumbnails.huluim.com/14/60028014/60028014_145x80_generated.jpg\"
|
708
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
709
|
+
event)\" alt=\"Fringe: Noble Intentions: Back to Where You've Never Been\" width=\"145\"
|
710
|
+
height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
|
711
|
+
class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
|
712
|
+
onclick=\"SuperPlus.show(window.event||event,{"is_movie": false, "auth_valid":
|
713
|
+
true, "plus_only": false, "id": 320895}); return false;\"><img
|
714
|
+
alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290687835\"
|
715
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
716
|
+
href=\"http://www.hulu.com/watch/320895/fringe-noble-intentions-back-to-where-youve-never-been?c=Science-Fiction\"
|
717
|
+
beaconid=\"320895\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
718
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Noble Intentions: Back to Where
|
719
|
+
You...</a><span class=\"video-info\" style=\"white-space: nowrap;\">Web Exclusive (04:04)</span><div
|
720
|
+
class=\"currently-playing cp-320895\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
|
721
|
+
border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
722
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
723
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/300967/fringe-scared?c=Science-Fiction\"
|
724
|
+
beaconid=\"300967\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
725
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
726
|
+
null, null, 'hulu_300967:-1')\"><img src=\"http://thumbnails.huluim.com/963/60004963/60004963_145x80_generated.jpg\"
|
727
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
728
|
+
event)\" alt=\"Fringe: Scared\" width=\"145\" height=\"80\" title=\"\" style=\"width:
|
729
|
+
145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\" title=\"Add
|
730
|
+
to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
731
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
732
|
+
300967}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290688296\"
|
733
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
734
|
+
href=\"http://www.hulu.com/watch/300967/fringe-scared?c=Science-Fiction\" beaconid=\"300967\"
|
735
|
+
beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Scared</a><span
|
736
|
+
class=\"video-info\" style=\"white-space: nowrap;\">Excerpt (00:33)</span><div
|
737
|
+
class=\"currently-playing cp-300967\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
|
738
|
+
border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
|
739
|
+
style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
|
740
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/300968/fringe-perfectly-normal?c=Science-Fiction\"
|
741
|
+
beaconid=\"300968\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
742
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
743
|
+
null, null, 'hulu_300968:-1')\"><img src=\"http://thumbnails.huluim.com/964/60004964/60004964_145x80_generated.jpg\"
|
744
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
745
|
+
event)\" alt=\"Fringe: Perfectly Normal\" width=\"145\" height=\"80\" title=\"\"
|
746
|
+
style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
|
747
|
+
title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
748
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
749
|
+
300968}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290688731\"
|
750
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
751
|
+
href=\"http://www.hulu.com/watch/300968/fringe-perfectly-normal?c=Science-Fiction\"
|
752
|
+
beaconid=\"300968\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
753
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Perfectly Normal</a><span class=\"video-info\"
|
754
|
+
style=\"white-space: nowrap;\">Excerpt (01:04)</span><div class=\"currently-playing
|
755
|
+
cp-300968\" style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\"
|
756
|
+
src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\" style=\"vertical-align:middle;\"
|
757
|
+
/> Now playing</div></li><li style=\"position:relative\"><span class=\"play-button-hover\"><a
|
758
|
+
href=\"http://www.hulu.com/watch/300965/fringe-going-back-home?c=Science-Fiction\"
|
759
|
+
beaconid=\"300965\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
760
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
761
|
+
null, null, 'hulu_300965:-1')\"><img src=\"http://thumbnails.huluim.com/962/60004962/60004962_145x80_generated.jpg\"
|
762
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
763
|
+
event)\" alt=\"Fringe: Going Back Home\" width=\"145\" height=\"80\" title=\"\"
|
764
|
+
style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
|
765
|
+
title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
766
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
767
|
+
300965}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290689172\"
|
768
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
769
|
+
href=\"http://www.hulu.com/watch/300965/fringe-going-back-home?c=Science-Fiction\"
|
770
|
+
beaconid=\"300965\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
771
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">Going Back Home</a><span class=\"video-info\"
|
772
|
+
style=\"white-space: nowrap;\">Excerpt (01:07)</span><div class=\"currently-playing
|
773
|
+
cp-300965\" style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\"
|
774
|
+
src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\" style=\"vertical-align:middle;\"
|
775
|
+
/> Now playing</div></li><li style=\"position:relative\"><span class=\"play-button-hover\"><a
|
776
|
+
href=\"http://www.hulu.com/watch/297873/fringe-what-went-wrong?c=Science-Fiction\"
|
777
|
+
beaconid=\"297873\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
778
|
+
onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
|
779
|
+
null, null, 'hulu_297873:-1')\"><img src=\"http://thumbnails.huluim.com/19/60001019/60001019_145x80_generated.jpg\"
|
780
|
+
class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
|
781
|
+
event)\" alt=\"Fringe: What Went Wrong\" width=\"145\" height=\"80\" title=\"\"
|
782
|
+
style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
|
783
|
+
title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
784
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
785
|
+
297873}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290689601\"
|
786
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
|
787
|
+
href=\"http://www.hulu.com/watch/297873/fringe-what-went-wrong?c=Science-Fiction\"
|
788
|
+
beaconid=\"297873\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
|
789
|
+
onclick=\"; Beacon.trackThumbnailClick(this);\">What Went Wrong</a><span class=\"video-info\"
|
790
|
+
style=\"white-space: nowrap;\">Excerpt (01:06)</span><div class=\"currently-playing
|
791
|
+
cp-297873\" style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\"
|
792
|
+
src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\" style=\"vertical-align:middle;\"
|
793
|
+
/> Now playing</div></li></ul></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
|
794
|
+
s1778_17hohda_clips109 = new VideoSlider(\"s1778_17hohda_clips109\", {\"maxCount\":
|
795
|
+
109, \"urlOptions\": {\"show_id\": 1241, \"type\": \"clip\", \"page\": 1, \"sort\":
|
796
|
+
\"released_at\", \"items_per_page\": 5, \"season\": \"\"}, \"seasonCounts\":
|
797
|
+
{\"episode\": {\"s3\": 0, \"all\": 5, \"s4\": 5, \"s0\": 0, \"s1\": 0, \"s2\":
|
798
|
+
0}, \"all\": {\"s3\": 31, \"all\": 114, \"s4\": 31, \"s0\": 32, \"s1\": 16,
|
799
|
+
\"s2\": 4}, \"clip\": {\"s3\": 31, \"all\": 109, \"s4\": 26, \"s0\": 32, \"s1\":
|
800
|
+
16, \"s2\": 4}}, \"url\": \"http://www.hulu.com/videos/slider\"})\n//]]>\n</script></div>\n
|
801
|
+
\ \n \n\n \n <div class=\"fluid container\">\n <div class=\"vslc\"
|
802
|
+
id=\"related-container\"><div class=\"vsltitle\"><div class=\"vl\"><h2 class=\"cufonable
|
803
|
+
no-rss-widget\">You Might Also Like</h2></div></div><div class=\"vslnav\"><div
|
804
|
+
class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
|
805
|
+
style=\"padding: 4px;\"></div></div><div class=\"lazy-load vsl vsl-short\" id=\"s7068_17hoiqm_youmightalsolike\"><ul></ul></div><script
|
806
|
+
type=\"text/javascript\">\n//<![CDATA[\nvar s7068_17hoiqm_youmightalsolike =
|
807
|
+
new VideoSlider(\"s7068_17hoiqm_youmightalsolike\", {\"maxCount\":5,\"urlOptions\":{\"show_id\":1241,\"type\":\"related\",\"page\":1,\"sort\":\"all\",\"season\":\"\",\"location\":\"show-page\",\"items_per_page\":5,\"for_user\":false},\"url\":\"http://www.hulu.com/videos/slider\",\"seasonCounts\":{\"episode\":{\"s3\":0,\"all\":5,\"s4\":5,\"s0\":0,\"s1\":0,\"s2\":0},\"clip\":{\"s3\":31,\"all\":109,\"s4\":26,\"s0\":32,\"s1\":16,\"s2\":4},\"all\":{\"s3\":31,\"all\":114,\"s4\":31,\"s0\":32,\"s1\":16,\"s2\":4}},\"perPageCount\":5})\n//]]>\n</script></div>\n
|
808
|
+
\ </div>\n \n <div class=\"cached-lazy-slider\" style=\"display: none;\">\n
|
809
|
+
\ <div class=\"vslc\" id=\"related-container\"><div class=\"vsltitle\"><div
|
810
|
+
class=\"vl\"><h2 class=\"cufonable no-rss-widget\">You Might Also Like</h2></div></div><div
|
811
|
+
class=\"vslnav\"><div class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
|
812
|
+
style=\"padding: 4px;\"></div></div><div class=\"vsl vsl-short\" id=\"s7068_17hoiqm_youmightalsolike\"><ul><li><span><div
|
813
|
+
class=\"play-button-hover\"><a href=\"http://www.hulu.com/haven\" beaconid=\"4605\"
|
814
|
+
beacontype=\"show\" class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking)
|
815
|
+
!= 'undefined' && _rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,4605,"4605_2309_1309_17_3263",null,"1","1","show-page",null,null,"");if
|
816
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/4605');;
|
817
|
+
Beacon.trackThumbnailClick(this);\"><img alt=\"Haven\" border=\"0\" class=\"thumbnail\"
|
818
|
+
height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_haven.jpg\"
|
819
|
+
style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
|
820
|
+
href=\"http://www.hulu.com/haven\" beaconid=\"4605\" beacontype=\"show\" class=\"beaconid
|
821
|
+
beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &&
|
822
|
+
_rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,4605,"4605_2309_1309_17_3263",null,"1","1","show-page",null,null,"");if
|
823
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/4605');;
|
824
|
+
Beacon.trackThumbnailClick(this);\">Haven</a><div style=\"margin: 2px 0;\">
|
825
|
+
\ <span id=\"rating-show-4605\" class=\"video-rating\"></span>\n <script
|
826
|
+
type=\"text/javascript\">\n new VideoRating(\n 'rating-show-4605',\n
|
827
|
+
\ 4605,\n 4.4343126863231,\n null,\n \"show\"\n
|
828
|
+
\ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
|
829
|
+
href=\"http://www.hulu.com/castle\" beaconid=\"2309\" beacontype=\"show\" class=\"beaconid
|
830
|
+
beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &&
|
831
|
+
_rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,2309,"4605_2309_1309_17_3263",null,"1","2","show-page",null,null,"");if
|
832
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/2309');;
|
833
|
+
Beacon.trackThumbnailClick(this);\"><img alt=\"Castle\" border=\"0\" class=\"thumbnail\"
|
834
|
+
height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_castle.jpg\"
|
835
|
+
style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
|
836
|
+
href=\"http://www.hulu.com/castle\" beaconid=\"2309\" beacontype=\"show\" class=\"beaconid
|
837
|
+
beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &&
|
838
|
+
_rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,2309,"4605_2309_1309_17_3263",null,"1","2","show-page",null,null,"");if
|
839
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/2309');;
|
840
|
+
Beacon.trackThumbnailClick(this);\">Castle</a><div style=\"margin: 2px 0;\">
|
841
|
+
\ <span id=\"rating-show-2309\" class=\"video-rating\"></span>\n <script
|
842
|
+
type=\"text/javascript\">\n new VideoRating(\n 'rating-show-2309',\n
|
843
|
+
\ 2309,\n 4.56358089788856,\n null,\n \"show\"\n
|
844
|
+
\ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
|
845
|
+
href=\"http://www.hulu.com/sanctuary\" beaconid=\"1309\" beacontype=\"show\"
|
846
|
+
class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
|
847
|
+
'undefined' && _rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,1309,"4605_2309_1309_17_3263",null,"1","3","show-page",null,null,"");if
|
848
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/1309');;
|
849
|
+
Beacon.trackThumbnailClick(this);\"><img alt=\"Sanctuary\" border=\"0\" class=\"thumbnail\"
|
850
|
+
height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_sanctuary.jpg\"
|
851
|
+
style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
|
852
|
+
href=\"http://www.hulu.com/sanctuary\" beaconid=\"1309\" beacontype=\"show\"
|
853
|
+
class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
|
854
|
+
'undefined' && _rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,1309,"4605_2309_1309_17_3263",null,"1","3","show-page",null,null,"");if
|
855
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/1309');;
|
856
|
+
Beacon.trackThumbnailClick(this);\">Sanctuary</a><div style=\"margin: 2px 0;\">
|
857
|
+
\ <span id=\"rating-show-1309\" class=\"video-rating\"></span>\n <script
|
858
|
+
type=\"text/javascript\">\n new VideoRating(\n 'rating-show-1309',\n
|
859
|
+
\ 1309,\n 4.36872613090403,\n null,\n \"show\"\n
|
860
|
+
\ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
|
861
|
+
href=\"http://www.hulu.com/chuck\" beaconid=\"17\" beacontype=\"show\" class=\"beaconid
|
862
|
+
beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &&
|
863
|
+
_rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,17,"4605_2309_1309_17_3263",null,"1","4","show-page",null,null,"");if
|
864
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/17');;
|
865
|
+
Beacon.trackThumbnailClick(this);\"><img alt=\"Chuck\" border=\"0\" class=\"thumbnail\"
|
866
|
+
height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_chuck.jpg\"
|
867
|
+
style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
|
868
|
+
href=\"http://www.hulu.com/chuck\" beaconid=\"17\" beacontype=\"show\" class=\"beaconid
|
869
|
+
beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &&
|
870
|
+
_rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,17,"4605_2309_1309_17_3263",null,"1","4","show-page",null,null,"");if
|
871
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/17');;
|
872
|
+
Beacon.trackThumbnailClick(this);\">Chuck</a><div style=\"margin: 2px 0;\">
|
873
|
+
\ <span id=\"rating-show-17\" class=\"video-rating\"></span>\n <script
|
874
|
+
type=\"text/javascript\">\n new VideoRating(\n 'rating-show-17',\n
|
875
|
+
\ 17,\n 4.55663213003604,\n null,\n \"show\"\n
|
876
|
+
\ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
|
877
|
+
href=\"http://www.hulu.com/stargate-universe\" beaconid=\"3263\" beacontype=\"show\"
|
878
|
+
class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
|
879
|
+
'undefined' && _rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,3263,"4605_2309_1309_17_3263",null,"1","5","show-page",null,null,"");if
|
880
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/3263');;
|
881
|
+
Beacon.trackThumbnailClick(this);\"><img alt=\"Stargate Universe\" border=\"0\"
|
882
|
+
class=\"thumbnail\" height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_stargate_universe.jpg\"
|
883
|
+
style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
|
884
|
+
href=\"http://www.hulu.com/stargate-universe\" beaconid=\"3263\" beacontype=\"show\"
|
885
|
+
class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
|
886
|
+
'undefined' && _rTracking != null)_rTracking.useCookieSend("relatedshow","click",0,1241,3263,"4605_2309_1309_17_3263",null,"1","5","show-page",null,null,"");if
|
887
|
+
(typeof(_pt) != 'undefined' && _pt) _pt._trackPageview('/show_recommendations/1241/3263');;
|
888
|
+
Beacon.trackThumbnailClick(this);\">Stargate Universe</a><div style=\"margin:
|
889
|
+
2px 0;\"> <span id=\"rating-show-3263\" class=\"video-rating\"></span>\n
|
890
|
+
\ <script type=\"text/javascript\">\n new VideoRating(\n 'rating-show-3263',\n
|
891
|
+
\ 3263,\n 4.46431812681351,\n null,\n \"show\"\n
|
892
|
+
\ );\n </script>\n</div></li></ul></div></div>\n </div>\n \n</div>\n\n\n
|
893
|
+
\ <div id=\"show-expander\" class=\"abc fixed-lg container\" style=\"padding-top:15px;border-top:1px
|
894
|
+
solid #eee;\">\n <div class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">List
|
895
|
+
of Episodes (5)</h2></div><div class=\"tr\" id=\"vex-episode-1241-nav\"></div></div><table
|
896
|
+
class=\"vex vex-episode\" id=\"vex-episode-1241\"><tr class=\"rh\"><td class=\"rh-c0
|
897
|
+
vex-down\"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
898
|
+
return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
899
|
+
"/videos/expander?order=asc&amp;page=1&amp;show_id=1241&amp;sort=season&amp;video_type=episode");
|
900
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
901
|
+
false\">Season:Episode</a></td><td class=\"rh-c1 \"><a href=\"javascript:void(0)\"
|
902
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
903
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=title&amp;video_type=episode");
|
904
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
905
|
+
false\">Title</a></td><td class=\"rh-c2 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
906
|
+
return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
907
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=has_captions&amp;video_type=episode");
|
908
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
909
|
+
false\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
910
|
+
/></a></td><td class=\"rh-c3 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
911
|
+
return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
912
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=duration&amp;video_type=episode");
|
913
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
914
|
+
false\">Runtime</a></td><td class=\"rh-c4 \"><a href=\"javascript:void(0)\"
|
915
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
916
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=original_premiere_date&amp;video_type=episode");
|
917
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
918
|
+
false\">Air Date</a></td><td class=\"rh-c5 \"><a href=\"javascript:void(0)\"
|
919
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-episode-1241",
|
920
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=rating&amp;video_type=episode");
|
921
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
922
|
+
false\">User Rating</a></td><td class=\"rh-c6 \">Queue</td></tr><tr class=\"srh\"
|
923
|
+
id=\"srh-4\"><td onclick=\"VideoExpander.subheadingClicked("s-4",
|
924
|
+
"http://www.hulu.com/videos/season_expander?order=desc&page=1&season_number=4&show_id=1241&sort=season&video_type=episode")\"
|
925
|
+
class=\"vex-up\" colspan=\"6\" id=\"s-4\">Season 4<span class=\"srh-loading\"
|
926
|
+
style=\"display: none\"><img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\"
|
927
|
+
src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
928
|
+
width=\"16\" /></span></td><td style=\"text-align: center;\"><a class=\"season-playlist-link\"
|
929
|
+
href=\"#\" onclick=\"VideoExpander.addSeasonToPlaylist(this, {"show_id":
|
930
|
+
"1241", "season_number": "4"}); return false;\"><img
|
931
|
+
alt=\"Icon-vex-add\" src=\"http://static.huluim.com/images/icon-vex-add.gif?1068623387\"
|
932
|
+
/><span>All</span></a></td></tr><tr class=\" s-4 r\"><td class=\"c0\">9</td><td
|
933
|
+
class=\"c1\"><div class='vex-h'><a href=\"/authenticate?src=show¶m=1241\"><img
|
934
|
+
alt=\"Available on the computer to DISH subscribers\" class=\"vex-h-sticker
|
935
|
+
auth-keyicon\" src=\"http://static.huluim.com/images/auth/authentication.gif?1083766096\"
|
936
|
+
title=\"Available on the computer to DISH subscribers\" /></a><a href=\"http://www.hulu.com/watch/321420/fringe-enemy-of-my-enemy?c=Science-Fiction#x-0,vepisode,1,0\"
|
937
|
+
beaconid=\"321420\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
938
|
+
info_hover link_disabled\" onclick=\"; Beacon.trackThumbnailClick(this);\">Enemy
|
939
|
+
of My Enemy</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
940
|
+
/></td><td class=\"c3\">44:00</td><td class=\"c4\">01/20/2012</td><td class=\"c5\"><span
|
941
|
+
id=\"video-rating-321420\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
942
|
+
VideoRating(\"video-rating-321420\", 321420, 4.659090, null);</script></td><td
|
943
|
+
class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
944
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
945
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
946
|
+
321420}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290726518\"
|
947
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
948
|
+
class=\" s-4 r\"><td class=\"c0\">8</td><td class=\"c1\"><div class='vex-h'><a
|
949
|
+
href=\"http://www.hulu.com/watch/318897/fringe-back-to-where-youve-never-been?c=Science-Fiction#x-0,vepisode,1,0\"
|
950
|
+
beaconid=\"318897\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
951
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Back to Where You've
|
952
|
+
Never Been</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
953
|
+
/></td><td class=\"c3\">43:58</td><td class=\"c4\">01/13/2012</td><td class=\"c5\"><span
|
954
|
+
id=\"video-rating-318897\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
955
|
+
VideoRating(\"video-rating-318897\", 318897, 4.214290, null);</script></td><td
|
956
|
+
class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
957
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
958
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
959
|
+
318897}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290726907\"
|
960
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
961
|
+
class=\" s-4 r\"><td class=\"c0\">7</td><td class=\"c1\"><div class='vex-h'><a
|
962
|
+
href=\"http://www.hulu.com/watch/302374/fringe-wallflower?c=Science-Fiction#x-0,vepisode,1,0\"
|
963
|
+
beaconid=\"302374\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
964
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Wallflower</a></div></td><td
|
965
|
+
class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
966
|
+
/></td><td class=\"c3\">43:35</td><td class=\"c4\">11/18/2011</td><td class=\"c5\"><span
|
967
|
+
id=\"video-rating-302374\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
968
|
+
VideoRating(\"video-rating-302374\", 302374, 4.269840, null);</script></td><td
|
969
|
+
class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
970
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
971
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
972
|
+
302374}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290727275\"
|
973
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
974
|
+
class=\" s-4 r\"><td class=\"c0\">6</td><td class=\"c1\"><div class='vex-h'><a
|
975
|
+
href=\"http://www.hulu.com/watch/299449/fringe-and-those-we-left-behind?c=Science-Fiction#x-0,vepisode,1,0\"
|
976
|
+
beaconid=\"299449\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
977
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">And Those We Left
|
978
|
+
Behind</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
979
|
+
/></td><td class=\"c3\">44:03</td><td class=\"c4\">11/11/2011</td><td class=\"c5\"><span
|
980
|
+
id=\"video-rating-299449\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
981
|
+
VideoRating(\"video-rating-299449\", 299449, 4.484310, null);</script></td><td
|
982
|
+
class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
983
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
984
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
985
|
+
299449}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290727641\"
|
986
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
987
|
+
class=\"with-bottom-border s-4 r\"><td class=\"c0\">5</td><td class=\"c1\"><div
|
988
|
+
class='vex-h'><a href=\"http://www.hulu.com/watch/296854/fringe-novation?c=Science-Fiction#x-0,vepisode,1,0\"
|
989
|
+
beaconid=\"296854\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
990
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Novation</a></div></td><td
|
991
|
+
class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
992
|
+
/></td><td class=\"c3\">43:01</td><td class=\"c4\">11/04/2011</td><td class=\"c5\"><span
|
993
|
+
id=\"video-rating-296854\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
994
|
+
VideoRating(\"video-rating-296854\", 296854, 4.315900, null);</script></td><td
|
995
|
+
class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
996
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
997
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
998
|
+
296854}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290727994\"
|
999
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
|
1000
|
+
type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",
|
1001
|
+
\"programming_type\", \"title\", \"duration\", \"original_premiere_date\", \"rating\"],
|
1002
|
+
{\"show_id\": 1241, \"page\": 1, \"video_type\": \"episode\", \"sort\": \"season\",
|
1003
|
+
\"order\": \"desc\"});\n\n//]]>\n</script><div class=\"vextitle\"><div class=\"tl\"><h2
|
1004
|
+
class=\"cufonable\">List of Clips (109)</h2></div><div class=\"tr\" id=\"vex-clip-1241-nav\"><div
|
1005
|
+
class=\"page\">\n <ul>\n <li style=\"display: none\" class=\"pagination-loading\"><img
|
1006
|
+
alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1007
|
+
width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
|
1008
|
+
height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
|
1009
|
+
width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
|
1010
|
+
alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
|
1011
|
+
width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/videos/expander?order=desc&amp;show_id=1241&amp;sort=original_premiere_date&amp;video_type=clip\"
|
1012
|
+
current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
|
1013
|
+
; new Ajax.Request('/videos/expander?order=desc&show_id=1241&sort=original_premiere_date&video_type=clip',
|
1014
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1015
|
+
}, parameters:Form.serialize(this)}); return false;\" total_pages=\"8\"> <input
|
1016
|
+
autocomplete=\"off\" class=\"short\" name=\"page\" onfocus=\"$(this).select();\"
|
1017
|
+
type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
|
1018
|
+
\ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
|
1019
|
+
; new Ajax.Request('/videos/expander?order=desc&page=8&show_id=1241&sort=original_premiere_date&video_type=clip',
|
1020
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1021
|
+
}}); return false;\" title=\"Go to the last page\">8</a>\n </li>\n\n <li
|
1022
|
+
class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
|
1023
|
+
; new Ajax.Request('/videos/expander?order=desc&page=2&show_id=1241&sort=original_premiere_date&video_type=clip',
|
1024
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1025
|
+
}}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
|
1026
|
+
height=\"12\" id=\"pagination-arrow-next.gif132725290777323\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
|
1027
|
+
title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
|
1028
|
+
type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n</div></div><table
|
1029
|
+
class=\"vex vex-clip\" id=\"vex-clip-1241\"><tr class=\"rh\"><td class=\"rh-c0
|
1030
|
+
\"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
1031
|
+
return false\" onclick=\"VideoExpander.filter("vex-clip-1241", "/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=season&amp;video_type=clip");
|
1032
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1033
|
+
false\">Season:Episode</a></td><td class=\"rh-c1 \"><a href=\"javascript:void(0)\"
|
1034
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-clip-1241",
|
1035
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=title&amp;video_type=clip");
|
1036
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1037
|
+
false\">Title</a></td><td class=\"rh-c2 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
1038
|
+
return false\" onclick=\"VideoExpander.filter("vex-clip-1241", "/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=has_captions&amp;video_type=clip");
|
1039
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1040
|
+
false\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
|
1041
|
+
/></a></td><td class=\"rh-c3 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
1042
|
+
return false\" onclick=\"VideoExpander.filter("vex-clip-1241", "/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=programming_type&amp;video_type=clip");
|
1043
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1044
|
+
false\">Type</a></td><td class=\"rh-c4 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
|
1045
|
+
return false\" onclick=\"VideoExpander.filter("vex-clip-1241", "/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=duration&amp;video_type=clip");
|
1046
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1047
|
+
false\">Runtime</a></td><td class=\"rh-c5 vex-down\"><a href=\"javascript:void(0)\"
|
1048
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-clip-1241",
|
1049
|
+
"/videos/expander?order=asc&amp;page=1&amp;show_id=1241&amp;sort=original_premiere_date&amp;video_type=clip");
|
1050
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1051
|
+
false\">Air Date</a></td><td class=\"rh-c6 \"><a href=\"javascript:void(0)\"
|
1052
|
+
onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter("vex-clip-1241",
|
1053
|
+
"/videos/expander?order=desc&amp;page=1&amp;show_id=1241&amp;sort=rating&amp;video_type=clip");
|
1054
|
+
return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
|
1055
|
+
false\">User Rating</a></td><td class=\"rh-c7 \">Queue</td></tr><tr class=\"r\"><td
|
1056
|
+
class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/320895/fringe-noble-intentions-back-to-where-youve-never-been?c=Science-Fiction#x-4,vclip,1,0\"
|
1057
|
+
beaconid=\"320895\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1058
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Noble Intentions:
|
1059
|
+
Back to Where ...</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
|
1060
|
+
class=\"c4\">04:04</td><td class=\"c5\">01/18/2012</td><td class=\"c6\"><span
|
1061
|
+
id=\"video-rating-320895\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
1062
|
+
VideoRating(\"video-rating-320895\", 320895, 4.675320, null);</script></td><td
|
1063
|
+
class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
1064
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1065
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1066
|
+
320895}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290779028\"
|
1067
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1068
|
+
class=\"r\"><td class=\"c0\">4 : 5</td><td class=\"c1\"><div class='vex-h'><a
|
1069
|
+
href=\"http://www.hulu.com/watch/292817/fringe-no-one-remembers?c=Science-Fiction#x-4,vclip,1,0\"
|
1070
|
+
beaconid=\"292817\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1071
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">No One Remembers</a></div></td><td
|
1072
|
+
class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td class=\"c4\">00:20</td><td
|
1073
|
+
class=\"c5\">10/28/2011</td><td class=\"c6\"><span id=\"video-rating-292817\"
|
1074
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-292817\",
|
1075
|
+
292817, 4.395970, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1076
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1077
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1078
|
+
292817}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290779465\"
|
1079
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1080
|
+
class=\"r\"><td class=\"c0\">4 : 4</td><td class=\"c1\"><div class='vex-h'><a
|
1081
|
+
href=\"http://www.hulu.com/watch/288473/fringe-technology?c=Science-Fiction#x-4,vclip,1,0\"
|
1082
|
+
beaconid=\"288473\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1083
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Technology</a></div></td><td
|
1084
|
+
class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">01:03</td><td
|
1085
|
+
class=\"c5\">10/14/2011</td><td class=\"c6\"><span id=\"video-rating-288473\"
|
1086
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-288473\",
|
1087
|
+
288473, 4.182160, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1088
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1089
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1090
|
+
288473}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290779889\"
|
1091
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1092
|
+
class=\"r\"><td class=\"c0\">4 : 4</td><td class=\"c1\"><div class='vex-h'><a
|
1093
|
+
href=\"http://www.hulu.com/watch/288472/fringe-psychic-link?c=Science-Fiction#x-4,vclip,1,0\"
|
1094
|
+
beaconid=\"288472\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1095
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Psychic Link</a></div></td><td
|
1096
|
+
class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">01:02</td><td
|
1097
|
+
class=\"c5\">10/14/2011</td><td class=\"c6\"><span id=\"video-rating-288472\"
|
1098
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-288472\",
|
1099
|
+
288472, 4.192310, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1100
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1101
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1102
|
+
288472}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290780312\"
|
1103
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1104
|
+
class=\"r\"><td class=\"c0\">4 : 4</td><td class=\"c1\"><div class='vex-h'><a
|
1105
|
+
href=\"http://www.hulu.com/watch/288027/fringe-a-powerful-energy?c=Science-Fiction#x-4,vclip,1,0\"
|
1106
|
+
beaconid=\"288027\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1107
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Powerful Energy</a></div></td><td
|
1108
|
+
class=\"c2\"></td><td class=\"c3\">Current Preview</td><td class=\"c4\">00:20</td><td
|
1109
|
+
class=\"c5\">10/14/2011</td><td class=\"c6\"><span id=\"video-rating-288027\"
|
1110
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-288027\",
|
1111
|
+
288027, 4.024310, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1112
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1113
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1114
|
+
288027}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290780723\"
|
1115
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1116
|
+
class=\"r\"><td class=\"c0\">4 : 4</td><td class=\"c1\"><div class='vex-h'><a
|
1117
|
+
href=\"http://www.hulu.com/watch/288474/fringe-a-dangerous-force?c=Science-Fiction#x-4,vclip,1,0\"
|
1118
|
+
beaconid=\"288474\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1119
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Dangerous Force</a></div></td><td
|
1120
|
+
class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">00:49</td><td
|
1121
|
+
class=\"c5\">10/14/2011</td><td class=\"c6\"><span id=\"video-rating-288474\"
|
1122
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-288474\",
|
1123
|
+
288474, 4.271260, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1124
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1125
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1126
|
+
288474}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290781132\"
|
1127
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1128
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/284720/fringe-the-bridge?c=Science-Fiction#x-4,vclip,1,0\"
|
1129
|
+
beaconid=\"284720\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1130
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Bridge</a></div></td><td
|
1131
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">02:15</td><td
|
1132
|
+
class=\"c5\">09/29/2011</td><td class=\"c6\"><span id=\"video-rating-284720\"
|
1133
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-284720\",
|
1134
|
+
284720, 4.127730, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1135
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1136
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1137
|
+
284720}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290781523\"
|
1138
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1139
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/281094/fringe-a-sit-down-with-joshua-jackson?c=Science-Fiction#x-4,vclip,1,0\"
|
1140
|
+
beaconid=\"281094\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1141
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Sit-Down With
|
1142
|
+
Joshua Jackson</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
|
1143
|
+
class=\"c4\">00:30</td><td class=\"c5\">09/21/2011</td><td class=\"c6\"><span
|
1144
|
+
id=\"video-rating-281094\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
1145
|
+
VideoRating(\"video-rating-281094\", 281094, 3.326890, null);</script></td><td
|
1146
|
+
class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
1147
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1148
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1149
|
+
281094}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290781924\"
|
1150
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1151
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/281096/fringe-photo-shoot?c=Science-Fiction#x-4,vclip,1,0\"
|
1152
|
+
beaconid=\"281096\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1153
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Fringe Photo Shoot</a></div></td><td
|
1154
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">02:00</td><td
|
1155
|
+
class=\"c5\">09/21/2011</td><td class=\"c6\"><span id=\"video-rating-281096\"
|
1156
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-281096\",
|
1157
|
+
281096, 4.079650, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1158
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1159
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1160
|
+
281096}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290782306\"
|
1161
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1162
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/279473/fringe-the-future-is-now?c=Science-Fiction#x-4,vclip,1,0\"
|
1163
|
+
beaconid=\"279473\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1164
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Future Is Now</a></div></td><td
|
1165
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">02:25</td><td
|
1166
|
+
class=\"c5\">09/16/2011</td><td class=\"c6\"><span id=\"video-rating-279473\"
|
1167
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-279473\",
|
1168
|
+
279473, 4.321430, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1169
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1170
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1171
|
+
279473}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290782686\"
|
1172
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1173
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/279474/fringe-a-different-choice?c=Science-Fiction#x-4,vclip,1,0\"
|
1174
|
+
beaconid=\"279474\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1175
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Different Choice</a></div></td><td
|
1176
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">04:45</td><td
|
1177
|
+
class=\"c5\">09/16/2011</td><td class=\"c6\"><span id=\"video-rating-279474\"
|
1178
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-279474\",
|
1179
|
+
279474, 4.539750, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1180
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1181
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1182
|
+
279474}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290783066\"
|
1183
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1184
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/278842/fringe-the-journey-home?c=Science-Fiction#x-4,vclip,1,0\"
|
1185
|
+
beaconid=\"278842\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1186
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Journey Home</a></div></td><td
|
1187
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">02:25</td><td
|
1188
|
+
class=\"c5\">09/14/2011</td><td class=\"c6\"><span id=\"video-rating-278842\"
|
1189
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-278842\",
|
1190
|
+
278842, 4.497910, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1191
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1192
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1193
|
+
278842}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13272529078344\"
|
1194
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1195
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/278843/fringe-facing-destiny?c=Science-Fiction#x-4,vclip,1,0\"
|
1196
|
+
beaconid=\"278843\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1197
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Facing Destiny</a></div></td><td
|
1198
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">03:55</td><td
|
1199
|
+
class=\"c5\">09/14/2011</td><td class=\"c6\"><span id=\"video-rating-278843\"
|
1200
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-278843\",
|
1201
|
+
278843, 4.497910, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1202
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1203
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1204
|
+
278843}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13272529078381\"
|
1205
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1206
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/277787/fringe-a-tragic-past?c=Science-Fiction#x-4,vclip,1,0\"
|
1207
|
+
beaconid=\"277787\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1208
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Tragic Past</a></div></td><td
|
1209
|
+
class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">04:30</td><td
|
1210
|
+
class=\"c5\">09/11/2011</td><td class=\"c6\"><span id=\"video-rating-277787\"
|
1211
|
+
class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-277787\",
|
1212
|
+
277787, 4.451480, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
|
1213
|
+
super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1214
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1215
|
+
277787}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290784182\"
|
1216
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
|
1217
|
+
class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/277761/fringe-past-present-and-future?c=Science-Fiction#x-4,vclip,1,0\"
|
1218
|
+
beaconid=\"277761\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
|
1219
|
+
info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Past, Present and
|
1220
|
+
Future</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
|
1221
|
+
class=\"c4\">04:20</td><td class=\"c5\">09/11/2011</td><td class=\"c6\"><span
|
1222
|
+
id=\"video-rating-277761\" class=\"video-rating\"></span><script type=\"text/javascript\">new
|
1223
|
+
VideoRating(\"video-rating-277761\", 277761, 4.568630, null);</script></td><td
|
1224
|
+
class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
|
1225
|
+
/ playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{"is_movie":
|
1226
|
+
false, "auth_valid": true, "plus_only": false, "id":
|
1227
|
+
277761}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132725290784547\"
|
1228
|
+
src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
|
1229
|
+
type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",
|
1230
|
+
\"programming_type\", \"title\", \"duration\", \"original_premiere_date\", \"rating\"],
|
1231
|
+
{\"show_id\": 1241, \"page\": 1, \"video_type\": \"clip\", \"sort\": \"original_premiere_date\",
|
1232
|
+
\"order\": \"desc\"});\n\n//]]>\n</script>\n </div>\n\n\n<div class=\"fixed-lg
|
1233
|
+
container\">\n <div class=\"fluid container\">\n <div class=\"vslc\" id=\"offsite-container\"><div
|
1234
|
+
class=\"vsltitle\"><div class=\"vl\"><h2 class=\"cufonable no-rss-widget\">Available
|
1235
|
+
Elsewhere (10)</h2></div></div><div class=\"vslnav\"><div class=\"vl\" style=\"min-height:
|
1236
|
+
29px\"><div style=\"padding-top: 5px\">Episodes available for free on other
|
1237
|
+
websites.</div></div><div class=\"vr\"><ul class=\"pages\" style=\"display:
|
1238
|
+
none;\" id=\"s950_17hoiqm_availableelsewhere10-nav\"><li title=\"Go to the first
|
1239
|
+
page\" class=\"btn first\"></li><li title=\"Go to the previous page\" class=\"btn
|
1240
|
+
prev\"></li><li class=\"input\"><input autocomplete=\"off\" name=\"page\" onfocus=\"$(this).select();\"
|
1241
|
+
onkeydown=\"if(event.keyCode == 13) s950_17hoiqm_availableelsewhere10.move(event,
|
1242
|
+
'input');\" type=\"text\" value=\"\" /></li><li class=\"of\">of</li><li title=\"Go
|
1243
|
+
to the last page\" class=\"total\"></li><li title=\"Go to the next page\" class=\"btn
|
1244
|
+
next\"></li></ul></div></div><div class=\"lazy-load vsl vsl-short\" id=\"s950_17hoiqm_availableelsewhere10\"><ul></ul></div><script
|
1245
|
+
type=\"text/javascript\">\n//<![CDATA[\nvar s950_17hoiqm_availableelsewhere10
|
1246
|
+
= new VideoSlider(\"s950_17hoiqm_availableelsewhere10\", {\"maxCount\":10,\"urlOptions\":{\"show_id\":1241,\"type\":\"offsite\",\"page\":1,\"sort\":\"original_premiere_date\",\"season\":\"\",\"items_per_page\":5},\"seasonCounts\":{\"offsite\":{\"all\":10,\"s1\":10},\"all\":{\"all\":10,\"s1\":10}},\"url\":\"http://www.hulu.com/videos/slider\",\"perPageCount\":5})\n//]]>\n</script></div>\n
|
1247
|
+
\ </div>\n</div>\n\n</div>\n\n\n<a id=\"details\" name=\"details\"> </a>\n<div
|
1248
|
+
class=\"fixed-lg container\" style=\"padding-top:20px;\">\n <div class=\"section
|
1249
|
+
details\">\n <div class=\"standard tidy\">\n <div class=\"layout a-c
|
1250
|
+
clearfix\">\n \n <div class=\"gr a\" style=\"width:100%;\">\n
|
1251
|
+
\ <div class=\"details-bg-container\" style=\"width:100%\">\n <h2
|
1252
|
+
class=\"cufonable\">Title Details</h2>\n </div>\n <div
|
1253
|
+
class=\"relative\">\n <div class=\"label\">Network / Studio</div>\n
|
1254
|
+
\ <div class=\"info\"><a href=\"/companies/8\" class=\"show-title\">FOX</a></div>\n
|
1255
|
+
\ \n <div class=\"label\">Title</div>\n <div class=\"info\"><h1>Fringe</h1></div>\n
|
1256
|
+
\ \n \n <div class=\"label\">Genres</div>\n <div
|
1257
|
+
class=\"info\"><b><a href=\"http://www.hulu.com/genres/Action-and-Adventure\"
|
1258
|
+
class=\"show-title\">Action and Adventure</a> | <a href=\"http://www.hulu.com/genres/Drama\"
|
1259
|
+
class=\"show-title\">Drama</a> | <a href=\"http://www.hulu.com/genres/Science-Fiction\"
|
1260
|
+
class=\"show-title\">Science Fiction</a></b></div>\n \n \n <div
|
1261
|
+
class=\"label\">Description</div>\n <div class=\"info\">From J.J.
|
1262
|
+
Abrams ("Lost"), Roberto Orci and Alex Kurtzman, the team behind "Star
|
1263
|
+
Trek," "Mission: Impossible III" and "Alias," comes
|
1264
|
+
a new drama that will thrill, terrify and explore the blurring line between
|
1265
|
+
science fiction and reality.\n\nWhen an international flight lands at Boston's
|
1266
|
+
Logan Airport and the passengers and crew have all died grisly deaths, FBI Special
|
1267
|
+
Agent Olivia Dunham (newcomer Anna Torv) is called in to investigate. After
|
1268
|
+
her partner, Special Agent John Scott (Mark Valley, "Boston Legal"),
|
1269
|
+
is nearly killed during the investigation, a desperate Olivia searches frantically
|
1270
|
+
for someone to help, leading her to Dr. Walter Bishop (John Noble, "Lord
|
1271
|
+
of the Rings: Return of the King"), our generation's Einstein. There's
|
1272
|
+
only one catch: he's been institutionalized for the last 20 years, and the only
|
1273
|
+
way to question him requires pulling his estranged son Peter (Joshua Jackson,
|
1274
|
+
"Dawson's Creek") in to help. \n\nWhen Olivia's investigation leads
|
1275
|
+
her to manipulative corporate executive Nina Sharp (Blair Brown, "Altered
|
1276
|
+
States"), our unlikely trio along with fellow FBI Agents Phillip Broyles
|
1277
|
+
(Lance Reddick, "The Wire"), Charlie Francis (Kirk Acevedo, "Oz")
|
1278
|
+
and Astrid Farnsworth (Jasika Nicole, "Law & Order: Criminal Intent")
|
1279
|
+
will discover that what happened on Flight 627 is only a small piece of a larger,
|
1280
|
+
more shocking truth.</div>\n \n \n \n </div>\n
|
1281
|
+
\ <br style=\"clear:both;\" />\n \n <div class=\"ext-show-link-container\"><div
|
1282
|
+
class=\"ext-show-link\">For insider news, photos, and more visit the official
|
1283
|
+
<a href=\"http://www.fox.com/fringe/\" target=\"_blank\">Fringe website</a></div></div>\n
|
1284
|
+
\ \n </div>\n \n\n \n\n \n </div>\n
|
1285
|
+
\ </div>\n </div>\n</div>\n\n\n\n\n\n\n\n \n<div class=\"activities-pane\"
|
1286
|
+
id=\"activities-pane\">\n <div class=\"fluid bg-gray\" style=\"margin: 0px;
|
1287
|
+
padding: 20px 0px 5px 0px;\">\n <div class=\"fixed-lg container\" id=\"activities-container\">\n
|
1288
|
+
\ \n <div class=\"header\">\n <div id=\"activities-scrollto\"></div>\n
|
1289
|
+
\ <div class=\"title\">\n <h2 class=\"cufonable\">Activities</h2>\n </div>\n
|
1290
|
+
\ <div class=\"activities-select\" style=\"float: left; padding: 5px 0px 0px
|
1291
|
+
5px;\">\n \n ( <a class=\"utility-link\" href=\"#\" onclick=\"if (!Behaviors.isLoggedIn())
|
1292
|
+
{ FloatingLoginForm.show(this); return false; } Activity.toggleSelection('friends',
|
1293
|
+
1241, 'Show');; return false;\">show only my Friends' activities</a> )\n \n
|
1294
|
+
\ </div>\n <div id=\"activities-preview-loading\" class=\"tab-loading-circle
|
1295
|
+
activities-preview-loading\" style=\"display: none;\">\n <img alt=\"Loading-animated-circle\"
|
1296
|
+
border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1297
|
+
width=\"16\" />\n </div>\n <br style=\"clear:both;\"/>\n</div>\n<div class=\"section\"
|
1298
|
+
style=\"padding-top: 5px;\">\n <div class=\"activities-list\">\n <div class=\"header\">\n
|
1299
|
+
\ <div style=\"float: left; padding-right: 5px;\">\n <div style=\"padding-bottom:
|
1300
|
+
4px;\">\n <a class=\"utility-link\" href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('reviews',
|
1301
|
+
'/reviews/tab_load?reviewable_id=1241&reviewable_type=Show', true, null);
|
1302
|
+
window.scrollTo(0, 400); return false;; return false;\">Reviews (395)</a>\n
|
1303
|
+
\ </div>\n <a href=\"#\"><img alt=\"Create new review\" border=\"0\"
|
1304
|
+
class=\"hover-me\" id=\"btn-addreview-small.gif13272543585785\" onclick=\"Activity.createNewReview(this,
|
1305
|
+
1241,'Show');return false;\" src=\"http://static.huluim.com/images/btn-addreview-small.gif?1204017197\"
|
1306
|
+
title=\"Create new review\" /></a>\n </div>\n <div style=\"float:
|
1307
|
+
left;\">\n <div style=\"padding-bottom: 4px;\">\n <a class=\"utility-link\"
|
1308
|
+
href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('forums',
|
1309
|
+
'/topics/tab_load?topicable_id=1241&topicable_type=Show', true, null); window.scrollTo(0,
|
1310
|
+
400); return false;; return false;\">Discussions (967)</a>\n </div>\n
|
1311
|
+
\ <a href=\"#\"><img alt=\"Create new topic\" border=\"0\" class=\"hover-me\"
|
1312
|
+
id=\"btn-add-topic.gif13272543585797\" onclick=\"Activity.createNewTopic(this,
|
1313
|
+
1241,'Show');return false;\" src=\"http://static.huluim.com/images/btn-add-topic.gif?1292384754\"
|
1314
|
+
title=\"Create new topic\" /></a>\n </div>\n\n <div class=\"page\">\n
|
1315
|
+
\ <ul>\n <li style=\"display: none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\"
|
1316
|
+
border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1317
|
+
width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
|
1318
|
+
height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
|
1319
|
+
width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
|
1320
|
+
alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
|
1321
|
+
width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;target_id=1241&amp;target_type=Show\"
|
1322
|
+
current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
|
1323
|
+
; new Ajax.Updater('activities-container', '/activities/list?display_type=default&target_id=1241&target_type=Show',
|
1324
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1325
|
+
}, parameters:Form.serialize(this)}); return false;\" total_pages=\"20\"> <input
|
1326
|
+
autocomplete=\"off\" class=\"long\" name=\"page\" onfocus=\"$(this).select();\"
|
1327
|
+
type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
|
1328
|
+
\ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
|
1329
|
+
; new Ajax.Updater('activities-container', '/activities/list?display_type=default&page=20&target_id=1241&target_type=Show',
|
1330
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1331
|
+
}}); return false;\" title=\"Go to the last page\">20</a>\n </li>\n\n <li
|
1332
|
+
class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
|
1333
|
+
; new Ajax.Updater('activities-container', '/activities/list?display_type=default&page=2&target_id=1241&target_type=Show',
|
1334
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1335
|
+
}}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
|
1336
|
+
height=\"12\" id=\"pagination-arrow-next.gif132725435858516\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
|
1337
|
+
title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
|
1338
|
+
type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
|
1339
|
+
\ <br style=\"clear:both;\"/>\n </div>\n <div class=\"list\">\n \n
|
1340
|
+
\ \n \n <div class=\"item activatable post\">\n \n <div
|
1341
|
+
class=\"extras\">\n <div class=\"timestamp\">about 10 hours ago</div>\n
|
1342
|
+
\ \n <div class=\"hover\"> \n <span style=\"position: relative\">\n
|
1343
|
+
\ Report as: <a class=\"p-content-extras-link report-link\"
|
1344
|
+
href=\"javascript:void(0)\" data-url=\"/posts/flag/1369918?type=spam\" data-after=\"Reported
|
1345
|
+
as spam\">spam</a> / <a class=\"p-content-extras-link report-link\"
|
1346
|
+
href=\"javascript:void(0)\" data-url=\"/posts/flag/1369918?type=offensive\"
|
1347
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1348
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369918&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1349
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1350
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif1327254358588\"
|
1351
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1352
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1353
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1354
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1355
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1356
|
+
\ <a href=\"/profiles/u/u0X5Y4zQSFPzFzaGGV1CZQ\" class=\"info_hover\">Peace
|
1357
|
+
Man</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1358
|
+
'/topics/tab_load?post_id=1369918&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1359
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1360
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1361
|
+
class=\"\" style=\"overflow: hidden;\"> Tell ya what, the board for it has been
|
1362
|
+
really fun and active. Lot of good people on there. \n <a
|
1363
|
+
class=\"utility-link\" href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369918&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1364
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1365
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1366
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
|
1367
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 11
|
1368
|
+
hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
|
1369
|
+
relative\">\n Report as: <a class=\"p-content-extras-link
|
1370
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369903?type=spam\"
|
1371
|
+
data-after=\"Reported as spam\">spam</a> / <a class=\"p-content-extras-link
|
1372
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369903?type=offensive\"
|
1373
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1374
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369903&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1375
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1376
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132725435859282\"
|
1377
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1378
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1379
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1380
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1381
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1382
|
+
\ <a href=\"/profiles/u/hyqr4PAGOTWkLf226F7lyQ\" class=\"info_hover\">Sean
|
1383
|
+
Lehman</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1384
|
+
'/topics/tab_load?post_id=1369903&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1385
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1386
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1387
|
+
class=\"\" style=\"overflow: hidden;\"> I've added it to my favorites. I will
|
1388
|
+
have to check it out. \n <a class=\"utility-link\" href=\"#\"
|
1389
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369903&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1390
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1391
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1392
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable comment\">\n
|
1393
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 11
|
1394
|
+
hours ago</div>\n \n <div class=\"hover\"> <a href=\"#\" onclick=\"Tab.loadTab('reviews',
|
1395
|
+
'/reviews/tab_load?review_id=553850&reviewable_id=1241&reviewable_type=Show',
|
1396
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
|
1397
|
+
on this review too\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132725435859717\"
|
1398
|
+
src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
|
1399
|
+
on this review too\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1400
|
+
\ \n <div class=\"header\">\n <a href=\"/profiles/u/wPlgo18si2BuxWbHJM-Mfw\"
|
1401
|
+
class=\"info_hover\">Michelle Lopez</a> commented on the review \"<a href=\"#\"
|
1402
|
+
onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=553850&reviewable_id=1241&reviewable_type=Show',
|
1403
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Not Again!</a>\"<br/>\n
|
1404
|
+
\ </div>\n <div>\n I read that Fringe is "on
|
1405
|
+
the bubble" as of right now, however, one of the showrunners (or something)
|
1406
|
+
said that he knows how this season ends as the ending could serve as a series
|
1407
|
+
finale. So it seems that even those involved with the show are preparing for
|
1408
|
+
the worst. : (\n </div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1409
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
|
1410
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 12
|
1411
|
+
hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
|
1412
|
+
relative\">\n Report as: <a class=\"p-content-extras-link
|
1413
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369814?type=spam\"
|
1414
|
+
data-after=\"Reported as spam\">spam</a> / <a class=\"p-content-extras-link
|
1415
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369814?type=offensive\"
|
1416
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1417
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369814&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1418
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1419
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132725435860048\"
|
1420
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1421
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1422
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1423
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1424
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1425
|
+
\ <a href=\"/profiles/u/NKT355pZO9eRLU2lZKitdQ\" class=\"info_hover\">Bac
|
1426
|
+
Gamon</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1427
|
+
'/topics/tab_load?post_id=1369814&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1428
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1429
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1430
|
+
class=\"\" style=\"overflow: hidden;\"> How do the networks know we've watched
|
1431
|
+
the show? I've always been curious about this...but not enough to remember
|
1432
|
+
to find out .. but this topic is handy \n <a class=\"utility-link\"
|
1433
|
+
href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369814&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1434
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1435
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1436
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
|
1437
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 13
|
1438
|
+
hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
|
1439
|
+
relative\">\n Report as: <a class=\"p-content-extras-link
|
1440
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369740?type=spam\"
|
1441
|
+
data-after=\"Reported as spam\">spam</a> / <a class=\"p-content-extras-link
|
1442
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369740?type=offensive\"
|
1443
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1444
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369740&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1445
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1446
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132725435860519\"
|
1447
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1448
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1449
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1450
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1451
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1452
|
+
\ <a href=\"/profiles/u/u0X5Y4zQSFPzFzaGGV1CZQ\" class=\"info_hover\">Peace
|
1453
|
+
Man</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1454
|
+
'/topics/tab_load?post_id=1369740&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1455
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1456
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1457
|
+
class=\"\" style=\"overflow: hidden;\"> I am totally lovin' it! I'm not sure
|
1458
|
+
if it's your cup of tea or not, but it's definitely worth checkin' out. Unfortunately
|
1459
|
+
i don't think all of the eps on on here right now, but it's not that far in
|
1460
|
+
yet. \n <a class=\"utility-link\" href=\"#\" onclick=\"Tab.loadTab('forums',
|
1461
|
+
'/topics/tab_load?post_id=1369740&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1462
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1463
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1464
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
|
1465
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 14
|
1466
|
+
hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
|
1467
|
+
relative\">\n Report as: <a class=\"p-content-extras-link
|
1468
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369736?type=spam\"
|
1469
|
+
data-after=\"Reported as spam\">spam</a> / <a class=\"p-content-extras-link
|
1470
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369736?type=offensive\"
|
1471
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1472
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369736&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1473
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1474
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132725435860985\"
|
1475
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1476
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1477
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1478
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1479
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1480
|
+
\ <a href=\"/profiles/u/hyqr4PAGOTWkLf226F7lyQ\" class=\"info_hover\">Sean
|
1481
|
+
Lehman</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1482
|
+
'/topics/tab_load?post_id=1369736&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1483
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1484
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1485
|
+
class=\"\" style=\"overflow: hidden;\"> My putting Spoiler at the beginning
|
1486
|
+
of my post wasn't really aimed at you. I tend to put that at the beginning
|
1487
|
+
of any of my posts that might contain spoilers.<div class=\"p-spacer\"></div>I
|
1488
|
+
haven't seen OUAT. Is it something good I should be watching?<div class=\"p-spacer\"></div>I
|
1489
|
+
like your cortexiphan theory. \n <a class=\"utility-link\"
|
1490
|
+
href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369736&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1491
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1492
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1493
|
+
\ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
|
1494
|
+
\ \n <div class=\"extras\">\n <div class=\"timestamp\">about 19
|
1495
|
+
hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
|
1496
|
+
relative\">\n Report as: <a class=\"p-content-extras-link
|
1497
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369399?type=spam\"
|
1498
|
+
data-after=\"Reported as spam\">spam</a> / <a class=\"p-content-extras-link
|
1499
|
+
report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1369399?type=offensive\"
|
1500
|
+
data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
|
1501
|
+
onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1369399&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1502
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
|
1503
|
+
to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132725435861442\"
|
1504
|
+
src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
|
1505
|
+
to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
|
1506
|
+
\ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
|
1507
|
+
alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
|
1508
|
+
/></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
|
1509
|
+
\ <a href=\"/profiles/u/u0X5Y4zQSFPzFzaGGV1CZQ\" class=\"info_hover\">Peace
|
1510
|
+
Man</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
|
1511
|
+
'/topics/tab_load?post_id=1369399&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1512
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">Fringe
|
1513
|
+
renewal rumors and news</a>\"<br/>\n \n </div>\n <div
|
1514
|
+
class=\"\" style=\"overflow: hidden;\"> Yeah, thanks for marking that one. Honestly,
|
1515
|
+
there's so few on here i'm not sure how much it matters right now though! <div
|
1516
|
+
class=\"p-spacer\"></div>Ok, i'm gonna go see if i can find it and catch those
|
1517
|
+
15 minutes somewhere. I'm thinkin' maybe ... Megavideo?!!! <he he!><div
|
1518
|
+
class=\"p-spacer\"></div>The kids who played little Olivia and little Peter
|
1519
|
+
were on an episode of OUAT (as Hansel & Gretel) and people were saying
|
1520
|
+
how she looked too much older than him to be his twin, and i said something
|
1521
|
+
like "Well, she WAS a cortexiphan kid, so that probably affected her!!"
|
1522
|
+
\n <a class=\"utility-link\" href=\"#\" onclick=\"Tab.loadTab('forums',
|
1523
|
+
'/topics/tab_load?post_id=1369399&segregate_video=true&topic_id=310550&topicable_id=1241&topicable_type=Show',
|
1524
|
+
true, null); window.scrollTo(0, 400); return false;; return false;\">See 49
|
1525
|
+
other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
|
1526
|
+
\ </div>\n\n\n \n \n </div>\n\n <div class=\"ender\" style=\"margin-bottom:
|
1527
|
+
10px;\">\n <div class=\"page\">\n <ul>\n <li style=\"display: none\"
|
1528
|
+
class=\"pagination-loading\"><img alt=\"Loading-animated-circle\" border=\"0\"
|
1529
|
+
height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1530
|
+
width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
|
1531
|
+
height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
|
1532
|
+
width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
|
1533
|
+
alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
|
1534
|
+
width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;target_id=1241&amp;target_type=Show\"
|
1535
|
+
current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
|
1536
|
+
; new Ajax.Updater('activities-container', '/activities/list?display_type=default&target_id=1241&target_type=Show',
|
1537
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1538
|
+
Effect.ScrollTo('activities-scrollto', { offset: -20 });}, parameters:Form.serialize(this)});
|
1539
|
+
return false;\" total_pages=\"20\"> <input autocomplete=\"off\" class=\"long\"
|
1540
|
+
name=\"page\" onfocus=\"$(this).select();\" type=\"text\" value=\"1\" />\n </form>
|
1541
|
+
\ \n </li>\n <li class=\"of\">of</li>\n <li class=\"total\">\n
|
1542
|
+
\ <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
|
1543
|
+
; new Ajax.Updater('activities-container', '/activities/list?display_type=default&page=20&target_id=1241&target_type=Show',
|
1544
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1545
|
+
Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"
|
1546
|
+
title=\"Go to the last page\">20</a>\n </li>\n\n <li class=\"btn\" id=\"sosodssfs\">\n
|
1547
|
+
\ <a href=\"#\" onclick=\"Pagination.loading($(this)); ; new Ajax.Updater('activities-container',
|
1548
|
+
'/activities/list?display_type=default&page=2&target_id=1241&target_type=Show',
|
1549
|
+
{asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
|
1550
|
+
Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"><img
|
1551
|
+
alt=\"Go to the next page\" border=\"0\" class=\"hover-me\" height=\"12\" id=\"pagination-arrow-next.gif132725435862263\"
|
1552
|
+
src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
|
1553
|
+
title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
|
1554
|
+
type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
|
1555
|
+
\ <br style=\"clear:both;\"/>\n </div>\n\n </div>\n <br style=\"clear:both;\"
|
1556
|
+
/>\n</div>\n\n<script type=\"text/javascript\">\n//<![CDATA[\nif (typeof(google_analytics_ajax)
|
1557
|
+
== \"function\") google_analytics_ajax(\"activities/default/Show/1241/1\");\n//]]>\n</script>\n\n
|
1558
|
+
\ \n </div>\n </div>\n</div>\n\n<div id=\"report-menu\" class=\"report-menu\"
|
1559
|
+
style=\"display:none\">\n <div class=\"report-menu-bar\">\n <a href=\"#\"
|
1560
|
+
onclick=\"Review.hideReportMenu(); return false;\"><img alt=\"Popup-close\"
|
1561
|
+
border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
1562
|
+
width=\"11\" /></a>\n </div>\n\n <div class=\"report-menu-content\">\n <form
|
1563
|
+
action=\"/show\" method=\"post\" onsubmit=\"Review.sendReport(); return false\">\n
|
1564
|
+
\ <p class=\"indicate\">Please indicate why you're flagging this review:</p>\n\n
|
1565
|
+
\ <table>\n \n <tr>\n <td>\n <input checked=\"checked\"
|
1566
|
+
id=\"flag_type_insulting\" name=\"flag_type\" type=\"radio\" value=\"insulting\"
|
1567
|
+
/>\n <label for=\"flag_type_insulting\">Violent/Insulting</label>\n
|
1568
|
+
\ </td>\n \n \n \n <td>\n <input id=\"flag_type_language\"
|
1569
|
+
name=\"flag_type\" type=\"radio\" value=\"language\" />\n <label for=\"flag_type_language\">Bad
|
1570
|
+
Language</label>\n </td>\n </tr>\n \n <tr>\n <td>\n
|
1571
|
+
\ <input id=\"flag_type_spoiler\" name=\"flag_type\" type=\"radio\"
|
1572
|
+
value=\"spoiler\" />\n <label for=\"flag_type_spoiler\">Spoiler</label>\n
|
1573
|
+
\ </td>\n \n \n \n <td>\n <input id=\"flag_type_spam\"
|
1574
|
+
name=\"flag_type\" type=\"radio\" value=\"spam\" />\n <label for=\"flag_type_spam\">Spam</label>\n
|
1575
|
+
\ </td>\n </tr>\n \n <tr>\n <td>\n <input
|
1576
|
+
id=\"flag_type_content_request\" name=\"flag_type\" type=\"radio\" value=\"content_request\"
|
1577
|
+
/>\n <label for=\"flag_type_content_request\">Content Request</label>\n
|
1578
|
+
\ </td>\n \n \n \n <td>\n <input id=\"flag_type_off_topic\"
|
1579
|
+
name=\"flag_type\" type=\"radio\" value=\"off_topic\" />\n <label for=\"flag_type_off_topic\">Off-Topic</label>\n
|
1580
|
+
\ </td>\n </tr>\n \n </table>\n\n <p class=\"policy\">To
|
1581
|
+
see Hulu's review policy, <a href=\"http://www.hulu.com/support/login_faq#review\">click
|
1582
|
+
here</a>.</p>\n\n <div class=\"buttons\">\n <input alt=\"Submit\"
|
1583
|
+
border=\"0\" class=\"save hover-me\" id=\"btn-submit-small.gif132725435862611\"
|
1584
|
+
src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\" title=\"Submit\"
|
1585
|
+
type=\"image\" />\n <a href=\"#\" onclick=\"Review.hideReportMenu();
|
1586
|
+
return false;\"><img alt=\"Cancel\" border=\"0\" class=\"cancel hover-me\" id=\"btn-cancel-small.gif132725435862652\"
|
1587
|
+
src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" title=\"Cancel\"
|
1588
|
+
/></a>\n </div>\n <div class=\"button-container working\" style=\"display:none;\">'\n
|
1589
|
+
\ <img alt=\"Loading-animated-small\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
|
1590
|
+
/>\n </div>\n\n </form>\n </div>\n</div>\n\n\n\n\n\n \n <div class=\"m-tags-pane\"
|
1591
|
+
id='m_tags_pane'>\n <div class=\"fluid bg-gray\">\n \n<div class=\"fixed-lg
|
1592
|
+
container\" >\n <div class=\"header\">\n <div class=\"tags-top-search\">\n
|
1593
|
+
\ <form action=\"/search/search_tag\" autocomplete=\"off\" id=\"m_search_tag_form\"
|
1594
|
+
method=\"get\" onsubmit=\"return (this.query.value != '')\">\n <div class=\"tags-top-search-label\">\n
|
1595
|
+
\ Search with tags:\n </div>\n <div class=\"tags-top-search-input\"
|
1596
|
+
style=\"float: left;\">\n <input autocomplete=\"off\" class=\"tags-search\"
|
1597
|
+
id=\"m_search_tag_name\" name=\"query\" type=\"text\" value=\"\" />\n <a
|
1598
|
+
href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
|
1599
|
+
id=\"m_tags_search_button\" onclick=\"if($('m_search_tag_form').query.value
|
1600
|
+
!= '') $('m_search_tag_form').submit();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
|
1601
|
+
style=\"vertical-align: top; margin-left: -4px; *margin-top: 1px;\" /></a>\n
|
1602
|
+
\ </div>\n </form>\n <ul id=\"m_search_tags_suggestion\" style=\"display:none;\"
|
1603
|
+
class=\"tags-suggestion-container\"></ul>\n </div>\n <h2 class=\"cufonable
|
1604
|
+
tags-cufon-title\">Tags<span id='m_tags_count' style='padding-left:10px;'>(154)</span></h2>\n
|
1605
|
+
\ <div class=\"learn-more-link\">\n <a href=\"javascript:void(null)\" class=\"bracket-link\"
|
1606
|
+
onclick=\"return toggle_tags_learn_more(this); return false ;\">[ <span>?</span>
|
1607
|
+
]</a>\n </div>\n <div style=\"clear:both\"></div>\n</div>\n\n <div id=\"m_tags_caption\"
|
1608
|
+
style=\"display:none;\" class=\"middle-caption\">\n Tags are user-generated
|
1609
|
+
labels related to this video or show that can help you discover related videos
|
1610
|
+
on Hulu. Check the tags you feel are most appropriate for this show or add your
|
1611
|
+
own (the number in parentheses indicates how many other users have used that
|
1612
|
+
tag.) To find other shows with similar tags, simply click on the tag that interests
|
1613
|
+
you most.\n </div>\n <div id='m_tags_content_loading' class=\"tags-content-loading\">\n
|
1614
|
+
\ <img src=\"/images/loading-animated-small.gif\" alt=\"loading\"/>\n </div>\n
|
1615
|
+
\ <div id='m_tags_content_wrapper' style=\"display:none;\" class='tags-content-wrapper'>\n
|
1616
|
+
\ <div id='m_tags_content' class=\"tags-content\">\n <div style=''>\r\n
|
1617
|
+
\ <div class=\"tags-content-table\" id=\"m_content_table\">\r\n \r\n <div
|
1618
|
+
class=\"tags-category-name\">\r\n Genre:\r\n </div>\r\n <div
|
1619
|
+
class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
|
1620
|
+
tid= '2283' cid='11'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1621
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"science
|
1622
|
+
fiction","tag_type_id":11,"tag_id":2283});\" tid=\"2283\"
|
1623
|
+
type=\"checkbox\" value=\"science fiction\" /></span><img alt=\"Loading-animated-circle\"
|
1624
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1625
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=science+fiction\"
|
1626
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2283?count=426&name=science+fiction&taggable_id=1241&taggable_type=Show\"
|
1627
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">science fiction</a>\n <div
|
1628
|
+
class='tagging-count'>\n (<span>426</span>)\n </div>\n </div>\r\n
|
1629
|
+
\ \r\n <div class='tags-content-cell' tid= '2723' cid='11'><span
|
1630
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1631
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"sci
|
1632
|
+
fi","tag_type_id":11,"tag_id":2723});\" tid=\"2723\"
|
1633
|
+
type=\"checkbox\" value=\"sci fi\" /></span><img alt=\"Loading-animated-circle\"
|
1634
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1635
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=sci+fi\"
|
1636
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2723?count=342&name=sci+fi&taggable_id=1241&taggable_type=Show\"
|
1637
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">sci fi</a>\n <div
|
1638
|
+
class='tagging-count'>\n (<span>342</span>)\n </div>\n </div>\r\n
|
1639
|
+
\ \r\n <div class='tags-content-cell' tid= '3038' cid='11'><span
|
1640
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1641
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"supernatural","tag_type_id":11,"tag_id":3038});\"
|
1642
|
+
tid=\"3038\" type=\"checkbox\" value=\"supernatural\" /></span><img alt=\"Loading-animated-circle\"
|
1643
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1644
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=supernatural\"
|
1645
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/3038?count=262&name=supernatural&taggable_id=1241&taggable_type=Show\"
|
1646
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">supernatural</a>\n <div
|
1647
|
+
class='tagging-count'>\n (<span>262</span>)\n </div>\n </div>\r\n
|
1648
|
+
\ \r\n <div class='tags-content-cell' tid= '2136' cid='11'><span
|
1649
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1650
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"paranormal","tag_type_id":11,"tag_id":2136});\"
|
1651
|
+
tid=\"2136\" type=\"checkbox\" value=\"paranormal\" /></span><img alt=\"Loading-animated-circle\"
|
1652
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1653
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=paranormal\"
|
1654
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2136?count=245&name=paranormal&taggable_id=1241&taggable_type=Show\"
|
1655
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">paranormal</a>\n <div
|
1656
|
+
class='tagging-count'>\n (<span>245</span>)\n </div>\n </div>\r\n
|
1657
|
+
\ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
|
1658
|
+
class=\"tags-category-name\">\r\n Time:\r\n </div>\r\n <div
|
1659
|
+
class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
|
1660
|
+
tid= '80326' cid='12'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1661
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"2011","tag_type_id":12,"tag_id":80326});\"
|
1662
|
+
tid=\"80326\" type=\"checkbox\" value=\"2011\" /></span><img alt=\"Loading-animated-circle\"
|
1663
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1664
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=2011\"
|
1665
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/80326?count=25&name=2011&taggable_id=1241&taggable_type=Show\"
|
1666
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">2011</a>\n <div class='tagging-count'>\n
|
1667
|
+
\ (<span>25</span>)\n </div>\n </div>\r\n \r\n <div
|
1668
|
+
class='tags-content-cell' tid= '50683' cid='12'><span class='tags-checkbox'><input
|
1669
|
+
id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
|
1670
|
+
"m_",\n {"tag_name":"2010","tag_type_id":12,"tag_id":50683});\"
|
1671
|
+
tid=\"50683\" type=\"checkbox\" value=\"2010\" /></span><img alt=\"Loading-animated-circle\"
|
1672
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1673
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=2010\"
|
1674
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/50683?count=13&name=2010&taggable_id=1241&taggable_type=Show\"
|
1675
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">2010</a>\n <div class='tagging-count'>\n
|
1676
|
+
\ (<span>13</span>)\n </div>\n </div>\r\n \r\n <div
|
1677
|
+
class='tags-content-cell' tid= '4081' cid='12'><span class='tags-checkbox'><input
|
1678
|
+
id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
|
1679
|
+
"m_",\n {"tag_name":"2008","tag_type_id":12,"tag_id":4081});\"
|
1680
|
+
tid=\"4081\" type=\"checkbox\" value=\"2008\" /></span><img alt=\"Loading-animated-circle\"
|
1681
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1682
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=2008\"
|
1683
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/4081?count=13&name=2008&taggable_id=1241&taggable_type=Show\"
|
1684
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">2008</a>\n <div class='tagging-count'>\n
|
1685
|
+
\ (<span>13</span>)\n </div>\n </div>\r\n \r\n <div
|
1686
|
+
class='tags-content-cell' tid= '88' cid='12'><span class='tags-checkbox'><input
|
1687
|
+
id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
|
1688
|
+
"m_",\n {"tag_name":"2009","tag_type_id":12,"tag_id":88});\"
|
1689
|
+
tid=\"88\" type=\"checkbox\" value=\"2009\" /></span><img alt=\"Loading-animated-circle\"
|
1690
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1691
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=2009\"
|
1692
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/88?count=9&name=2009&taggable_id=1241&taggable_type=Show\"
|
1693
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">2009</a>\n <div class='tagging-count'>\n
|
1694
|
+
\ (<span>9</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
|
1695
|
+
\ <br class=\"shim\" />\r\n \r\n <div class=\"tags-category-name\">\r\n
|
1696
|
+
\ People:\r\n </div>\r\n <div class=\"tags-categoried\">\r\n
|
1697
|
+
\ \r\n <div class='tags-content-cell' tid= '7171' cid='13'><span
|
1698
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1699
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"jj
|
1700
|
+
abrams","tag_type_id":13,"tag_id":7171});\" tid=\"7171\"
|
1701
|
+
type=\"checkbox\" value=\"jj abrams\" /></span><img alt=\"Loading-animated-circle\"
|
1702
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1703
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=jj+abrams\"
|
1704
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/7171?count=132&name=jj+abrams&taggable_id=1241&taggable_type=Show\"
|
1705
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">jj abrams</a>\n <div
|
1706
|
+
class='tagging-count'>\n (<span>132</span>)\n </div>\n </div>\r\n
|
1707
|
+
\ \r\n <div class='tags-content-cell' tid= '3455' cid='13'><span
|
1708
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1709
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"anna
|
1710
|
+
torv","tag_type_id":13,"tag_id":3455});\" tid=\"3455\"
|
1711
|
+
type=\"checkbox\" value=\"anna torv\" /></span><img alt=\"Loading-animated-circle\"
|
1712
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1713
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=anna+torv\"
|
1714
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/3455?count=87&name=anna+torv&taggable_id=1241&taggable_type=Show\"
|
1715
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">anna torv</a>\n <div
|
1716
|
+
class='tagging-count'>\n (<span>87</span>)\n </div>\n </div>\r\n
|
1717
|
+
\ \r\n <div class='tags-content-cell' tid= '103908' cid='13'><span
|
1718
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1719
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"peter
|
1720
|
+
bishop","tag_type_id":13,"tag_id":103908});\" tid=\"103908\"
|
1721
|
+
type=\"checkbox\" value=\"peter bishop\" /></span><img alt=\"Loading-animated-circle\"
|
1722
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1723
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=peter+bishop\"
|
1724
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/103908?count=72&name=peter+bishop&taggable_id=1241&taggable_type=Show\"
|
1725
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">peter bishop</a>\n <div
|
1726
|
+
class='tagging-count'>\n (<span>72</span>)\n </div>\n </div>\r\n
|
1727
|
+
\ \r\n <div class='tags-content-cell' tid= '3456' cid='13'><span
|
1728
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1729
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"john
|
1730
|
+
noble","tag_type_id":13,"tag_id":3456});\" tid=\"3456\"
|
1731
|
+
type=\"checkbox\" value=\"john noble\" /></span><img alt=\"Loading-animated-circle\"
|
1732
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1733
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=john+noble\"
|
1734
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/3456?count=51&name=john+noble&taggable_id=1241&taggable_type=Show\"
|
1735
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">john noble</a>\n <div
|
1736
|
+
class='tagging-count'>\n (<span>51</span>)\n </div>\n </div>\r\n
|
1737
|
+
\ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
|
1738
|
+
class=\"tags-category-name\">\r\n Place:\r\n </div>\r\n <div
|
1739
|
+
class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
|
1740
|
+
tid= '23396' cid='14'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1741
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"massachusetts","tag_type_id":14,"tag_id":23396});\"
|
1742
|
+
tid=\"23396\" type=\"checkbox\" value=\"massachusetts\" /></span><img alt=\"Loading-animated-circle\"
|
1743
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1744
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=massachusetts\"
|
1745
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/23396?count=20&name=massachusetts&taggable_id=1241&taggable_type=Show\"
|
1746
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">massachusetts</a>\n <div
|
1747
|
+
class='tagging-count'>\n (<span>20</span>)\n </div>\n </div>\r\n
|
1748
|
+
\ \r\n <div class='tags-content-cell' tid= '2184' cid='14'><span
|
1749
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1750
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"space","tag_type_id":14,"tag_id":2184});\"
|
1751
|
+
tid=\"2184\" type=\"checkbox\" value=\"space\" /></span><img alt=\"Loading-animated-circle\"
|
1752
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1753
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=space\"
|
1754
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2184?count=14&name=space&taggable_id=1241&taggable_type=Show\"
|
1755
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">space</a>\n <div class='tagging-count'>\n
|
1756
|
+
\ (<span>14</span>)\n </div>\n </div>\r\n \r\n <div
|
1757
|
+
class='tags-content-cell' tid= '7850' cid='14'><span class='tags-checkbox'><input
|
1758
|
+
id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
|
1759
|
+
"m_",\n {"tag_name":"boston","tag_type_id":14,"tag_id":7850});\"
|
1760
|
+
tid=\"7850\" type=\"checkbox\" value=\"boston\" /></span><img alt=\"Loading-animated-circle\"
|
1761
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1762
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=boston\"
|
1763
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/7850?count=12&name=boston&taggable_id=1241&taggable_type=Show\"
|
1764
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">boston</a>\n <div
|
1765
|
+
class='tagging-count'>\n (<span>12</span>)\n </div>\n </div>\r\n
|
1766
|
+
\ \r\n <div class='tags-content-cell' tid= '14509' cid='14'><span
|
1767
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1768
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"new
|
1769
|
+
york city","tag_type_id":14,"tag_id":14509});\" tid=\"14509\"
|
1770
|
+
type=\"checkbox\" value=\"new york city\" /></span><img alt=\"Loading-animated-circle\"
|
1771
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1772
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=new+york+city\"
|
1773
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/14509?count=9&name=new+york+city&taggable_id=1241&taggable_type=Show\"
|
1774
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">new york city</a>\n <div
|
1775
|
+
class='tagging-count'>\n (<span>9</span>)\n </div>\n </div>\r\n
|
1776
|
+
\ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
|
1777
|
+
class=\"tags-category-name\">\r\n Language:\r\n </div>\r\n <div
|
1778
|
+
class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
|
1779
|
+
tid= '2523' cid='3'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1780
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"english","tag_type_id":3,"tag_id":2523});\"
|
1781
|
+
tid=\"2523\" type=\"checkbox\" value=\"english\" /></span><img alt=\"Loading-animated-circle\"
|
1782
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1783
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=english\"
|
1784
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2523?count=57&name=english&taggable_id=1241&taggable_type=Show\"
|
1785
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">english</a>\n <div
|
1786
|
+
class='tagging-count'>\n (<span>57</span>)\n </div>\n </div>\r\n
|
1787
|
+
\ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
|
1788
|
+
class=\"tags-category-name\">\r\n Details:\r\n </div>\r\n <div
|
1789
|
+
class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
|
1790
|
+
tid= '103675' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1791
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"fringe
|
1792
|
+
science","tag_type_id":15,"tag_id":103675});\" tid=\"103675\"
|
1793
|
+
type=\"checkbox\" value=\"fringe science\" /></span><img alt=\"Loading-animated-circle\"
|
1794
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1795
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=fringe+science\"
|
1796
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/103675?count=280&name=fringe+science&taggable_id=1241&taggable_type=Show\"
|
1797
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">fringe science</a>\n <div
|
1798
|
+
class='tagging-count'>\n (<span>280</span>)\n </div>\n </div>\r\n
|
1799
|
+
\ \r\n <div class='tags-content-cell' tid= '3452' cid='15'><span
|
1800
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1801
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"fringe","tag_type_id":15,"tag_id":3452});\"
|
1802
|
+
tid=\"3452\" type=\"checkbox\" value=\"fringe\" /></span><img alt=\"Loading-animated-circle\"
|
1803
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1804
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=fringe\"
|
1805
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/3452?count=190&name=fringe&taggable_id=1241&taggable_type=Show\"
|
1806
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">fringe</a>\n <div
|
1807
|
+
class='tagging-count'>\n (<span>190</span>)\n </div>\n </div>\r\n
|
1808
|
+
\ \r\n <div class='tags-content-cell' tid= '38515' cid='15'><span
|
1809
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1810
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"parallel
|
1811
|
+
universe","tag_type_id":15,"tag_id":38515});\" tid=\"38515\"
|
1812
|
+
type=\"checkbox\" value=\"parallel universe\" /></span><img alt=\"Loading-animated-circle\"
|
1813
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1814
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=parallel+universe\"
|
1815
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/38515?count=138&name=parallel+universe&taggable_id=1241&taggable_type=Show\"
|
1816
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">parallel universe</a>\n <div
|
1817
|
+
class='tagging-count'>\n (<span>138</span>)\n </div>\n </div>\r\n
|
1818
|
+
\ \r\n <div class='tags-content-cell' tid= '4909' cid='15'><span
|
1819
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1820
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"phenomena","tag_type_id":15,"tag_id":4909});\"
|
1821
|
+
tid=\"4909\" type=\"checkbox\" value=\"phenomena\" /></span><img alt=\"Loading-animated-circle\"
|
1822
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1823
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=phenomena\"
|
1824
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/4909?count=132&name=phenomena&taggable_id=1241&taggable_type=Show\"
|
1825
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">phenomena</a>\n <div
|
1826
|
+
class='tagging-count'>\n (<span>132</span>)\n </div>\n </div>\r\n
|
1827
|
+
\ \r\n <div class='tags-content-cell' tid= '4363' cid='15'><span
|
1828
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1829
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"x-files","tag_type_id":15,"tag_id":4363});\"
|
1830
|
+
tid=\"4363\" type=\"checkbox\" value=\"x-files\" /></span><img alt=\"Loading-animated-circle\"
|
1831
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1832
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=x-files\"
|
1833
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/4363?count=107&name=x-files&taggable_id=1241&taggable_type=Show\"
|
1834
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">x-files</a>\n <div
|
1835
|
+
class='tagging-count'>\n (<span>107</span>)\n </div>\n </div>\r\n
|
1836
|
+
\ \r\n <div class='tags-content-cell' tid= '105158' cid='15'><span
|
1837
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1838
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"alternate
|
1839
|
+
realities","tag_type_id":15,"tag_id":105158});\" tid=\"105158\"
|
1840
|
+
type=\"checkbox\" value=\"alternate realities\" /></span><img alt=\"Loading-animated-circle\"
|
1841
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1842
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=alternate+realities\"
|
1843
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/105158?count=94&name=alternate+realities&taggable_id=1241&taggable_type=Show\"
|
1844
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\" title=\"alternate realities\">alternate
|
1845
|
+
real...</a>\n <div class='tagging-count'>\n (<span>94</span>)\n
|
1846
|
+
\ </div>\n </div>\r\n \r\n <div class='tags-content-cell'
|
1847
|
+
tid= '2968' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1848
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"investigation","tag_type_id":15,"tag_id":2968});\"
|
1849
|
+
tid=\"2968\" type=\"checkbox\" value=\"investigation\" /></span><img alt=\"Loading-animated-circle\"
|
1850
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1851
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=investigation\"
|
1852
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2968?count=69&name=investigation&taggable_id=1241&taggable_type=Show\"
|
1853
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">investigation</a>\n <div
|
1854
|
+
class='tagging-count'>\n (<span>69</span>)\n </div>\n </div>\r\n
|
1855
|
+
\ \r\n <div class='tags-content-cell' tid= '110118' cid='15'><span
|
1856
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1857
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"underground
|
1858
|
+
science","tag_type_id":15,"tag_id":110118});\" tid=\"110118\"
|
1859
|
+
type=\"checkbox\" value=\"underground science\" /></span><img alt=\"Loading-animated-circle\"
|
1860
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1861
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=underground+science\"
|
1862
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/110118?count=57&name=underground+science&taggable_id=1241&taggable_type=Show\"
|
1863
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\" title=\"underground science\">underground
|
1864
|
+
sc...</a>\n <div class='tagging-count'>\n (<span>57</span>)\n
|
1865
|
+
\ </div>\n </div>\r\n \r\n <div class='tags-content-cell'
|
1866
|
+
tid= '35036' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1867
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"parapsychology","tag_type_id":15,"tag_id":35036});\"
|
1868
|
+
tid=\"35036\" type=\"checkbox\" value=\"parapsychology\" /></span><img alt=\"Loading-animated-circle\"
|
1869
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1870
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=parapsychology\"
|
1871
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/35036?count=56&name=parapsychology&taggable_id=1241&taggable_type=Show\"
|
1872
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">parapsychology</a>\n <div
|
1873
|
+
class='tagging-count'>\n (<span>56</span>)\n </div>\n </div>\r\n
|
1874
|
+
\ \r\n <div class='tags-content-cell' tid= '110116' cid='15'><span
|
1875
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1876
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"conspiracy
|
1877
|
+
theorist","tag_type_id":15,"tag_id":110116});\" tid=\"110116\"
|
1878
|
+
type=\"checkbox\" value=\"conspiracy theorist\" /></span><img alt=\"Loading-animated-circle\"
|
1879
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1880
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=conspiracy+theorist\"
|
1881
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/110116?count=55&name=conspiracy+theorist&taggable_id=1241&taggable_type=Show\"
|
1882
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\" title=\"conspiracy theorist\">conspiracy
|
1883
|
+
the...</a>\n <div class='tagging-count'>\n (<span>55</span>)\n
|
1884
|
+
\ </div>\n </div>\r\n \r\n <div class='tags-content-cell'
|
1885
|
+
tid= '71177' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
|
1886
|
+
onclick=\"\n Tag.OnClick(this, "m_",\n {"tag_name":"mad
|
1887
|
+
scientist","tag_type_id":15,"tag_id":71177});\" tid=\"71177\"
|
1888
|
+
type=\"checkbox\" value=\"mad scientist\" /></span><img alt=\"Loading-animated-circle\"
|
1889
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1890
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=mad+scientist\"
|
1891
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/71177?count=49&name=mad+scientist&taggable_id=1241&taggable_type=Show\"
|
1892
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">mad scientist</a>\n <div
|
1893
|
+
class='tagging-count'>\n (<span>49</span>)\n </div>\n </div>\r\n
|
1894
|
+
\ \r\n <div class='tags-content-cell' tid= '125' cid='15'><span
|
1895
|
+
class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
|
1896
|
+
\ Tag.OnClick(this, "m_",\n {"tag_name":"fox","tag_type_id":15,"tag_id":125});\"
|
1897
|
+
tid=\"125\" type=\"checkbox\" value=\"fox\" /></span><img alt=\"Loading-animated-circle\"
|
1898
|
+
border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1899
|
+
style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=fox\"
|
1900
|
+
class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/125?count=48&name=fox&taggable_id=1241&taggable_type=Show\"
|
1901
|
+
onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">fox</a>\n <div class='tagging-count'>\n
|
1902
|
+
\ (<span>48</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
|
1903
|
+
\ <br class=\"shim\" />\r\n \r\n \r\n <div class=\"tags-content-see-all\"
|
1904
|
+
>\r\n <a href=\"#\" onclick=\"\n TagTracking.track('click_to_tab',
|
1905
|
+
'see_all', Tag.Taggable) ;\n Tab.loadTab('tag', "/taggings/tab_load?show_id=1241&taggable_id=1241&taggable_type=Show",
|
1906
|
+
false, null); \n; window.scrollTo(0, 400); return false;; return false;\">See
|
1907
|
+
All (<span id='more_tags_count'>154</span>) Tags...</a>\r\n </div>\r\n
|
1908
|
+
\ \r\n <br class=\"shim\" />\r\n </div>\r\n</div>\r\n\n </div>\n <div
|
1909
|
+
style=\"clear:both\"></div>\n <div class=\"tags-bottom\" style=\"\">\n <div
|
1910
|
+
id = \"m_add_tags\" style=\"\">\n \n <div class=\"tags-title add-tags\">Add
|
1911
|
+
Tags</div>\n <form action=\"/taggings/create\" autocomplete=\"off\" id=\"m_tag_add_form\"
|
1912
|
+
method=\"post\" onsubmit=\"Tag.AddSubmit($('m_tagging_tag_name'),$('m_tagging_tag_button'),
|
1913
|
+
$('m_tags_error'), $('m_tag_add_loading')); return false;\">\n <input autocomplete=\"off\"
|
1914
|
+
class=\"tags-search\" id=\"m_tagging_tag_name\" name=\"tagging[tag_names]\"
|
1915
|
+
style=\"float: left;margin-right: -1px;\" type=\"text\" value=\"\" />\n <a
|
1916
|
+
href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
|
1917
|
+
id=\"m_tagging_tag_button\" onclick=\"Tag.AddSubmit($('m_tagging_tag_name'),
|
1918
|
+
$('m_tagging_tag_button'),$('m_tags_error'), $('m_tag_add_loading')); return
|
1919
|
+
false ;\" src=\"http://static.huluim.com/images/btn-add.gif?1188269094\" style=\"vertical-align:
|
1920
|
+
middle; float: left;\" /></a>\n\n <div id=\"m_tag_add_loading\" style=\"display:none;float:left;margin-left:
|
1921
|
+
10px;\">\n <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\"
|
1922
|
+
src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
1923
|
+
style=\"vertical-align:middle;padding-top:2px; \" width=\"16\" />\n </div>\n
|
1924
|
+
\ <span id=\"m_tags_error\" style=\"display:none;\" class=\"tags-error\"></span>\n
|
1925
|
+
\ <span id=\"m_tags_tooltip\" style=\"display:none; position: absolute;\"
|
1926
|
+
>Add one or more comma separated tags (e.g. <b>snl</b>, <b>alec baldwin</b>,
|
1927
|
+
<b>tina fey</b>)</span>\n </form>\n <ul id=\"m_tags_suggestion\" style=\"display:none;\"
|
1928
|
+
class=\"tags-suggestion-container\"></ul>\n </div>\n\n <div style=\"clear:both\"></div>\n\n
|
1929
|
+
\ <div id='m_your_tags' >\n <div style=\"display:none\" class='your-tags'>\n
|
1930
|
+
\ <div class=\"tags-title\">You tagged this show</div>\n <div id=\"m_tagged_tags_container\"
|
1931
|
+
class='tagged-tags-container' style=\"\"></div>\n </div> \n <div class=\"tagged-link-container\"
|
1932
|
+
style=\"display:none\">\n <a href=\"/profile/tags\" class=\"tagged-link\">All
|
1933
|
+
your tags...</a>\n </div>\n </div>\n\n</div>\n\n </div>\n</div>\n\n </div>\n
|
1934
|
+
\ <script type='text/javascript' charset='utf-8'>/*<![CDATA[*/\n _m_tag =
|
1935
|
+
new Tag({\n prefix : \"m_\",\n items_per_page : 15 ,\n update_table:
|
1936
|
+
true,\n total_count : 154\n });\n new TagSuggest( $(\"m_tagging_tag_name\"),
|
1937
|
+
$(\"m_tags_suggestion\"), $(\"m_tags_error\"), $(\"m_tags_tooltip\") ) ;\n new
|
1938
|
+
TagSuggest( $(\"m_search_tag_name\"), $(\"m_search_tags_suggestion\") );\n function
|
1939
|
+
load_and_show(ev){\n var _top = document.viewport.getScrollOffsets() ;\n
|
1940
|
+
\ _top = _top.top + document.viewport.getHeight() ;\n var el = $('m_tags_pane');\n
|
1941
|
+
\ if ( $('pane-main').hasClassName(\"pane-selected\") && el ){\n var
|
1942
|
+
elTop = el.cumulativeOffset().top + el.getHeight() ;\n if( _top >= (elTop
|
1943
|
+
- 100) ){\n Event.stopObserving(window, \"scroll\", load_and_show);
|
1944
|
+
\n Event.stopObserving(window, \"resize\", load_and_show);\n _m_tag
|
1945
|
+
= Tag.PushTab(_m_tag) ;\n if( Behaviors.isLoggedIn() ){\n Tag.LoadTagged(url_for_tagged_tags,
|
1946
|
+
_m_tag);\n }\n else {\n _m_tag.setLoaded() ;\n
|
1947
|
+
\ }\n TagTracking.track(\"load\", \"main\", Tag.Taggable)\n
|
1948
|
+
\ }\n }\n };\n \n Event.observe(window, \"scroll\", load_and_show
|
1949
|
+
);\n Event.observe(window, \"resize\", load_and_show );\n /*]]>*/</script>\n</div>\n\n\n
|
1950
|
+
\ \n <div id=\"semcheck-container\"> </div>\n<script type=\"text/javascript\">/*<![CDATA[*/\nEvent.observe(window,
|
1951
|
+
\"load\", function() {\n setTimeout(function() {\n if (location.search &&
|
1952
|
+
location.search.indexOf(\"fromsearch=\") > 0) {\n var sem = (/^(google|yahoo)/.test(location.search.substring(location.search.indexOf(\"fromsearch=\"
|
1953
|
+
) + \"fromsearch=\".length)) ? (RegExp.$1) : '');\n if (sem) {\n Event.observe(window,
|
1954
|
+
\"load\", function() {\n pingImage(\"http://t.hulu.com/beacon/v2/siteinteraction?event=searchvisit¶m=\"
|
1955
|
+
+ sem + \"&value=1\" + \"&dict=selected%3a\" + Behaviors.getGUID());\n });\n
|
1956
|
+
\ }\n }\n }, 500);\n});\n/*]]>*/</script>\n\n\n\n<script type=\"text/javascript\">/*<![CDATA[*/\nEvent.observe(window,
|
1957
|
+
\"load\", function() { \n if($$('div.twitter-container').length > 0) {\n \n\n
|
1958
|
+
\ \n \n\n hTwitter.init(\"fordfocus\", 'div.twitter-container');\n hTwitter.related_accounts
|
1959
|
+
+= ',' + \"fordfocus\";\n }\n\n // Patch twitter_loader so #hash links include
|
1960
|
+
the hash symbol.\n if (typeof(window.ify) != \"undefined\" && window.ify.hash)
|
1961
|
+
{\n window.ify.hash = function(t) {\n return t.replace(/(^|[^\\w'\"]+)\\#([a-zA-Z0-9_]+)/g,
|
1962
|
+
function(m, m1, m2) {\n return m1 + '<a href=\"http://search.twitter.com/search?q=%23'
|
1963
|
+
+ m2 + '\">#' + m2 + '</a>';\n });\n };\n }\n \n if(Behaviors.getCookie(\"_r_tracking_\"))
|
1964
|
+
{ \n var cookieContent = unescape(Behaviors.getCookie(\"_r_tracking_\"));\n
|
1965
|
+
\ \n if( typeof(_rTracking) != 'undefined' && _rTracking != null)\n _rTracking.loadCookieAndSend(cookieContent);\n
|
1966
|
+
\ Behaviors.eraseCookie(\"_r_tracking_\");\n Behaviors.eraseCookie(\"_r_tracking_\",
|
1967
|
+
\".hulu.com\");\n } \n});\n/*]]>*/</script>\n\n\n\n </li>\n \n
|
1968
|
+
\ <li id=\"pane-reviews\" class=\"pane-preload\"></li>\n \n <li
|
1969
|
+
id=\"pane-forums\" class=\"pane-preload\"></li>\n \n <li id=\"pane-tag\"
|
1970
|
+
class=\"pane-preload\"></li>\n \n <li id=\"pane-captions\" class=\"pane-preload\"></li>\n
|
1971
|
+
\ </ul></div>\n\n\n <div id='tags_learn_more' style=\"display:none\">\r\n
|
1972
|
+
\ <div class=\"content tags-learn-more-content\" style=\"text-align: justify;\">\r\n
|
1973
|
+
\ <div>\r\n Tags are keywords or category labels that can help you and
|
1974
|
+
others find videos on Hulu. They also classify videos for later recall. You
|
1975
|
+
can tag videos yourself by simply checking the box next to a popular tag for
|
1976
|
+
a video or by using the \"add\" field to create a new tag. Click on any tag
|
1977
|
+
— \"comedy\" for example — to discover other videos similarly tagged by you
|
1978
|
+
or other users. Because tags are reviewed by Hulu, there may be a delay in surfacing
|
1979
|
+
your tags. The most relevant tags are sorted by category for the rest of Hulu
|
1980
|
+
to see. You may assign up to 30 tags for any video or show; to review all of
|
1981
|
+
your tags, see the Tags section on your profile page.\r\n </div>\r\n <p>Your
|
1982
|
+
tags may be visible to other users on Hulu. You should not use:</p>\r\n <ul>\r\n
|
1983
|
+
\ <li>Profane or obscene language</li>\r\n <li>Tags that are inciting
|
1984
|
+
or spiteful</li>\r\n <li>Tags that might harass, abuse or threaten members
|
1985
|
+
of the community</li>\r\n <li>Tags that may reveal your personal information
|
1986
|
+
or any personal information about children under age 13</li>\r\n <li>Tags
|
1987
|
+
that promote illegal or immoral conduct</li>\r\n <li>Tags containing special
|
1988
|
+
characters or more than 50 characters</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\n\n\n<script
|
1989
|
+
type=\"text/javascript\">/*<![CDATA*/\n Event.observe(window, 'load', function()
|
1990
|
+
{\n anchorToShowExpander();\n });\n\n Event.observe(document, \"hulu:loggedIn\",
|
1991
|
+
function() {\n \n Social.Common.showFacePileForShow(1241, 'social_data');\n
|
1992
|
+
\ \n new Ajax.Request(\"/exstack/get_vote/Show/1241\", {\n method:
|
1993
|
+
'get',\n onSuccess: function(req) {\n var rating = parseInt(req.responseText);\n
|
1994
|
+
\ if (rating && rating > 0) VideoRating.set_user_vote(1241, rating);\n
|
1995
|
+
\ } \n });\n });\n\n/*]]>*/</script>\n\n <iframe id=\"popup_frame\"
|
1996
|
+
class=\"playlist-box\" style=\"display:none;\"></iframe>\n <iframe id=\"search_popup_frame\"
|
1997
|
+
class=\"playlist-box\" style=\"display:none;\"></iframe>\n\n <div class=\"flf
|
1998
|
+
popup\" style=\"display:none\">\n <div class=\"popup-bar\">\n <a href=\"#\"
|
1999
|
+
onclick=\"FloatingLoginForm.hide(); return false;\"><img alt=\"Popup-close\"
|
2000
|
+
border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2001
|
+
width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
|
2002
|
+
class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
|
2003
|
+
width=\"16\" />\n Please login or <a href=\"/signup\" class=\"signup\">sign
|
2004
|
+
up</a> first.\n <div class=\"login-form\">\n <form action=\"https://secure.hulu.com/account/authenticate\"
|
2005
|
+
method=\"get\" name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n
|
2006
|
+
\ <div>\n <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
|
2007
|
+
none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
|
2008
|
+
type=\"password\" style=\"display: none;\" name=\"password\" value=''/>\n <input
|
2009
|
+
class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
|
2010
|
+
/>\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
|
2011
|
+
/> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
|
2012
|
+
id=\"btn-signin-small.gif132725435869687\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
|
2013
|
+
style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
|
2014
|
+
href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2015
|
+
id=\"btn-x.gif132725435869733\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
|
2016
|
+
title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
|
2017
|
+
\ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
|
2018
|
+
\ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
|
2019
|
+
\ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
|
2020
|
+
name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
|
2021
|
+
onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
|
2022
|
+
me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
|
2023
|
+
0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
|
2024
|
+
class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
|
2025
|
+
\ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
|
2026
|
+
middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
|
2027
|
+
border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2028
|
+
style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
|
2029
|
+
\ <div style=\"clear: both\">\n <a href=\"/users/find_account\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
|
2030
|
+
your password/email?</a>\n </div>\n \n <!-- todo change to alternative flow.
|
2031
|
+
\ if user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
|
2032
|
+
\ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
|
2033
|
+
alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
|
2034
|
+
style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
|
2035
|
+
vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
|
2036
|
+
ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
|
2037
|
+
\ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
|
2038
|
+
\ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
|
2039
|
+
\ \n</div>\n\n <div class=\"flf tflf popup\" style=\"display:none\">\n <div
|
2040
|
+
class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingLoginForm.hide();
|
2041
|
+
return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2042
|
+
width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
|
2043
|
+
class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
|
2044
|
+
width=\"16\" />\n Please input your email and password.\n <div class=\"login-form\">\n
|
2045
|
+
\ <form action=\"https://secure.hulu.com/account/authenticate\" method=\"get\"
|
2046
|
+
name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n <div>\n
|
2047
|
+
\ <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
|
2048
|
+
none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
|
2049
|
+
type=\"password\" style=\"display: none;\" name=\"password\" value=''/>\n <input
|
2050
|
+
class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
|
2051
|
+
/>\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
|
2052
|
+
/> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
|
2053
|
+
id=\"btn-signin-small.gif132725435870049\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
|
2054
|
+
style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
|
2055
|
+
href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2056
|
+
id=\"btn-x.gif132725435870097\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
|
2057
|
+
title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
|
2058
|
+
\ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
|
2059
|
+
\ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
|
2060
|
+
\ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
|
2061
|
+
name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
|
2062
|
+
onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
|
2063
|
+
me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
|
2064
|
+
0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
|
2065
|
+
class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
|
2066
|
+
\ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
|
2067
|
+
middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
|
2068
|
+
border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2069
|
+
style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
|
2070
|
+
\ <div style=\"clear: both\">\n <a href=\"/users/find_account\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
|
2071
|
+
your password/email?</a>\n </div>\n \n <!-- todo change to alternative flow.
|
2072
|
+
\ if user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
|
2073
|
+
\ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
|
2074
|
+
alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
|
2075
|
+
style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
|
2076
|
+
vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
|
2077
|
+
ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
|
2078
|
+
\ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
|
2079
|
+
\ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
|
2080
|
+
\ \n</div>\n\n <div class=\"floating-container popup\" id=\"floating-container\"
|
2081
|
+
style=\"display:none\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingDiv.hide();
|
2082
|
+
return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2083
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n \n <div class=\"shw-top-right\"></div>\n
|
2084
|
+
\ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
|
2085
|
+
\ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
|
2086
|
+
\ \n</div>\n\n\n \n <div class=\"int-warning popup\" style=\"display:none;\">\n
|
2087
|
+
\ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"IntWarning.cancel();
|
2088
|
+
return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2089
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"int-thanks\" style=\"display:
|
2090
|
+
none\">\n <p>Thanks for your interest.</p>\n <a href=\"#\"><img alt=\"Cancel\"
|
2091
|
+
border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132725435870399\"
|
2092
|
+
onclick=\"IntWarning.cancel();return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
|
2093
|
+
title=\"Cancel\" width=\"65\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
|
2094
|
+
\ <p class=\"int-title\">\n <img alt=\"Int-warning\" class=\"int-icon\"
|
2095
|
+
src=\"http://static.huluim.com/images/int-warning.gif?1282174508\" />\n Sorry,
|
2096
|
+
currently our video library can only be watched from within the United States\n
|
2097
|
+
\ </p>\n\n <p>Hulu is committed to making its content available worldwide.
|
2098
|
+
\ To do so,\n we must work through a number of legal and business issues,
|
2099
|
+
including\n obtaining international streaming rights. Know that we are working
|
2100
|
+
to make\n this happen and will continue to do so. Given the international
|
2101
|
+
background\n of the Hulu team, we have both a professional and personal interest
|
2102
|
+
in\n bringing Hulu to a global audience.</p>\n\n <p>If you'd like, please
|
2103
|
+
leave us your email address and the country in\n which you live, and we will
|
2104
|
+
email you when our videos are available in your\n area.</p>\n\n <form
|
2105
|
+
action=\"/show\" id=\"int-request\" method=\"post\" onsubmit=\"return false;\">\n
|
2106
|
+
\ <table>\n <tr>\n <td><label for=\"int-email\">Email:</label></td>\n
|
2107
|
+
\ <td class=\"field\"><input id=\"int-email\" name=\"email[]\" size=\"30\"
|
2108
|
+
type=\"text\" /></td>\n </tr>\n <tr>\n <td><label for=\"int-country\">Country:</label><br/>\n
|
2109
|
+
\ </td>\n <td class=\"field\"><input id=\"int-country\"
|
2110
|
+
name=\"country\" type=\"text\" value=\"\" /></td>\n </tr>\n <tr>\n
|
2111
|
+
\ <td class=\"last\" colspan=\"2\">\n <a href=\"#\"><img
|
2112
|
+
alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-submit-small.gif132725435870512\"
|
2113
|
+
onclick=\"IntWarning.submit(); return false\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
|
2114
|
+
title=\"Submit\" width=\"65\" /></a>\n <a href=\"#\"><img alt=\"Cancel\"
|
2115
|
+
border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132725435870559\"
|
2116
|
+
onclick=\"IntWarning.cancel(); return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
|
2117
|
+
title=\"Cancel\" width=\"65\" /></a>\n </td>\n </tr>\n </table>\n
|
2118
|
+
\ </form>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
|
2119
|
+
\ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
|
2120
|
+
\ <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div class=\"int-warning-jp
|
2121
|
+
popup\" style=\"display:none;\">\n <div class=\"popup-bar\">\n <a href=\"#\"
|
2122
|
+
onclick=\"IntWarning.cancel(); return false;\"><img alt=\"Popup-close\" border=\"0\"
|
2123
|
+
height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2124
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
|
2125
|
+
\ <div class=\"relative\">\n <img alt=\"Int-warning\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
|
2126
|
+
style=\"position:absolute; left:-20px; top:1px;\" />\n <p>Huluを日本でお楽しみいただくには、<a
|
2127
|
+
href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a>をご利用ください。</p>\n\n
|
2128
|
+
\ <p>Hulu is now officially available in Japan. Please continue onto <a
|
2129
|
+
href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a> to
|
2130
|
+
enjoy great videos in Japan.</p>\n\n <a href=\"http://www.hulu.jp?from=hulu_us\"><img
|
2131
|
+
alt=\"Go to Hulu Japan\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-plus-continue.gif132725435870691\"
|
2132
|
+
src=\"http://static.huluim.com/images/btn-plus-continue.gif?1207633618\" style=\"float:
|
2133
|
+
right;\" title=\"Go to Hulu Japan\" width=\"87\" /></a>\n <br class='shim'
|
2134
|
+
/>\n\n </div>\n </div>\n\n <div class=\"shw-top-right\"></div>\n <div
|
2135
|
+
class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n <div
|
2136
|
+
class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div
|
2137
|
+
class=\"overlay-full\" style=\"display:none\"></div>\n\n \n <div class=\"privacy-acceptance\"
|
2138
|
+
style=\"display:none\">\n <div id=\"accept-choice\">\n <div class=\"content\">\n
|
2139
|
+
\ <div class=\"flf-content\">\n <img alt=\"Attention\" class=\"warning\"
|
2140
|
+
height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
|
2141
|
+
width=\"16\" />\n Do you accept the new <a href=\"/terms\" target=\"_blank\">Terms
|
2142
|
+
of Use</a> and <a href=\"/privacy\" target=\"_blank\">Privacy Policy</a>?\n
|
2143
|
+
\ </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
|
2144
|
+
\ <div id=\"privacy-acceptance-loading\" style=\"display:none; padding:
|
2145
|
+
2px 20px; float: left\">\n <img alt=\"Loading-animated-circle\" border=\"0\"
|
2146
|
+
height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2147
|
+
style=\"vertical-align:middle\" width=\"16\" />\n </div>\n <a
|
2148
|
+
href=\"#\" onclick=\"Login.acceptPrivacy(); return false;\"><img alt=\"accept\"
|
2149
|
+
border=\"0\" class=\"hover-me\" height=\"20\" id=\"accept-button\" src=\"http://static.huluim.com/images/btn-i-accept.gif?1254406432\"
|
2150
|
+
title=\"accept\" width=\"102\" /></a> \n <a href=\"#\" onclick=\"Login.showDeny();
|
2151
|
+
return false;\"><img alt=\"do not accept\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2152
|
+
id=\"accept-not-button\" src=\"http://static.huluim.com/images/btn-i-accept-do-not.gif?1063117107\"
|
2153
|
+
title=\"do not accept\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n
|
2154
|
+
\ <div id=\"deny-choice\">\n <div class=\"content\">\n <div class=\"flf-content\">\n
|
2155
|
+
\ <img alt=\"Attention\" class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
|
2156
|
+
width=\"16\" />\n Sorry, you cannot log in to your account unless you
|
2157
|
+
accept.\n </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
|
2158
|
+
\ <a href=\"#\" onclick=\"Login.showPrivacy(); return false;\"><img alt=\"back\"
|
2159
|
+
border=\"0\" class=\"hover-me\" height=\"20\" id=\"back-button\" src=\"http://static.huluim.com/images/btn-back.gif?1120309156\"
|
2160
|
+
title=\"back\" width=\"69\" /></a> \n <a href=\"#\" onclick=\"ModalPopup.hide();
|
2161
|
+
return false;\"><img alt=\"continue\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2162
|
+
id=\"ok-continue-button\" src=\"http://static.huluim.com/images/btn-ok-continue.gif?1077529514\"
|
2163
|
+
title=\"continue\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n</div>\n\n
|
2164
|
+
\ <div id=\"modal-popup\" style=\"display: none;\">\n <div id=\"modal-popup-container\">\n
|
2165
|
+
\ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"; return false;\"><img
|
2166
|
+
alt=\"Popup-close\" border=\"0\" height=\"11\" id=\"close-popup\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2167
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"popup-bar-19h\">\n
|
2168
|
+
\ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-header-close-19h\"
|
2169
|
+
border=\"0\" height=\"19\" id=\"close-popup-19h\" src=\"http://static.huluim.com/images/popup-header-close-19h.gif?1183885817\"
|
2170
|
+
title=\"close\" width=\"15\" /></a>\n </div>\n <div class=\"popup-bar-dark\">\n
|
2171
|
+
\ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-close-dark\"
|
2172
|
+
border=\"0\" height=\"11\" id=\"close-popup-dark\" src=\"http://static.huluim.com/images/popup-close-dark.gif?1245360475\"
|
2173
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"modal-content\">\n
|
2174
|
+
\ <div id=\"modal-question\"></div>\n <div id=\"modal-text\"></div>\n
|
2175
|
+
\ <div style=\"text-align: right;\">\n <a href=\"#\" onclick=\"ModalPopup.hide();
|
2176
|
+
return false;\"><img alt=\"OK\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2177
|
+
id=\"dismiss-popup\" src=\"http://static.huluim.com/images/btn-ok.gif?1277491716\"
|
2178
|
+
title=\"OK\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
|
2179
|
+
return false;\"><img alt=\"Yes\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2180
|
+
id=\"accept-popup\" src=\"http://static.huluim.com/images/btn-yes.gif?1147659175\"
|
2181
|
+
title=\"Yes\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
|
2182
|
+
return false;\"><img alt=\"No\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2183
|
+
id=\"reject-popup\" src=\"http://static.huluim.com/images/btn-no.gif?1296732270\"
|
2184
|
+
title=\"No\" width=\"50\" /></a>\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
|
2185
|
+
\ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
|
2186
|
+
\ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n
|
2187
|
+
\ </div>\n</div>\n\n <div id=\"subscription-popup\" class=\"popup\" style=\"display:
|
2188
|
+
none;\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"Subscription.hide_popup();
|
2189
|
+
return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
|
2190
|
+
title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"ss-content\">\n
|
2191
|
+
\ Add <span id=\"ss-show-name\"></span> to your favorites to automatically
|
2192
|
+
update your queue with new <span id=\"ss-has-episodes\">episodes and </span><span
|
2193
|
+
id=\"ss-has-clips\">clips</span>.\n <div class=\"ss-options\">\n <input
|
2194
|
+
id=\"ss-show\" name=\"ss-show\" type=\"hidden\" value=\"0\" />\n <a class=\"checkbox
|
2195
|
+
checked\" href=\"#\" id=\"ss-episodes\" onclick=\"Subscription.toggle_input('ss-episodes');
|
2196
|
+
return false;\" style=\"margin-right: 54px;\">Episodes</a>\n <a class=\"checkbox
|
2197
|
+
checked\" href=\"#\" id=\"ss-clips\" onclick=\"Subscription.toggle_input('ss-clips');
|
2198
|
+
return false;\">Clips</a>\n <a class=\"radio pressed\" href=\"#\" id=\"ss-trailers-clips\"
|
2199
|
+
onclick=\"Subscription.toggle_input('ss-trailers-clips'); return false;\">Trailers
|
2200
|
+
and Clips</a>\n <a class=\"radio\" href=\"#\" id=\"ss-trailers-only\" onclick=\"Subscription.toggle_input('ss-trailers-only');
|
2201
|
+
return false;\" style=\"margin-left: 20px;\">Trailers only</a>\n <br style=\"clear:
|
2202
|
+
both;\" />\n <div style=\"padding: 7px 0px 0px 25px;\">\n <a class=\"radio
|
2203
|
+
pressed\" href=\"#\" id=\"ss-episodes-all\" onclick=\"Subscription.toggle_input('ss-episodes-all');
|
2204
|
+
return false;\">All</a>\n <br />\n <a class=\"radio\" href=\"#\"
|
2205
|
+
id=\"ss-episodes-first\" onclick=\"Subscription.toggle_input('ss-episodes-first');
|
2206
|
+
return false;\">New episodes only</a>\n </div>\n </div>\n <a class=\"checkbox\"
|
2207
|
+
href=\"#\" id=\"ss-email\" onclick=\"Subscription.toggle_input('ss-email');
|
2208
|
+
return false;\">Send me an alert when new videos are added to my queue.</a>\n
|
2209
|
+
\ <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" id=\"ss-loading\"
|
2210
|
+
src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2211
|
+
style=\"position:absolute; margin: 19px 0px 0px 45px; display: none;\" title=\"\"
|
2212
|
+
width=\"16\" />\n <img alt=\"Icon-check\" border=\"0\" height=\"16\" id=\"ss-done\"
|
2213
|
+
src=\"http://static.huluim.com/images/icon-check.gif?1125927925\" style=\"position:absolute;
|
2214
|
+
margin: 19px 0px 0px 45px; display: none;\" title=\"Checkmark\" width=\"16\"
|
2215
|
+
/>\n <div style=\"width: 143px; height: 20px; margin: 17px auto 0px;\">\n
|
2216
|
+
\ <a href=\"#\" onclick=\"Subscription.hide_popup(); return false;\"><img
|
2217
|
+
alt=\"Close\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"cancel-subsciption\"
|
2218
|
+
src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" style=\"float:
|
2219
|
+
right;\" title=\"Close\" width=\"65\" /></a>\n <a href=\"#\" onclick=\"Subscription.submit_options(this);
|
2220
|
+
return false;\"><img alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\"
|
2221
|
+
id=\"submit-subsciption\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
|
2222
|
+
title=\"Submit\" width=\"65\" /></a>\n <br style=\"clear: both;\" />\n
|
2223
|
+
\ </div>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
|
2224
|
+
\ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
|
2225
|
+
\ <div class=\"shw-bottom-left\"></div>\n</div>\n\n <div id=\"mobile-popup\"
|
2226
|
+
style=\"display:none\">\n <div class=\"mobile-warning popup\" style=\"position:
|
2227
|
+
absolute;\" id='mobile-warning'>\n <div id=\"mobile-popup-content\" style=\"text-align:
|
2228
|
+
center; font-size: 14px; margin-bottom: 20px; \">\n </div>\n </div>\n <div
|
2229
|
+
class=\"mobile-overlay-full\"></div>\n</div>\n<div id=\"mobile-first-entry\"
|
2230
|
+
style=\"display:none\">\n <div class=\"content\">\n <div style=\"text-align:
|
2231
|
+
left;\" class=\"mobile-left\">\n <img alt=\"Hulu\" height=\"42\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
|
2232
|
+
title=\"Hulu\" width=\"97\" />\n </div>\n <div class=\"supported mobile-right\"
|
2233
|
+
style=\"display:none\">\n \n <p style=\"margin-bottom:0.5em\">\n To
|
2234
|
+
watch videos on this <span class=\"platform-name\">device</span>,<br/> please
|
2235
|
+
subscribe to Hulu Plus. \n </p>\n <p>\n <a href=\"/plus-\" class=\"learn-more\">Learn
|
2236
|
+
more</a>\n </p>\n <p style=\"margin-bottom: 0.5em\">\n Already
|
2237
|
+
a Hulu Plus subscriber?\n </p>\n \n <p>\n <a href=\"http://itunes.apple.com/us/app/hulu-plus/id376510438?mt=8\"
|
2238
|
+
class=\"app-download-link\">Download app</a>\n \n </p>\n <p>\n
|
2239
|
+
\ <a href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
|
2240
|
+
return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"unsupported
|
2241
|
+
mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
|
2242
|
+
\ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
|
2243
|
+
notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
|
2244
|
+
device</span>. It's\n not available, but we are working hard to bring
|
2245
|
+
our Hulu Plus\n subscription service to <span class=\"platform-name-with-article\">this
|
2246
|
+
device</span>!\n Stay tuned for updates.\n </p>\n <p>\n <a
|
2247
|
+
href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
|
2248
|
+
return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"really-unsupported
|
2249
|
+
mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
|
2250
|
+
\ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
|
2251
|
+
notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
|
2252
|
+
device</span>. Right now\n this device is not supported.\n </p>\n
|
2253
|
+
\ <p>\n <a href=\"javascript:void(0)\" class=\"continue-to-browse\"
|
2254
|
+
onclick=\"MobilePopup.acknowledge(); return false;\">continue to browse</a>\n
|
2255
|
+
\ </p>\n </div>\n <br style=\"clear:both\" />\n </div>\n</div>\n<div
|
2256
|
+
id=\"mobile-video-unavailable\" style=\"display:none\">\n <div class=\"content\">\n
|
2257
|
+
\ <div style=\"text-align: left;\">\n <img alt=\"Hulu\" src=\"http://static.huluim.com/images/logo-plus.jpg?1300913395\"
|
2258
|
+
/>\n </div>\n <div style=\"font-size: 20px; margin-top:10px;\">\n The
|
2259
|
+
video is not available on the <span class='platform-name'>iPad</span>.\n <div
|
2260
|
+
style=\"margin-top:20px;\">\n <a href=\"#\" class=\"continue-to-browse\"
|
2261
|
+
onclick=\"MobilePopup.acknowledge(); return false;\">continue to hulu.com</a>\n
|
2262
|
+
\ </div>\n </div>\n </div>\n</div>\n<script type=\"text/javascript\">\n//<![CDATA[\nMobileDevice.handleWarning()\n//]]>\n</script>\n\n
|
2263
|
+
\ <div id='facebook-connect-popup' style=\"display:none;\">\n <div class=\"fb_corner
|
2264
|
+
fb_corner_bottom_left\"></div>\n <div class=\"fb_corner fb_corner_bottom_right\"></div>\n
|
2265
|
+
\ <div class=\"fb_corner fb_corner_top_left\"></div>\n <div class=\"fb_corner
|
2266
|
+
fb_corner_top_right\"></div>\n <div class=\"fb_border_top\"></div>\n <div
|
2267
|
+
class=\"fb_border_bottom\"></div>\n <div class=\"fb_border_right\"></div>\n
|
2268
|
+
\ <div class=\"fb_border_left\"></div>\n\n <div class=\"relative container\">\n
|
2269
|
+
\ <div style=\"float:right; margin-right: 7px; margin-top: 7px;\">\n <a
|
2270
|
+
href=\"#\" onclick=\"Social.Facebook.closePopup('remind-me-later'); return false;\"><img
|
2271
|
+
alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-x-round.gif132725435871832\"
|
2272
|
+
src=\"http://static.huluim.com/images/btn-x-round.gif?1181198444\" /></a>\n
|
2273
|
+
\ </div>\n <div class=\"standard tidy\">\n <div class=\"content-container\">\n
|
2274
|
+
\ <div class=\"content\" style=\"margin: 20px 12px 20px 12px; padding:
|
2275
|
+
3px 24px 6px 24px;\">\n <div class=\"clearfix\">\n <h2 class=\"cufonable
|
2276
|
+
title classic active\" style=\"float: left\"><span class=\"cufonable username\"></span>Hulu.
|
2277
|
+
Now with Friends</h2>\n <h2 class=\"cufonable title plus inactive\"
|
2278
|
+
\ style=\"float: left\"><span class=\"cufonable username\"></span>Go Social
|
2279
|
+
with Hulu</h2>\n <div class=\"login-welcome\" style=\"display:none;
|
2280
|
+
float: left\">\n <span class=\"not-me-name\"></span>\n <a
|
2281
|
+
class=\"fb_link not-me\" href=\"#\" onclick=\"Social.Facebook.logoutFromPopup();;
|
2282
|
+
return false;\"></a>)\n </div>\n </div>\n <div
|
2283
|
+
class=\"line\"></div>\n <div class=\"reason classic\" style=\"margin-top:
|
2284
|
+
10px;\">\n Start conversations with friends about your favorite shows'
|
2285
|
+
twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
|
2286
|
+
style=\"font-weight: 700;\">and receive a FREE month on your subscription to</span>
|
2287
|
+
\n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
|
2288
|
+
/>\n </div>\n <div class=\"reason plus inactive\" style=\"margin-top:
|
2289
|
+
10px;\">\n Start conversations with friends about your favorite shows'
|
2290
|
+
twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
|
2291
|
+
style=\"font-weight: 700;\">and we'll tack on a FREE month on your subscription
|
2292
|
+
to</span> \n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
|
2293
|
+
/>\n </div>\n <div style=\"margin-top: 18px; margin-bottom:
|
2294
|
+
10px;\">\n <a href=\"#\" onclick=\"$$('span.confirm-loading')[0].show();
|
2295
|
+
Social.Facebook.connect(); return false;\" style=\"float: left;\"><img alt=\"Btn-fbconnect-large\"
|
2296
|
+
src=\"http://static.huluim.com/images/btn-fbconnect-large.png?1190692617\" /></a>\n
|
2297
|
+
\ <span class=\"confirm-loading\" style=\"margin-left: 10px; padding-top:
|
2298
|
+
4px; vertical-align: top; display:none; float: left;\">\n <img
|
2299
|
+
alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2300
|
+
width=\"16\" />\n </span>\n <br style=\"clear: both;\"/>\n
|
2301
|
+
\ </div>\n <div style=\"padding-bottom: 26px;\"><a class=\"fb_link\"
|
2302
|
+
href=\"#\" onclick=\"Social.Facebook.closePopup('no-thanks'); return false;\">No
|
2303
|
+
thanks</a></div>\n </div>\n </div>\n </div>\n </div>\n</div>\n<div
|
2304
|
+
class=\"overlay-full\" style=\"display:none;\"></div>\n\n <div id=\"initial-fav-nav\"
|
2305
|
+
style=\"display:none;\">\n <div id=\"updated-fav-nav\" style=\"width:920px;height:120px;align:center;color:white;\">\n
|
2306
|
+
\ <div style=\"padding-top:46px;text-align:center;font-size:16px;\">\n\t\t\tPlease
|
2307
|
+
<a href=\"/account/signin\" style=\"color:white;text-decoration:underline;\">log
|
2308
|
+
in</a> to view your favorites.\n </div>\n </div>\n</div>\n\n \n\n \n\n
|
2309
|
+
\ <br style=\"clear:both\" />\n\n <div id='footer' style=''>\n <div id=\"footer-search-auto-complete\"></div>\n
|
2310
|
+
\ <div class=\"fluid bar\" style=\"clear:both\">\n <div class=\"fixed-lg
|
2311
|
+
container\">\n <div class=\"searchnav\" style=\"width:96%; text-align:center;
|
2312
|
+
height:20px\">\n <form id=\"bottom_search_form\" name=\"search_form\" action=\"http://www.hulu.com/search\"
|
2313
|
+
method=\"get\" onsubmit=\"if(this.query.value == '') {return false;} getFs('fsb');getSt('stb');
|
2314
|
+
if(!$('footer-search-auto-complete').visible()){SearchTracking.trackSearchForm('bottom_search_form')}\">\n
|
2315
|
+
\ <input id=\"bottom_video_search_term\" class=\"search\" type=\"text\"
|
2316
|
+
\ value=\"\" autocomplete=\"off\" name=\"query\" style=\"margin-right: -3px;\"
|
2317
|
+
/>\n <a href=\"javascript:void(0)\"><img alt=\"Search\" border=\"0\" class=\"hover-me\"
|
2318
|
+
id=\"bottom-nav-search-button\" onclick=\"if($('bottom_search_form').query.value
|
2319
|
+
== '') {return false;} getSt('stb');getFs('fsb');SearchTracking.trackSearchForm('bottom_search_form');
|
2320
|
+
$('bottom_search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
|
2321
|
+
style=\"vertical-align: middle; margin-left: -1px;margin-bottom:2px;\" title=\"Search\"
|
2322
|
+
/></a>\n <a class=\"search-footer-link\" href=\"/search/advanced_search\"
|
2323
|
+
onclick=\"if (!$('serp-header')) return true; window.scroll(0,0); var el = $('advanced-search');
|
2324
|
+
if (!el || !el.visible()) toggleAdvancedSearch(); return false\">Advanced Search</a>\n
|
2325
|
+
\ <span class=\"search-footer-spacer\">|</span>\n <a class=\"search-footer-link\"
|
2326
|
+
href=\"javascript:void(0)\" onclick=\"installOpenSearch(); return false\" >Search
|
2327
|
+
Plugin</a>\n <input type=\"hidden\" name=\"st\" id=\"stb\" />\n <input
|
2328
|
+
type=\"hidden\" name=\"fs\" id=\"fsb\" />\n </form>\n </div>\n </div>\n
|
2329
|
+
\ </div>\n <script type=\"text/javascript\">//<![CDATA[\n var bottom_search_query_auto_completer
|
2330
|
+
= new Ajax.HuluAutocompleter(\n 'bottom_video_search_term',\n 'footer-search-auto-complete',\n
|
2331
|
+
\ '/search/suggest_html',\n { onSelected: function() { getFs('fsb');getSt('stb');
|
2332
|
+
$('bottom_search_form').submit();},\n method: 'get',\n onSelectNone
|
2333
|
+
: function() {getFs('fsb');getSt('stb');$('bottom_search_form').submit(); SearchTracking.trackSearchForm('bottom_search_form');}\n
|
2334
|
+
\ }\n );\n //]]></script>\n\n <br style=\"clear:both\" />\n <div
|
2335
|
+
class=\"fluid footer\">\n <div class=\"fixed-lg container\">\n <div
|
2336
|
+
style=\"width:68%\">\n <div style=\"float:none; margin-bottom: 6px\"></div>\n
|
2337
|
+
\ <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/\"
|
2338
|
+
class=\"footer-link\">Home</a>\n <a href=\"http://www.hulu.com/tv\"
|
2339
|
+
class=\"footer-link\">TV</a>\n <a href=\"http://www.hulu.com/movies\"
|
2340
|
+
class=\"footer-link\">Movies</a>\n </div>\n <div class=\"footer-column\">\n
|
2341
|
+
\ <a href=\"http://www.hulu.com/genres\" class=\"footer-link\">Genres</a>\n
|
2342
|
+
\ <a href=\"http://www.hulu.com/trailers\" class=\"footer-link\">Trailers</a>\n
|
2343
|
+
\ <a href=\"http://www.hulu.com/labs\" class=\"footer-link\">Labs</a>\n
|
2344
|
+
\ </div>\n <div class=\"footer-column\"> \n <a
|
2345
|
+
href=\"http://www.hulu.com/discussions\" class=\"footer-link\">Discussions</a>\n
|
2346
|
+
\ <a href=\"/plus/gifting\" class=\"footer-link\">Buy/Redeem Gifts</a>\n
|
2347
|
+
\ <a href=\"http://www.hulu.jp\" class=\"footer-link\">Hulu Japan</a>\n
|
2348
|
+
\ </div>\n <div class=\"footer-column\" style=\"width:90px;\">\n
|
2349
|
+
\ <a href=\"http://www.hulu.com/distribution\" class=\"footer-link\">Distribution</a>\n
|
2350
|
+
\ <a href=\"/advertising\" class=\"footer-link\">Advertising</a>\n
|
2351
|
+
\ <a href=\"http://www.hulu.com/feed\" class=\"footer-link\" style=\"display:inline;\">RSS</a>
|
2352
|
+
<a href=\"http://www.hulu.com/feed\"><img alt=\"Hulu RSS Feeds\" border=\"0\"
|
2353
|
+
class=\"hover-me\" id=\"rss-footer-link\" src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\"
|
2354
|
+
style=\"vertical-align:bottom;display:inline;margin-left:5px;padding-bottom:2px;\"
|
2355
|
+
title=\"Hulu RSS Feeds\" /></a>\n </div>\n <script type=\"text/javascript\">\n//<![CDATA[\nBehaviors.updateFooterLinks()\n//]]>\n</script>\n
|
2356
|
+
\ </div>\n\n <div style=\"float:right; width: 32%;\">\n <div
|
2357
|
+
style=\"float:none; margin-bottom: 6px\"></div>\n <div class=\"footer-column\">\n
|
2358
|
+
\ <a href=\"http://www.hulu.com/jobs\" class=\"footer-link\">Jobs</a>\n
|
2359
|
+
\ <a href=\"http://www.hulu.com/about\" class=\"footer-link\">About</a>\n
|
2360
|
+
\ <a href=\"http://blog.hulu.com\" class=\"footer-link\">Blog</a>\n
|
2361
|
+
\ </div>\n <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/help\"
|
2362
|
+
class=\"footer-link\">Help</a>\n <a href=\"http://www.hulu.com/about/product_tour\"
|
2363
|
+
class=\"footer-link\">Product Tour</a>\n <a href=\"http://www.hulu.com/support/contact\"
|
2364
|
+
class=\"footer-link\">Contact Us</a>\n </div>\n </div>\n <div
|
2365
|
+
class=\"disclaimer-container\">\n <div style=\"float:right;padding-right:36px;\">Copyright
|
2366
|
+
© 2012 Hulu. All rights reserved.</div>\n <div style=\"float:left;\">\n
|
2367
|
+
\ Use of this Web site constitutes acceptance of the Hulu <a href=\"http://www.hulu.com/terms\">Terms
|
2368
|
+
of Use</a>\n and <a href=\"http://www.hulu.com/privacy\">Privacy
|
2369
|
+
Policy</a>.\n </div>\n </div>\n <br style=\"clear:both;\"/><br
|
2370
|
+
style=\"clear:both;\"/>\n </div>\n <div class=\"corner-stone\">\n
|
2371
|
+
\ <a href=\"/home/cornerstone\"> </a>\n </div>\n <div
|
2372
|
+
class=\"corner-stone\">\n <a href=\"/home/cornerstone/ew\"> </a>\n
|
2373
|
+
\ </div>\n </div>\n </div>\n\n <div id=\"video_search_term_suggestion\"
|
2374
|
+
style=\"display: none;\"></div>\n <div id=\"video_search_term_suggestion_js\"
|
2375
|
+
style=\"display:none;\"></div>\n\n <div id=\"info_hover\" class=\"info_hover_box\"
|
2376
|
+
style=\"display:none\">\n <div class=\"pointer\"> </div>\n <div class=\"content\"></div>\n
|
2377
|
+
\ <div class=\"gra-top-left\"> </div><div class=\"gra-top-right\"> </div>\n
|
2378
|
+
\ <div class=\"gra-bottom-left\"> </div><div class=\"gra-bottom-right\"> </div>\n
|
2379
|
+
\ <div class=\"gra-h\"> </div><div class=\"gra-v-left\"> </div><div class=\"gra-v-right\">
|
2380
|
+
</div>\n </div>\n \n <div id=\"notes-modal-containter\" style=\"display:none;\">\n
|
2381
|
+
\ <div id=\"notes-form-container\" class=\"content\">\n\t <div class=\"item\">\n\t
|
2382
|
+
\ <div class=\"input-area\">\n\t <form action=\"/show\" id=\"notes-form\"
|
2383
|
+
method=\"post\" onsubmit=\"Note.submit(); return false;; new Ajax.Request('/show',
|
2384
|
+
{asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return
|
2385
|
+
false;\">\n\n\t\t\t\n\t\t\t <span id=\"note-user-name\" style=\"font-size: 14px;
|
2386
|
+
font-weight: bold;\"></span>\n\n\t <input id=\"notes-form-user-id\"
|
2387
|
+
type=\"hidden\" value=\"\" name=\"note[user_id]\"/>\n\t <textarea name=\"note[body]\"
|
2388
|
+
id=\"notes-form-body\" class=\"form-body\"></textarea>\n\n\t\t\t<div>\n\t\t\t\t<span
|
2389
|
+
style=\"float: right\">\n\t\t \t <img alt=\"\" border=\"0\" class=\"hover-me\"
|
2390
|
+
id=\"notes-form-cancel\" onclick=\"ModalPopup.hide()\" src=\"http://static.huluim.com/images/btn-cancel-65w.gif?1106460533\"
|
2391
|
+
title=\"Cancel\" />\n\n\t\t\t <input alt=\"\" border=\"0\" class=\"hover-me\"
|
2392
|
+
id=\"notes-form-submit\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show(this);
|
2393
|
+
return false; }\" src=\"http://static.huluim.com/images/btn-send-small.gif?1116262920\"
|
2394
|
+
title=\"Send\" type=\"image\" />\n\t\t\t\t</span>\n\t\t\t\n\t\t <div
|
2395
|
+
id=\"notes-form-loading\" class=\"loading\" style=\"display: none;\">\n\t\t
|
2396
|
+
\ <img alt=\"\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2397
|
+
style=\"vertical-align:middle;padding-top:2px;\" width=\"16\" />\n\t\t </div>\n\t\t
|
2398
|
+
\ <div id=\"notes-error-container\" style=\"display: none;\">\n\t\t <div
|
2399
|
+
class=\"notes-error-image\"><img alt=\"\" src=\"http://static.huluim.com/images/icon-warning.gif?1282174508\"
|
2400
|
+
/></div>\n\t\t <div id=\"notes-form-errors\"></div>\n\t\t <br
|
2401
|
+
style=\"clear:both;\"/>\n\t\t </div>\n\t\t\t </div>\n\t\t</form>\n\t
|
2402
|
+
\ </div>\n\t <br style=\"clear: both;\"/>\n\t </div>\n\t</div>\n</div>\n\n
|
2403
|
+
\ \n\n <div id=\"friends_for_video_popup\" style=\"display:none\">\n </div>\n\n
|
2404
|
+
\ <div id=\"super_plus\" class=\"info_hover_box\" style=\"display:none\">\n
|
2405
|
+
\ <div class=\"content\">\n <div class=\"menu-initial\">\n <ul>\n
|
2406
|
+
\ <li id='sp-add-to-queue' onclick=\"SuperPlus.Actions.addToQueue()\">Add
|
2407
|
+
to queue</li>\n <li onclick=\"SuperPlus.Actions.addToPlaylist()\">Add
|
2408
|
+
to playlist ></li>\n </ul>\n </div>\n <div class=\"menu-loading\">\n
|
2409
|
+
\ <img alt=\"\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
|
2410
|
+
/>\n </div>\n <div class=\"menu-playlist relative\">\n <div
|
2411
|
+
class=\"subsection header\">Add to Playlist</div>\n <div class=\"subsection
|
2412
|
+
playlists\">\n <div></div>\n </div>\n <div class=\"subsection
|
2413
|
+
bottom\">\n <img alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-create-new-playlist.gif132725435872742\"
|
2414
|
+
onclick=\"SuperPlus.showCreatePlaylist();\" src=\"http://static.huluim.com/images/btn-create-new-playlist.gif?1110603016\"
|
2415
|
+
/>\n </div>\n <div class='playlist-add-error' style=\"display:none;\">\n
|
2416
|
+
\ <div class='playlist-add-error-content'></div>\n </div>\n </div>\n
|
2417
|
+
\ <div class=\"menu-complete\">Added</div>\n </div>\n\n <div class=\"gra-top-left\">
|
2418
|
+
</div><div class=\"gra-top-right\"> </div>\n <div class=\"gra-bottom-left\">
|
2419
|
+
</div><div class=\"gra-bottom-right\"> </div>\n <div class=\"gra-h\"> </div><div
|
2420
|
+
class=\"gra-v-left\"> </div><div class=\"gra-v-right\"> </div>\n <div class=\"gra-plus\">
|
2421
|
+
</div><div class=\"gra-plus-corner\"> </div>\n\n <div class=\"border-cover\"
|
2422
|
+
style=\"\"> </div>\n </div>\n\n <div id='super-plus-create-form' style=\"display:none;\">\n
|
2423
|
+
\ <div class=\"content super-plus-create-form\">\n <form onsubmit=\"return
|
2424
|
+
false;\" autocomplete=\"off\">\n <h2 class=\"cufonable\">Create New Playlist</h2>\n
|
2425
|
+
\ <table id='playlist-create-table'>\n <tr>\n <td
|
2426
|
+
class='col1'>\n Playlist Name\n </td>\n <td
|
2427
|
+
class='col2'>\n Privacy Setting\n </td>\n </tr>\n
|
2428
|
+
\ <tr>\n <td class='col1'><input type=\"text\" name=\"name\"
|
2429
|
+
class='pl-name' /></td>\n <td class='col2'>\n <div class=\"cbx\"
|
2430
|
+
id=\"privacy_level\"><div class=\"cbx-choice\">Private</div><input autocomplete=\"off\"
|
2431
|
+
id=\"privacy_level\" name=\"privacy_level\" type=\"hidden\" value=\"1\" /><div
|
2432
|
+
class=\"cbx-options\" style=\"display: none;\"><ul><li value=\"0\">Public</li><li
|
2433
|
+
class=\"selected\" value=\"1\">Private</li></ul></div></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
|
2434
|
+
privacy_level = new ComboBox(\"privacy_level\", {\"onchange\":\"\"});\n//]]>\n</script>\n
|
2435
|
+
\ </td>\n </tr>\n <tr>\n <td colspan=2
|
2436
|
+
class='col1-2'>\n <div style=\"height: 20px;min-height: 20px;\">\n
|
2437
|
+
\ <div class='playlist-create-error'> </div>\n </div>\n
|
2438
|
+
\ </td>\n </tr>\n <tr>\n <td colspan=2
|
2439
|
+
class='col1-2'>\n Description<br/>\n <textarea name=\"description\"></textarea>\n
|
2440
|
+
\ </td>\n </tr>\n <tr>\n <td colspan=2
|
2441
|
+
class='col1-2'>\n <div class='submit'>\n <img alt=\"\"
|
2442
|
+
id=\"playlist-create-loading\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
|
2443
|
+
style=\"position: relative; top: -2px; left: -2px; display:none;\" title=\"\"
|
2444
|
+
/>\n <input alt=\"\" border=\"0\" class=\"hover-me\" id=\"create-new-playlist-submit\"
|
2445
|
+
src=\"http://static.huluim.com/images/btn-create-and-add.gif?1063828135\" type=\"image\"
|
2446
|
+
/>\n </div>\n </td>\n </tr>\n </table>\n
|
2447
|
+
\ <div class='playlist-create-success' style='display: none;'>\n <ul
|
2448
|
+
id='playlist-create-success-text'>\n </ul>\n <img alt=\"\"
|
2449
|
+
border=\"0\" class=\"hover-me\" id=\"btn-done.gif1327254358729\" onclick=\"FloatingDiv.hide();\"
|
2450
|
+
src=\"http://static.huluim.com/images/btn-done.gif?1023849742\" />\n </div>\n
|
2451
|
+
\ </form>\n </div>\n </div>\n \n <script type=\"text/javascript\">\n//<![CDATA[\nCufon.now();
|
2452
|
+
document.charset = 'utf-8';\n//]]>\n</script>\n\n \n <script type=\"text/javascript\">\n//<![CDATA[\noverrideDocumentWrite();\n//]]>\n</script>\n
|
2453
|
+
\ \n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/\n getSt();\n
|
2454
|
+
\ TrackingSystem.initializeTrackingSystem(\n function(){\n if(!TrackingSystem.searchTrackingSystem(\"SERPTrackingSystem\")){\n
|
2455
|
+
\ var trackingSystem = new TrackingSystem(\"SERPTrackingSystem\", SERPTracking.SERPTrackingSystemCallBackFunctions);\n
|
2456
|
+
\ }\n }\n );\n \n /*]]>*/</script>\n\n \n <div id='third-party-js-delay-load-id'>\n
|
2457
|
+
\ <noscript><img src=\"http://beacon.scorecardresearch.com/scripts/beacon.dll?c10=&c11=&c12=&c13=&c14=&c15=&c1=2&c2=3000007&c3=3000007&c4=hulu.com%2Fshow&c5=shows&c6=&c7=&c8=&c9=&x=NOJAVASCRIPT\"
|
2458
|
+
alt=\"\" /></noscript>\n </div>\n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/
|
2459
|
+
\ \n document.observe(\"dom:loaded\", function() {\n Comscore.update({\"baseURL\":\"http://beacon.scorecardresearch.com/scripts/beacon.dll\",\"c4\":\"hulu.com/show\",\"c5\":\"shows\",\"c1\":\"2\",\"c15\":\"\",\"c2\":\"3000007\",\"c3\":\"3000007\"});\n
|
2460
|
+
\ Comscore.track();\n\n switch (Math.floor(Math.random()*3))
|
2461
|
+
{\n case 0:\n <!-- ComScore -->\n delayedInclude(\"http://ar.voicefive.com/bmx3/node_hulu.pli\");\n
|
2462
|
+
\ break;\n case 1:\n <!-- DL -->\n delayedInclude(\"http://content.dl-rms.com/rms/20887/nodetag.js\");\n
|
2463
|
+
\ break;\n case 2:\n <!-- Insight Express
|
2464
|
+
-->\n delayedInclude(\"http://icompass.insightexpressai.com/836.js\",\n
|
2465
|
+
\ function() { \n if (typeof(window.InsightExpress)
|
2466
|
+
!= \"undefined\") { window.InsightExpress.startIntercept(); }\n });\n
|
2467
|
+
\ break;\n default:\n break;\n }\n\n
|
2468
|
+
\ });\n /*]]>*/</script>\n \n</body>\n</html>\n\n"
|
2469
|
+
http_version: '1.1'
|