hulu-show 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rvmrc ADDED
@@ -0,0 +1,2 @@
1
+ echo "Using 1.9.3@hulu_show"
2
+ rvm use --create 1.9.3@hulu_show
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "httparty", '~> 0.8.1'
4
+ gem "json", '>= 1.6.1'
5
+ gem 'nokogiri'
6
+
7
+ group :development do
8
+ gem "rspec", "~> 2.7.0"
9
+ gem "bundler", "~> 1.0.0"
10
+ gem "jeweler", "~> 1.6.4"
11
+ gem "rcov", ">= 0"
12
+ gem "vcr", "~> 1.11.3"
13
+ gem "fakeweb", "1.3.0"
14
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,42 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ fakeweb (1.3.0)
6
+ git (1.2.5)
7
+ httparty (0.8.1)
8
+ multi_json
9
+ multi_xml
10
+ jeweler (1.6.4)
11
+ bundler (~> 1.0)
12
+ git (>= 1.2.5)
13
+ rake
14
+ json (1.6.1)
15
+ multi_json (1.0.3)
16
+ multi_xml (0.4.1)
17
+ nokogiri (1.5.0)
18
+ rake (0.9.2.2)
19
+ rcov (0.9.11)
20
+ rspec (2.7.0)
21
+ rspec-core (~> 2.7.0)
22
+ rspec-expectations (~> 2.7.0)
23
+ rspec-mocks (~> 2.7.0)
24
+ rspec-core (2.7.1)
25
+ rspec-expectations (2.7.0)
26
+ diff-lcs (~> 1.1.2)
27
+ rspec-mocks (2.7.0)
28
+ vcr (1.11.3)
29
+
30
+ PLATFORMS
31
+ ruby
32
+
33
+ DEPENDENCIES
34
+ bundler (~> 1.0.0)
35
+ fakeweb (= 1.3.0)
36
+ httparty (~> 0.8.1)
37
+ jeweler (~> 1.6.4)
38
+ json (>= 1.6.1)
39
+ nokogiri
40
+ rcov
41
+ rspec (~> 2.7.0)
42
+ vcr (~> 1.11.3)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Craig Williams
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,20 @@
1
+ = hulu-show
2
+
3
+ Hulu::Show fetches all episodes for the current season of a specified show.
4
+
5
+ = Usage
6
+
7
+ gem install hulu-show
8
+
9
+ require 'hulu/show'
10
+
11
+ Hulu::Show.new('Burn Notice').episodes
12
+
13
+ `[#<Hulu::Episode:0x007fa8f2832938 @episode="13", @title="Damned If You Do", @running_time="43:09", @air_date="11/03/2011">]`
14
+
15
+
16
+ == Copyright
17
+
18
+ Copyright (c) 2011 Craig Williams. See LICENSE.txt for
19
+ further details.
20
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "hulu-show"
18
+ gem.homepage = "http://github.com/CraigWilliams/hulu-show"
19
+ gem.license = "BSD"
20
+ gem.summary = %Q{Fetches all current season episodes for a specified show.}
21
+ gem.description = %Q{Really, that is about it. For each show, Hulu::Show will return an array of Episode objects with details about the episode.}
22
+ gem.email = "cwilliams.allancraig@gmail.com"
23
+ gem.authors = ["Craig Williams"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ # require 'rake/task'
42
+ # Rake::Task.new do |rdoc|
43
+ # version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ # rdoc.rdoc_dir = 'rdoc'
46
+ # rdoc.title = "hulu-show #{version}"
47
+ # rdoc.rdoc_files.include('README*')
48
+ # rdoc.rdoc_files.include('lib/**/*.rb')
49
+ # end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/hulu-show.gemspec ADDED
@@ -0,0 +1,80 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "hulu-show"
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Craig Williams"]
12
+ s.date = "2011-11-25"
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
+ s.email = "cwilliams.allancraig@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ ".rvmrc",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "LICENSE.txt",
26
+ "README.rdoc",
27
+ "Rakefile",
28
+ "VERSION",
29
+ "hulu-show.gemspec",
30
+ "lib/hulu.rb",
31
+ "lib/hulu/show.rb",
32
+ "lib/hulu/show/base.rb",
33
+ "lib/hulu/show/episode.rb",
34
+ "spec/hulu/show_spec.rb",
35
+ "spec/spec_helper.rb",
36
+ "spec/support/vcr_cassettes/burn_notice.yml"
37
+ ]
38
+ s.homepage = "http://github.com/CraigWilliams/hulu-show"
39
+ s.licenses = ["BSD"]
40
+ s.require_paths = ["lib"]
41
+ s.rubygems_version = "1.8.10"
42
+ s.summary = "Fetches all current season episodes for a specified show."
43
+
44
+ if s.respond_to? :specification_version then
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
48
+ s.add_runtime_dependency(%q<httparty>, ["~> 0.8.1"])
49
+ s.add_runtime_dependency(%q<json>, [">= 1.6.1"])
50
+ s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
51
+ s.add_development_dependency(%q<rspec>, ["~> 2.7.0"])
52
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
53
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
54
+ s.add_development_dependency(%q<rcov>, [">= 0"])
55
+ s.add_development_dependency(%q<vcr>, ["~> 1.11.3"])
56
+ s.add_development_dependency(%q<fakeweb>, ["= 1.3.0"])
57
+ else
58
+ s.add_dependency(%q<httparty>, ["~> 0.8.1"])
59
+ s.add_dependency(%q<json>, [">= 1.6.1"])
60
+ s.add_dependency(%q<nokogiri>, [">= 0"])
61
+ s.add_dependency(%q<rspec>, ["~> 2.7.0"])
62
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
63
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
64
+ s.add_dependency(%q<rcov>, [">= 0"])
65
+ s.add_dependency(%q<vcr>, ["~> 1.11.3"])
66
+ s.add_dependency(%q<fakeweb>, ["= 1.3.0"])
67
+ end
68
+ else
69
+ s.add_dependency(%q<httparty>, ["~> 0.8.1"])
70
+ s.add_dependency(%q<json>, [">= 1.6.1"])
71
+ s.add_dependency(%q<nokogiri>, [">= 0"])
72
+ s.add_dependency(%q<rspec>, ["~> 2.7.0"])
73
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
74
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
75
+ s.add_dependency(%q<rcov>, [">= 0"])
76
+ s.add_dependency(%q<vcr>, ["~> 1.11.3"])
77
+ s.add_dependency(%q<fakeweb>, ["= 1.3.0"])
78
+ end
79
+ end
80
+
data/lib/hulu.rb ADDED
@@ -0,0 +1 @@
1
+ require 'hulu/show'
data/lib/hulu/show.rb ADDED
@@ -0,0 +1,33 @@
1
+ require 'hulu/show/base'
2
+ require 'hulu/show/episode'
3
+
4
+ class Hulu::Show < Hulu::Base
5
+ attr_accessor :name
6
+
7
+ def initialize(name)
8
+ @name = name
9
+ @episodes = []
10
+ end
11
+
12
+ def episodes
13
+ doc = Hulu.query(self.name)
14
+ parse_episodes(doc)
15
+ end
16
+
17
+ def parse_episodes(doc)
18
+ episodes = doc.css("#show-expander table")
19
+
20
+ episodes.each_with_index do |episode, i|
21
+ # There are several tables under the show-expander
22
+ # we are only interested in the first
23
+ break if i > 0
24
+ episode.css('tr.r').each do |episode_info|
25
+ @episodes << Hulu::Episode.new do |episode|
26
+ episode.process(episode_info)
27
+ end
28
+ end
29
+ end
30
+ @episodes
31
+ end
32
+
33
+ end
@@ -0,0 +1,32 @@
1
+ require 'httparty'
2
+ require 'nokogiri'
3
+
4
+ module Hulu
5
+ BASE_URI = 'http://www.hulu.com'
6
+
7
+ module Fetcher
8
+ class HtmlParserIncluded < HTTParty::Parser
9
+ SupportedFormats.merge!('text/html' => :html)
10
+
11
+ def html
12
+ Nokogiri::HTML(body)
13
+ end
14
+ end
15
+
16
+ class Page
17
+ include HTTParty
18
+ parser HtmlParserIncluded
19
+ end
20
+ end
21
+
22
+ class Base
23
+ def self.prepare_name(name)
24
+ name.downcase.gsub("\s", '-')
25
+ end
26
+ end
27
+
28
+ def self.query(show_name)
29
+ show_name = Hulu::Base.prepare_name(show_name)
30
+ Hulu::Fetcher::Page.get("#{BASE_URI}/#{show_name}")
31
+ end
32
+ end
@@ -0,0 +1,30 @@
1
+ class Hulu::Episode < Hulu::Base
2
+ attr_accessor :title,
3
+ :episode,
4
+ :running_time,
5
+ :air_date,
6
+ :season
7
+
8
+ def initialize
9
+ yield self if block_given?
10
+ end
11
+
12
+ def process(episode)
13
+ @episode = episode.css('td.c0').text.strip
14
+ @title = episode.css('td.c1 a').text.strip
15
+ parse_running_time(episode)
16
+ end
17
+
18
+ def parse_running_time(episode)
19
+ run_time = episode.css('td.c3').text.strip
20
+
21
+ if run_time.include?(':')
22
+ @running_time = run_time
23
+ @air_date = episode.css('td.c4').text.strip
24
+ else
25
+ @running_time = episode.css('td.c4').text.strip
26
+ @air_date = episode.css('td.c5').text.strip
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,37 @@
1
+ require 'spec_helper'
2
+
3
+ describe Hulu::Show do
4
+ let(:burn_notice_erb) {
5
+ {
6
+ title: 'Burn baby burn',
7
+ running_time: '43:09',
8
+ air_date: '11/03/2011',
9
+ episode: '13'
10
+ }
11
+ }
12
+
13
+ it "should know it's name" do
14
+ Hulu::Show.new('Bones').name.should == 'Bones'
15
+ end
16
+
17
+ it "created episodes with correct attributes" do
18
+ VCR.use_cassette('burn_notice', erb: burn_notice_erb) do
19
+ episodes = Hulu::Show.new('Burn Notice').episodes
20
+ episode = episodes.first
21
+
22
+ episode.title.should == 'Burn baby burn'
23
+ episode.running_time.should == '43:09'
24
+ episode.air_date.should == '11/03/2011'
25
+ episode.episode.should == '13'
26
+ end
27
+ end
28
+
29
+ it "has the correct number of episodes" do
30
+ VCR.use_cassette('burn_notice', erb: burn_notice_erb) do
31
+ episodes = Hulu::Show.new('Burn Notice').episodes
32
+
33
+ episodes.count.should == 1
34
+ end
35
+ end
36
+
37
+ end
@@ -0,0 +1,18 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'vcr'
5
+ require 'hulu'
6
+
7
+ # Requires supporting files with custom matchers and macros, etc,
8
+ # in ./support/ and its subdirectories.
9
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
10
+
11
+ VCR.config do |c|
12
+ c.cassette_library_dir = 'spec/support/vcr_cassettes'
13
+ c.stub_with :fakeweb
14
+ end
15
+
16
+ RSpec.configure do |config|
17
+ config.extend VCR::RSpec::Macros
18
+ end
@@ -0,0 +1,2387 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://www.hulu.com:80/burn-notice
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
+ - '214731'
23
+ expires:
24
+ - Fri, 25 Nov 2011 21:32:55 GMT
25
+ cache-control:
26
+ - max-age=0, no-cache, no-store
27
+ pragma:
28
+ - no-cache
29
+ date:
30
+ - Fri, 25 Nov 2011 21:32:55 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>Burn Notice
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=\"Burn Notice TV Series, About Burn Notice, Videos on Burn Notice\"/><meta
49
+ name=\"description\" content=\"Burn Notice: A 'burned' spy returns to Miami
50
+ where he uses his special ops training to help those in need, and bring justice
51
+ against the men who wrongly burned him.\"/>\n \n <meta property=\"fb:app_id\"
52
+ content=\"40582213222\"/>\n\n <script type=\"text/javascript\">\n//<![CDATA[\nvar
53
+ READ_ONLY = false;\n//]]>\n</script>\n <link href=\"http://static.huluim.com/system/hulu_7618b1e9_1.css\"
54
+ media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n<link href=\"http://static.huluim.com/system/hulu_7618b1e9_2.css\"
55
+ media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n <script src=\"http://static.huluim.com/system/hulu_8b094cdc_base_1.js\"
56
+ type=\"text/javascript\"></script>\n<script src=\"http://static.huluim.com/system/hulu_adb67d8e_1.js\"
57
+ type=\"text/javascript\"></script>\n\n <link class=\"mbf-only\" href=\"http://www.hulu.com/feed/recent/tv\"
58
+ rel=\"alternate\" title=\"Recently added tv (RSS)\" type=\"application/rss+xml\"
59
+ />\n <link rel=\"home\" href=\"http://www.hulu.com\" />\n\n \n \n <meta
60
+ property=\"og:title\" content=\"Burn Notice\"/>\n <meta property=\"og:type\"
61
+ content=\"tv_show\"/>\n <meta property=\"og:image\" content=\"http://assets.huluim.com/shows/show_thumbnail_burn_notice.jpg\"/>\n
62
+ \ <meta property=\"og:site_name\" content=\"Hulu\"/>\n <meta property=\"og:description\"
63
+ content=\"A &quot;burned&quot; spy returns to Miami where he uses his special
64
+ ops training to help those in need, and bring justice against the men who wrongly
65
+ burned him.\n\"/>\n \n <meta property=\"og:url\" content=\"http://www.hulu.com/burn-notice\"/>\n
66
+ \ \n \n <style type=\"text/css\" media=\"screen\">\n #infinite-background,#headliner-background
67
+ {\n background: #222 url(http://assets.huluim.com/shows/background_art_burn_notice.jpg)
68
+ repeat-x scroll left top;\n }\n #headliner-background {\n text-align:
69
+ center;\n position:relative;\n }\n #show-page-bar {\n position:
70
+ relative;\n font-size: 12px;\n padding-top: 3px;\n padding-bottom:3px;\n
71
+ \ margin-bottom: 15px;\n text-align: center;\n background: #fafafa
72
+ url( \"/images/bg-show-bottom.gif\" ) bottom left repeat-x;\n\n }\n div.info
73
+ h1 { font-size:12px; }\n div.login-form form { display: inline; }\n #show-page-bar
74
+ h2 {\n position: absolute;\n width: 45%;\n top: 0;\n left:
75
+ 0;\n }\n #show-page-bar a {\n margin-left: 12ex;\n margin-right:
76
+ 12ex;\n font-weight: bold;\n font-size:11px;\n }\n .details-spacer
77
+ { padding-left:10px;padding-right:10px; color:#666;}\n .description { padding-top:5px;
78
+ }\n\n div.show-bar {\n background: url(/images/showbar-bg.gif?cb=1)
79
+ repeat-x scroll 0 0 transparent;\n min-height: 28px;\n height: auto
80
+ !important;\n margin-bottom: 40px;\n }\n\n div.show-bar div.share-links
81
+ a img {\n float: left;\n }\n\n div.subscription-links {\n position:
82
+ relative;\n }\n\n div.subscription-links div {\n position: relative;\n
83
+ \ }\n\n div.subscription-links span {\n color:#FFF;\n font-weight:
84
+ bold;\n font-size: 11px;\n height: 22px;\n }\n\n div.subscription-links
85
+ span.video-rating {\n display: block;\n }\n\n div.subscription-links
86
+ span.video-rating span {\n display: block;\n width: 16px;\n margin-left:
87
+ 6px;\n vertical-align: middle;\n float: left;\n }\n\n div.subscription-links
88
+ span.video-rating img.star {\n margin-top: 5px;\n float: left;\n }\n\n
89
+ \ div.subscription-links span img.subscribe-image {\n margin-right: 3px;\n
90
+ \ }\n\n\n div.subscription-links a.small-subscription {\n background:
91
+ url(/images/showbar-subscribe.gif) no-repeat scroll 0 0 transparent;\n color:
92
+ #FFFFFF;\n font-weight: bold;\n font-size: 11px;\n }\n div.subscription-links
93
+ a.small-subscription:hover {\n background: url(/images/showbar-subscribe-hover.gif)
94
+ no-repeat scroll 0 0 transparent;\n color: #99cc33;\n text-decoration:
95
+ none;\n }\n\n div.rate-and-subscribe ul {\n margin: 0;\n }\n\n
96
+ \ div.rate-and-subscribe ul li {\n float: left;\n display: block;\n
97
+ \ height: 22px;\n line-height: 22px;\n margin: 0;\n padding:
98
+ 0;\n }\n\n #iicd-breadcrumb {\n margin: -20px 0 10px 0;\n }\n\n
99
+ \ #show-play-button {\n height:96px;\n left:407px;\n position:absolute;\n
100
+ \ top:124px;\n width:96px;\n z-index:10;\n }\n #live-container
101
+ {\n text-align:center;\n color:#444;\n font-size: 14px;\n font-weight:
102
+ bold;\n margin-top:18px;\n }\n #live-container a {\n color:#5588bb;\n
103
+ \ }\n #live-container a:hover {\n color:#5588bb;\n text-decoration:underline;\n
104
+ \ }\n \n .related-links a, .tweets-container a.from_user {\n font-weight:
105
+ normal;\n color: #5588bb;\n }\n .related-links a:hover, .tweets-container
106
+ a.from_user:hover { text-decoration: underline; }\n \n .related-links
107
+ a.logo {\n float: left;\n width: 70px;\n }\n \n .related-links
108
+ span {\n display: block;\n margin-left: 70px;\n }\n \n .related-links
109
+ .relative div { margin-bottom: 10px; }\n \n div.share-links {\n font-size:
110
+ 11px;\n font-weight: bold;\n line-height: 22px;\n text-align:
111
+ right;\n } \n \n div.share-label {\n vertical-align: top;\n
112
+ \ color: #535353;\n padding-right: 0px;\n float: left;\n }\n
113
+ \ \n .fb-like-button {\n \tbackground: url(/images/fb-like-shim.gif)
114
+ no-repeat scroll 0 0 transparent;\n \twidth: 74px; \n \tfloat: left; \n
115
+ \ \tdisplay: block; \n \tpadding-left: 8px;\n }\n\n #twitter-container
116
+ .related-links a { font-size: 11px; }\n \n .tweets-container {\n border:
117
+ 1px solid #999; \n padding: 2px 10px;\n margin: 3px 0px 40px;\n }\n
118
+ \ \n #tweetbox-container a {\n float: right;\n width: 80px;\n
119
+ \ height: 20px;\n border: 1px solid #999;\n text-align: center;\n
120
+ \ margin-left: 12px;\n }\n \n #tweetbox-container span {\n float:
121
+ right;\n width: 40px;\n color: #333;\n font-size: 14px;\n font-weight:
122
+ bold;\n text-align: right;\n color: #69B521;\n margin-top: 1px;\n
123
+ \ }\n \n #tweetbox-container a.disabled {\n cursor: default;\n
124
+ \ }\n \n #tweetbox {\n width: 418px;\n height: 75px;\n padding:
125
+ 4px 10px;\n margin-bottom: 13px;\n font-size: 100%;\n }\n \n
126
+ \ #tweetbox-container textarea.unfocused {\n color: #888;\n height:
127
+ 19px;\n }\n \n .tweets-container ul { margin: 0px; }\n .tweets-container
128
+ li {\n display: block;\n border-bottom: 1px solid #eee;\n padding:
129
+ 3px 0px 12px;\n word-wrap: break-word;\n }\n .tweets-container li
130
+ span {\n display: block;\n color: #ccc;\n }\n .tweets-container
131
+ li.last {\n border: none;\n padding-bottom: 6px;\n }\n div.sponsorship
132
+ {\n z-index: 90;\n position: absolute;\n left: 685px;\n top:
133
+ 288px;\n \n }\n div#sponsorship-caption {\n font-family: \"Helvetica\",
134
+ \"Arial\", \"Verdana\", sans-serif;\n font-size: 13px;\n font-weight:
135
+ 500;\n color: #666666\n }\n </style>\n <script type=\"text/javascript\"
136
+ charset=\"utf-8\">/*![CDATA[*/\n Behaviors.in_show_page = true;\n\n \n
137
+ \ Tag.Taggable = {\n id : 105,\n type : \"Show\"\n }\n var
138
+ url_for_tagged_tags = \"/taggings/user_taggings?\" +\n \"taggable_id=105&\"
139
+ +\n \"taggable_type=Show&\" + \n \"show_id=105\" ;\n var LoggedIn
140
+ = null; \n function setLoggedOut(){\n try{\n $('recommend-login-prompt').innerHTML
141
+ = \"<a href=\\\"#\\\" onclick=\\\"FloatingLoginForm.showTop(this.up()); return
142
+ false;\\\">Log in</a>\" + \" for personalized recommendations. \" +\n \"Don't
143
+ have an account? \" + \"<a href=\\\"/signup\\\">Sign up</a>\" + \" now.\";\n
144
+ \ if (LoggedIn != false) {\n var obj_css_id = $('related-container').down('.vsl').identify();\n
145
+ \ var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n if(obj
146
+ && !obj.is_first_load) {\n obj._rTracking = new RecommendTracking();\n
147
+ \ obj.repopulate();\n }\n LoggedIn = false;\n }
148
+ \n Tag.ClearTagged();\n return;\n } catch(ex) {\n return;\n
149
+ \ }\n }\n function setLoggedIn(){\n try {\n $('recommend-login-prompt').innerHTML
150
+ = \"Click here to \" +\n \"<a href=\\\"/recommendations?check_out_show=105\\\">see
151
+ all recommendations</a>\" + \n \". \" + \n \"If you are not
152
+ \" + \n Behaviors.getUsername().escapeHTML() + \", \" + \"<a href=\\\"#\\\"
153
+ onclick=\\\"new Ajax.Request('/logout', {asynchronous:true, evalScripts:true,
154
+ onComplete:function(request){Behaviors.setLoggedOut(true)}}); return false;\\\">click
155
+ here</a>\" + \".\" ;\n if (LoggedIn != true) {\n var obj_css_id
156
+ = $('related-container').down('.vsl').identify();\n var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n
157
+ \ if(obj && !obj.is_first_load) {\n obj._rTracking = new
158
+ RecommendTracking();\n obj.repopulate();\n }\n LoggedIn
159
+ = true;\n }\n Tag.LoadTagged(url_for_tagged_tags) ;\n return;\n
160
+ \ } catch(ex) {\n return;\n }\n }\n /*]]>*/</script>\n <script>\n
161
+ \ function anchorToShowExpander(){\n var url = window.location.href;\n
162
+ \ if (url.split(\"#\")[1] == \"show_expander\"){\n if ($('show-expander')){\n
163
+ \ $('show-expander').scrollTo(); \n }\n }\n anchorToCategory();\n
164
+ \ }\n function anchorToCategory(){\n var url = window.location.href;\n
165
+ \ var category = url.split(\"#\")[1];\n if(category){\n category
166
+ = unescape(category.toUpperCase());\n for(var i=0; i < $$(\"h2\").size();
167
+ i++){\n var h2 = $$(\"h2\")[i];\n if(h2.textContent.toUpperCase().include(category)){\n
168
+ \ h2.scrollTo();\n break;\n } \n
169
+ \ }\n }\n }\n </script>\n\n\n <script type=\"text/javascript\"
170
+ charset=\"utf-8\">/*<![CDATA[*/\n if (typeof(TestGTM) != \"undefined\") TestGTM.run();\n
171
+ \ \n //initialize beacons\n Beacon.production = true;\n //Beacon.region_prefix
172
+ = ;\n\n document.observe(\"dom:loaded\", function() {\n if (/\\.facebook\\.com/.test(top.location.hostname))
173
+ return;\n if (top.location != location) {\n top.location.href =
174
+ document.location.href;\n }\n });\n \n document.observe(\"dom:loaded\",
175
+ function() {\n Beacon.trackPageLoad(); //fire the page load beacon\n Beacon.init();
176
+ //we can get rid of this once we rewrite the beacons\n });\n\n function
177
+ setFs(value){\n TrackingUtility.setCookie(\"fs\", value, -1);\n }\n
178
+ \ function getFs(key){\n var fs = $(key);\n if (fs) {\n fs.value
179
+ = TrackingUtility.getCookie(\"fs\");\n }\n }\n function getSt(key){\n
180
+ \ var st = $(key);\n if (st){\n if (Math.random() < 0.2){\n
181
+ \ st.value = 1;\n } else {\n st.value = 0;\n }\n
182
+ \ }\n }\n\n \n\n var ie9 = new PinnedSite();\n (function()
183
+ {\n var loader = function() {\n Behaviors.getCramSwf(); //pre-load
184
+ the cram swf\n ie9.SetupGA();\n MobileDevice.onLoad();\n Behaviors.onLoad();\n
185
+ \ Behaviors.setLoggedIn();\n Login.setup();\n ie9.Initialize();\n
186
+ \ Tracking.track_ga_event_from_cram();\n BookmarkTracking.trackFromCram()
187
+ ;\n };\n\n if (MobileDevice.flags.useWindowLoad) {\n Event.observe(window,
188
+ \"load\", loader);\n }\n else {\n document.observe(\"dom:loaded\",
189
+ loader);\n }\n\n Event.observe(document, \"fb:init\", function() {\n
190
+ \ Social.Facebook.onFBinit();\n });\n })();\n Login.auth
191
+ = function(login, password, stay_logged_in, from) { if (Prototype.Browser.IE
192
+ && from != 'facebook-popup') { /* Sorry, IE users... */ Login.heavyFormAuth(login,
193
+ password, stay_logged_in, \"https://secure.hulu.com/account/authenticate\");
194
+ return; } document.cookie = 'login=' + encodeURIComponent(login) + '; path=/account/authenticate;
195
+ secure; domain=.hulu.com'; document.cookie = 'password=' + encodeURIComponent(password)
196
+ + '; path=/account/authenticate; secure; domain=.hulu.com'; if (stay_logged_in)
197
+ document.cookie = 'sli=1; path=/account/authenticate; secure; domain=.hulu.com';
198
+ else document.cookie = 'sli=0; path=/account/authenticate; secure; domain=.hulu.com';
199
+ el = $$('body').first(); if (el) { var script = document.createElement('script');
200
+ script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
201
+ + '?' + parseInt(Math.random() * 1000000000); if (typeof(from) != 'undefined')
202
+ { script.src += \"&from=\" + encodeURIComponent(from); } el.appendChild(script);
203
+ } }; Social.Facebook.submitSettings = function(options) { document.cookie =
204
+ 'fb_passwd=' + encodeURIComponent(options.password) + '; ; secure; domain=.hulu.com;
205
+ path=/social;'; document.cookie = 'fb_passwd_c=' + encodeURIComponent(options.confirm_password)
206
+ + '; ; secure; domain=.hulu.com; path=/social;'; Behaviors.setSecureFBCookie(\"secure.hulu.com\");
207
+ var el = $$('body').first(); if (el) { var url = \"https://secure.hulu.com/social/facebook_new_account\";
208
+ var connect_canvas_only_url = \"https://secure.hulu.com/social/convert_canvas_only_user\";
209
+ if (options.action == 'connect_canvas') { url = connect_canvas_only_url; } url
210
+ += '?fuid=' + encodeURIComponent(options.fuid) + '&cb=' + (new Date).getTime();
211
+ if (options.email) { url += \"&email=\" + encodeURIComponent(options.email);
212
+ } if (options.gender) { url += \"&gender=\" + encodeURIComponent(options.gender);
213
+ } if (options.birth_date) { url += \"&birth_date=\" + encodeURIComponent(options.birth_date);
214
+ } if (options.privacy_level) { url += \"&privacy_level=\" + encodeURIComponent(options.privacy_level);
215
+ } var script = document.createElement('script'); script.type = 'text/javascript';
216
+ script.src = url; el.appendChild(script); } }; Login.accept_privacy = function()
217
+ { el = $$('body').first(); if (el) { var script = document.createElement('script');
218
+ script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
219
+ + '?privacy_acceptance=1&' + parseInt(Math.random() * 1000000000); el.appendChild(script);
220
+ } };\n /*]]>*/</script>\n \n <!--[if IE]>\n <script type=\"text/javascript\"
221
+ event=\"FSCommand(command,args)\" for=\"vcs\">\n vcs_DoFSCommand(command,
222
+ args);\n </script>\n <![endif]-->\n \n <script src=\"http://www.google-analytics.com/ga.js\"
223
+ type=\"text/javascript\"></script><script type=\"text/javascript\">\n//<![CDATA[\n
224
+ var _pt = (function(gat) { if (typeof(gat) == \"undefined\" || !gat) return
225
+ null; var pt = gat._getTracker(\"UA-1384159-3\"); pt._setDomainName(\".hulu.com\");
226
+ pt._setAllowHash(false); var seg_status = Behaviors.isLoggedIn() ? (Behaviors.isPlusUser()
227
+ ? \"plus\" : \"loggedin\") : \"anonymous\"; var removePrefix = /^.*\\.(.*)/.exec(Behaviors.getCookie(\"__utmv\"));
228
+ if (removePrefix && removePrefix[1]) { if (removePrefix[1] != seg_status) {
229
+ pt._setVar(seg_status); } } else { pt._setVar(seg_status); } if (/^\\/plus\\/signup/.test(window.location.pathname))
230
+ { pt._trackPageview(\"/plus/signup\"); } else { pt._trackPageview(); } pt._trackPageLoadTime();
231
+ return pt; })(_gat); \n//]]>\n</script>\n</head>\n\n<body class=\"center\">\n
232
+ \ \n <div id=\"fb-root\"></div>\n <script type=\"text/javascript\">//<![CDATA[\n
233
+ \ window.fbAsyncInit = function() {\n FB.init({appId: '40582213222',
234
+ status: true, cookie: true, xfbml: true, channelUrl: \"http://www.hulu.com/fb_channel.html\",
235
+ oauth: true});\n if (Social.Common.fbDefined()) {\n FB.Event.subscribe('auth.login',
236
+ function(response) {\n Social.Facebook.loginCallback(response);\n
237
+ \ });\n FB.Event.subscribe('auth.logout', function(response)
238
+ {\n Social.Facebook.logoutCallback(response);\n });\n
239
+ \ }\n // call the api to parse XFBML tags again to avoid browser
240
+ specific issue (Firefox 3.5.5 on Mac reported by Betina)\n FB.XFBML.parse();\n
241
+ \ \n FB.Event.subscribe('edge.create', function(response) {\n
242
+ \ Behaviors.onFBLiked(response);\n });\n document.fire(\"fb:init\");\n
243
+ \ };\n\n function facebook_init() {\n // Sorry IE: http://bugs.developers.facebook.net/show_bug.cgi?id=9777\n
244
+ \ if (!Behaviors.isFlashEnabled() && Prototype.Browser.IE) return;\n\n
245
+ \ var e = document.createElement('script');\n e.async = true;\n
246
+ \ e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';\n
247
+ \ document.getElementById('fb-root').appendChild(e);\n };\n\n
248
+ \ Event.observe(window, \"load\", facebook_init); \n //]]></script>\n
249
+ \ \n <!--[if lte IE 6]> \n<div id=\"no-ie6\" class=\"relative container\"
250
+ style=\"text-align: left; height: 40px; background-color: #CFCFCF; display:none;\">\n
251
+ \ <div style=\"font-size: 14px; padding: 12px 0 8px 0;\" class=\"container
252
+ fixed-lg\">\n <img alt=\"Icon-ie6-close\" src=\"http://static.huluim.com/images/icon-ie6-close.png?1007151874\"
253
+ style=\"margin-left: 86px; vertical-align: middle;\" />\n <span style=\"margin-left:
254
+ 20px; vertical-align: middle;\">\n Internet Explorer 6.0 is no longer
255
+ a supported browser. Please click <a href=\"http://www.hulu.com/support\">here</a>
256
+ for our system requirements.\n </span>\n <span style=\"margin-left:
257
+ 20px;\">\n <a alt=\"Close this notice\" href=\"#\" onclick=\"Behaviors.hideIE6();;
258
+ return false;\"><img alt=\"Close this notice\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
259
+ style=\"vertical-align: middle;\" /></a>\n </span>\n </div>\n</div>\n\n<script
260
+ type=\"text/javascript\">\n//<![CDATA[\nBehaviors.showIE6();\n//]]>\n</script>\n<![endif]-->\n\n
261
+ \ <div class=\"relative container plus-hold-banner\" id=\"plus-hold-banner\"
262
+ style=\"display:none\">\n</div>\n\n <div id=\"delayed-js-container\"></div>\n
263
+ \ \n <div id=\"vc\"></div>\n\n \n <div class=\"fixed-lg relative\" id=\"container\"
264
+ style=\"z-index:98;position:relative;\">\n <div class=\"section top\">\n <div
265
+ class=\"standard tidy\">\n <ul id=\"logged-in-nav\" class=\"usernav\" style=\"display:none\">\n
266
+ \ <li class=\"first\">\n <span style=\"position:relative;\">\n
267
+ \ <span id=\"profile-drop-down-span\">\n <img alt=\"[!]\"
268
+ id=\"hold-icon\" src=\"http://static.huluim.com/images/icon-orange-alert.gif?990053788\"
269
+ style=\"display:none\" title=\"There are problems with your subscription.\"
270
+ />\n Welcome <a href=\"javascript:void(0);\" class=\"profile-drop-down-link
271
+ utility-link\" id=\"user-greeting\">User</a>\n </span>\n <div
272
+ id=\"profile-drop-down-placeholder\" style=\"position:absolute; height:12px;
273
+ top:12px; width:10px; left:0px;\"></div>\n <div class=\"profile-drop-down\"
274
+ style=\"display:none;\">\n <ul>\n <li><a href=\"/inbox\"
275
+ id=\"inbox-link\">Inbox</a></li>\n <li><a href=\"/profile/profile\">Profile</a></li>\n
276
+ \ <li><a href=\"/profile/activity_feed\">Community</a></li>\n
277
+ \ <li><a href=\"/profile/queue\">Content</a></li>\n <li><a
278
+ href=\"/profile/settings\">Privacy &amp; Settings</a></li>\n \t\t<li><a href=\"/profile/ad_tailor?src=account-dropdown\">Ad
279
+ Tailor</a></li>\n <li><a href=\"/help\">Help</a></li>\n <li><a
280
+ class=\"utility-link\" href=\"#\" id=\"top-nav-sign-out\" onclick=\"Behaviors.logoutFromTop();;
281
+ return false;\">Log Out</a></li>\n </ul>\n </div>\n
282
+ \ <div class=\"profile-drop-down-pointer\" style=\"display:none; background-image:url('/images/profile_dropdown_pointer.png');
283
+ background-position:0 0px;\"></div>\n </span>\n </li>\n <li>\n
284
+ \ <a href=\"/profile\" class=\"utility-link\">Account</a>\n </li>\n
285
+ \ \n <li>\n <a href=\"http://www.hulu.com/profile/queue\"
286
+ class=\"utility-link queue-count\" id=\"your-queue-link\">Queue</a>\n </li>\n
287
+ \ \n </ul>\n\n <ul id=\"logged-out-nav\" class=\"usernav\" style=\"display:none\">\n
288
+ \ <li class=\"first\">\n <a class=\"utility-link\" href=\"#\"
289
+ id=\"login-link\" onclick=\"FloatingLoginForm.showTop(this); return false;\">Log
290
+ In</a>\n </li>\n <li class=\"signin-border-left\">\n <a
291
+ href=\"http://www.hulu.com/users/forgot_password\" class=\"utility-link\">Forgot
292
+ Password?</a>\n </li>\n \n <li class=\"signin-border-left\">\n
293
+ \ <a href=\"http://www.hulu.com/signup\" class=\"utility-link\">Sign
294
+ Up</a>\n </li>\n \n </ul>\n\n <noscript>\n <ul
295
+ class=\"nojs usernav\">\n <li>\n Please <a href=\"/support/login_faq#cant_login\">enable
296
+ javascript</a> to log in.\n </li>\n </ul>\n </noscript>\n\n
297
+ \ \n \n <ul class=\"nv\"><li class=\"first\" style=\"\" id=\"home\"><a
298
+ href=\"http://www.hulu.com/?src=topnav\" rel=\"home\"><img alt=\"Hulu\" border=\"0\"
299
+ height=\"42\" id=\"main-hulu-logo\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
300
+ title=\"Hulu\" width=\"97\" /></a></li><li class=\"\" id=\"tv\"><a href=\"http://www.hulu.com/tv?src=topnav\"><img
301
+ alt=\"TV\" border=\"0\" height=\"42\" src=\"http://static.huluim.com/images/tab-active-tv.gif?1004936090\"
302
+ title=\"TV\" width=\"94\" /></a></li><li class=\"\" id=\"movies\"><a href=\"http://www.hulu.com/movies?src=topnav\"><img
303
+ alt=\"Movies\" border=\"0\" class=\"hover-me\" id=\"tab-movies.gif132225585245565\"
304
+ src=\"http://static.huluim.com/images/tab-movies.gif?996649533\" title=\"Movies\"
305
+ /></a></li><li class=\"\" id=\"huluplus\"><a href=\"http://www.hulu.com/plus?src=topnav\"><img
306
+ alt=\"More TV. On more devices.\" border=\"0\" class=\"hover-me\" id=\"tab-huluplus.gif132225585245616\"
307
+ src=\"http://static.huluim.com/images/tab-huluplus.gif?1034071429\" title=\"More
308
+ TV. On more devices.\" /></a></li></ul>\n \n </div>\n </div>\n</div>\n\n<div
309
+ id=\"header-search-auto-complete\"></div>\n\n<div class=\"fluid bar\" id=\"top-sec-nv\"
310
+ style=\"\">\n <div class=\"fixed-lg container\" style=\"position:relative\">\n
311
+ \ <ul class=\"snv tv\"><li id=\"snv-browse-tv\"><a href=\"http://www.hulu.com/browse/tv?src=topnav\"
312
+ class=\"menu-top\"><img alt=\"Browse TV\" border=\"0\" class=\"hover-me\" id=\"subnav-browsetv.gif132225585245733\"
313
+ src=\"http://static.huluim.com/images/subnav-browsetv.gif?1054524884\" title=\"Browse
314
+ TV\" /></a><div class=\"nav-menus long\" style=\"display:none;\"> <div class=\"liner\"></div>
315
+ <div class=\"three-items\"> <h2 class=\"menu-item first\"> <a href=\"http://www.hulu.com/browse/tv?src=topnav\"
316
+ title=\"Alphabetical\">Alphabetical</a> </h2> <h2 class=\"menu-item \"> <a
317
+ href=\"http://www.hulu.com/browse/network?src=topnav\" title=\"By Network\">By
318
+ Network</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/genres/tv?src=topnav\"
319
+ title=\"By Genre\">By Genre</a> </h2> </div><div class=\"more-items\"> <h2 class=\"menu-item\">
320
+ <a href=\"http://www.hulu.com/playlists?src=topnav\" title=\"Playlists\">Playlists</a>
321
+ </h2> <h2 class=\"menu-item\"> <a href=\"http://www.hulu.com/coming-soon?src=topnav\"
322
+ title=\"Coming Soon\">Coming Soon</a> </h2> </div></div></li><li id=\"snv-popular-shows\"><a
323
+ href=\"http://www.hulu.com/popular/tv?src=topnav\" class=\"menu-top\"><img alt=\"Popular
324
+ Shows\" border=\"0\" class=\"hover-me\" id=\"subnav-mostpopular.gif132225585245847\"
325
+ src=\"http://static.huluim.com/images/subnav-mostpopular.gif?981609852\" title=\"Popular
326
+ Shows\" /></a><div class=\"nav-menus long\" style=\"display:none;\"> <div class=\"liner\"></div>
327
+ <div class=\"three-items\"> <h2 class=\"menu-item first\"> <a href=\"http://www.hulu.com/browse/popular/tv?src=topnav\"
328
+ title=\"Shows\">Shows</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/episodes?src=topnav\"
329
+ title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/clips?src=topnav\"
330
+ title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-recently-added\"><a
331
+ href=\"http://www.hulu.com/recent/tv?src=topnav\" class=\"menu-top\"><img alt=\"Recently
332
+ Added\" border=\"0\" class=\"hover-me\" id=\"subnav-recentlyadded.gif132225585245957\"
333
+ src=\"http://static.huluim.com/images/subnav-recentlyadded.gif?1251132303\"
334
+ title=\"Recently Added\" /></a><div class=\"nav-menus long\" style=\"display:none;\">
335
+ <div class=\"liner\"></div> <div class=\"three-items\"> <h2 class=\"menu-item
336
+ first\"> <a href=\"http://www.hulu.com/browse/recent/tv?src=topnav\" title=\"Shows\">Shows</a>
337
+ </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/episodes?src=topnav\"
338
+ title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/clips?src=topnav\"
339
+ title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-coming-soon\"><a
340
+ href=\"http://www.hulu.com/coming-soon?src=topnav\" class=\"menu-top\"><img
341
+ alt=\"Coming Soon\" border=\"0\" class=\"hover-me\" id=\"subnav-comingsoon.gif132225585246069\"
342
+ src=\"http://static.huluim.com/images/subnav-comingsoon.gif?1029003075\" title=\"Coming
343
+ Soon\" /></a></li><li id=\"snv-favorites\"><a href=\"http://www.hulu.com/favorites?src=topnav\"
344
+ class=\"menu-top\"><img alt=\"Favorites\" border=\"0\" class=\"hover-me\" id=\"subnav-favorites.gif132225585246156\"
345
+ src=\"http://static.huluim.com/images/subnav-favorites.gif?1086275041\" title=\"Favorites\"
346
+ /></a><div class=\"nav-menus fullwidth short requirelogin\" style=\"display:none;width:920px;left:-545px;height:129px;\">
347
+ <div class=\"liner\"></div> <div class='favorites-loading'></div> </div></li></ul>
348
+ <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/ pingImage('/images/subnav-menus-bg-3items.gif');
349
+ pingImage('/images/subnav-menus-liner.gif'); /*]]>*/</script> \n <div class=\"searchnav\">\n
350
+ \ <form name=\"search_form\" id=\"search_form\" action=\"http://www.hulu.com/search\"
351
+ method=\"get\" onsubmit=\"if(this.query.value == '') {return false;} getSt('st');getFs('fs');if(!$('header-search-auto-complete').visible()){SearchTracking.trackSearchForm('search_form')}\">\n
352
+ \ <input id=\"video_search_term\" style=\"margin-right:-3px;\" type=\"text\"
353
+ \ value=\"\" autocomplete=\"off\" name=\"query\"/>\n <a href=\"javascript:void(0)\"><img
354
+ alt=\"Search\" border=\"0\" class=\"hover-me\" id=\"top-nav-search-button\"
355
+ onclick=\"if($('search_form').query.value == '') {return false;} SearchTracking.trackSearchForm('search_form');
356
+ getSt('st');getFs('fs'); $('search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
357
+ title=\"Search\" /></a>\n <input type=\"hidden\" name=\"st\" id=\"st\"
358
+ />\n <input type=\"hidden\" name=\"fs\" id=\"fs\" />\n </form>\n
359
+ \ </div>\n </div>\n</div>\n\n<script type=\"text/javascript\">//<![CDATA[\n
360
+ \ var search_query_auto_completer = new Ajax.HuluAutocompleter(\n 'video_search_term',\n
361
+ \ 'header-search-auto-complete',\n '/search/suggest_html',\n {\n onSelected
362
+ : function() {\n getSt('st');\n getFs('fs');\n $('search_form').submit();\n
363
+ \ },\n onSelectNone : function() {\n getSt('st');\n getFs('fs');\n
364
+ \ $('search_form').submit();\n SearchTracking.trackSearchForm('search_form');\n
365
+ \ },\n widthExpand : 54,\n parameters : getPageInfo(),\n method
366
+ : 'get'\n }\n );\n \n//]]></script>\n\n\n\n \n\n\n \n\n\n <script type=\"text/javascript\">Share.activity_data
367
+ = {\"item_id\":105,\"item_type\":\"show\"}</script>\n <div id=\"email-share-popup\"
368
+ class=\"popup\" style=\"display: none;\">\n <div class=\"popup-bar\">\n <a
369
+ href=\"#\" onclick=\"$('email-share-popup').hide();; return false;\"><img alt=\"Popup-close\"
370
+ border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
371
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"share-content\">\n
372
+ \ \n <form action=\"/users/send_email_share\" id=\"email-share-form\" method=\"post\"
373
+ onsubmit=\"if(!Share.checkEmailShare(this)) return false;; new Ajax.Request('/users/send_email_share',
374
+ {asynchronous:true, evalScripts:true, onComplete:function(request){$('email-share-popup').down('img.loading').hide();},
375
+ onFailure:function(request){$('email-share-popup').down('span.error').update('Something
376
+ wrong, try again.');}, onSuccess:function(request){Share.afterEmailSent();},
377
+ parameters:Form.serialize(this)}); return false;\">\n <div style=\"font-weight:
378
+ bold;\">Share This Show</div>\n <span style=\"color: #444444;\">Email your
379
+ friends and let them know what you think.</span><br/>\n \n <input
380
+ type=\"hidden\" name=\"shared_id\" value=\"105\" />\n <input type=\"hidden\"
381
+ name=\"shared_type\" value=\"show\" />\n <textarea id=\"email-addresses\"
382
+ name=\"addresses\" onfocus=\"if ('email address(es) - use a comma to separate.'
383
+ == value) value = ''; this.setStyle({color:'#000000'});\">email address(es)
384
+ - use a comma to separate.</textarea>\n\n \n \n \n\n <textarea
385
+ id=\"email-messages\" name=\"message\" onfocus=\"this.setStyle({color:'#000000'});\">Check
386
+ out Burn Notice on Hulu.</textarea>\n\n <span class=\"error\" style=\"display:none;\"></span>\n
387
+ \ <span class=\"success-msg\" style=\"display:none;\">\n <img alt=\"Icon-check\"
388
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/icon-check.gif?1125927925\"
389
+ style=\"vertical-align: middle; margin-right: 5px;\" title=\"sent\" width=\"16\"
390
+ />\n Message sent.\n </span>\n <div class=\"actions\" style=\"float:
391
+ right; margin-bottom: 15px;\">\n <div>\n <img alt=\"Loading-animated-circle\"
392
+ border=\"0\" class=\"loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
393
+ style=\"display: none; margin: 2px 5px 0 0; float: left;\" title=\"loading\"
394
+ width=\"16\" />\n <input alt=\"send email\" border=\"0\" class=\"hover-me\"
395
+ id=\"btn-send.gif132225585225863\" size=\"160x20\" src=\"http://static.huluim.com/images/btn-send.gif?1142158961\"
396
+ style=\"float: left;\" title=\"send email\" type=\"image\" />\n </div>\n
397
+ \ <br style=\"clear: both;\" />\n </div>\n <br style=\"clear:
398
+ both;\" />\n </form>\n </div>\n <div class=\"shw-top-right\"></div>\n <div
399
+ class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n <div
400
+ class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n</div>\n\n\n<div
401
+ id=\"overlay-bottom\" style=\"top:0px\" onclick=\"hideSearchPopup();\"></div>\n<div
402
+ class=\"fluid bg\" id=\"infinite-background\">\n <div class=\"fixed-lg container\">\n
403
+ \ <div class=\"section\">\n \n\n \n \n \n <div
404
+ class=\"relative\">\n \n<div class=\"sponsorship\">\n <div id=\"sponsorship-caption\">\n
405
+ \ <div id=\"sponsorship-container\"></div>\n </div>\n</div>\n<script type=\"text/javascript\"
406
+ charset=\"utf-8\">/*<![CDATA[*/\n (function() {\n var so = new SWFObject(\"/siteplacement.swf?v1\",
407
+ \"siteplacement\", 1, 1, \"1\");\n so.addParam(\"allowScriptAccess\", \"always\");\n
408
+ \ so.addParam(\"wmode\", \"transparent\");\n so.addParam(\"bgcolor\", \"#eeeeee\");\n
409
+ \ so.addParam(\"quality\", \"high\");\n so.addVariable(\"captionDivId\",
410
+ \"sponsorship-caption\");\n so.addVariable(\"embedId\", \"siteplacement\");\n
411
+ \ so.addVariable(\"env\", \"prod\");\n so.addVariable(\"pageUrl\",
412
+ window.location);\n so.addVariable(\"siteLocation\", \"/Show Page/burn-notice\");\n
413
+ \ VersionCheck.write(so, \"sponsorship-container\");\n })();\n/*]]>*/</script>\n\n
414
+ \ <div class=\"headliner\" onmouseover=\"Element.show('show-play-button');\"
415
+ onmouseout=\"Element.hide('show-play-button');\" id=\"headliner-background\">\n
416
+ \ <a href=\"http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do\"><img
417
+ alt=\"Burn Notice\" border=\"0\" src=\"http://assets.huluim.com/shows/key_art_burn_notice.jpg\"
418
+ style=\"max-width: 920px;\" /></a>\n <a id=\"show-play-button\" style=\"display:none;\"
419
+ href=\"http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do\">\n <img
420
+ height=\"102\" border=\"0\" width=\"106\" src=\"/images/btn-play-show.png\"/>\n
421
+ \ </a>\n </div>\n </div>\n \n \n\n </div>\n
422
+ \ </div>\n</div>\n<div class=\"fluid show-bar\">\n <div class=\"fixed-lg container
423
+ subscription-links\">\n <div>\n \n <div class=\"rate-and-subscribe\"
424
+ style=\"float: left;\">\n \n <ul>\n <li><img
425
+ alt=\"\" border=\"0\" height=\"28\" src=\"http://static.huluim.com/images/showbar-rate-this.gif?1100498242\"
426
+ width=\"79\" /></li>\n <li style=\"margin-left: 10px; padding-top:
427
+ 2px;\"> <span id=\"rating-show-105-showbar\" class=\"video-rating\"></span>\n
428
+ \ <script type=\"text/javascript\">\n new VideoRating(\n 'rating-show-105-showbar',\n
429
+ \ 105,\n 4.45332521408955,\n null,\n \"show\"\n
430
+ \ );\n </script>\n</li>\n \n <li>\n <div
431
+ style=\"color: #FFF; float: left; margin: 0px 20px 0px 10px;\"><img src=\"/images/showbar-rate-divider.gif\"></div>\n
432
+ \ <a class=\"showbar-subscription\" data-show-id=\"105\" href=\"#\"
433
+ onclick=\"Subscription.toggle_popup(this, 'Burn Notice', 'burn-notice', '105',
434
+ true); return false;\">add to favorites</a>\n </li>\n \n
435
+ \ </ul>\n \n </div>\n <div id=\"social_data\"
436
+ class=\"social-face-pile beaconregion\" beaconregion=\"show_page_footer\"></div>\n
437
+ \ \n </div>\n </div>\n</div>\n\n<div class=\"fixed-lg container\">\n
438
+ \ <div>\n \n </div>\n</div>\n\n<div id=\"show-and-watch-container\" style=\"position:
439
+ relative;*position:static !important;*position:static;\">\n <div class=\"fixed-lg
440
+ container\">\n <ul class=\"tab-container\" id=\"tab-container\" style=\"position:
441
+ relative;\"><li class=\"tab-selected\" id=\"tab-main\"><a href=\"#\"><img alt=\"Main\"
442
+ border=\"0\" class=\"hover-me\" height=\"28\" id=\"tab-main-img\" onclick=\"Tab.loadTab('main',
443
+ null, false, null); return false;\" src=\"http://static.huluim.com/images/tab-main-disabled.gif?1293982274\"
444
+ style=\"padding-right:2px;\" title=\"Main\" width=\"93\" /></a></li><li class=\"tab-unselected\"
445
+ id=\"tab-reviews\"><a href=\"#\"><img alt=\"Reviews\" border=\"0\" class=\"hover-me\"
446
+ height=\"28\" id=\"tab-reviews-img\" onclick=\"Tab.loadTab('reviews', &quot;http://www.hulu.com/reviews/tab_load?reviewable_id=105&amp;reviewable_type=Show&amp;show_id=105&quot;,
447
+ false, null); return false;\" src=\"http://static.huluim.com/images/tab-reviews.gif?1314538723\"
448
+ style=\"padding-right:2px;\" title=\"Reviews\" width=\"93\" /></a></li><li class=\"tab-unselected\"
449
+ id=\"tab-forums\"><a href=\"#\"><img alt=\"Discussions\" border=\"0\" class=\"hover-me\"
450
+ height=\"28\" id=\"tab-forums-img\" onclick=\"Tab.loadTab('forums', &quot;http://www.hulu.com/topics/tab_load?show_id=105&amp;topicable_id=105&amp;topicable_type=Show&quot;,
451
+ false, null); return false;\" src=\"http://static.huluim.com/images/tab-forums.gif?1315535690\"
452
+ style=\"padding-right:2px;\" title=\"Discussions\" width=\"93\" /></a></li><li
453
+ class=\"tab-unselected\" id=\"tab-tag\"><a href=\"#\"><img alt=\"Tag\" border=\"0\"
454
+ class=\"hover-me\" height=\"28\" id=\"tab-tag-img\" onclick=\"\n TagTracking.track('click_to_tab',
455
+ 'tab', Tag.Taggable) ;\n Tab.loadTab('tag', &quot;/taggings/tab_load?show_id=105&amp;taggable_id=105&amp;taggable_type=Show&quot;,
456
+ false, null); return false;\n \" src=\"http://static.huluim.com/images/tab-tag.gif?1111034483\"
457
+ style=\"padding-right:2px;\" title=\"Tag\" width=\"93\" /></a></li><li class=\"tab-unselected\"
458
+ id=\"tab-captions\"><a href=\"#\"><img alt=\"Captions\" border=\"0\" class=\"hover-me\"
459
+ height=\"28\" id=\"tab-captions-img\" onclick=\"Tab.loadTab('captions', &quot;http://www.hulu.com/transcripts/tab_load?show_id=105&quot;,
460
+ false, null); return false;\" src=\"http://static.huluim.com/images/tab-captions.gif?1085977942\"
461
+ style=\"padding-right:2px;\" title=\"Captions\" width=\"93\" /></a></li><li
462
+ style=\"display: inline; position: absolute; left: auto; top: auto;\"><span
463
+ id=\"tab-loading\" class=\"tab-loading\" style=\"display:none\"><img alt=\"Loading-animated-circle\"
464
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
465
+ width=\"16\" /></span></li><li style=\"display: inline; position: absolute;
466
+ right: 0; float: left;\"><div class=\"share-links\"><div><div class=\"share-label\"
467
+ style=\"display: inline;\">Share this show:</div><div style=\"float: left;\"><a
468
+ href=\"#\" onclick=\"Share.openEmailPopup(this);; return false;\"><img alt=\"\"
469
+ border=\"0\" class=\"hover-me\" id=\"showbar-email.gif132225585226924\" src=\"http://static.huluim.com/images/showbar-email.gif?1306334933\"
470
+ /></a></div><div style=\"float: left;\"><a href=\"#\" onclick=\"Share.popup('http://twitter.com/share?url=http%3A%2F%2Fwww.hulu.com%2Fburn-notice&amp;text=Check%20out%20Burn%20Notice%20on%20%40hulu%3A',
471
+ 'show', 105);; return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\"
472
+ id=\"showbar-twitter.gif132225585226992\" src=\"http://static.huluim.com/images/showbar-twitter.gif?1039060158\"
473
+ /></a></div><div class=\"fb-like-button\"><div style=\"float: right;\"><img
474
+ src=\"/images/fb-like-shim.gif\"></div><fb:like href=\"http://www.hulu.com/burn-notice\"
475
+ style=\"vertical-align: top\" layout=\"button_count\" show_faces=\"false\" width=\"90\"
476
+ font=\"lucida grande\"></fb:like> </div> </div></div></li></ul></div><ul class=\"pane-container\"
477
+ id=\"pane-container\">\n <li id=\"pane-main\" class=\"pane-selected\">\n
478
+ \ <div class=\"fluid container\">\n \n <div class=\"tab-header
479
+ main white activatable\" style=\"padding: 0px;\">\n <div class=\"fixed-lg
480
+ container availability \">\n <div class=\"availability-title\">Availability:</div>\n
481
+ \ \n <div class=\"availability-text\" id=\"availability-text-1\"
482
+ style='display:none'>\n Episodes will be available for streaming 30 days
483
+ after they air on television. They will be available on Hulu for a two week
484
+ period.<div style='height:6px; line-height:6px;' class='availability-note-break'></div><span
485
+ class=\"plus-availability-notes\"><span>We currently don't have the rights to
486
+ make this show available on TV or mobile devices &mdash; <a class=\"blue-link\"
487
+ href=\"javascript:void(0)\" onclick=\"Behaviors.requestPlusContent(this, 105)\">request</a>
488
+ to be notified if it becomes available in Hulu Plus.</span></span>\n </div>\n
489
+ \ <script>\n AvailabilityNotes.init( $(\"availability-text-1\"),
490
+ 1000 ) ;\n </script>\n \n <br style=\"clear:both;\"/>\n \n
491
+ \ \n </div>\n </div>\n \n <br style=\"clear:both\" /> \n</div>\n\n\n<div
492
+ id=\"filters_and_presenters\">\n \n\n\n\n\n\n\n <div class=\"fluid container\"
493
+ style=\"width:920px; margin-top: -10px; margin-bottom: 25px;\">\n <div class=\"embed_search_bar\"
494
+ id=\"search-bar\">\n <div class=\"fixed-lg container\" >\n <div class=\"video-info\"
495
+ style=\"padding:2px 0 0 9px; overflow:hidden;\">\n <form style=\"float:left;
496
+ width:96%\" id=\"channel_search_form\" name=\"search_form\" action=\"/search/search_video_within_show?item_id=105&amp;place=show&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice\"
497
+ method=\"get\" onsubmit=\"return searchInChannel()\">\n <div style=\"float:left;\">\n
498
+ \ <span style=\"font-size: 11px; font-weight: bold; color:#646464; margin-right:8px;
499
+ vertical-align:middle\">Search this show</span>\n <input id=\"embed-search-bar-query\"
500
+ class=\"search channel_search_term\" style=\"vertical-align:middle;width:230px;height:17px;border-color:#CCCCCC;color:#030303;border-right:0px;\"
501
+ type=\"text\" name=\"query\" autocomplete=\"off\" value=\"\" />\n <a
502
+ href=\"javascript:void(0);\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"embed-search-button\"
503
+ onclick=\"searchInChannel();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
504
+ style=\"vertical-align: middle; margin-left: -4px;\" title=\"Find specific shows
505
+ from this show\" /></a>\n </div>\n <div id='popular-terms' class=\"relative
506
+ search_bar_content\">\n \n \n <span class=\"label\">Popular
507
+ Searches:</span>\n \n <a href=\"javascript:void(0)\"
508
+ onclick=\"$('embed-search-bar-query').value=this.innerHTML; SearchAjaxCall('/search/search_video_within_show?item_id=105&amp;place=show&amp;query=full+episodes&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice')\">full
509
+ episodes</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
510
+ SearchAjaxCall('/search/search_video_within_show?item_id=105&amp;place=show&amp;query=season+4&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice')\">season
511
+ 4</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
512
+ SearchAjaxCall('/search/search_video_within_show?item_id=105&amp;place=show&amp;query=full+episode&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice')\">full
513
+ episode</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
514
+ SearchAjaxCall('/search/search_video_within_show?item_id=105&amp;place=show&amp;query=season+3&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice')\">season
515
+ 3</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
516
+ SearchAjaxCall('/search/search_video_within_show?item_id=105&amp;place=show&amp;query=episode&amp;show_id=105&amp;show_type=tv&amp;showname=Burn+Notice')\">episode</a>\n
517
+ \ \n \n </div>\n <div id='related-terms'></div>\n
518
+ \ </form>\n <div id=\"popup-close-button\" style=\"float:right; padding-right:6px;
519
+ display:none;\">\n <a href=\"javascript:void(null);\"><img alt=\"Close
520
+ results\" border=\"0\" class=\"hover-me\" id=\"channel-search-close-button\"
521
+ onclick=\"hideSearchPopup();\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
522
+ style=\"float:right; margin:3px 2px 0 0\" title=\"Close results\" /></a>\n </div>\n
523
+ \ </div>\n </div>\n</div>\n\n<div style=\"display:none\" id=\"search-result\"
524
+ class=\"search_result\"></div>\n\n </div>\n\n\n\n\n<div class=\"fixed-lg container\"
525
+ style=\"margin-top:10px;\">\n \n\n \n \n \n \n \n \n <div
526
+ class=\"vslc\" id=\"episode-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
527
+ href=\"http://www.hulu.com/feed/show/105/episodes\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
528
+ class=\"rss-link\" onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img
529
+ alt=\"Hulu RSS feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132225294199768\"
530
+ src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\" title=\"Hulu
531
+ RSS feed\" /></a><h2 class=\"cufonable\">Episodes (1)</h2></div><a class=\"season-playlist\"
532
+ href=\"#\" onclick=\"s969_17cvukd_episodes1.addSeasonToPlaylist(this, 'all');
533
+ return false;\">Add All to Queue</a><span class=\"season-playlist\" style=\"display:
534
+ none;\">Added to Queue</span></div><div style=\"padding:4px;\"></div><div class=\"vsl
535
+ vsl-short\" id=\"s969_17cvukd_episodes1\"><ul><li style=\"position:relative\"><span
536
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do\"
537
+ beaconid=\"296648\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
538
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
539
+ null, null, 'hulu_296648:-1')\"><img src=\"http://thumbnails.huluim.com/8/60000008/60000008_145x80_generated.jpg\"
540
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
541
+ event)\" alt=\"Burn Notice: Damned If You Do (season 5, episode 13)\" width=\"145\"
542
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
543
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
544
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:296648,&quot;is_movie&quot;:false});
545
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294200066\"
546
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
547
+ href=\"http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do\" beaconid=\"296648\"
548
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Damned
549
+ If You Do</a><span class=\"video-info\" style=\"white-space: nowrap;\">Season
550
+ 5 : Ep. 13&nbsp;&nbsp;&nbsp;(43:09)<img alt=\"Closed Captions available\" class=\"closed-captions\"
551
+ height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
552
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
553
+ Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-296648\"
554
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
555
+ style=\"vertical-align:middle;\" /> Now playing</div></li></ul></div><script
556
+ type=\"text/javascript\">\n//<![CDATA[\nvar s969_17cvukd_episodes1 = new VideoSlider(\"s969_17cvukd_episodes1\",
557
+ {\"maxCount\":1,\"urlOptions\":{\"category\":\"Episodes\",\"season\":\"\",\"show_id\":105,\"show_placeholders\":\"1\",\"page\":1,\"sort\":\"original_premiere_date\",\"items_per_page\":5,\"current_video_id\":24781},\"url\":\"http://www.hulu.com/videos/slider\",\"seasonCounts\":{\"clip\":{\"s3\":34,\"all\":230,\"s4\":49,\"s5\":14,\"s0\":92,\"s1\":11,\"s2\":30},\"episode\":{\"s3\":0,\"all\":1,\"s4\":0,\"s5\":1,\"s0\":0,\"s1\":0,\"s2\":0},\"all\":{\"s3\":34,\"all\":231,\"s4\":49,\"s5\":15,\"s0\":92,\"s1\":11,\"s2\":30}}})\n//]]>\n</script></div><div
558
+ class=\"vslc\" id=\"clip-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
559
+ href=\"http://www.hulu.com/feed/show/105/clips\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
560
+ class=\"rss-link\" onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img
561
+ alt=\"Hulu RSS feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif13222529434431\"
562
+ src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\" title=\"Hulu
563
+ RSS feed\" /></a><h2 class=\"cufonable\">Clips (199)</h2></div></div><div class=\"vslnav\"><div
564
+ class=\"vl\"><div class=\"mod sort-filter\" style=\"display:none\" id=\"s1044_17cvukf_clips199-sort\"><b>Sort
565
+ by:</b><ul><li class=\"active\" id=\"s1044_17cvukf_clips199-sort-released_at\">Recently
566
+ Added</li><li id=\"s1044_17cvukf_clips199-sort-view_count_today\">Most Popular
567
+ Today</li><li id=\"s1044_17cvukf_clips199-sort-views\">Most Popular All Time</li><li
568
+ id=\"s1044_17cvukf_clips199-sort-rating\">User Rating</li></ul></div></div><div
569
+ class=\"vr\"><ul class=\"pages\" style=\"display: none;\" id=\"s1044_17cvukf_clips199-nav\"><li
570
+ class=\"btn first\" title=\"Go to the first page\"></li><li class=\"btn prev\"
571
+ title=\"Go to the previous page\"></li><li class=\"input\"><input autocomplete=\"off\"
572
+ name=\"page\" onfocus=\"$(this).select();\" onkeydown=\"if(event.keyCode ==
573
+ 13) s1044_17cvukf_clips199.move(event, 'input');\" type=\"text\" value=\"\"
574
+ /></li><li class=\"of\">of</li><li class=\"total\" title=\"Go to the last page\"></li><li
575
+ class=\"btn next\" title=\"Go to the next page\"></li></ul></div></div><div
576
+ class=\"vsl vsl-short\" id=\"s1044_17cvukf_clips199\"><ul><li style=\"position:relative\"><span
577
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/302145/burn-notice-depth-perception\"
578
+ beaconid=\"302145\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
579
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
580
+ null, null, 'hulu_302145:-1')\"><img src=\"http://thumbnails.huluim.com/235/60005235/60005235_145x80_generated.jpg\"
581
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
582
+ event)\" alt=\"Burn Notice: Depth Perception\" width=\"145\" height=\"80\" title=\"\"
583
+ style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
584
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:302145,&quot;is_movie&quot;:false});
585
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294344648\"
586
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
587
+ href=\"http://www.hulu.com/watch/302145/burn-notice-depth-perception\" beaconid=\"302145\"
588
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Depth
589
+ Perception</a><span class=\"video-info\" style=\"white-space: nowrap;\">Current
590
+ Preview&nbsp;&nbsp;&nbsp;(01:46)</span><div class=\"currently-playing cp-302145\"
591
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
592
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
593
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/299876/burn-notice-a-whole-new-chapter\"
594
+ beaconid=\"299876\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
595
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
596
+ null, null, 'hulu_299876:-1')\"><img src=\"http://thumbnails.huluim.com/459/60000459/60000459_145x80_generated.jpg\"
597
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
598
+ event)\" alt=\"Burn Notice: A Whole New Chapter\" width=\"145\" height=\"80\"
599
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
600
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:299876,&quot;is_movie&quot;:false});
601
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13222529434496\"
602
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
603
+ href=\"http://www.hulu.com/watch/299876/burn-notice-a-whole-new-chapter\" beaconid=\"299876\"
604
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A
605
+ Whole New Chapter</a><span class=\"video-info\" style=\"white-space: nowrap;\">Sneak
606
+ Peek&nbsp;&nbsp;&nbsp;(00:30)</span><div class=\"currently-playing cp-299876\"
607
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
608
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
609
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/299875/burn-notice-and-covert-affairs-are-back\"
610
+ beaconid=\"299875\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
611
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
612
+ null, null, 'hulu_299875:-1')\"><img src=\"http://thumbnails.huluim.com/432/60000432/60000432_145x80_generated.jpg\"
613
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
614
+ event)\" alt=\"Burn Notice and Covert Affairs Are Back!\" width=\"145\" height=\"80\"
615
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
616
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:299875,&quot;is_movie&quot;:false});
617
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294345261\"
618
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
619
+ href=\"http://www.hulu.com/watch/299875/burn-notice-and-covert-affairs-are-back\"
620
+ beaconid=\"299875\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
621
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Burn Notice and Covert Affairs
622
+ Are ...</a><span class=\"video-info\" style=\"white-space: nowrap;\">Sneak Peek&nbsp;&nbsp;&nbsp;(00:30)</span><div
623
+ class=\"currently-playing cp-299875\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
624
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
625
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
626
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/267086/burn-notice-sam-axe-comic-con-panel-2011\"
627
+ beaconid=\"267086\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
628
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
629
+ null, null, 'hulu_267086:-1')\"><img src=\"http://thumbnails.huluim.com/442/40020442/40020442_145x80_generated.jpg\"
630
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
631
+ event)\" alt=\"Burn Notice: Sam Axe Comic-Con Panel 2011\" width=\"145\" height=\"80\"
632
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
633
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:267086,&quot;is_movie&quot;:false});
634
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294345567\"
635
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
636
+ href=\"http://www.hulu.com/watch/267086/burn-notice-sam-axe-comic-con-panel-2011\"
637
+ beaconid=\"267086\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
638
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Sam Axe Comic-Con Panel 2011</a><span
639
+ class=\"video-info\" style=\"white-space: nowrap;\">Interview&nbsp;&nbsp;&nbsp;(47:24)</span><div
640
+ class=\"currently-playing cp-267086\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
641
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
642
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
643
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/255166/burn-notice-gabrielle-anwar-on-season-5\"
644
+ beaconid=\"255166\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
645
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
646
+ null, null, 'hulu_255166:-1')\"><img src=\"http://thumbnails.huluim.com/702/40011702/40011702_145x80_generated.jpg\"
647
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
648
+ event)\" alt=\"Burn Notice: Gabrielle Anwar On Season 5\" width=\"145\" height=\"80\"
649
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
650
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:255166,&quot;is_movie&quot;:false});
651
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294345867\"
652
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
653
+ href=\"http://www.hulu.com/watch/255166/burn-notice-gabrielle-anwar-on-season-5\"
654
+ beaconid=\"255166\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
655
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Gabrielle Anwar On Season 5</a><span
656
+ class=\"video-info\" style=\"white-space: nowrap;\">Interview&nbsp;&nbsp;&nbsp;(02:55)</span><div
657
+ class=\"currently-playing cp-255166\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
658
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
659
+ style=\"vertical-align:middle;\" /> Now playing</div></li></ul></div><script
660
+ type=\"text/javascript\">\n//<![CDATA[\nvar s1044_17cvukf_clips199 = new VideoSlider(\"s1044_17cvukf_clips199\",
661
+ {\"maxCount\":199,\"urlOptions\":{\"category\":\"Clips\",\"season\":\"\",\"show_id\":105,\"page\":1,\"sort\":\"released_at\",\"items_per_page\":5,\"current_video_id\":24781},\"url\":\"http://www.hulu.com/videos/slider\",\"seasonCounts\":{\"clip\":{\"s3\":34,\"all\":230,\"s4\":49,\"s5\":14,\"s0\":92,\"s1\":11,\"s2\":30},\"episode\":{\"s3\":0,\"all\":1,\"s4\":0,\"s5\":1,\"s0\":0,\"s1\":0,\"s2\":0},\"all\":{\"s3\":34,\"all\":231,\"s4\":49,\"s5\":15,\"s0\":92,\"s1\":11,\"s2\":30}}})\n//]]>\n</script></div><div
662
+ class=\"vslc\" id=\"ask-a-spy-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
663
+ href=\"http://www.hulu.com/feed/show/105/videos\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
664
+ class=\"rss-link\" onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img
665
+ alt=\"Hulu RSS feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132225294463451\"
666
+ src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\" title=\"Hulu
667
+ RSS feed\" /></a><h2 class=\"cufonable\">Ask a Spy (31)</h2></div></div><div
668
+ class=\"vslnav\"><div class=\"vl\"><div class=\"mod sort-filter\" style=\"display:none\"
669
+ id=\"s5748_17cvukg_askaspy31-sort\"><b>Sort by:</b><ul><li class=\"active\"
670
+ id=\"s5748_17cvukg_askaspy31-sort-released_at\">Recently Added</li><li id=\"s5748_17cvukg_askaspy31-sort-view_count_today\">Most
671
+ Popular Today</li><li id=\"s5748_17cvukg_askaspy31-sort-views\">Most Popular
672
+ All Time</li><li id=\"s5748_17cvukg_askaspy31-sort-rating\">User Rating</li></ul></div></div><div
673
+ class=\"vr\"><ul class=\"pages\" style=\"display: none;\" id=\"s5748_17cvukg_askaspy31-nav\"><li
674
+ class=\"btn first\" title=\"Go to the first page\"></li><li class=\"btn prev\"
675
+ title=\"Go to the previous page\"></li><li class=\"input\"><input autocomplete=\"off\"
676
+ name=\"page\" onfocus=\"$(this).select();\" onkeydown=\"if(event.keyCode ==
677
+ 13) s5748_17cvukg_askaspy31.move(event, 'input');\" type=\"text\" value=\"\"
678
+ /></li><li class=\"of\">of</li><li class=\"total\" title=\"Go to the last page\"></li><li
679
+ class=\"btn next\" title=\"Go to the next page\"></li></ul></div></div><div
680
+ class=\"vsl vsl-short\" id=\"s5748_17cvukg_askaspy31\"><ul><li style=\"position:relative\"><span
681
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/253351/burn-notice-gabrielle-answers-facebook-questions\"
682
+ beaconid=\"253351\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
683
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
684
+ null, null, 'hulu_253351:-1')\"><img src=\"http://thumbnails.huluim.com/452/40009452/40009452_145x80_generated.jpg\"
685
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
686
+ event)\" alt=\"Burn Notice: Gabrielle Answers Facebook Questions\" width=\"145\"
687
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
688
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
689
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:253351,&quot;is_movie&quot;:false});
690
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13222529446724\"
691
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
692
+ href=\"http://www.hulu.com/watch/253351/burn-notice-gabrielle-answers-facebook-questions\"
693
+ beaconid=\"253351\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
694
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Gabrielle Answers Facebook Questions</a><span
695
+ class=\"video-info\" style=\"white-space: nowrap;\">Interview&nbsp;&nbsp;&nbsp;(02:39)</span><div
696
+ class=\"currently-playing cp-253351\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
697
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
698
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
699
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/253350/burn-notice-coby-answers-facebook-questions\"
700
+ beaconid=\"253350\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
701
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
702
+ null, null, 'hulu_253350:-1')\"><img src=\"http://thumbnails.huluim.com/424/40009424/40009424_145x80_generated.jpg\"
703
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
704
+ event)\" alt=\"Burn Notice: Coby Answers Facebook Questions\" width=\"145\"
705
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
706
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
707
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:253350,&quot;is_movie&quot;:false});
708
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294467564\"
709
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
710
+ href=\"http://www.hulu.com/watch/253350/burn-notice-coby-answers-facebook-questions\"
711
+ beaconid=\"253350\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
712
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Coby Answers Facebook Questions</a><span
713
+ class=\"video-info\" style=\"white-space: nowrap;\">Interview&nbsp;&nbsp;&nbsp;(01:44)</span><div
714
+ class=\"currently-playing cp-253350\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
715
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
716
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
717
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/171667/burn-notice-handling-of-unfamiliar-foods\"
718
+ beaconid=\"171667\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
719
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
720
+ null, null, 'hulu_171667:-1')\"><img src=\"http://thumbnails.huluim.com/276/50078276/190773_145x80_generated.jpg\"
721
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
722
+ event)\" alt=\"Burn Notice: Handling of Unfamiliar Foods\" width=\"145\" height=\"80\"
723
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
724
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:171667,&quot;is_movie&quot;:false});
725
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294467879\"
726
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
727
+ href=\"http://www.hulu.com/watch/171667/burn-notice-handling-of-unfamiliar-foods\"
728
+ beaconid=\"171667\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
729
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Handling of Unfamiliar Foods</a><span
730
+ class=\"video-info\" style=\"white-space: nowrap;\">Web Exclusive&nbsp;&nbsp;&nbsp;(00:56)</span><div
731
+ class=\"currently-playing cp-171667\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
732
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
733
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
734
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/168402/burn-notice-go-bag\"
735
+ beaconid=\"168402\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
736
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
737
+ null, null, 'hulu_168402:-1')\"><img src=\"http://thumbnails.huluim.com/984/50074984/189116_145x80_generated.jpg\"
738
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
739
+ event)\" alt=\"Burn Notice: Go Bag\" width=\"145\" height=\"80\" title=\"\"
740
+ style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
741
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:168402,&quot;is_movie&quot;:false});
742
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294468191\"
743
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
744
+ href=\"http://www.hulu.com/watch/168402/burn-notice-go-bag\" beaconid=\"168402\"
745
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Go
746
+ Bag</a><span class=\"video-info\" style=\"white-space: nowrap;\">Web Exclusive&nbsp;&nbsp;&nbsp;(01:01)</span><div
747
+ class=\"currently-playing cp-168402\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
748
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
749
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
750
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/166005/burn-notice-getting-someone-to-talk\"
751
+ beaconid=\"166005\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
752
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
753
+ null, null, 'hulu_166005:-1')\"><img src=\"http://thumbnails.huluim.com/611/50072611/186609_145x80_generated.jpg\"
754
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
755
+ event)\" alt=\"Burn Notice: Getting Someone to Talk\" width=\"145\" height=\"80\"
756
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
757
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:166005,&quot;is_movie&quot;:false});
758
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294468505\"
759
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
760
+ href=\"http://www.hulu.com/watch/166005/burn-notice-getting-someone-to-talk\"
761
+ beaconid=\"166005\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
762
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Getting Someone to Talk</a><span
763
+ class=\"video-info\" style=\"white-space: nowrap;\">Web Exclusive&nbsp;&nbsp;&nbsp;(01:01)</span><div
764
+ class=\"currently-playing cp-166005\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
765
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
766
+ style=\"vertical-align:middle;\" /> Now playing</div></li></ul></div><script
767
+ type=\"text/javascript\">\n//<![CDATA[\nvar s5748_17cvukg_askaspy31 = new VideoSlider(\"s5748_17cvukg_askaspy31\",
768
+ {\"maxCount\":31,\"urlOptions\":{\"category\":\"Ask a Spy\",\"season\":\"\",\"show_id\":105,\"page\":1,\"sort\":\"released_at\",\"items_per_page\":5,\"current_video_id\":24781},\"url\":\"http://www.hulu.com/videos/slider\",\"seasonCounts\":{\"clip\":{\"s3\":34,\"all\":230,\"s4\":49,\"s5\":14,\"s0\":92,\"s1\":11,\"s2\":30},\"episode\":{\"s3\":0,\"all\":1,\"s4\":0,\"s5\":1,\"s0\":0,\"s1\":0,\"s2\":0},\"all\":{\"s3\":34,\"all\":231,\"s4\":49,\"s5\":15,\"s0\":92,\"s1\":11,\"s2\":30}}})\n//]]>\n</script></div>\n
769
+ \ \n \n\n \n <div class=\"fluid container\">\n <div class=\"vslc\"
770
+ id=\"related-container\"><div class=\"vsltitle\"><div class=\"vl\"><h2 class=\"cufonable
771
+ no-rss-widget\">You Might Also Like</h2></div></div><div class=\"vslnav\"><div
772
+ class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
773
+ style=\"padding: 4px;\"></div></div><div class=\"lazy-load vsl vsl-short\" id=\"s4367_17d01fc_youmightalsolike\"><ul></ul></div><script
774
+ type=\"text/javascript\">\n//<![CDATA[\nvar s4367_17d01fc_youmightalsolike =
775
+ new VideoSlider(\"s4367_17d01fc_youmightalsolike\", {\"urlOptions\":{\"type\":\"related\",\"for_user\":false,\"show_id\":105,\"page\":1,\"sort\":\"all\",\"location\":\"show-page\",\"items_per_page\":5,\"season\":\"\"},\"seasonCounts\":{\"clip\":{\"s3\":34,\"all\":230,\"s4\":49,\"s5\":14,\"s0\":92,\"s1\":11,\"s2\":30},\"episode\":{\"s3\":0,\"all\":1,\"s4\":0,\"s5\":1,\"s0\":0,\"s1\":0,\"s2\":0},\"all\":{\"s3\":34,\"all\":231,\"s4\":49,\"s5\":15,\"s0\":92,\"s1\":11,\"s2\":30}},\"url\":\"http://www.hulu.com/videos/slider\",\"perPageCount\":5,\"maxCount\":5})\n//]]>\n</script></div>\n
776
+ \ </div>\n \n <div class=\"cached-lazy-slider\" style=\"display: none;\">\n
777
+ \ <div class=\"vslc\" id=\"related-container\"><div class=\"vsltitle\"><div
778
+ class=\"vl\"><h2 class=\"cufonable no-rss-widget\">You Might Also Like</h2></div></div><div
779
+ class=\"vslnav\"><div class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
780
+ style=\"padding: 4px;\"></div></div><div class=\"vsl vsl-short\" id=\"s4367_17d01fc_youmightalsolike\"><ul><li><span><div
781
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/covert-affairs\" beaconid=\"4626\"
782
+ beacontype=\"show\" class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking)
783
+ != 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,4626,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;1&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
784
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/4626');;
785
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Covert Affairs\" border=\"0\"
786
+ class=\"thumbnail\" height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_covert_affairs.jpg\"
787
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
788
+ href=\"http://www.hulu.com/covert-affairs\" beaconid=\"4626\" beacontype=\"show\"
789
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
790
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,4626,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;1&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
791
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/4626');;
792
+ Beacon.trackThumbnailClick(this);\">Covert Affairs</a><div style=\"margin: 2px
793
+ 0;\"> <span id=\"rating-show-4626\" class=\"video-rating\"></span>\n <script
794
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-4626',\n
795
+ \ 4626,\n 4.52842922871426,\n null,\n \"show\"\n
796
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
797
+ href=\"http://www.hulu.com/psych\" beaconid=\"81\" beacontype=\"show\" class=\"beaconid
798
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
799
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,81,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;2&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
800
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/81');;
801
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Psych\" border=\"0\" class=\"thumbnail\"
802
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_psych.jpg\"
803
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
804
+ href=\"http://www.hulu.com/psych\" beaconid=\"81\" beacontype=\"show\" class=\"beaconid
805
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
806
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,81,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;2&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
807
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/81');;
808
+ Beacon.trackThumbnailClick(this);\">Psych</a><div style=\"margin: 2px 0;\">
809
+ \ <span id=\"rating-show-81\" class=\"video-rating\"></span>\n <script
810
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-81',\n
811
+ \ 81,\n 4.57784933605268,\n null,\n \"show\"\n
812
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
813
+ href=\"http://www.hulu.com/royal-pains\" beaconid=\"2162\" beacontype=\"show\"
814
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
815
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,2162,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;3&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
816
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/2162');;
817
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Royal Pains\" border=\"0\" class=\"thumbnail\"
818
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_royal_pains.jpg\"
819
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
820
+ href=\"http://www.hulu.com/royal-pains\" beaconid=\"2162\" beacontype=\"show\"
821
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
822
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,2162,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;3&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
823
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/2162');;
824
+ Beacon.trackThumbnailClick(this);\">Royal Pains</a><div style=\"margin: 2px
825
+ 0;\"> <span id=\"rating-show-2162\" class=\"video-rating\"></span>\n <script
826
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-2162',\n
827
+ \ 2162,\n 4.41405128966886,\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/white-collar\" beaconid=\"3356\" beacontype=\"show\"
830
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
831
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,3356,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;4&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
832
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/3356');;
833
+ Beacon.trackThumbnailClick(this);\"><img alt=\"White Collar\" border=\"0\" class=\"thumbnail\"
834
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_white_collar.jpg\"
835
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
836
+ href=\"http://www.hulu.com/white-collar\" beaconid=\"3356\" beacontype=\"show\"
837
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
838
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,3356,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;4&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
839
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/3356');;
840
+ Beacon.trackThumbnailClick(this);\">White Collar</a><div style=\"margin: 2px
841
+ 0;\"> <span id=\"rating-show-3356\" class=\"video-rating\"></span>\n <script
842
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-3356',\n
843
+ \ 3356,\n 4.62699755313285,\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/suits\" beaconid=\"6887\" beacontype=\"show\" class=\"beaconid
846
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
847
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,6887,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;5&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
848
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/6887');;
849
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Suits\" border=\"0\" class=\"thumbnail\"
850
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_suits.jpg\"
851
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
852
+ href=\"http://www.hulu.com/suits\" beaconid=\"6887\" beacontype=\"show\" class=\"beaconid
853
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
854
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,105,6887,&quot;4626_81_2162_3356_6887&quot;,null,&quot;1&quot;,&quot;5&quot;,&quot;show-page&quot;,null,null,&quot;&quot;);if
855
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/105/6887');;
856
+ Beacon.trackThumbnailClick(this);\">Suits</a><div style=\"margin: 2px 0;\">
857
+ \ <span id=\"rating-show-6887\" class=\"video-rating\"></span>\n <script
858
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-6887',\n
859
+ \ 6887,\n 4.73468897149272,\n null,\n \"show\"\n
860
+ \ );\n </script>\n</div></li></ul></div></div>\n </div>\n \n</div>\n\n\n
861
+ \ <div id=\"show-expander\" class=\"abc fixed-lg container\" style=\"padding-top:15px;border-top:1px
862
+ solid #eee;\">\n <div class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">Episodes</h2></div><div
863
+ class=\"tr\" id=\"vex-episodes-105-nav\"></div></div><table class=\"vex vex-categorical\"
864
+ id=\"vex-episodes-105\"><tr class=\"rh\"><td class=\"rh-c0 \"><a href=\"javascript:void(0)\"
865
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
866
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=season&amp;amp;video_type=categorical&quot;);
867
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
868
+ false\">Season:Episode</a></td><td class=\"rh-c1 \"><a href=\"javascript:void(0)\"
869
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
870
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=title&amp;amp;video_type=categorical&quot;);
871
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
872
+ false\">Title</a></td><td class=\"rh-c2 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
873
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
874
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=has_captions&amp;amp;video_type=categorical&quot;);
875
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
876
+ false\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
877
+ /></a></td><td class=\"rh-c3 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
878
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
879
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=programming_type&amp;amp;video_type=categorical&quot;);
880
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
881
+ false\">Type</a></td><td class=\"rh-c4 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
882
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
883
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=duration&amp;amp;video_type=categorical&quot;);
884
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
885
+ false\">Runtime</a></td><td class=\"rh-c5 vex-down\"><a href=\"javascript:void(0)\"
886
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
887
+ &quot;/videos/expander?category=Episodes&amp;amp;order=asc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=original_premiere_date&amp;amp;video_type=categorical&quot;);
888
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
889
+ false\">Air Date</a></td><td class=\"rh-c6 \"><a href=\"javascript:void(0)\"
890
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-episodes-105&quot;,
891
+ &quot;/videos/expander?category=Episodes&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=rating&amp;amp;video_type=categorical&quot;);
892
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
893
+ false\">User Rating</a></td><td class=\"rh-c7 \">Queue</td></tr><tr class=\"srh\"
894
+ id=\"srh-5\"><td colspan=\"7\" class=\"vex-up\" onclick=\"VideoExpander.subheadingClicked(&quot;s-5&quot;,
895
+ &quot;http://www.hulu.com/videos/season_expander?category=Episodes&amp;order=desc&amp;page=1&amp;season_number=5&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical&quot;)\"
896
+ id=\"s-5\">Season 5<span class=\"srh-loading\" style=\"display: none\"><img
897
+ alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
898
+ width=\"16\" /></span></td><td style=\"text-align: center;\"><a class=\"season-playlist-link\"
899
+ href=\"#\" onclick=\"VideoExpander.addSeasonToPlaylist(this, {&quot;season_number&quot;:&quot;5&quot;,&quot;show_id&quot;:&quot;105&quot;});
900
+ return false;\"><img alt=\"Icon-vex-add\" src=\"http://static.huluim.com/images/icon-vex-add.gif?1068623387\"
901
+ /><span>All</span></a></td></tr><tr class=\"with-bottom-border s-5 r\"><td
902
+ class=\"c0\"><%= episode %></td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do#x-4,cEpisodes,1,0\"
903
+ beaconid=\"296648\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
904
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\"><%= title %></a></div></td><td
905
+ class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
906
+ /></td><td class=\"c3\">Full Episode</td><td class=\"c4\"><%= running_time %></td><td class=\"c5\"><%= air_date %></td><td
907
+ class=\"c6\"><span id=\"video-rating-296648\" class=\"video-rating\"></span><script
908
+ type=\"text/javascript\">new VideoRating(\"video-rating-296648\", 296648, 4.163480,
909
+ null);</script></td><td class=\"c7\"><span class=\"expander-add-me super_plus\"
910
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:296648,&quot;is_movie&quot;:false});
911
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294477997\"
912
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
913
+ type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",\"programming_type\",\"title\",\"duration\",\"original_premiere_date\",\"rating\"],
914
+ {\"category\":\"Episodes\",\"show_id\":105,\"page\":1,\"sort\":\"original_premiere_date\",\"video_type\":\"categorical\",\"order\":\"desc\"});\n\n//]]>\n</script><div
915
+ class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">Clips</h2></div><div
916
+ class=\"tr\" id=\"vex-clips-105-nav\"><div class=\"page\">\n <ul>\n <li
917
+ style=\"display: none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\"
918
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
919
+ width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
920
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
921
+ width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
922
+ alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
923
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;show_id=105&amp;amp;sort=original_premiere_date&amp;amp;video_type=categorical\"
924
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
925
+ ; new Ajax.Request('/videos/expander?category=Clips&amp;order=desc&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
926
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
927
+ }, parameters:Form.serialize(this)}); return false;\" total_pages=\"20\"> <input
928
+ autocomplete=\"off\" class=\"long\" name=\"page\" onfocus=\"$(this).select();\"
929
+ type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
930
+ \ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
931
+ ; new Ajax.Request('/videos/expander?category=Clips&amp;order=desc&amp;page=20&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
932
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
933
+ }}); return false;\" title=\"Go to the last page\">20</a>\n </li>\n\n <li
934
+ class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
935
+ ; new Ajax.Request('/videos/expander?category=Clips&amp;order=desc&amp;page=2&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
936
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
937
+ }}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
938
+ height=\"12\" id=\"pagination-arrow-next.gif132225294494216\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
939
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
940
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n</div></div><table
941
+ class=\"vex vex-categorical\" id=\"vex-clips-105\"><tr class=\"rh\"><td class=\"rh-c0
942
+ \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
943
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;, &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=season&amp;amp;video_type=categorical&quot;);
944
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
945
+ false\">Season:Episode</a></td><td class=\"rh-c1 \"><a href=\"javascript:void(0)\"
946
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;,
947
+ &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=title&amp;amp;video_type=categorical&quot;);
948
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
949
+ false\">Title</a></td><td class=\"rh-c2 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
950
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;, &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=has_captions&amp;amp;video_type=categorical&quot;);
951
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
952
+ false\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
953
+ /></a></td><td class=\"rh-c3 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
954
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;, &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=programming_type&amp;amp;video_type=categorical&quot;);
955
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
956
+ false\">Type</a></td><td class=\"rh-c4 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
957
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;, &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=duration&amp;amp;video_type=categorical&quot;);
958
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
959
+ false\">Runtime</a></td><td class=\"rh-c5 vex-down\"><a href=\"javascript:void(0)\"
960
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;,
961
+ &quot;/videos/expander?category=Clips&amp;amp;order=asc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=original_premiere_date&amp;amp;video_type=categorical&quot;);
962
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
963
+ false\">Air Date</a></td><td class=\"rh-c6 \"><a href=\"javascript:void(0)\"
964
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-clips-105&quot;,
965
+ &quot;/videos/expander?category=Clips&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=rating&amp;amp;video_type=categorical&quot;);
966
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
967
+ false\">User Rating</a></td><td class=\"rh-c7 \">Queue</td></tr><tr class=\"r\"><td
968
+ class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/231879/burn-notice-the-fall-of-sam-axe-ronreaco-lee-interview#x-4,cClips,1,0\"
969
+ beaconid=\"231879\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
970
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Fall of Sam
971
+ Axe: RonReaco Le...</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
972
+ class=\"c4\">01:47</td><td class=\"c5\">04/07/2012</td><td class=\"c6\"><span
973
+ id=\"video-rating-231879\" class=\"video-rating\"></span><script type=\"text/javascript\">new
974
+ VideoRating(\"video-rating-231879\", 231879, 3.681560, null);</script></td><td
975
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
976
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:231879,&quot;is_movie&quot;:false});
977
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294495683\"
978
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
979
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/302145/burn-notice-depth-perception#x-4,cClips,1,0\"
980
+ beaconid=\"302145\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
981
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Depth Perception</a></div></td><td
982
+ class=\"c2\"></td><td class=\"c3\">Current Preview</td><td class=\"c4\">01:46</td><td
983
+ class=\"c5\">11/17/2011</td><td class=\"c6\"><span id=\"video-rating-302145\"
984
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-302145\",
985
+ 302145, 0.000000, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
986
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:302145,&quot;is_movie&quot;:false});
987
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294495991\"
988
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
989
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/299876/burn-notice-a-whole-new-chapter#x-4,cClips,1,0\"
990
+ beaconid=\"299876\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
991
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Whole New Chapter</a></div></td><td
992
+ class=\"c2\"></td><td class=\"c3\">Sneak Peek</td><td class=\"c4\">00:30</td><td
993
+ class=\"c5\">11/03/2011</td><td class=\"c6\"><span id=\"video-rating-299876\"
994
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-299876\",
995
+ 299876, 0.000000, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
996
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:299876,&quot;is_movie&quot;:false});
997
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294496298\"
998
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
999
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/299875/burn-notice-and-covert-affairs-are-back#x-4,cClips,1,0\"
1000
+ beaconid=\"299875\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1001
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Burn Notice and
1002
+ Covert Affairs A...</a></div></td><td class=\"c2\"></td><td class=\"c3\">Sneak
1003
+ Peek</td><td class=\"c4\">00:30</td><td class=\"c5\">11/03/2011</td><td class=\"c6\"><span
1004
+ id=\"video-rating-299875\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1005
+ VideoRating(\"video-rating-299875\", 299875, 0.000000, null);</script></td><td
1006
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1007
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:299875,&quot;is_movie&quot;:false});
1008
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294496607\"
1009
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1010
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/267086/burn-notice-sam-axe-comic-con-panel-2011#x-4,cClips,1,0\"
1011
+ beaconid=\"267086\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1012
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Sam Axe Comic-Con
1013
+ Panel 2011</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
1014
+ class=\"c4\">47:24</td><td class=\"c5\">07/28/2011</td><td class=\"c6\"><span
1015
+ id=\"video-rating-267086\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1016
+ VideoRating(\"video-rating-267086\", 267086, 4.341560, null);</script></td><td
1017
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1018
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:267086,&quot;is_movie&quot;:false});
1019
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13222529449691\"
1020
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1021
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255125/burn-notice-sharon-gless-on-season-5#x-4,cClips,1,0\"
1022
+ beaconid=\"255125\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1023
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Sharon Gless On
1024
+ Season 5</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
1025
+ class=\"c4\">02:46</td><td class=\"c5\">06/30/2011</td><td class=\"c6\"><span
1026
+ id=\"video-rating-255125\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1027
+ VideoRating(\"video-rating-255125\", 255125, 4.288890, null);</script></td><td
1028
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1029
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:255125,&quot;is_movie&quot;:false});
1030
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294497217\"
1031
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1032
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255126/burn-notice-coby-bell-on-season-5#x-4,cClips,1,0\"
1033
+ beaconid=\"255126\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1034
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Coby Bell On Season
1035
+ 5</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td class=\"c4\">03:32</td><td
1036
+ class=\"c5\">06/30/2011</td><td class=\"c6\"><span id=\"video-rating-255126\"
1037
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-255126\",
1038
+ 255126, 4.190480, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1039
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:255126,&quot;is_movie&quot;:false});
1040
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294497534\"
1041
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1042
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255127/burn-notice-bruce-campbell-on-season-5#x-4,cClips,1,0\"
1043
+ beaconid=\"255127\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1044
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Bruce Campbell
1045
+ On Season 5</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
1046
+ class=\"c4\">03:26</td><td class=\"c5\">06/30/2011</td><td class=\"c6\"><span
1047
+ id=\"video-rating-255127\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1048
+ VideoRating(\"video-rating-255127\", 255127, 4.378240, null);</script></td><td
1049
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1050
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:255127,&quot;is_movie&quot;:false});
1051
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294497837\"
1052
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1053
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/251968/burn-notice-sharon-answers-facebook-questions#x-4,cClips,1,0\"
1054
+ beaconid=\"251968\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1055
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Sharon Answers
1056
+ Facebook Questions</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
1057
+ class=\"c4\">05:32</td><td class=\"c5\">06/22/2011</td><td class=\"c6\"><span
1058
+ id=\"video-rating-251968\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1059
+ VideoRating(\"video-rating-251968\", 251968, 4.063670, null);</script></td><td
1060
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1061
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:251968,&quot;is_movie&quot;:false});
1062
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294498143\"
1063
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1064
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/251969/burn-notice-jeffrey-donovan-on-season-5#x-4,cClips,1,0\"
1065
+ beaconid=\"251969\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1066
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Jeffrey Donovan
1067
+ on Season 5</a></div></td><td class=\"c2\"></td><td class=\"c3\">Interview</td><td
1068
+ class=\"c4\">02:47</td><td class=\"c5\">06/22/2011</td><td class=\"c6\"><span
1069
+ id=\"video-rating-251969\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1070
+ VideoRating(\"video-rating-251969\", 251969, 4.366520, null);</script></td><td
1071
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1072
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:251969,&quot;is_movie&quot;:false});
1073
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294498444\"
1074
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
1075
+ type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",\"programming_type\",\"title\",\"duration\",\"original_premiere_date\",\"rating\"],
1076
+ {\"category\":\"Clips\",\"show_id\":105,\"page\":1,\"sort\":\"original_premiere_date\",\"video_type\":\"categorical\",\"order\":\"desc\"});\n\n//]]>\n</script><div
1077
+ class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">Ask a Spy</h2></div><div
1078
+ class=\"tr\" id=\"vex-askaspy-105-nav\"><div class=\"page\">\n <ul>\n <li
1079
+ style=\"display: none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\"
1080
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1081
+ width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
1082
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
1083
+ width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
1084
+ alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1085
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;show_id=105&amp;amp;sort=original_premiere_date&amp;amp;video_type=categorical\"
1086
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1087
+ ; new Ajax.Request('/videos/expander?category=Ask+a+Spy&amp;order=desc&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
1088
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1089
+ }, parameters:Form.serialize(this)}); return false;\" total_pages=\"4\"> <input
1090
+ autocomplete=\"off\" class=\"short\" name=\"page\" onfocus=\"$(this).select();\"
1091
+ type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
1092
+ \ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1093
+ ; new Ajax.Request('/videos/expander?category=Ask+a+Spy&amp;order=desc&amp;page=4&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
1094
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1095
+ }}); return false;\" title=\"Go to the last page\">4</a>\n </li>\n\n <li
1096
+ class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
1097
+ ; new Ajax.Request('/videos/expander?category=Ask+a+Spy&amp;order=desc&amp;page=2&amp;show_id=105&amp;sort=original_premiere_date&amp;video_type=categorical',
1098
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1099
+ }}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
1100
+ height=\"12\" id=\"pagination-arrow-next.gif13222529453362\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1101
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1102
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n</div></div><table
1103
+ class=\"vex vex-categorical\" id=\"vex-askaspy-105\"><tr class=\"rh\"><td class=\"rh-c0
1104
+ \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
1105
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;, &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=season&amp;amp;video_type=categorical&quot;);
1106
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1107
+ false\">Season:Episode</a></td><td class=\"rh-c1 \"><a href=\"javascript:void(0)\"
1108
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;,
1109
+ &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=title&amp;amp;video_type=categorical&quot;);
1110
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1111
+ false\">Title</a></td><td class=\"rh-c2 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
1112
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;, &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=has_captions&amp;amp;video_type=categorical&quot;);
1113
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1114
+ false\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
1115
+ /></a></td><td class=\"rh-c3 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
1116
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;, &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=programming_type&amp;amp;video_type=categorical&quot;);
1117
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1118
+ false\">Type</a></td><td class=\"rh-c4 \"><a href=\"javascript:void(0)\" onmouseover=\"Hover.image_toggle_over($(this).down('img'));
1119
+ return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;, &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=duration&amp;amp;video_type=categorical&quot;);
1120
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1121
+ false\">Runtime</a></td><td class=\"rh-c5 vex-down\"><a href=\"javascript:void(0)\"
1122
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;,
1123
+ &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=asc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=original_premiere_date&amp;amp;video_type=categorical&quot;);
1124
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1125
+ false\">Air Date</a></td><td class=\"rh-c6 \"><a href=\"javascript:void(0)\"
1126
+ onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\" onclick=\"VideoExpander.filter(&quot;vex-askaspy-105&quot;,
1127
+ &quot;/videos/expander?category=Ask+a+Spy&amp;amp;order=desc&amp;amp;page=1&amp;amp;show_id=105&amp;amp;sort=rating&amp;amp;video_type=categorical&quot;);
1128
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1129
+ false\">User Rating</a></td><td class=\"rh-c7 \">Queue</td></tr><tr class=\"r\"><td
1130
+ class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/171667/burn-notice-handling-of-unfamiliar-foods#x-4,cAsk%20a%20Spy,1,0\"
1131
+ beaconid=\"171667\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1132
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Handling of Unfamiliar
1133
+ Foods</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1134
+ class=\"c4\">00:56</td><td class=\"c5\">08/16/2010</td><td class=\"c6\"><span
1135
+ id=\"video-rating-171667\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1136
+ VideoRating(\"video-rating-171667\", 171667, 3.759150, null);</script></td><td
1137
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1138
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:171667,&quot;is_movie&quot;:false});
1139
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294535064\"
1140
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1141
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/168402/burn-notice-go-bag#x-4,cAsk%20a%20Spy,1,0\"
1142
+ beaconid=\"168402\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1143
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Go Bag</a></div></td><td
1144
+ class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">01:01</td><td
1145
+ class=\"c5\">08/02/2010</td><td class=\"c6\"><span id=\"video-rating-168402\"
1146
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-168402\",
1147
+ 168402, 3.894250, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1148
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:168402,&quot;is_movie&quot;:false});
1149
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294535393\"
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/166005/burn-notice-getting-someone-to-talk#x-4,cAsk%20a%20Spy,1,0\"
1152
+ beaconid=\"166005\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1153
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Getting Someone
1154
+ to Talk</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1155
+ class=\"c4\">01:01</td><td class=\"c5\">07/22/2010</td><td class=\"c6\"><span
1156
+ id=\"video-rating-166005\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1157
+ VideoRating(\"video-rating-166005\", 166005, 3.774420, null);</script></td><td
1158
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1159
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:166005,&quot;is_movie&quot;:false});
1160
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294535731\"
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/164562/burn-notice-sidekicks#x-4,cAsk%20a%20Spy,1,0\"
1163
+ beaconid=\"164562\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1164
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Sidekicks</a></div></td><td
1165
+ class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">01:01</td><td
1166
+ class=\"c5\">07/15/2010</td><td class=\"c6\"><span id=\"video-rating-164562\"
1167
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-164562\",
1168
+ 164562, 3.974080, 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,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:164562,&quot;is_movie&quot;:false});
1170
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294536071\"
1171
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1172
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/161638/burn-notice-keeping-parents-away#x-4,cAsk%20a%20Spy,1,0\"
1173
+ beaconid=\"161638\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1174
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Keeping Parents
1175
+ Away</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1176
+ class=\"c4\">01:01</td><td class=\"c5\">06/28/2010</td><td class=\"c6\"><span
1177
+ id=\"video-rating-161638\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1178
+ VideoRating(\"video-rating-161638\", 161638, 3.539290, null);</script></td><td
1179
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1180
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:161638,&quot;is_movie&quot;:false});
1181
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13222529453641\"
1182
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1183
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/157913/burn-notice-what-do-spies-read#x-4,cAsk%20a%20Spy,1,0\"
1184
+ beaconid=\"157913\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1185
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">What Do Spies Read?</a></div></td><td
1186
+ class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td class=\"c4\">00:59</td><td
1187
+ class=\"c5\">06/21/2010</td><td class=\"c6\"><span id=\"video-rating-157913\"
1188
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-157913\",
1189
+ 157913, 3.723830, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1190
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:157913,&quot;is_movie&quot;:false});
1191
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294536752\"
1192
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1193
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/156285/burn-notice-can-spies-have-real-friends#x-4,cAsk%20a%20Spy,1,0\"
1194
+ beaconid=\"156285\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1195
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Can Spies Have
1196
+ Real Friends?</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1197
+ class=\"c4\">01:01</td><td class=\"c5\">06/14/2010</td><td class=\"c6\"><span
1198
+ id=\"video-rating-156285\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1199
+ VideoRating(\"video-rating-156285\", 156285, 3.896690, null);</script></td><td
1200
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1201
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:156285,&quot;is_movie&quot;:false});
1202
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294537108\"
1203
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1204
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/155160/burn-notice-life-after-being-burned#x-4,cAsk%20a%20Spy,1,0\"
1205
+ beaconid=\"155160\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1206
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Life After Being
1207
+ Burned</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1208
+ class=\"c4\">01:01</td><td class=\"c5\">06/08/2010</td><td class=\"c6\"><span
1209
+ id=\"video-rating-155160\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1210
+ VideoRating(\"video-rating-155160\", 155160, 3.762910, null);</script></td><td
1211
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1212
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:155160,&quot;is_movie&quot;:false});
1213
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294537436\"
1214
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1215
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/120857/burn-notice-most-important-spy-skill#x-4,cAsk%20a%20Spy,1,0\"
1216
+ beaconid=\"120857\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1217
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Most Important
1218
+ Spy Skill</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1219
+ class=\"c4\">00:59</td><td class=\"c5\">01/14/2010</td><td class=\"c6\"><span
1220
+ id=\"video-rating-120857\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1221
+ VideoRating(\"video-rating-120857\", 120857, 3.765570, null);</script></td><td
1222
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1223
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:120857,&quot;is_movie&quot;:false});
1224
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294537777\"
1225
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1226
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/120856/burn-notice-getting-a-deal-on-a-new-car#x-4,cAsk%20a%20Spy,1,0\"
1227
+ beaconid=\"120856\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1228
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Getting a Deal
1229
+ on a New Car</a></div></td><td class=\"c2\"></td><td class=\"c3\">Web Exclusive</td><td
1230
+ class=\"c4\">01:00</td><td class=\"c5\">01/14/2010</td><td class=\"c6\"><span
1231
+ id=\"video-rating-120856\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1232
+ VideoRating(\"video-rating-120856\", 120856, 3.718750, null);</script></td><td
1233
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1234
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:false,&quot;plus_only&quot;:false,&quot;id&quot;:120856,&quot;is_movie&quot;:false});
1235
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132225294538211\"
1236
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
1237
+ type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",\"programming_type\",\"title\",\"duration\",\"original_premiere_date\",\"rating\"],
1238
+ {\"category\":\"Ask a Spy\",\"show_id\":105,\"page\":1,\"sort\":\"original_premiere_date\",\"video_type\":\"categorical\",\"order\":\"desc\"});\n\n//]]>\n</script>\n
1239
+ \ </div>\n\n\n<div class=\"fixed-lg container\">\n <div class=\"fluid container\">\n
1240
+ \ \n </div>\n</div>\n\n</div>\n\n\n<a id=\"details\" name=\"details\"> </a>\n<div
1241
+ class=\"fixed-lg container\" style=\"padding-top:20px;\">\n <div class=\"section
1242
+ details\">\n <div class=\"standard tidy\">\n <div class=\"layout a-c
1243
+ clearfix\">\n \n <div class=\"gr a\" style=\"width:100%;\">\n
1244
+ \ <div class=\"details-bg-container\" style=\"width:100%\">\n <h2
1245
+ class=\"cufonable\">Title Details</h2>\n </div>\n <div
1246
+ class=\"relative\">\n <div class=\"label\">Network / Studio</div>\n
1247
+ \ <div class=\"info\"><a href=\"/companies/16\" class=\"show-title\">USA</a></div>\n
1248
+ \ \n <div class=\"label\">Title</div>\n <div class=\"info\"><h1>Burn
1249
+ Notice</h1></div>\n \n \n <div class=\"label\">Genres</div>\n
1250
+ \ <div class=\"info\"><b><a href=\"http://www.hulu.com/genres/Action-and-Adventure\"
1251
+ class=\"show-title\">Action and Adventure</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=\"http://www.hulu.com/genres/Drama\"
1252
+ class=\"show-title\">Drama</a></b></div>\n \n \n <div
1253
+ class=\"label\">Description</div>\n <div class=\"info\">A &quot;burned&quot;
1254
+ spy returns to Miami where he uses his special ops training to help those in
1255
+ need, and bring justice against the men who wrongly burned him.\n</div>\n \n
1256
+ \ \n \n </div>\n <br style=\"clear:both;\"
1257
+ />\n \n <div class=\"ext-show-link-container\"><div
1258
+ class=\"ext-show-link\">For insider news, photos, and more visit the official
1259
+ <a href=\"http://www.usanetwork.com/series/burnnotice/\" target=\"_blank\">Burn
1260
+ Notice website</a></div></div>\n \n </div>\n \n\n
1261
+ \ \n\n \n </div>\n </div>\n </div>\n</div>\n\n\n\n\n\n\n\n
1262
+ \ \n<div class=\"activities-pane\" id=\"activities-pane\">\n <div class=\"fluid
1263
+ bg-gray\" style=\"margin: 0px; padding: 20px 0px 5px 0px;\">\n <div class=\"fixed-lg
1264
+ container\" id=\"activities-container\">\n \n <div class=\"header\">\n
1265
+ \ <div id=\"activities-scrollto\"></div>\n <div class=\"title\">\n <h2 class=\"cufonable\">Activities</h2>\n
1266
+ \ </div>\n <div class=\"activities-select\" style=\"float: left; padding: 5px
1267
+ 0px 0px 5px;\">\n \n ( <a class=\"utility-link\" href=\"#\" onclick=\"if
1268
+ (!Behaviors.isLoggedIn()) { FloatingLoginForm.show(this); return false; } Activity.toggleSelection('friends',
1269
+ 105, 'Show');; return false;\">show only my Friends' activities</a> )\n \n
1270
+ \ </div>\n <div id=\"activities-preview-loading\" class=\"tab-loading-circle
1271
+ activities-preview-loading\" style=\"display: none;\">\n <img alt=\"Loading-animated-circle\"
1272
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1273
+ width=\"16\" />\n </div>\n <br style=\"clear:both;\"/>\n</div>\n<div class=\"section\"
1274
+ style=\"padding-top: 5px;\">\n <div class=\"activities-list\">\n <div class=\"header\">\n
1275
+ \ <div style=\"float: left; padding-right: 5px;\">\n <div style=\"padding-bottom:
1276
+ 4px;\">\n <a class=\"utility-link\" href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('reviews',
1277
+ '/reviews/tab_load?reviewable_id=105&amp;reviewable_type=Show', true, null);
1278
+ window.scrollTo(0, 400); return false;; return false;\">Reviews (313)</a>\n
1279
+ \ </div>\n <a href=\"#\"><img alt=\"Create new review\" border=\"0\"
1280
+ class=\"hover-me\" id=\"btn-addreview-small.gif132225585234674\" onclick=\"Activity.createNewReview(this,
1281
+ 105,'Show');return false;\" src=\"http://static.huluim.com/images/btn-addreview-small.gif?1204017197\"
1282
+ title=\"Create new review\" /></a>\n </div>\n <div style=\"float:
1283
+ left;\">\n <div style=\"padding-bottom: 4px;\">\n <a class=\"utility-link\"
1284
+ href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('forums',
1285
+ '/topics/tab_load?topicable_id=105&amp;topicable_type=Show', true, null); window.scrollTo(0,
1286
+ 400); return false;; return false;\">Discussions (245)</a>\n </div>\n
1287
+ \ <a href=\"#\"><img alt=\"Create new topic\" border=\"0\" class=\"hover-me\"
1288
+ id=\"btn-add-topic.gif13222558523485\" onclick=\"Activity.createNewTopic(this,
1289
+ 105,'Show');return false;\" src=\"http://static.huluim.com/images/btn-add-topic.gif?1292384754\"
1290
+ title=\"Create new topic\" /></a>\n </div>\n\n <div class=\"page\">\n
1291
+ \ <ul>\n <li style=\"display: none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\"
1292
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1293
+ width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
1294
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
1295
+ width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
1296
+ alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1297
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;amp;target_id=105&amp;amp;target_type=Show\"
1298
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1299
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;target_id=105&amp;target_type=Show',
1300
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1301
+ }, parameters:Form.serialize(this)}); return false;\" total_pages=\"20\"> <input
1302
+ autocomplete=\"off\" class=\"long\" name=\"page\" onfocus=\"$(this).select();\"
1303
+ type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
1304
+ \ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1305
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=20&amp;target_id=105&amp;target_type=Show',
1306
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1307
+ }}); return false;\" title=\"Go to the last page\">20</a>\n </li>\n\n <li
1308
+ class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
1309
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=2&amp;target_id=105&amp;target_type=Show',
1310
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1311
+ }}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
1312
+ height=\"12\" id=\"pagination-arrow-next.gif132225585235578\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1313
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1314
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
1315
+ \ <br style=\"clear:both;\"/>\n </div>\n <div class=\"list\">\n \n
1316
+ \ \n \n <div class=\"item activatable post\">\n \n <div
1317
+ class=\"extras\">\n <div class=\"timestamp\">12 days ago</div>\n \n
1318
+ \ <div class=\"hover\"> \n <span style=\"position: relative\">\n
1319
+ \ Report as: &nbsp; <a class=\"p-content-extras-link report-link\"
1320
+ href=\"javascript:void(0)\" data-url=\"/posts/flag/1303883?type=spam\" data-after=\"Reported
1321
+ as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link report-link\"
1322
+ href=\"javascript:void(0)\" data-url=\"/posts/flag/1303883?type=offensive\"
1323
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1324
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1303883&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1325
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1326
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132225585235957\"
1327
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1328
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1329
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1330
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1331
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1332
+ \ <a href=\"/profiles/bruni810\" class=\"info_hover\">Brklyn Grl</a>
1333
+ \ replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1334
+ '/topics/tab_load?post_id=1303883&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1335
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Who else
1336
+ thinks this show has jumped the shark?</a>\"<br/>\n \n </div>\n
1337
+ \ <div class=\"\" style=\"overflow: hidden;\"> Main Entry: \tjump the
1338
+ shark<br/>Part of Speech: \tn phr<br/>Definition: \tthe point at which a popular
1339
+ television show has gone past its peak and has resorted to stunt programming,
1340
+ after which it is eventually canceled<br/>Etymology: \trefers to episode on
1341
+ Happy Days after which this occurred \n &nbsp;&nbsp;<a class=\"utility-link\"
1342
+ href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1303883&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1343
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 21
1344
+ other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1345
+ \ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
1346
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">12 days
1347
+ ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1348
+ relative\">\n Report as: &nbsp; <a class=\"p-content-extras-link
1349
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1303874?type=spam\"
1350
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1351
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1303874?type=offensive\"
1352
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1353
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1303874&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1354
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1355
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132225585236626\"
1356
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1357
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1358
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1359
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1360
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1361
+ \ <a href=\"/profiles/manuula\" class=\"info_hover\">K F</a> replied
1362
+ to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1303874&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1363
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Who else
1364
+ thinks this show has jumped the shark?</a>\"<br/>\n \n </div>\n
1365
+ \ <div class=\"\" style=\"overflow: hidden;\"> I call BS. \n &nbsp;&nbsp;<a
1366
+ class=\"utility-link\" href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1303874&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1367
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 21
1368
+ other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1369
+ \ </div>\n\n\n \n \n <div class=\"item activatable topic\">\n
1370
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">13 days
1371
+ ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1372
+ relative\">\n Report as: &nbsp; <a class=\"p-content-extras-link
1373
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1302262?type=spam\"
1374
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1375
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1302262?type=offensive\"
1376
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1377
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1302262&amp;segregate_video=true&amp;topic_id=301919&amp;topicable_id=105&amp;topicable_type=Show',
1378
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1379
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif13222558523715\"
1380
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1381
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1382
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1383
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1384
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1385
+ \ <a href=\"/profiles/mdwebneck\" class=\"info_hover\">Jim C</a>
1386
+ \ started a new discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?segregate_video=true&amp;topic_id=301919&amp;topicable_id=105&amp;topicable_type=Show',
1387
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Why is
1388
+ there only one episode of one season available</a>\"<br/>\n \n </div>\n
1389
+ \ <div class=\"\" style=\"overflow: hidden;\"> I only get to see reruns
1390
+ of previous season's episodes on a local syndicate channel.<br/>I am not even
1391
+ sure what season they are on but since I've been watching it on this DC TV channel
1392
+ 20 for probably a year, I would have to presume I'm somewhere between season
1393
+ 2 and season 3.<br/>The most recent &quot;season of reruns&quot; just had the
1394
+ encounter with Jessie getting inadvertently burned by Michael.<br/>Is there
1395
+ no the place Where I could backtrack and see if I missed any episodes from the
1396
+ current or even old seasons? </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1397
+ \ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
1398
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">15 days
1399
+ ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1400
+ relative\">\n Report as: &nbsp; <a class=\"p-content-extras-link
1401
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1300294?type=spam\"
1402
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1403
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1300294?type=offensive\"
1404
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1405
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1300294&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1406
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1407
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132225585237536\"
1408
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1409
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1410
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1411
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1412
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1413
+ \ <a href=\"/profiles/u/Or9a1viYkMGgPNTVbNpz_g\" class=\"info_hover\">Aaron
1414
+ Smith</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1415
+ '/topics/tab_load?post_id=1300294&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1416
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Who else
1417
+ thinks this show has jumped the shark?</a>\"<br/>\n \n </div>\n
1418
+ \ <div class=\"\" style=\"overflow: hidden;\"> That's a compelling statement
1419
+ I would like to believe, but I am having trouble finding any confirmation. Why
1420
+ do you believe the phrase existed before the T.V. show? i \n &nbsp;&nbsp;<a
1421
+ class=\"utility-link\" href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1300294&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1422
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 21
1423
+ other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1424
+ \ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
1425
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">18 days
1426
+ ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1427
+ relative\">\n Report as: &nbsp; <a class=\"p-content-extras-link
1428
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1297149?type=spam\"
1429
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1430
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1297149?type=offensive\"
1431
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1432
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1297149&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1433
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1434
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132225585238018\"
1435
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1436
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1437
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1438
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1439
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1440
+ \ <a href=\"/profiles/cascoll\" class=\"info_hover\">Bob Barker</a>
1441
+ \ replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1442
+ '/topics/tab_load?post_id=1297149&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1443
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Who else
1444
+ thinks this show has jumped the shark?</a>\"<br/>\n \n </div>\n
1445
+ \ <div class=\"\" style=\"overflow: hidden;\"> Actually &quot;Jump
1446
+ the shark&quot; was a phrase around long before Happy Day's and Fonzie jumping
1447
+ the shark was a self aware joke based on the saying. Not the other way around.
1448
+ \ <div class=\"p-spacer\"></div>-Love Melvin \n &nbsp;&nbsp;<a class=\"utility-link\"
1449
+ href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1297149&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1450
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 21
1451
+ other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1452
+ \ </div>\n\n\n \n \n <div class=\"item activatable post\">\n
1453
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">20 days
1454
+ ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1455
+ relative\">\n Report as: &nbsp; <a class=\"p-content-extras-link
1456
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1295371?type=spam\"
1457
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1458
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1295371?type=offensive\"
1459
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1460
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1295371&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1461
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1462
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132225585238501\"
1463
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1464
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1465
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1466
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1467
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1468
+ \ <a href=\"/profiles/ke6alv\" class=\"info_hover\">Mike Levy</a>
1469
+ \ replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1470
+ '/topics/tab_load?post_id=1295371&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1471
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Who else
1472
+ thinks this show has jumped the shark?</a>\"<br/>\n \n </div>\n
1473
+ \ <div class=\"\" style=\"overflow: hidden;\"> Exactly! I used to absolutely
1474
+ LOVE this show, but not lately. Unless it gets better, the end of this season
1475
+ will be the end of this show for me. \n &nbsp;&nbsp;<a class=\"utility-link\"
1476
+ href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1295371&amp;segregate_video=true&amp;topic_id=294587&amp;topicable_id=105&amp;topicable_type=Show',
1477
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 21
1478
+ other replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1479
+ \ </div>\n\n\n \n \n <div class=\"item activatable comment\">\n
1480
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">24 days
1481
+ ago</div>\n \n <div class=\"hover\"> <a href=\"#\" onclick=\"Tab.loadTab('reviews',
1482
+ '/reviews/tab_load?review_id=532784&amp;reviewable_id=105&amp;reviewable_type=Show',
1483
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1484
+ on this review too\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132225585238951\"
1485
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1486
+ on this review too\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1487
+ \ \n <div class=\"header\">\n <a href=\"/profiles/Cdfmarine\"
1488
+ class=\"info_hover\">J Salvatore</a> commented on the review \"<a href=\"#\"
1489
+ onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=532784&amp;reviewable_id=105&amp;reviewable_type=Show',
1490
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Do they</a>\"<br/>\n
1491
+ \ </div>\n <div>\n USA has an odd way of a season...
1492
+ They start in Summer and go for a few months break and always come back in November.\n
1493
+ \ </div> \n </div> \n <br style=\"clear:both;\"/>\n </div>\n\n\n
1494
+ \ \n \n </div>\n\n <div class=\"ender\" style=\"margin-bottom:
1495
+ 10px;\">\n <div class=\"page\">\n <ul>\n <li style=\"display: none\"
1496
+ class=\"pagination-loading\"><img alt=\"Loading-animated-circle\" border=\"0\"
1497
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1498
+ width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
1499
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
1500
+ width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
1501
+ alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1502
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;amp;target_id=105&amp;amp;target_type=Show\"
1503
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1504
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;target_id=105&amp;target_type=Show',
1505
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1506
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}, parameters:Form.serialize(this)});
1507
+ return false;\" total_pages=\"20\"> <input autocomplete=\"off\" class=\"long\"
1508
+ name=\"page\" onfocus=\"$(this).select();\" type=\"text\" value=\"1\" />\n </form>
1509
+ \ \n </li>\n <li class=\"of\">of</li>\n <li class=\"total\">\n
1510
+ \ <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1511
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=20&amp;target_id=105&amp;target_type=Show',
1512
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1513
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"
1514
+ title=\"Go to the last page\">20</a>\n </li>\n\n <li class=\"btn\" id=\"sosodssfs\">\n
1515
+ \ <a href=\"#\" onclick=\"Pagination.loading($(this)); ; new Ajax.Updater('activities-container',
1516
+ '/activities/list?display_type=default&amp;page=2&amp;target_id=105&amp;target_type=Show',
1517
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1518
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"><img
1519
+ alt=\"Go to the next page\" border=\"0\" class=\"hover-me\" height=\"12\" id=\"pagination-arrow-next.gif132225585239683\"
1520
+ src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1521
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1522
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
1523
+ \ <br style=\"clear:both;\"/>\n </div>\n\n </div>\n <br style=\"clear:both;\"
1524
+ />\n</div>\n\n<script type=\"text/javascript\">\n//<![CDATA[\nif (typeof(google_analytics_ajax)
1525
+ == \"function\") google_analytics_ajax(\"activities/default/Show/105/1\");\n//]]>\n</script>\n\n
1526
+ \ \n </div>\n </div>\n</div>\n\n<div id=\"report-menu\" class=\"report-menu\"
1527
+ style=\"display:none\">\n <div class=\"report-menu-bar\">\n <a href=\"#\"
1528
+ onclick=\"Review.hideReportMenu(); return false;\"><img alt=\"Popup-close\"
1529
+ border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1530
+ width=\"11\" /></a>\n </div>\n\n <div class=\"report-menu-content\">\n <form
1531
+ action=\"/show\" method=\"post\" onsubmit=\"Review.sendReport(); return false\">\n
1532
+ \ <p class=\"indicate\">Please indicate why you're flagging this review:</p>\n\n
1533
+ \ <table>\n \n <tr>\n <td>\n <input checked=\"checked\"
1534
+ id=\"flag_type_insulting\" name=\"flag_type\" type=\"radio\" value=\"insulting\"
1535
+ />\n <label for=\"flag_type_insulting\">Violent/Insulting</label>\n
1536
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_language\"
1537
+ name=\"flag_type\" type=\"radio\" value=\"language\" />\n <label for=\"flag_type_language\">Bad
1538
+ Language</label>\n </td>\n </tr>\n \n <tr>\n <td>\n
1539
+ \ <input id=\"flag_type_spoiler\" name=\"flag_type\" type=\"radio\"
1540
+ value=\"spoiler\" />\n <label for=\"flag_type_spoiler\">Spoiler</label>\n
1541
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_spam\"
1542
+ name=\"flag_type\" type=\"radio\" value=\"spam\" />\n <label for=\"flag_type_spam\">Spam</label>\n
1543
+ \ </td>\n </tr>\n \n <tr>\n <td>\n <input
1544
+ id=\"flag_type_content_request\" name=\"flag_type\" type=\"radio\" value=\"content_request\"
1545
+ />\n <label for=\"flag_type_content_request\">Content Request</label>\n
1546
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_off_topic\"
1547
+ name=\"flag_type\" type=\"radio\" value=\"off_topic\" />\n <label for=\"flag_type_off_topic\">Off-Topic</label>\n
1548
+ \ </td>\n </tr>\n \n </table>\n\n <p class=\"policy\">To
1549
+ see Hulu's review policy, <a href=\"http://www.hulu.com/support/login_faq#review\">click
1550
+ here</a>.</p>\n\n <div class=\"buttons\">\n <input alt=\"Submit\"
1551
+ border=\"0\" class=\"save hover-me\" id=\"btn-submit-small.gif132225585240051\"
1552
+ src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\" title=\"Submit\"
1553
+ type=\"image\" />\n <a href=\"#\" onclick=\"Review.hideReportMenu();
1554
+ return false;\"><img alt=\"Cancel\" border=\"0\" class=\"cancel hover-me\" id=\"btn-cancel-small.gif132225585240089\"
1555
+ src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" title=\"Cancel\"
1556
+ /></a>\n </div>\n <div class=\"button-container working\" style=\"display:none;\">'\n
1557
+ \ <img alt=\"Loading-animated-small\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
1558
+ />\n </div>\n\n </form>\n </div>\n</div>\n\n\n\n\n\n \n <div class=\"m-tags-pane\"
1559
+ id='m_tags_pane'>\n <div class=\"fluid bg-gray\">\n \n<div class=\"fixed-lg
1560
+ container\" >\n <div class=\"header\">\n <div class=\"tags-top-search\">\n
1561
+ \ <form action=\"/search/search_tag\" autocomplete=\"off\" id=\"m_search_tag_form\"
1562
+ method=\"get\" onsubmit=\"return (this.query.value != '')\">\n <div class=\"tags-top-search-label\">\n
1563
+ \ Search with tags:\n </div>\n <div class=\"tags-top-search-input\"
1564
+ style=\"float: left;\">\n <input autocomplete=\"off\" class=\"tags-search\"
1565
+ id=\"m_search_tag_name\" name=\"query\" type=\"text\" value=\"\" />\n <a
1566
+ href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
1567
+ id=\"m_tags_search_button\" onclick=\"if($('m_search_tag_form').query.value
1568
+ != '') $('m_search_tag_form').submit();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
1569
+ style=\"vertical-align: top; margin-left: -4px; *margin-top: 1px;\" /></a>\n
1570
+ \ </div>\n </form>\n <ul id=\"m_search_tags_suggestion\" style=\"display:none;\"
1571
+ class=\"tags-suggestion-container\"></ul>\n </div>\n <h2 class=\"cufonable
1572
+ tags-cufon-title\">Tags<span id='m_tags_count' style='padding-left:10px;'>(79)</span></h2>\n
1573
+ \ <div class=\"learn-more-link\">\n <a href=\"javascript:void(null)\" class=\"bracket-link\"
1574
+ onclick=\"return toggle_tags_learn_more(this); return false ;\">[ <span>?</span>
1575
+ ]</a>\n </div>\n <div style=\"clear:both\"></div>\n</div>\n\n <div id=\"m_tags_caption\"
1576
+ style=\"display:none;\" class=\"middle-caption\">\n Tags are user-generated
1577
+ labels related to this video or show that can help you discover related videos
1578
+ on Hulu. Check the tags you feel are most appropriate for this show or add your
1579
+ own (the number in parentheses indicates how many other users have used that
1580
+ tag.) To find other shows with similar tags, simply click on the tag that interests
1581
+ you most.\n </div>\n <div id='m_tags_content_loading' class=\"tags-content-loading\">\n
1582
+ \ <img src=\"/images/loading-animated-small.gif\" alt=\"loading\"/>\n </div>\n
1583
+ \ <div id='m_tags_content_wrapper' style=\"display:none;\" class='tags-content-wrapper'>\n
1584
+ \ <div id='m_tags_content' class=\"tags-content\">\n <div style=''>\r\n
1585
+ \ <div class=\"tags-content-table\" id=\"m_content_table\">\r\n \r\n <div
1586
+ class=\"tags-category-name\">\r\n Genre:\r\n </div>\r\n <div
1587
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1588
+ tid= '356' cid='11'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1589
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:356,&quot;tag_name&quot;:&quot;action&quot;,&quot;tag_type_id&quot;:11});\"
1590
+ tid=\"356\" type=\"checkbox\" value=\"action\" /></span><img alt=\"Loading-animated-circle\"
1591
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1592
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=action\"
1593
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/356?count=259&amp;name=action&amp;taggable_id=105&amp;taggable_type=Show\"
1594
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">action</a>\n <div
1595
+ class='tagging-count'>\n (<span>259</span>)\n </div>\n </div>\r\n
1596
+ \ \r\n <div class='tags-content-cell' tid= '1563' cid='11'><span
1597
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1598
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1563,&quot;tag_name&quot;:&quot;crime
1599
+ drama&quot;,&quot;tag_type_id&quot;:11});\" tid=\"1563\" type=\"checkbox\" value=\"crime
1600
+ drama\" /></span><img alt=\"Loading-animated-circle\" border=\"0\" class=\"check-box-loading\"
1601
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1602
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=crime+drama\"
1603
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1563?count=144&amp;name=crime+drama&amp;taggable_id=105&amp;taggable_type=Show\"
1604
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">crime drama</a>\n <div
1605
+ class='tagging-count'>\n (<span>144</span>)\n </div>\n </div>\r\n
1606
+ \ \r\n <div class='tags-content-cell' tid= '1591' cid='11'><span
1607
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1608
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1591,&quot;tag_name&quot;:&quot;espionage&quot;,&quot;tag_type_id&quot;:11});\"
1609
+ tid=\"1591\" type=\"checkbox\" value=\"espionage\" /></span><img alt=\"Loading-animated-circle\"
1610
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1611
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=espionage\"
1612
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1591?count=107&amp;name=espionage&amp;taggable_id=105&amp;taggable_type=Show\"
1613
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">espionage</a>\n <div
1614
+ class='tagging-count'>\n (<span>107</span>)\n </div>\n </div>\r\n
1615
+ \ \r\n <div class='tags-content-cell' tid= '224' cid='11'><span
1616
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1617
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:224,&quot;tag_name&quot;:&quot;drama&quot;,&quot;tag_type_id&quot;:11});\"
1618
+ tid=\"224\" type=\"checkbox\" value=\"drama\" /></span><img alt=\"Loading-animated-circle\"
1619
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1620
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=drama\"
1621
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/224?count=72&amp;name=drama&amp;taggable_id=105&amp;taggable_type=Show\"
1622
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">drama</a>\n <div class='tagging-count'>\n
1623
+ \ (<span>72</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
1624
+ \ <br class=\"shim\" />\r\n \r\n <div class=\"tags-category-name\">\r\n
1625
+ \ Time:\r\n </div>\r\n <div class=\"tags-categoried\">\r\n \r\n
1626
+ \ <div class='tags-content-cell' tid= '5156' cid='12'><span class='tags-checkbox'><input
1627
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1628
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:5156,&quot;tag_name&quot;:&quot;2007&quot;,&quot;tag_type_id&quot;:12});\"
1629
+ tid=\"5156\" type=\"checkbox\" value=\"2007\" /></span><img alt=\"Loading-animated-circle\"
1630
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1631
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=2007\"
1632
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/5156?count=14&amp;name=2007&amp;taggable_id=105&amp;taggable_type=Show\"
1633
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">2007</a>\n <div class='tagging-count'>\n
1634
+ \ (<span>14</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
1635
+ \ <br class=\"shim\" />\r\n \r\n <div class=\"tags-category-name\">\r\n
1636
+ \ People:\r\n </div>\r\n <div class=\"tags-categoried\">\r\n
1637
+ \ \r\n <div class='tags-content-cell' tid= '1550' cid='13'><span
1638
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1639
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1550,&quot;tag_name&quot;:&quot;bruce
1640
+ campbell&quot;,&quot;tag_type_id&quot;:13});\" tid=\"1550\" type=\"checkbox\"
1641
+ value=\"bruce campbell\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1642
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1643
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=bruce+campbell\"
1644
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1550?count=123&amp;name=bruce+campbell&amp;taggable_id=105&amp;taggable_type=Show\"
1645
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">bruce campbell</a>\n <div
1646
+ class='tagging-count'>\n (<span>123</span>)\n </div>\n </div>\r\n
1647
+ \ \r\n <div class='tags-content-cell' tid= '1546' cid='13'><span
1648
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1649
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1546,&quot;tag_name&quot;:&quot;jeffrey
1650
+ donovan&quot;,&quot;tag_type_id&quot;:13});\" tid=\"1546\" type=\"checkbox\"
1651
+ value=\"jeffrey donovan\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1652
+ 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=jeffrey+donovan\"
1654
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1546?count=89&amp;name=jeffrey+donovan&amp;taggable_id=105&amp;taggable_type=Show\"
1655
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">jeffrey donovan</a>\n <div
1656
+ class='tagging-count'>\n (<span>89</span>)\n </div>\n </div>\r\n
1657
+ \ \r\n <div class='tags-content-cell' tid= '1552' cid='13'><span
1658
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1659
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1552,&quot;tag_name&quot;:&quot;gabrielle
1660
+ anwar&quot;,&quot;tag_type_id&quot;:13});\" tid=\"1552\" type=\"checkbox\" value=\"gabrielle
1661
+ anwar\" /></span><img alt=\"Loading-animated-circle\" border=\"0\" class=\"check-box-loading\"
1662
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1663
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=gabrielle+anwar\"
1664
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1552?count=89&amp;name=gabrielle+anwar&amp;taggable_id=105&amp;taggable_type=Show\"
1665
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">gabrielle anwar</a>\n <div
1666
+ class='tagging-count'>\n (<span>89</span>)\n </div>\n </div>\r\n
1667
+ \ \r\n <div class='tags-content-cell' tid= '1548' cid='13'><span
1668
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1669
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1548,&quot;tag_name&quot;:&quot;sharon
1670
+ gless&quot;,&quot;tag_type_id&quot;:13});\" tid=\"1548\" type=\"checkbox\" value=\"sharon
1671
+ gless\" /></span><img alt=\"Loading-animated-circle\" border=\"0\" class=\"check-box-loading\"
1672
+ 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=sharon+gless\"
1674
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1548?count=47&amp;name=sharon+gless&amp;taggable_id=105&amp;taggable_type=Show\"
1675
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">sharon gless</a>\n <div
1676
+ class='tagging-count'>\n (<span>47</span>)\n </div>\n </div>\r\n
1677
+ \ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
1678
+ class=\"tags-category-name\">\r\n Place:\r\n </div>\r\n <div
1679
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1680
+ tid= '1549' cid='14'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1681
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1549,&quot;tag_name&quot;:&quot;miami&quot;,&quot;tag_type_id&quot;:14});\"
1682
+ tid=\"1549\" type=\"checkbox\" value=\"miami\" /></span><img alt=\"Loading-animated-circle\"
1683
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1684
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=miami\"
1685
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1549?count=100&amp;name=miami&amp;taggable_id=105&amp;taggable_type=Show\"
1686
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">miami</a>\n <div class='tagging-count'>\n
1687
+ \ (<span>100</span>)\n </div>\n </div>\r\n \r\n <div
1688
+ class='tags-content-cell' tid= '1655' cid='14'><span class='tags-checkbox'><input
1689
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1690
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:1655,&quot;tag_name&quot;:&quot;usa&quot;,&quot;tag_type_id&quot;:14});\"
1691
+ tid=\"1655\" type=\"checkbox\" value=\"usa\" /></span><img alt=\"Loading-animated-circle\"
1692
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1693
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=usa\"
1694
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1655?count=17&amp;name=usa&amp;taggable_id=105&amp;taggable_type=Show\"
1695
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">usa</a>\n <div class='tagging-count'>\n
1696
+ \ (<span>17</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
1697
+ \ <br class=\"shim\" />\r\n \r\n <div class=\"tags-category-name\">\r\n
1698
+ \ Language:\r\n </div>\r\n <div class=\"tags-categoried\">\r\n
1699
+ \ \r\n <div class='tags-content-cell' tid= '2523' cid='3'><span
1700
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1701
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:2523,&quot;tag_name&quot;:&quot;english&quot;,&quot;tag_type_id&quot;:3});\"
1702
+ tid=\"2523\" type=\"checkbox\" value=\"english\" /></span><img alt=\"Loading-animated-circle\"
1703
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1704
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=english\"
1705
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2523?count=55&amp;name=english&amp;taggable_id=105&amp;taggable_type=Show\"
1706
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">english</a>\n <div
1707
+ class='tagging-count'>\n (<span>55</span>)\n </div>\n </div>\r\n
1708
+ \ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
1709
+ class=\"tags-category-name\">\r\n Details:\r\n </div>\r\n <div
1710
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1711
+ tid= '1545' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1712
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1545,&quot;tag_name&quot;:&quot;spy&quot;,&quot;tag_type_id&quot;:15});\"
1713
+ tid=\"1545\" type=\"checkbox\" value=\"spy\" /></span><img alt=\"Loading-animated-circle\"
1714
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1715
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=spy\"
1716
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1545?count=229&amp;name=spy&amp;taggable_id=105&amp;taggable_type=Show\"
1717
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">spy</a>\n <div class='tagging-count'>\n
1718
+ \ (<span>229</span>)\n </div>\n </div>\r\n \r\n <div
1719
+ class='tags-content-cell' tid= '11376' cid='15'><span class='tags-checkbox'><input
1720
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1721
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:11376,&quot;tag_name&quot;:&quot;usa
1722
+ network&quot;,&quot;tag_type_id&quot;:15});\" tid=\"11376\" type=\"checkbox\"
1723
+ value=\"usa network\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1724
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1725
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=usa+network\"
1726
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/11376?count=119&amp;name=usa+network&amp;taggable_id=105&amp;taggable_type=Show\"
1727
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">usa network</a>\n <div
1728
+ class='tagging-count'>\n (<span>119</span>)\n </div>\n </div>\r\n
1729
+ \ \r\n <div class='tags-content-cell' tid= '19155' cid='15'><span
1730
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1731
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:19155,&quot;tag_name&quot;:&quot;secret
1732
+ agent&quot;,&quot;tag_type_id&quot;:15});\" tid=\"19155\" type=\"checkbox\"
1733
+ value=\"secret agent\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1734
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1735
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=secret+agent\"
1736
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/19155?count=108&amp;name=secret+agent&amp;taggable_id=105&amp;taggable_type=Show\"
1737
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">secret agent</a>\n <div
1738
+ class='tagging-count'>\n (<span>108</span>)\n </div>\n </div>\r\n
1739
+ \ \r\n <div class='tags-content-cell' tid= '1554' cid='15'><span
1740
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1741
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1554,&quot;tag_name&quot;:&quot;agent&quot;,&quot;tag_type_id&quot;:15});\"
1742
+ tid=\"1554\" type=\"checkbox\" value=\"agent\" /></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=agent\"
1745
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1554?count=87&amp;name=agent&amp;taggable_id=105&amp;taggable_type=Show\"
1746
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">agent</a>\n <div class='tagging-count'>\n
1747
+ \ (<span>87</span>)\n </div>\n </div>\r\n \r\n <div
1748
+ class='tags-content-cell' tid= '1073' cid='15'><span class='tags-checkbox'><input
1749
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1750
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:1073,&quot;tag_name&quot;:&quot;guns&quot;,&quot;tag_type_id&quot;:15});\"
1751
+ tid=\"1073\" type=\"checkbox\" value=\"guns\" /></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=guns\"
1754
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1073?count=87&amp;name=guns&amp;taggable_id=105&amp;taggable_type=Show\"
1755
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">guns</a>\n <div class='tagging-count'>\n
1756
+ \ (<span>87</span>)\n </div>\n </div>\r\n \r\n <div
1757
+ class='tags-content-cell' tid= '24' cid='15'><span class='tags-checkbox'><input
1758
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1759
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:24,&quot;tag_name&quot;:&quot;sexy&quot;,&quot;tag_type_id&quot;:15});\"
1760
+ tid=\"24\" type=\"checkbox\" value=\"sexy\" /></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=sexy\"
1763
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/24?count=54&amp;name=sexy&amp;taggable_id=105&amp;taggable_type=Show\"
1764
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">sexy</a>\n <div class='tagging-count'>\n
1765
+ \ (<span>54</span>)\n </div>\n </div>\r\n \r\n <div
1766
+ class='tags-content-cell' tid= '26698' cid='15'><span class='tags-checkbox'><input
1767
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1768
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:26698,&quot;tag_name&quot;:&quot;clever&quot;,&quot;tag_type_id&quot;:15});\"
1769
+ tid=\"26698\" type=\"checkbox\" value=\"clever\" /></span><img alt=\"Loading-animated-circle\"
1770
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1771
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=clever\"
1772
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/26698?count=50&amp;name=clever&amp;taggable_id=105&amp;taggable_type=Show\"
1773
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">clever</a>\n <div
1774
+ class='tagging-count'>\n (<span>50</span>)\n </div>\n </div>\r\n
1775
+ \ \r\n <div class='tags-content-cell' tid= '110432' cid='15'><span
1776
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1777
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:110432,&quot;tag_name&quot;:&quot;spy
1778
+ tips&quot;,&quot;tag_type_id&quot;:15});\" tid=\"110432\" type=\"checkbox\"
1779
+ value=\"spy tips\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1780
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1781
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=spy+tips\"
1782
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/110432?count=45&amp;name=spy+tips&amp;taggable_id=105&amp;taggable_type=Show\"
1783
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">spy tips</a>\n <div
1784
+ class='tagging-count'>\n (<span>45</span>)\n </div>\n </div>\r\n
1785
+ \ \r\n <div class='tags-content-cell' tid= '1556' cid='15'><span
1786
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1787
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:1556,&quot;tag_name&quot;:&quot;beach&quot;,&quot;tag_type_id&quot;:15});\"
1788
+ tid=\"1556\" type=\"checkbox\" value=\"beach\" /></span><img alt=\"Loading-animated-circle\"
1789
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1790
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=beach\"
1791
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1556?count=43&amp;name=beach&amp;taggable_id=105&amp;taggable_type=Show\"
1792
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">beach</a>\n <div class='tagging-count'>\n
1793
+ \ (<span>43</span>)\n </div>\n </div>\r\n \r\n <div
1794
+ class='tags-content-cell' tid= '1555' cid='15'><span class='tags-checkbox'><input
1795
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1796
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:1555,&quot;tag_name&quot;:&quot;fbi&quot;,&quot;tag_type_id&quot;:15});\"
1797
+ tid=\"1555\" type=\"checkbox\" value=\"fbi\" /></span><img alt=\"Loading-animated-circle\"
1798
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1799
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=fbi\"
1800
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1555?count=40&amp;name=fbi&amp;taggable_id=105&amp;taggable_type=Show\"
1801
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">fbi</a>\n <div class='tagging-count'>\n
1802
+ \ (<span>40</span>)\n </div>\n </div>\r\n \r\n <div
1803
+ class='tags-content-cell' tid= '1154' cid='15'><span class='tags-checkbox'><input
1804
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1805
+ &quot;m_&quot;,\n {&quot;tag_id&quot;:1154,&quot;tag_name&quot;:&quot;yogurt&quot;,&quot;tag_type_id&quot;:15});\"
1806
+ tid=\"1154\" type=\"checkbox\" value=\"yogurt\" /></span><img alt=\"Loading-animated-circle\"
1807
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1808
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=yogurt\"
1809
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1154?count=26&amp;name=yogurt&amp;taggable_id=105&amp;taggable_type=Show\"
1810
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">yogurt</a>\n <div
1811
+ class='tagging-count'>\n (<span>26</span>)\n </div>\n </div>\r\n
1812
+ \ \r\n <div class='tags-content-cell' tid= '29474' cid='15'><span
1813
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1814
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_id&quot;:29474,&quot;tag_name&quot;:&quot;notice&quot;,&quot;tag_type_id&quot;:15});\"
1815
+ tid=\"29474\" type=\"checkbox\" value=\"notice\" /></span><img alt=\"Loading-animated-circle\"
1816
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1817
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=notice\"
1818
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/29474?count=21&amp;name=notice&amp;taggable_id=105&amp;taggable_type=Show\"
1819
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">notice</a>\n <div
1820
+ class='tagging-count'>\n (<span>21</span>)\n </div>\n </div>\r\n
1821
+ \ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n \r\n
1822
+ \ <div class=\"tags-content-see-all\" >\r\n <a href=\"#\" onclick=\"\n
1823
+ \ TagTracking.track('click_to_tab', 'see_all', Tag.Taggable) ;\n Tab.loadTab('tag',
1824
+ &quot;/taggings/tab_load?show_id=105&amp;taggable_id=105&amp;taggable_type=Show&quot;,
1825
+ false, null); \n; window.scrollTo(0, 400); return false;; return false;\">See
1826
+ All (<span id='more_tags_count'>79</span>) Tags...</a>\r\n </div>\r\n \r\n
1827
+ \ <br class=\"shim\" />\r\n </div>\r\n</div>\r\n\n </div>\n <div style=\"clear:both\"></div>\n
1828
+ \ <div class=\"tags-bottom\" style=\"\">\n <div id = \"m_add_tags\" style=\"\">\n
1829
+ \ \n <div class=\"tags-title add-tags\">Add Tags</div>\n <form action=\"/taggings/create\"
1830
+ autocomplete=\"off\" id=\"m_tag_add_form\" method=\"post\" onsubmit=\"Tag.AddSubmit($('m_tagging_tag_name'),$('m_tagging_tag_button'),
1831
+ $('m_tags_error'), $('m_tag_add_loading')); return false;\">\n <input autocomplete=\"off\"
1832
+ class=\"tags-search\" id=\"m_tagging_tag_name\" name=\"tagging[tag_names]\"
1833
+ style=\"float: left;margin-right: -1px;\" type=\"text\" value=\"\" />\n <a
1834
+ href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
1835
+ id=\"m_tagging_tag_button\" onclick=\"Tag.AddSubmit($('m_tagging_tag_name'),
1836
+ $('m_tagging_tag_button'),$('m_tags_error'), $('m_tag_add_loading')); return
1837
+ false ;\" src=\"http://static.huluim.com/images/btn-add.gif?1188269094\" style=\"vertical-align:
1838
+ middle; float: left;\" /></a>\n\n <div id=\"m_tag_add_loading\" style=\"display:none;float:left;margin-left:
1839
+ 10px;\">\n <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\"
1840
+ src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1841
+ style=\"vertical-align:middle;padding-top:2px; \" width=\"16\" />\n </div>\n
1842
+ \ <span id=\"m_tags_error\" style=\"display:none;\" class=\"tags-error\"></span>\n
1843
+ \ <span id=\"m_tags_tooltip\" style=\"display:none; position: absolute;\"
1844
+ >Add one or more comma separated tags (e.g. <b>snl</b>, <b>alec baldwin</b>,
1845
+ <b>tina fey</b>)</span>\n </form>\n <ul id=\"m_tags_suggestion\" style=\"display:none;\"
1846
+ class=\"tags-suggestion-container\"></ul>\n </div>\n\n <div style=\"clear:both\"></div>\n\n
1847
+ \ <div id='m_your_tags' >\n <div style=\"display:none\" class='your-tags'>\n
1848
+ \ <div class=\"tags-title\">You tagged this show</div>\n <div id=\"m_tagged_tags_container\"
1849
+ class='tagged-tags-container' style=\"\"></div>\n </div> \n <div class=\"tagged-link-container\"
1850
+ style=\"display:none\">\n <a href=\"/profile/tags\" class=\"tagged-link\">All
1851
+ your tags...</a>\n </div>\n </div>\n\n</div>\n\n </div>\n</div>\n\n </div>\n
1852
+ \ <script type='text/javascript' charset='utf-8'>/*<![CDATA[*/\n _m_tag =
1853
+ new Tag({\n prefix : \"m_\",\n items_per_page : 15 ,\n update_table:
1854
+ true,\n total_count : 79\n });\n new TagSuggest( $(\"m_tagging_tag_name\"),
1855
+ $(\"m_tags_suggestion\"), $(\"m_tags_error\"), $(\"m_tags_tooltip\") ) ;\n new
1856
+ TagSuggest( $(\"m_search_tag_name\"), $(\"m_search_tags_suggestion\") );\n function
1857
+ load_and_show(ev){\n var _top = document.viewport.getScrollOffsets() ;\n
1858
+ \ _top = _top.top + document.viewport.getHeight() ;\n var el = $('m_tags_pane');\n
1859
+ \ if ( $('pane-main').hasClassName(\"pane-selected\") && el ){\n var
1860
+ elTop = el.cumulativeOffset().top + el.getHeight() ;\n if( _top >= (elTop
1861
+ - 100) ){\n Event.stopObserving(window, \"scroll\", load_and_show);
1862
+ \n Event.stopObserving(window, \"resize\", load_and_show);\n _m_tag
1863
+ = Tag.PushTab(_m_tag) ;\n if( Behaviors.isLoggedIn() ){\n Tag.LoadTagged(url_for_tagged_tags,
1864
+ _m_tag);\n }\n else {\n _m_tag.setLoaded() ;\n
1865
+ \ }\n TagTracking.track(\"load\", \"main\", Tag.Taggable)\n
1866
+ \ }\n }\n };\n \n Event.observe(window, \"scroll\", load_and_show
1867
+ );\n Event.observe(window, \"resize\", load_and_show );\n /*]]>*/</script>\n</div>\n\n\n
1868
+ \ \n <div id=\"semcheck-container\"> </div>\n<script type=\"text/javascript\">/*<![CDATA[*/\nEvent.observe(window,
1869
+ \"load\", function() {\n setTimeout(function() {\n if (location.search &&
1870
+ location.search.indexOf(\"fromsearch=\") > 0) {\n var sem = (/^(google|yahoo)/.test(location.search.substring(location.search.indexOf(\"fromsearch=\"
1871
+ ) + \"fromsearch=\".length)) ? (RegExp.$1) : '');\n if (sem) {\n Event.observe(window,
1872
+ \"load\", function() {\n pingImage(\"http://t.hulu.com/beacon/v2/siteinteraction?event=searchvisit&param=\"
1873
+ + sem + \"&value=1\" + \"&dict=selected%3a\" + Behaviors.getGUID());\n });\n
1874
+ \ }\n }\n }, 500);\n});\n/*]]>*/</script>\n\n\n\n<script type=\"text/javascript\">/*<![CDATA[*/\nEvent.observe(window,
1875
+ \"load\", function() { \n if($$('div.twitter-container').length > 0) {\n \n\n
1876
+ \ \n \n\n hTwitter.init(\"fordfocus\", 'div.twitter-container');\n hTwitter.related_accounts
1877
+ += ',' + \"fordfocus\";\n }\n\n // Patch twitter_loader so #hash links include
1878
+ the hash symbol.\n if (typeof(window.ify) != \"undefined\" && window.ify.hash)
1879
+ {\n window.ify.hash = function(t) {\n return t.replace(/(^|[^\\w'\"]+)\\#([a-zA-Z0-9_]+)/g,
1880
+ function(m, m1, m2) {\n return m1 + '<a href=\"http://search.twitter.com/search?q=%23'
1881
+ + m2 + '\">#' + m2 + '</a>';\n });\n };\n }\n \n if(Behaviors.getCookie(\"_r_tracking_\"))
1882
+ { \n var cookieContent = unescape(Behaviors.getCookie(\"_r_tracking_\"));\n
1883
+ \ \n if( typeof(_rTracking) != 'undefined' && _rTracking != null)\n _rTracking.loadCookieAndSend(cookieContent);\n
1884
+ \ Behaviors.eraseCookie(\"_r_tracking_\");\n Behaviors.eraseCookie(\"_r_tracking_\",
1885
+ \".hulu.com\");\n } \n});\n/*]]>*/</script>\n\n\n\n </li>\n \n
1886
+ \ <li id=\"pane-reviews\" class=\"pane-preload\"></li>\n \n <li
1887
+ id=\"pane-forums\" class=\"pane-preload\"></li>\n \n <li id=\"pane-tag\"
1888
+ class=\"pane-preload\"></li>\n \n <li id=\"pane-captions\" class=\"pane-preload\"></li>\n
1889
+ \ </ul></div>\n\n\n <div id='tags_learn_more' style=\"display:none\">\r\n
1890
+ \ <div class=\"content tags-learn-more-content\" style=\"text-align: justify;\">\r\n
1891
+ \ <div>\r\n Tags are keywords or category labels that can help you and
1892
+ others find videos on Hulu. They also classify videos for later recall. You
1893
+ can tag videos yourself by simply checking the box next to a popular tag for
1894
+ a video or by using the \"add\" field to create a new tag. Click on any tag
1895
+ — \"comedy\" for example — to discover other videos similarly tagged by you
1896
+ or other users. Because tags are reviewed by Hulu, there may be a delay in surfacing
1897
+ your tags. The most relevant tags are sorted by category for the rest of Hulu
1898
+ to see. You may assign up to 30 tags for any video or show; to review all of
1899
+ your tags, see the Tags section on your profile page.\r\n </div>\r\n <p>Your
1900
+ tags may be visible to other users on Hulu. You should not use:</p>\r\n <ul>\r\n
1901
+ \ <li>Profane or obscene language</li>\r\n <li>Tags that are inciting
1902
+ or spiteful</li>\r\n <li>Tags that might harass, abuse or threaten members
1903
+ of the community</li>\r\n <li>Tags that may reveal your personal information
1904
+ or any personal information about children under age 13</li>\r\n <li>Tags
1905
+ that promote illegal or immoral conduct</li>\r\n <li>Tags containing special
1906
+ characters or more than 50 characters</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\n\n\n<script
1907
+ type=\"text/javascript\">/*<![CDATA*/\n Event.observe(window, 'load', function()
1908
+ {\n anchorToShowExpander();\n });\n\n Event.observe(document, \"hulu:loggedIn\",
1909
+ function() {\n \n Social.Common.showFacePileForShow(105, 'social_data');\n
1910
+ \ \n new Ajax.Request(\"/exstack/get_vote/Show/105\", {\n method:
1911
+ 'get',\n onSuccess: function(req) {\n var rating = parseInt(req.responseText);\n
1912
+ \ if (rating && rating > 0) VideoRating.set_user_vote(105, rating);\n
1913
+ \ } \n });\n });\n\n/*]]>*/</script>\n\n <iframe id=\"popup_frame\"
1914
+ class=\"playlist-box\" style=\"display:none;\"></iframe>\n <iframe id=\"search_popup_frame\"
1915
+ class=\"playlist-box\" style=\"display:none;\"></iframe>\n\n <div class=\"flf
1916
+ popup\" style=\"display:none\">\n <div class=\"popup-bar\">\n <a href=\"#\"
1917
+ onclick=\"FloatingLoginForm.hide(); return false;\"><img alt=\"Popup-close\"
1918
+ border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1919
+ width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
1920
+ class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1921
+ width=\"16\" />\n Please login or <a href=\"/signup\" class=\"signup\">sign
1922
+ up</a> first.\n <div class=\"login-form\">\n <form action=\"https://secure.hulu.com/account/authenticate\"
1923
+ method=\"get\" name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n
1924
+ \ <div>\n <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
1925
+ none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
1926
+ type=\"password\" style=\"display: none;\" name=\"password\" value='' autocomplete='off'/>\n
1927
+ \ <input class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
1928
+ />\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
1929
+ /> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
1930
+ id=\"btn-signin-small.gif132225585246453\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
1931
+ style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
1932
+ href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
1933
+ id=\"btn-x.gif1322255852465\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
1934
+ title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
1935
+ \ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
1936
+ \ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
1937
+ \ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
1938
+ name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
1939
+ onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
1940
+ me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
1941
+ 0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
1942
+ class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
1943
+ \ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
1944
+ middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
1945
+ border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1946
+ style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
1947
+ \ <div style=\"clear: both\">\n <a href=\"/users/forgot_password\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
1948
+ your password?</a>\n </div>\n \n <!-- todo change to alternative flow. if
1949
+ user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
1950
+ \ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
1951
+ alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
1952
+ style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
1953
+ vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
1954
+ ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
1955
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
1956
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
1957
+ \ \n</div>\n\n <div class=\"flf tflf popup\" style=\"display:none\">\n <div
1958
+ class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingLoginForm.hide();
1959
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1960
+ width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
1961
+ class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1962
+ width=\"16\" />\n Please input your email and password.\n <div class=\"login-form\">\n
1963
+ \ <form action=\"https://secure.hulu.com/account/authenticate\" method=\"get\"
1964
+ name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n <div>\n
1965
+ \ <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
1966
+ none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
1967
+ type=\"password\" style=\"display: none;\" name=\"password\" value='' autocomplete='off'/>\n
1968
+ \ <input class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
1969
+ />\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
1970
+ /> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
1971
+ id=\"btn-signin-small.gif132225585246829\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
1972
+ style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
1973
+ href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
1974
+ id=\"btn-x.gif132225585246876\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
1975
+ title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
1976
+ \ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
1977
+ \ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
1978
+ \ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
1979
+ name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
1980
+ onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
1981
+ me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
1982
+ 0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
1983
+ class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
1984
+ \ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
1985
+ middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
1986
+ border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1987
+ style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
1988
+ \ <div style=\"clear: both\">\n <a href=\"/users/forgot_password\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
1989
+ your password?</a>\n </div>\n \n <!-- todo change to alternative flow. if
1990
+ user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
1991
+ \ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
1992
+ alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
1993
+ style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
1994
+ vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
1995
+ ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
1996
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
1997
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
1998
+ \ \n</div>\n\n <div class=\"floating-container popup\" id=\"floating-container\"
1999
+ style=\"display:none\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingDiv.hide();
2000
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
2001
+ title=\"close\" width=\"11\" /></a>\n </div>\n \n <div class=\"shw-top-right\"></div>\n
2002
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
2003
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
2004
+ \ \n</div>\n\n\n \n <div class=\"int-warning popup\" style=\"display:none;\">\n
2005
+ \ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"IntWarning.cancel();
2006
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
2007
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"int-thanks\" style=\"display:
2008
+ none\">\n <p>Thanks for your interest.</p>\n <a href=\"#\"><img alt=\"Cancel\"
2009
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132225585247187\"
2010
+ onclick=\"IntWarning.cancel();return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
2011
+ title=\"Cancel\" width=\"65\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
2012
+ \ <p class=\"int-title\">\n <img alt=\"Int-warning\" class=\"int-icon\"
2013
+ src=\"http://static.huluim.com/images/int-warning.gif?1282174508\" />\n Sorry,
2014
+ currently our video library can only be watched from within the United States\n
2015
+ \ </p>\n\n <p>Hulu is committed to making its content available worldwide.
2016
+ \ To do so,\n we must work through a number of legal and business issues,
2017
+ including\n obtaining international streaming rights. Know that we are working
2018
+ to make\n this happen and will continue to do so. Given the international
2019
+ background\n of the Hulu team, we have both a professional and personal interest
2020
+ in\n bringing Hulu to a global audience.</p>\n\n <p>If you'd like, please
2021
+ leave us your email address and the country in\n which you live, and we will
2022
+ email you when our videos are available in your\n area.</p>\n\n <form
2023
+ action=\"/show\" id=\"int-request\" method=\"post\" onsubmit=\"return false;\">\n
2024
+ \ <table>\n <tr>\n <td><label for=\"int-email\">Email:</label></td>\n
2025
+ \ <td class=\"field\"><input id=\"int-email\" name=\"email[]\" size=\"30\"
2026
+ type=\"text\" /></td>\n </tr>\n <tr>\n <td><label for=\"int-country\">Country:</label><br/>\n
2027
+ \ </td>\n <td class=\"field\"><input id=\"int-country\"
2028
+ name=\"country\" type=\"text\" value=\"\" /></td>\n </tr>\n <tr>\n
2029
+ \ <td class=\"last\" colspan=\"2\">\n <a href=\"#\"><img
2030
+ alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-submit-small.gif132225585247304\"
2031
+ onclick=\"IntWarning.submit(); return false\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
2032
+ title=\"Submit\" width=\"65\" /></a>\n <a href=\"#\"><img alt=\"Cancel\"
2033
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132225585247352\"
2034
+ onclick=\"IntWarning.cancel(); return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
2035
+ title=\"Cancel\" width=\"65\" /></a>\n </td>\n </tr>\n </table>\n
2036
+ \ </form>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
2037
+ \ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
2038
+ \ <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div class=\"int-warning-jp
2039
+ popup\" style=\"display:none;\">\n <div class=\"popup-bar\">\n <a href=\"#\"
2040
+ onclick=\"IntWarning.cancel(); return false;\"><img alt=\"Popup-close\" border=\"0\"
2041
+ height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
2042
+ title=\"close\" width=\"11\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
2043
+ \ <div class=\"relative\">\n <img alt=\"Int-warning\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
2044
+ style=\"position:absolute; left:-20px; top:1px;\" />\n <p>Huluを日本でお楽しみいただくには、<a
2045
+ href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a>をご利用ください。</p>\n\n
2046
+ \ <p>Hulu is now officially available in Japan. Please continue onto <a
2047
+ href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a> to
2048
+ enjoy great videos in Japan.</p>\n\n <a href=\"http://www.hulu.jp?from=hulu_us\"><img
2049
+ alt=\"Go to Hulu Japan\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-plus-continue.gif132225585247492\"
2050
+ src=\"http://static.huluim.com/images/btn-plus-continue.gif?1207633618\" style=\"float:
2051
+ right;\" title=\"Go to Hulu Japan\" width=\"87\" /></a>\n <br class='shim'
2052
+ />\n\n </div>\n </div>\n\n <div class=\"shw-top-right\"></div>\n <div
2053
+ class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n <div
2054
+ class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div
2055
+ class=\"overlay-full\" style=\"display:none\"></div>\n\n \n <div class=\"privacy-acceptance\"
2056
+ style=\"display:none\">\n <div id=\"accept-choice\">\n <div class=\"content\">\n
2057
+ \ <div class=\"flf-content\">\n <img alt=\"Attention\" class=\"warning\"
2058
+ height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
2059
+ width=\"16\" />\n Do you accept the new <a href=\"/terms\" target=\"_blank\">Terms
2060
+ of Use</a> and <a href=\"/privacy\" target=\"_blank\">Privacy Policy</a>?\n
2061
+ \ </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
2062
+ \ <div id=\"privacy-acceptance-loading\" style=\"display:none; padding:
2063
+ 2px 20px; float: left\">\n <img alt=\"Loading-animated-circle\" border=\"0\"
2064
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2065
+ style=\"vertical-align:middle\" width=\"16\" />\n </div>\n <a
2066
+ href=\"#\" onclick=\"Login.acceptPrivacy(); return false;\"><img alt=\"accept\"
2067
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"accept-button\" src=\"http://static.huluim.com/images/btn-i-accept.gif?1254406432\"
2068
+ title=\"accept\" width=\"102\" /></a>&nbsp;&nbsp;\n <a href=\"#\" onclick=\"Login.showDeny();
2069
+ return false;\"><img alt=\"do not accept\" border=\"0\" class=\"hover-me\" height=\"20\"
2070
+ id=\"accept-not-button\" src=\"http://static.huluim.com/images/btn-i-accept-do-not.gif?1063117107\"
2071
+ title=\"do not accept\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n
2072
+ \ <div id=\"deny-choice\">\n <div class=\"content\">\n <div class=\"flf-content\">\n
2073
+ \ <img alt=\"Attention\" class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
2074
+ width=\"16\" />\n Sorry, you cannot log in to your account unless you
2075
+ accept.\n </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
2076
+ \ <a href=\"#\" onclick=\"Login.showPrivacy(); return false;\"><img alt=\"back\"
2077
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"back-button\" src=\"http://static.huluim.com/images/btn-back.gif?1120309156\"
2078
+ title=\"back\" width=\"69\" /></a>&nbsp;&nbsp;\n <a href=\"#\" onclick=\"ModalPopup.hide();
2079
+ return false;\"><img alt=\"continue\" border=\"0\" class=\"hover-me\" height=\"20\"
2080
+ id=\"ok-continue-button\" src=\"http://static.huluim.com/images/btn-ok-continue.gif?1077529514\"
2081
+ title=\"continue\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n</div>\n\n
2082
+ \ <div id=\"modal-popup\" style=\"display: none;\">\n <div id=\"modal-popup-container\">\n
2083
+ \ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"; return false;\"><img
2084
+ alt=\"Popup-close\" border=\"0\" height=\"11\" id=\"close-popup\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
2085
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"popup-bar-19h\">\n
2086
+ \ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-header-close-19h\"
2087
+ border=\"0\" height=\"19\" id=\"close-popup-19h\" src=\"http://static.huluim.com/images/popup-header-close-19h.gif?1183885817\"
2088
+ title=\"close\" width=\"15\" /></a>\n </div>\n <div class=\"popup-bar-dark\">\n
2089
+ \ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-close-dark\"
2090
+ border=\"0\" height=\"11\" id=\"close-popup-dark\" src=\"http://static.huluim.com/images/popup-close-dark.gif?1245360475\"
2091
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"modal-content\">\n
2092
+ \ <div id=\"modal-question\"></div>\n <div id=\"modal-text\"></div>\n
2093
+ \ <div style=\"text-align: right;\">\n <a href=\"#\" onclick=\"ModalPopup.hide();
2094
+ return false;\"><img alt=\"OK\" border=\"0\" class=\"hover-me\" height=\"20\"
2095
+ id=\"dismiss-popup\" src=\"http://static.huluim.com/images/btn-ok.gif?1277491716\"
2096
+ title=\"OK\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
2097
+ return false;\"><img alt=\"Yes\" border=\"0\" class=\"hover-me\" height=\"20\"
2098
+ id=\"accept-popup\" src=\"http://static.huluim.com/images/btn-yes.gif?1147659175\"
2099
+ title=\"Yes\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
2100
+ return false;\"><img alt=\"No\" border=\"0\" class=\"hover-me\" height=\"20\"
2101
+ id=\"reject-popup\" src=\"http://static.huluim.com/images/btn-no.gif?1296732270\"
2102
+ title=\"No\" width=\"50\" /></a>\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
2103
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
2104
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n
2105
+ \ </div>\n</div>\n\n <div id=\"subscription-popup\" class=\"popup\" style=\"display:
2106
+ none;\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"Subscription.hide_popup();
2107
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
2108
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"ss-content\">\n
2109
+ \ Add <span id=\"ss-show-name\"></span> to your favorites to automatically
2110
+ update your queue with new <span id=\"ss-has-episodes\">episodes and </span><span
2111
+ id=\"ss-has-clips\">clips</span>.\n <div class=\"ss-options\">\n <input
2112
+ id=\"ss-show\" name=\"ss-show\" type=\"hidden\" value=\"0\" />\n <a class=\"checkbox
2113
+ checked\" href=\"#\" id=\"ss-episodes\" onclick=\"Subscription.toggle_input('ss-episodes');
2114
+ return false;\" style=\"margin-right: 54px;\">Episodes</a>\n <a class=\"checkbox
2115
+ checked\" href=\"#\" id=\"ss-clips\" onclick=\"Subscription.toggle_input('ss-clips');
2116
+ return false;\">Clips</a>\n <a class=\"radio pressed\" href=\"#\" id=\"ss-trailers-clips\"
2117
+ onclick=\"Subscription.toggle_input('ss-trailers-clips'); return false;\">Trailers
2118
+ and Clips</a>\n <a class=\"radio\" href=\"#\" id=\"ss-trailers-only\" onclick=\"Subscription.toggle_input('ss-trailers-only');
2119
+ return false;\" style=\"margin-left: 20px;\">Trailers only</a>\n <br style=\"clear:
2120
+ both;\" />\n <div style=\"padding: 7px 0px 0px 25px;\">\n <a class=\"radio
2121
+ pressed\" href=\"#\" id=\"ss-episodes-all\" onclick=\"Subscription.toggle_input('ss-episodes-all');
2122
+ return false;\">All</a>\n <br />\n <a class=\"radio\" href=\"#\"
2123
+ id=\"ss-episodes-first\" onclick=\"Subscription.toggle_input('ss-episodes-first');
2124
+ return false;\">New episodes only</a>\n </div>\n </div>\n <a class=\"checkbox\"
2125
+ href=\"#\" id=\"ss-email\" onclick=\"Subscription.toggle_input('ss-email');
2126
+ return false;\">Send me an alert when new videos are added to my queue.</a>\n
2127
+ \ <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" id=\"ss-loading\"
2128
+ src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2129
+ style=\"position:absolute; margin: 19px 0px 0px 45px; display: none;\" title=\"\"
2130
+ width=\"16\" />\n <img alt=\"Icon-check\" border=\"0\" height=\"16\" id=\"ss-done\"
2131
+ src=\"http://static.huluim.com/images/icon-check.gif?1125927925\" style=\"position:absolute;
2132
+ margin: 19px 0px 0px 45px; display: none;\" title=\"Checkmark\" width=\"16\"
2133
+ />\n <div style=\"width: 143px; height: 20px; margin: 17px auto 0px;\">\n
2134
+ \ <a href=\"#\" onclick=\"Subscription.hide_popup(); return false;\"><img
2135
+ alt=\"Close\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"cancel-subsciption\"
2136
+ src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" style=\"float:
2137
+ right;\" title=\"Close\" width=\"65\" /></a>\n <a href=\"#\" onclick=\"Subscription.submit_options(this);
2138
+ return false;\"><img alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\"
2139
+ id=\"submit-subsciption\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
2140
+ title=\"Submit\" width=\"65\" /></a>\n <br style=\"clear: both;\" />\n
2141
+ \ </div>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
2142
+ \ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
2143
+ \ <div class=\"shw-bottom-left\"></div>\n</div>\n\n <div id=\"mobile-popup\"
2144
+ style=\"display:none\">\n <div class=\"mobile-warning popup\" style=\"position:
2145
+ absolute;\" id='mobile-warning'>\n <div id=\"mobile-popup-content\" style=\"text-align:
2146
+ center; font-size: 14px; margin-bottom: 20px; \">\n </div>\n </div>\n <div
2147
+ class=\"mobile-overlay-full\"></div>\n</div>\n<div id=\"mobile-first-entry\"
2148
+ style=\"display:none\">\n <div class=\"content\">\n <div style=\"text-align:
2149
+ left;\" class=\"mobile-left\">\n <img alt=\"Hulu\" height=\"42\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
2150
+ title=\"Hulu\" width=\"97\" />\n </div>\n <div class=\"supported mobile-right\"
2151
+ style=\"display:none\">\n \n <p style=\"margin-bottom:0.5em\">\n To
2152
+ watch videos on this <span class=\"platform-name\">device</span>,<br/> please
2153
+ subscribe to Hulu Plus. \n </p>\n <p>\n <a href=\"/plus\" class=\"learn-more\">Learn
2154
+ more</a>\n </p>\n <p style=\"margin-bottom: 0.5em\">\n Already
2155
+ a Hulu Plus subscriber?\n </p>\n \n <p>\n <a href=\"http://itunes.apple.com/us/app/hulu-plus/id376510438?mt=8\"
2156
+ class=\"app-download-link\">Download app</a>\n \n </p>\n <p>\n
2157
+ \ <a href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
2158
+ return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"unsupported
2159
+ mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
2160
+ \ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
2161
+ notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
2162
+ device</span>. It's\n not available, but we are working hard to bring
2163
+ our Hulu Plus\n subscription service to <span class=\"platform-name-with-article\">this
2164
+ device</span>!\n Stay tuned for updates.\n </p>\n <p>\n <a
2165
+ href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
2166
+ return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"really-unsupported
2167
+ mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
2168
+ \ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
2169
+ notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
2170
+ device</span>. Right now\n this device is not supported.\n </p>\n
2171
+ \ <p>\n <a href=\"javascript:void(0)\" class=\"continue-to-browse\"
2172
+ onclick=\"MobilePopup.acknowledge(); return false;\">continue to browse</a>\n
2173
+ \ </p>\n </div>\n <br style=\"clear:both\" />\n </div>\n</div>\n<div
2174
+ id=\"mobile-video-unavailable\" style=\"display:none\">\n <div class=\"content\">\n
2175
+ \ <div style=\"text-align: left;\">\n <img alt=\"Hulu\" src=\"http://static.huluim.com/images/logo-plus.jpg?1300913395\"
2176
+ />\n </div>\n <div style=\"font-size: 20px; margin-top:10px;\">\n The
2177
+ video is not available on the <span class='platform-name'>iPad</span>.\n <div
2178
+ style=\"margin-top:20px;\">\n <a href=\"#\" class=\"continue-to-browse\"
2179
+ onclick=\"MobilePopup.acknowledge(); return false;\">continue to hulu.com</a>\n
2180
+ \ </div>\n </div>\n </div>\n</div>\n<script type=\"text/javascript\">\n//<![CDATA[\nMobileDevice.handleWarning()\n//]]>\n</script>\n\n
2181
+ \ <div id='facebook-connect-popup' style=\"display:none;\">\n <div class=\"fb_corner
2182
+ fb_corner_bottom_left\"></div>\n <div class=\"fb_corner fb_corner_bottom_right\"></div>\n
2183
+ \ <div class=\"fb_corner fb_corner_top_left\"></div>\n <div class=\"fb_corner
2184
+ fb_corner_top_right\"></div>\n <div class=\"fb_border_top\"></div>\n <div
2185
+ class=\"fb_border_bottom\"></div>\n <div class=\"fb_border_right\"></div>\n
2186
+ \ <div class=\"fb_border_left\"></div>\n\n <div class=\"relative container\">\n
2187
+ \ <div style=\"float:right; margin-right: 7px; margin-top: 7px;\">\n <a
2188
+ href=\"#\" onclick=\"Social.Facebook.closePopup('remind-me-later'); return false;\"><img
2189
+ alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-x-round.gif132225585248642\"
2190
+ src=\"http://static.huluim.com/images/btn-x-round.gif?1181198444\" /></a>\n
2191
+ \ </div>\n <div class=\"standard tidy\">\n <div class=\"content-container\">\n
2192
+ \ <div class=\"content\" style=\"margin: 20px 12px 20px 12px; padding:
2193
+ 3px 24px 6px 24px;\">\n <div class=\"clearfix\">\n <h2 class=\"cufonable
2194
+ title classic active\" style=\"float: left\"><span class=\"cufonable username\"></span>Hulu.
2195
+ Now with Friends</h2>\n <h2 class=\"cufonable title plus inactive\"
2196
+ \ style=\"float: left\"><span class=\"cufonable username\"></span>Go Social
2197
+ with Hulu</h2>\n <div class=\"login-welcome\" style=\"display:none;
2198
+ float: left\">\n <span class=\"not-me-name\"></span>\n <a
2199
+ class=\"fb_link not-me\" href=\"#\" onclick=\"Social.Facebook.logoutFromPopup();;
2200
+ return false;\"></a>)\n </div>\n </div>\n <div
2201
+ class=\"line\"></div>\n <div class=\"reason classic\" style=\"margin-top:
2202
+ 10px;\">\n Start conversations with friends about your favorite shows'
2203
+ twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
2204
+ style=\"font-weight: 700;\">and receive a FREE month on your subscription to</span>
2205
+ \n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
2206
+ />\n </div>\n <div class=\"reason plus inactive\" style=\"margin-top:
2207
+ 10px;\">\n Start conversations with friends about your favorite shows'
2208
+ twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
2209
+ style=\"font-weight: 700;\">and we'll tack on a FREE month on your subscription
2210
+ to</span> \n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
2211
+ />\n </div>\n <div style=\"margin-top: 18px; margin-bottom:
2212
+ 10px;\">\n <a href=\"#\" onclick=\"$$('span.confirm-loading')[0].show();
2213
+ Social.Facebook.connect(); return false;\" style=\"float: left;\"><img alt=\"Btn-fbconnect-large\"
2214
+ src=\"http://static.huluim.com/images/btn-fbconnect-large.png?1190692617\" /></a>\n
2215
+ \ <span class=\"confirm-loading\" style=\"margin-left: 10px; padding-top:
2216
+ 4px; vertical-align: top; display:none; float: left;\">\n <img
2217
+ alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2218
+ width=\"16\" />\n </span>\n <br style=\"clear: both;\"/>\n
2219
+ \ </div>\n <div style=\"padding-bottom: 26px;\"><a class=\"fb_link\"
2220
+ href=\"#\" onclick=\"Social.Facebook.closePopup('no-thanks'); return false;\">No
2221
+ thanks</a></div>\n </div>\n </div>\n </div>\n </div>\n</div>\n<div
2222
+ class=\"overlay-full\" style=\"display:none;\"></div>\n\n <div id=\"initial-fav-nav\"
2223
+ style=\"display:none;\">\n <div id=\"updated-fav-nav\" style=\"width:920px;height:120px;align:center;color:white;\">\n
2224
+ \ <div style=\"padding-top:46px;text-align:center;font-size:16px;\">\n\t\t\tPlease
2225
+ <a href=\"/account/signin\" style=\"color:white;text-decoration:underline;\">log
2226
+ in</a> to view your favorites.\n </div>\n </div>\n</div>\n \n\n <br style=\"clear:both\"
2227
+ />\n\n <div id='footer' style=''>\n <div id=\"footer-search-auto-complete\"></div>\n
2228
+ \ <div class=\"fluid bar\" style=\"clear:both\">\n <div class=\"fixed-lg
2229
+ container\">\n <div class=\"searchnav\" style=\"width:96%; text-align:center;
2230
+ height:20px\">\n <form id=\"bottom_search_form\" name=\"search_form\" action=\"http://www.hulu.com/search\"
2231
+ method=\"get\" onsubmit=\"if(this.query.value == '') {return false;} getFs('fsb');getSt('stb');
2232
+ if(!$('footer-search-auto-complete').visible()){SearchTracking.trackSearchForm('bottom_search_form')}\">\n
2233
+ \ <input id=\"bottom_video_search_term\" class=\"search\" type=\"text\"
2234
+ \ value=\"\" autocomplete=\"off\" name=\"query\" style=\"margin-right: -3px;\"
2235
+ />\n <a href=\"javascript:void(0)\"><img alt=\"Search\" border=\"0\" class=\"hover-me\"
2236
+ id=\"bottom-nav-search-button\" onclick=\"if($('bottom_search_form').query.value
2237
+ == '') {return false;} getSt('stb');getFs('fsb');SearchTracking.trackSearchForm('bottom_search_form');
2238
+ $('bottom_search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
2239
+ style=\"vertical-align: middle; margin-left: -1px;margin-bottom:2px;\" title=\"Search\"
2240
+ /></a>\n <a class=\"search-footer-link\" href=\"/search/advanced_search\"
2241
+ onclick=\"if (!$('serp-header')) return true; window.scroll(0,0); var el = $('advanced-search');
2242
+ if (!el || !el.visible()) toggleAdvancedSearch(); return false\">Advanced Search</a>\n
2243
+ \ <span class=\"search-footer-spacer\">|</span>\n <a class=\"search-footer-link\"
2244
+ href=\"javascript:void(0)\" onclick=\"installOpenSearch(); return false\" >Search
2245
+ Plugin</a>\n <input type=\"hidden\" name=\"st\" id=\"stb\" />\n <input
2246
+ type=\"hidden\" name=\"fs\" id=\"fsb\" />\n </form>\n </div>\n </div>\n
2247
+ \ </div>\n <script type=\"text/javascript\">//<![CDATA[\n var bottom_search_query_auto_completer
2248
+ = new Ajax.HuluAutocompleter(\n 'bottom_video_search_term',\n 'footer-search-auto-complete',\n
2249
+ \ '/search/suggest_html',\n { onSelected: function() { getFs('fsb');getSt('stb');
2250
+ $('bottom_search_form').submit();},\n method: 'get',\n onSelectNone
2251
+ : function() {getFs('fsb');getSt('stb');$('bottom_search_form').submit(); SearchTracking.trackSearchForm('bottom_search_form');}\n
2252
+ \ }\n );\n //]]></script>\n\n <br style=\"clear:both\" />\n <div
2253
+ class=\"fluid footer\">\n <div class=\"fixed-lg container\">\n <div
2254
+ style=\"width:68%\">\n <div style=\"float:none; margin-bottom: 6px\"></div>\n
2255
+ \ <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/\"
2256
+ class=\"footer-link\">Home</a>\n <a href=\"http://www.hulu.com/tv\"
2257
+ class=\"footer-link\">TV</a>\n <a href=\"http://www.hulu.com/movies\"
2258
+ class=\"footer-link\">Movies</a>\n </div>\n <div class=\"footer-column\">\n
2259
+ \ <a href=\"http://www.hulu.com/genres\" class=\"footer-link\">Genres</a>\n
2260
+ \ <a href=\"http://www.hulu.com/trailers\" class=\"footer-link\">Trailers</a>\n
2261
+ \ <a href=\"http://www.hulu.com/labs\" class=\"footer-link\">Labs</a>\n
2262
+ \ </div>\n <div class=\"footer-column\"> \n <a
2263
+ href=\"http://www.hulu.com/discussions\" class=\"footer-link\">Discussions</a>\n
2264
+ \ <a href=\"/plus/gifting\" class=\"footer-link\">Buy/Redeem Gifts</a>\n
2265
+ \ <a href=\"http://www.hulu.jp\" class=\"footer-link\">Hulu Japan</a>\n
2266
+ \ </div>\n <div class=\"footer-column\" style=\"width:90px;\">\n
2267
+ \ <a href=\"http://www.hulu.com/distribution\" class=\"footer-link\">Distribution</a>\n
2268
+ \ <a href=\"http://www.hulu.com/about/advertising\" class=\"footer-link\">Advertising</a>\n
2269
+ \ <a href=\"http://www.hulu.com/feed\" class=\"footer-link\" style=\"display:inline;\">RSS</a>
2270
+ <a href=\"http://www.hulu.com/feed\"><img alt=\"Hulu RSS Feeds\" border=\"0\"
2271
+ class=\"hover-me\" id=\"rss-footer-link\" src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\"
2272
+ style=\"vertical-align:bottom;display:inline;margin-left:5px;padding-bottom:2px;\"
2273
+ title=\"Hulu RSS Feeds\" /></a>\n </div>\n <script type=\"text/javascript\">\n//<![CDATA[\nBehaviors.updateFooterLinks()\n//]]>\n</script>\n
2274
+ \ </div>\n\n <div style=\"float:right; width: 32%;\">\n <div
2275
+ style=\"float:none; margin-bottom: 6px\"></div>\n <div class=\"footer-column\">\n
2276
+ \ <a href=\"http://www.hulu.com/jobs\" class=\"footer-link\">Jobs</a>\n
2277
+ \ <a href=\"http://www.hulu.com/about\" class=\"footer-link\">About</a>\n
2278
+ \ <a href=\"http://blog.hulu.com\" class=\"footer-link\">Blog</a>\n
2279
+ \ </div>\n <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/help\"
2280
+ class=\"footer-link\">Help</a>\n <a href=\"http://www.hulu.com/about/product_tour\"
2281
+ class=\"footer-link\">Product Tour</a>\n <a href=\"http://www.hulu.com/support/contact\"
2282
+ class=\"footer-link\">Contact Us</a>\n </div>\n </div>\n <div
2283
+ class=\"disclaimer-container\">\n <div style=\"float:right;padding-right:36px;\">Copyright
2284
+ &copy; 2011 Hulu. All rights reserved.</div>\n <div style=\"float:left;\">\n
2285
+ \ Use of this Web site constitutes acceptance of the Hulu <a href=\"http://www.hulu.com/terms\">Terms
2286
+ of Use</a>\n and <a href=\"http://www.hulu.com/privacy\">Privacy
2287
+ Policy</a>.\n </div>\n </div>\n <br style=\"clear:both;\"/><br
2288
+ style=\"clear:both;\"/>\n </div>\n <div class=\"corner-stone\">\n
2289
+ \ <a href=\"/home/cornerstone\">&nbsp;&nbsp;</a>\n </div>\n <div
2290
+ class=\"corner-stone\">\n <a href=\"/home/cornerstone/ew\">&nbsp;&nbsp;</a>\n
2291
+ \ </div>\n </div>\n </div>\n\n <div id=\"video_search_term_suggestion\"
2292
+ style=\"display: none;\"></div>\n <div id=\"video_search_term_suggestion_js\"
2293
+ style=\"display:none;\"></div>\n\n <div id=\"info_hover\" class=\"info_hover_box\"
2294
+ style=\"display:none\">\n <div class=\"pointer\"> </div>\n <div class=\"content\"></div>\n
2295
+ \ <div class=\"gra-top-left\"> </div><div class=\"gra-top-right\"> </div>\n
2296
+ \ <div class=\"gra-bottom-left\"> </div><div class=\"gra-bottom-right\"> </div>\n
2297
+ \ <div class=\"gra-h\"> </div><div class=\"gra-v-left\"> </div><div class=\"gra-v-right\">
2298
+ </div>\n </div>\n \n <div id=\"notes-modal-containter\" style=\"display:none;\">\n
2299
+ \ <div id=\"notes-form-container\" class=\"content\">\n\t <div class=\"item\">\n\t
2300
+ \ <div class=\"input-area\">\n\t <form action=\"/show\" id=\"notes-form\"
2301
+ method=\"post\" onsubmit=\"Note.submit(); return false;; new Ajax.Request('/show',
2302
+ {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return
2303
+ false;\">\n\n\t\t\t\n\t\t\t <span id=\"note-user-name\" style=\"font-size: 14px;
2304
+ font-weight: bold;\"></span>\n\n\t <input id=\"notes-form-user-id\"
2305
+ type=\"hidden\" value=\"\" name=\"note[user_id]\"/>\n\t <textarea name=\"note[body]\"
2306
+ id=\"notes-form-body\" class=\"form-body\"></textarea>\n\n\t\t\t<div>\n\t\t\t\t<span
2307
+ style=\"float: right\">\n\t\t \t <img alt=\"\" border=\"0\" class=\"hover-me\"
2308
+ id=\"notes-form-cancel\" onclick=\"ModalPopup.hide()\" src=\"http://static.huluim.com/images/btn-cancel-65w.gif?1106460533\"
2309
+ title=\"Cancel\" />\n\n\t\t\t <input alt=\"\" border=\"0\" class=\"hover-me\"
2310
+ id=\"notes-form-submit\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show(this);
2311
+ return false; }\" src=\"http://static.huluim.com/images/btn-send-small.gif?1116262920\"
2312
+ title=\"Send\" type=\"image\" />\n\t\t\t\t</span>\n\t\t\t\n\t\t <div
2313
+ id=\"notes-form-loading\" class=\"loading\" style=\"display: none;\">\n\t\t
2314
+ \ <img alt=\"\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2315
+ style=\"vertical-align:middle;padding-top:2px;\" width=\"16\" />\n\t\t </div>\n\t\t
2316
+ \ <div id=\"notes-error-container\" style=\"display: none;\">\n\t\t <div
2317
+ class=\"notes-error-image\"><img alt=\"\" src=\"http://static.huluim.com/images/icon-warning.gif?1282174508\"
2318
+ /></div>\n\t\t <div id=\"notes-form-errors\"></div>\n\t\t <br
2319
+ style=\"clear:both;\"/>\n\t\t </div>\n\t\t\t </div>\n\t\t</form>\n\t
2320
+ \ </div>\n\t <br style=\"clear: both;\"/>\n\t </div>\n\t</div>\n</div>\n\n
2321
+ \ \n\n <div id=\"friends_for_video_popup\" style=\"display:none\">\n </div>\n\n
2322
+ \ <div id=\"super_plus\" class=\"info_hover_box\" style=\"display:none\">\n
2323
+ \ <div class=\"content\">\n <div class=\"menu-initial\">\n <ul>\n
2324
+ \ <li id='sp-add-to-queue' onclick=\"SuperPlus.Actions.addToQueue()\">Add
2325
+ to queue</li>\n <li onclick=\"SuperPlus.Actions.addToPlaylist()\">Add
2326
+ to playlist&nbsp;&nbsp;&gt;</li>\n </ul>\n </div>\n <div class=\"menu-loading\">\n
2327
+ \ <img alt=\"\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
2328
+ />\n </div>\n <div class=\"menu-playlist relative\">\n <div
2329
+ class=\"subsection header\">Add to Playlist</div>\n <div class=\"subsection
2330
+ playlists\">\n <div></div>\n </div>\n <div class=\"subsection
2331
+ bottom\">\n <img alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-create-new-playlist.gif132225585249589\"
2332
+ onclick=\"SuperPlus.showCreatePlaylist();\" src=\"http://static.huluim.com/images/btn-create-new-playlist.gif?1110603016\"
2333
+ />\n </div>\n <div class='playlist-add-error' style=\"display:none;\">\n
2334
+ \ <div class='playlist-add-error-content'></div>\n </div>\n </div>\n
2335
+ \ <div class=\"menu-complete\">Added</div>\n </div>\n\n <div class=\"gra-top-left\">
2336
+ </div><div class=\"gra-top-right\"> </div>\n <div class=\"gra-bottom-left\">
2337
+ </div><div class=\"gra-bottom-right\"> </div>\n <div class=\"gra-h\"> </div><div
2338
+ class=\"gra-v-left\"> </div><div class=\"gra-v-right\"> </div>\n <div class=\"gra-plus\">
2339
+ </div><div class=\"gra-plus-corner\"> </div>\n\n <div class=\"border-cover\"
2340
+ style=\"\"> </div>\n </div>\n\n <div id='super-plus-create-form' style=\"display:none;\">\n
2341
+ \ <div class=\"content super-plus-create-form\">\n <form onsubmit=\"return
2342
+ false;\" autocomplete=\"off\">\n <h2 class=\"cufonable\">Create New Playlist</h2>\n
2343
+ \ <table id='playlist-create-table'>\n <tr>\n <td
2344
+ class='col1'>\n Playlist Name\n </td>\n <td
2345
+ class='col2'>\n Privacy Setting\n </td>\n </tr>\n
2346
+ \ <tr>\n <td class='col1'><input type=\"text\" name=\"name\"
2347
+ class='pl-name' /></td>\n <td class='col2'>\n <div class=\"cbx\"
2348
+ id=\"privacy_level\"><div class=\"cbx-choice\">Private</div><input autocomplete=\"off\"
2349
+ id=\"privacy_level\" name=\"privacy_level\" type=\"hidden\" value=\"1\" /><div
2350
+ class=\"cbx-options\" style=\"display: none;\"><ul><li value=\"0\">Public</li><li
2351
+ class=\"selected\" value=\"1\">Private</li></ul></div></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
2352
+ privacy_level = new ComboBox(\"privacy_level\", {\"onchange\":\"\"});\n//]]>\n</script>\n
2353
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2354
+ class='col1-2'>\n <div style=\"height: 20px;min-height: 20px;\">\n
2355
+ \ <div class='playlist-create-error'> </div>\n </div>\n
2356
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2357
+ class='col1-2'>\n Description<br/>\n <textarea name=\"description\"></textarea>\n
2358
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2359
+ class='col1-2'>\n <div class='submit'>\n <img alt=\"\"
2360
+ id=\"playlist-create-loading\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2361
+ style=\"position: relative; top: -2px; left: -2px; display:none;\" title=\"\"
2362
+ />\n <input alt=\"\" border=\"0\" class=\"hover-me\" id=\"create-new-playlist-submit\"
2363
+ src=\"http://static.huluim.com/images/btn-create-and-add.gif?1063828135\" type=\"image\"
2364
+ />\n </div>\n </td>\n </tr>\n </table>\n
2365
+ \ <div class='playlist-create-success' style='display: none;'>\n <ul
2366
+ id='playlist-create-success-text'>\n </ul>\n <img alt=\"\"
2367
+ border=\"0\" class=\"hover-me\" id=\"btn-done.gif13222558524975\" onclick=\"FloatingDiv.hide();\"
2368
+ src=\"http://static.huluim.com/images/btn-done.gif?1023849742\" />\n </div>\n
2369
+ \ </form>\n </div>\n </div>\n \n <script type=\"text/javascript\">\n//<![CDATA[\nCufon.now();
2370
+ document.charset = 'utf-8';\n//]]>\n</script>\n\n \n <script type=\"text/javascript\">\n//<![CDATA[\noverrideDocumentWrite();\n//]]>\n</script>\n
2371
+ \ \n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/\n getSt();\n
2372
+ \ TrackingSystem.initializeTrackingSystem(\n function(){\n if(!TrackingSystem.searchTrackingSystem(\"SERPTrackingSystem\")){\n
2373
+ \ var trackingSystem = new TrackingSystem(\"SERPTrackingSystem\", SERPTracking.SERPTrackingSystemCallBackFunctions);\n
2374
+ \ }\n }\n );\n \n /*]]>*/</script>\n\n \n <div id='third-party-js-delay-load-id'>\n
2375
+ \ <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\"
2376
+ alt=\"\" /></noscript>\n </div>\n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/
2377
+ \ \n document.observe(\"dom:loaded\", function() {\n Comscore.update({\"c5\":\"shows\",\"c1\":\"2\",\"c15\":\"\",\"c2\":\"3000007\",\"c3\":\"3000007\",\"baseURL\":\"http://beacon.scorecardresearch.com/scripts/beacon.dll\",\"c4\":\"hulu.com/show\"});\n
2378
+ \ Comscore.track();\n\n switch (Math.floor(Math.random()*4))
2379
+ {\n case 0:\n <!-- ComScore -->\n //delayedInclude(\"http://ar.voicefive.com/bmx3/node_hulu.pli\");\n
2380
+ \ break;\n case 1:\n <!-- DL -->\n delayedInclude(\"http://content.dl-rms.com/rms/20887/nodetag.js\");\n
2381
+ \ break;\n case 2:\n <!-- Insight Express
2382
+ -->\n delayedInclude(\"http://icompass.insightexpressai.com/836.js\",\n
2383
+ \ function() { \n if (typeof(window.InsightExpress)
2384
+ != \"undefined\") { window.InsightExpress.startIntercept(); }\n });\n
2385
+ \ break;\n default:\n break;\n }\n\n
2386
+ \ });\n /*]]>*/</script>\n \n</body>\n</html>\n\n"
2387
+ http_version: '1.1'