hulu-show 0.3.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,2 @@
1
+ rvm:
2
+ - 1.9.3
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # hulu-show
2
2
 
3
- Hulu::Show fetches all episodes for the current season of a specified show.
3
+ [![Build Status](https://secure.travis-ci.org/CraigWilliams/hulu-show.png)](http://travis-ci.org/CraigWilliams/hulu-show)
4
+
5
+ Hulu::Show fetches all episodes for the current season of the specified show.
4
6
 
5
7
  ## Show attributes:
6
8
 
@@ -26,24 +28,24 @@ Hulu::Show fetches all episodes for the current season of a specified show.
26
28
 
27
29
  ## Usage
28
30
 
29
- `gem install hulu-show`
31
+ ```gem install hulu-show```
30
32
 
31
- `require 'hulu/show'`
33
+ ```require 'hulu/show'```
32
34
 
33
- `burn_notice = Hulu::Show.new('Burn Notice')`
35
+ ```burn_notice = Hulu::Show.new('Burn Notice')```
34
36
 
35
37
  #<Hulu::Show:0x007f972a04f740 @title="Burn Notice", @episodes=[#<Hulu::Episode:0x007f972a02c7b8 @episode="13", @title="Damned If You Do", @url="http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do?c=Action-and-Adventure#x-4,cEpisodes,1,0", @beaconid="296648", @running_time="43:09", @air_date="11/03/2011", @embed_html="<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>", @thumbnail_url="http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg">], @doc=nil, @errors=[], @network="USA", @genre="Action and Adventure", @description="A \"burned\" spy returns to Miami where he uses his special ops training to help those in need, and bring justice against the men who wrongly burned him.", @url="http://www.hulu.com/burn-notice">
36
38
 
37
39
  ## Retrieve show episodes
38
40
 
39
- `burn_notice.episodes`
40
-
41
- [#<Hulu::Episode:0x007f961a02be00 @episode="13", @title="Damned If You Do", @url="http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do?c=Action-and-Adventure#x-4,cEpisodes,1,0", @beaconid="296648", @running_time="43:09", @air_date="11/03/2011", @embed_html="<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>", @thumbnail_url="http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg">]
41
+ ```burn_notice.episodes
42
42
 
43
+ [#<Hulu::Episode:0x007f961a02be00 @episode="13", @title="Damned If You Do", @url="http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do?c=Action-and-Adventure#x-4,cEpisodes,1,0", @beaconid="296648", @running_time="43:09", @air_date="11/03/2011", @embed_html="<object width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\"></param><param name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/c96sZQru3w567PP7t3cGZQ\" type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>", @thumbnail_url="http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg">]
44
+ ```
43
45
 
44
46
  ## Retrieve multiple shows with their episodes at one time.
45
47
 
46
- `Hulu.shows(['Burn Notice', 'Warehouse 13'])`
48
+ ```Hulu.shows(['Burn Notice', 'Warehouse 13'])```
47
49
 
48
50
 
49
51
  Copyright (c) 2011 Craig Williams. See LICENSE.txt for
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.4.0
data/hulu-show.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "hulu-show"
8
- s.version = "0.3.2"
8
+ s.version = "0.4.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Craig Williams"]
12
- s.date = "2011-11-27"
12
+ s.date = "2011-12-10"
13
13
  s.description = "Really, that is about it. For each show, Hulu::Show will return an array of Episode objects with details about the episode."
14
14
  s.email = "cwilliams.allancraig@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
20
20
  ".document",
21
21
  ".rspec",
22
22
  ".rvmrc",
23
+ ".travis.yml",
23
24
  "Gemfile",
24
25
  "Gemfile.lock",
25
26
  "LICENSE.txt",
@@ -38,6 +39,7 @@ Gem::Specification.new do |s|
38
39
  "spec/spec_helper.rb",
39
40
  "spec/support/vcr_cassettes/additional_attributes.yml",
40
41
  "spec/support/vcr_cassettes/burn_notice.yml",
42
+ "spec/support/vcr_cassettes/description.yml",
41
43
  "spec/support/vcr_cassettes/law_and_order_special_victims_unit.yml",
42
44
  "spec/support/vcr_cassettes/non_existent_show.yml",
43
45
  "spec/support/vcr_cassettes/special_victims_unit.yml",
data/lib/hulu/show.rb CHANGED
@@ -18,7 +18,7 @@ class Hulu::Show < Hulu::Base
18
18
  @doc = Hulu.query(@title)
19
19
  @errors = []
20
20
 
21
- if error_404
21
+ if error_404?
22
22
  @errors << "404: Show not found"
23
23
  return
24
24
  end
@@ -34,7 +34,7 @@ class Hulu::Show < Hulu::Base
34
34
  @url = "#{Hulu::BASE_URI}/#{Hulu::Base.prepare_name(@title)}"
35
35
  end
36
36
 
37
- def error_404
37
+ def error_404?
38
38
  error = @doc.css('.fixed-lg .section .gr').text.strip
39
39
  error =~ /404/ ? true : false
40
40
  end
@@ -53,9 +53,11 @@ class Hulu::Show < Hulu::Base
53
53
  # There are several tables under the show-expander
54
54
  # we are only interested in the first
55
55
  break if i > 0
56
+ season = episode.css('tr.srh td').first.text.strip rescue ''
57
+
56
58
  episode.css('tr.r').each do |episode_info|
57
- @episodes << Hulu::Episode.new do |epi|
58
- epi.process(episode_info)
59
+ @episodes << Hulu::Episode.new(@title) do |epi|
60
+ epi.process(season, episode_info)
59
61
  end
60
62
  end
61
63
  end
@@ -7,25 +7,41 @@ class Hulu::Episode < Hulu::Base
7
7
  :url,
8
8
  :beaconid,
9
9
  :thumbnail_url,
10
- :embed_html
10
+ :embed_html,
11
+ :description,
12
+ :show_title
13
+
14
+ def initialize(show_title = '')
15
+ self.show_title = show_title
11
16
 
12
- def initialize
13
17
  yield self if block_given?
14
18
 
15
19
  set_additional_attributes
16
20
  end
17
21
 
18
22
  def set_additional_attributes
19
- info = additional_attributes
23
+ info = additional_attributes
20
24
  @embed_html = info['html']
21
25
  @thumbnail_url = info['thumbnail_url']
22
26
 
23
- if @air_date.empty?
27
+ if @air_date && @air_date.empty?
24
28
  @air_date = Date.parse(info['air_date']).strftime("%m-%d-%Y")
25
29
  end
26
30
  end
27
31
 
28
- def process(episode)
32
+ def fetch_description
33
+ show_name = Hulu::Base.prepare_name(@show_title)
34
+ title = Hulu::Base.prepare_name(@title)
35
+ url = "http://www.hulu.com/watch/#{@beaconid}/#{show_name}-#{title}"
36
+ info = Hulu::Fetcher::Page.get(url).parsed_response
37
+
38
+ d = info.css('#description-contents').text.strip rescue ''
39
+
40
+ @description = d.split('Hide Description').first if d
41
+ end
42
+
43
+ def process(season, episode)
44
+ @season = season.scan(/\d+/).first
29
45
  @episode = episode.css('td.c0').text.strip rescue ''
30
46
  @title = episode.css('td.c1 a').text.strip rescue ''
31
47
  @url = episode.css('td.c1 .vex-h a').last.attr('href').strip rescue ''
@@ -53,6 +69,7 @@ class Hulu::Episode < Hulu::Base
53
69
 
54
70
  def to_param
55
71
  {
72
+ show_title: show_title,
56
73
  title: title,
57
74
  episode: episode,
58
75
  running_time: running_time,
@@ -61,7 +78,8 @@ class Hulu::Episode < Hulu::Base
61
78
  url: url,
62
79
  beaconid: beaconid,
63
80
  thumbnail_url: thumbnail_url,
64
- embed_html: embed_html
81
+ embed_html: embed_html,
82
+ description: description
65
83
  }
66
84
  end
67
85
  end
@@ -2,17 +2,38 @@ require 'spec_helper'
2
2
 
3
3
  describe Hulu::Episode do
4
4
 
5
+ context "Additional Attributes" do
6
+
5
7
  before { VCR.insert_cassette('additional_attributes') }
6
8
  after { VCR.eject_cassette }
7
-
9
+
8
10
  it "episode can fetch additional attributes" do
9
- episode = Hulu::Episode.new do |episode|
11
+ episode = Hulu::Episode.new('Burn Notice') do |episode|
10
12
  episode.beaconid = '296648'
11
- episode.title = 'Damned If You Do'
13
+ episode.title = 'Damned If You Do'
12
14
  episode.additional_attributes
13
15
  end
14
16
 
15
17
  episode.thumbnail_url.should == "http://thumbnails.hulu.com/8/60000008/60000008_145x80_generated.jpg"
16
18
  episode.embed_html.should_not be_nil
17
19
  end
20
+
21
+ end
22
+
23
+ context "#fetch_description" do
24
+
25
+ before { VCR.insert_cassette('description') }
26
+ after { VCR.eject_cassette }
27
+
28
+ it "fetches the show description" do
29
+ episode = Hulu::Episode.new('Bones') do |episode|
30
+ episode.beaconid = '308569'
31
+ episode.title = 'The Twist in the Twister'
32
+
33
+ episode.fetch_description
34
+ end
35
+
36
+ episode.description.should == 'A storm chaser gets caught in a deadly twister.'
37
+ end
38
+ end
18
39
  end
@@ -66,6 +66,7 @@ describe Hulu::Show do
66
66
  episode.title.should == 'Burn baby burn'
67
67
  episode.running_time.should == '43:09'
68
68
  episode.air_date.should == '11/03/2011'
69
+ episode.season.should == '5'
69
70
  episode.episode.should == '13'
70
71
  episode.url.should == "http://www.hulu.com/watch/296648/burn-notice-damned-if-you-do#x-4,cEpisodes,1,0"
71
72
  episode.beaconid.should == '296648'
@@ -108,6 +109,7 @@ describe Hulu::Show do
108
109
  episode.running_time.should == '42:14'
109
110
  episode.air_date.should == '11/21/2011'
110
111
  episode.episode.should == '8'
112
+ episode.season.should == '1'
111
113
  episode.url.should == "http://www.hulu.com/watch/302363/terra-nova-vs#x-0,vepisode,1,0"
112
114
  end
113
115
  end
@@ -129,6 +131,7 @@ describe Hulu::Show do
129
131
  episode.running_time.should == '44:04'
130
132
  episode.air_date.should == '11/16/2011'
131
133
  episode.episode.should == '8'
134
+ episode.season.should == '13'
132
135
  episode.url.should == "http://www.hulu.com/watch/300844/law-and-order-special-victims-unit-educated-guess#x-0,vepisode,1,0"
133
136
  end
134
137
  end
@@ -0,0 +1,2305 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://www.hulu.com:80/watch/308569/bones-the-twist-in-the-twister
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-varnish-cache-redirects:
20
+ - 'true'
21
+ x-ua-compatible:
22
+ - IE=EmulateIE9; IE=EmulateIE7
23
+ expires:
24
+ - Sat, 10 Dec 2011 18:16:31 GMT
25
+ cache-control:
26
+ - max-age=0, no-cache, no-store
27
+ pragma:
28
+ - no-cache
29
+ date:
30
+ - Sat, 10 Dec 2011 18:16:31 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>Hulu -
39
+ Bones: The Twist in the Twister - Watch the full episode now.</title>\n \n
40
+ \ <link rel=\"search\" 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=\"video_width\"
48
+ content=\"512\"/><meta name=\"video:series\" content=\"http://www.hulu.com/bones\"/><meta
49
+ name=\"description\" content=\"Video description: A storm chaser gets caught
50
+ in a deadly twister.\"/><meta name=\"video_height\" content=\"296\"/><meta name=\"keywords\"
51
+ content=\"bones, the twist in the twister, season 7\"/><meta name=\"video_type\"
52
+ content=\"application/x-shockwave-flash\"/><link rel=\"media:video\" href=\"http://www.hulu.com/embed/MARta6hueNP5OWbSC757mA\"
53
+ /><link rel=\"media:thumbnail\" href=\"http://thumbnails.huluim.com/259/60012259/60012259_145x80_generated.jpg\"
54
+ /><link rel=\"image_src\" href=\"http://thumbnails.huluim.com/259/60012259/60012259_145x80_generated.jpg\"
55
+ />\n \n <meta property=\"fb:app_id\" content=\"40582213222\"/>\n\n <script
56
+ type=\"text/javascript\">\n//<![CDATA[\n\n var READ_ONLY = false;\n var
57
+ RAILS_ENV = \"production\";\n \n//]]>\n</script>\n\n <link href=\"http://static.huluim.com/system/hulu_bf822c0c_1.css\"
58
+ media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n<link href=\"http://static.huluim.com/system/hulu_bf822c0c_2.css\"
59
+ media=\"screen\" rel=\"Stylesheet\" type=\"text/css\" />\n <script src=\"http://static.huluim.com/system/hulu_8ca23d9f_base_1.js\"
60
+ type=\"text/javascript\"></script>\n<script src=\"http://static.huluim.com/system/hulu_bf822c0c_1.js\"
61
+ type=\"text/javascript\"></script>\n\n <link class=\"mbf-only\" href=\"http://www.hulu.com/feed/recent/tv\"
62
+ rel=\"alternate\" title=\"Recently added tv (RSS)\" type=\"application/rss+xml\"
63
+ />\n <link rel=\"home\" href=\"http://www.hulu.com\" />\n\n \n\n \n <meta
64
+ property=\"og:title\" content=\"Bones: The Twist in the Twister\"/>\n <meta
65
+ property=\"og:type\" content=\"video.episode\"/>\n <meta property=\"og:image\"
66
+ content=\"http://thumbnails.huluim.com/259/60012259/60012259_145x80_generated.jpg\"/>\n
67
+ \ <meta property=\"og:site_name\" content=\"Hulu\"/>\n <meta property=\"og:description\"
68
+ content=\"A storm chaser gets caught in a deadly twister.\"/>\n \n <meta
69
+ property=\"og:video\" content=\"http://apps.facebook.com/huluapp/watch/308569?c=0:0\"/>\n
70
+ \ <meta property=\"og:url\" content=\"http://apps.facebook.com/huluapp/watch/308569?c=0:0\"/>\n
71
+ \ <meta property=\"og:video:type\" content=\"text/html\"/>\n \n <script
72
+ type=\"text/javascript\">Share.activity_data = {\"item_id\":308569,\"item_type\":\"video\"}</script>\n
73
+ \ <style type=\"text/css\" media=\"screen\">/*<![CDATA[*/\n #layer2 { z-index:
74
+ -1 !important; }\n #player-div-3, #player-div-2,\n #player-div-1 { width:100%;
75
+ text-align: center; }\n #banner-ad { border:none; }\n .details-spacer
76
+ { padding-left:10px;padding-right:10px; color:#484848;}\n #review-rating-container
77
+ { padding-right:5px; }\n div.login-form form { display: inline; }\n #review-rating-container
78
+ img { vertical-align:top; padding-top:5px; *padding-top:3px;}\n .pagination-loading
79
+ { padding-top:0;margin-top:0; }\n /* move the seasons filter over a tad since
80
+ \"More from this show\" is kind of long */\n .show-title a, .show-title {
81
+ font-size: 14px; }\n #player-container { text-align: center; }\n #player-min-height
82
+ {\n min-height: 425px;\n height: auto !important;\n height: 425px;\n
83
+ \ }\n \n #description-container-shell {\n height: 145px;\n background-color:
84
+ #FFF;\n }\n #description-content {\n height: 145px;\n }\n\n .title-bar-container
85
+ { min-height:145px;height:auto !important;height:145px;} \n .tune-in-text,
86
+ .copyright-text {font-size:11px;color:#BBB;} \n\n ul.tab-container li.tab-subscription
87
+ {\n padding-right: 10px;\n }\n\n div.subscription-links {\n position:
88
+ relative;\n }\n\n div.subscription-links div {\n margin-top: 10px;\n
89
+ \ text-align: right;\n position: relative;\n top: 20px ;\n z-index
90
+ : 1 ;\n }\n\n div.subscription-links span img.subscribe-image {\n margin-right:
91
+ 3px;\n }\n\n div.subscription-links span {\n margin-left: 8px;\n
92
+ \ color:#666;\n }\n\n div.vsl-trailer {\n height: auto !important;\n
93
+ \ min-height: 150px ;\n }\n \n div.vr-high { position: relative;
94
+ }\n div.vr-high div.vslnav div.vr {\n position: absolute;\n right:
95
+ 0px;\n top: 0px;\n z-index: 12;\n }\n div.vr-high div.vsltitle
96
+ { margin-bottom: 13px; }\n \n div.hidden-desc { display: none; }\n /*]]>*/</style>\n\n
97
+ \ \n <meta http-equiv=\"expires\" content=\"Sat, 23 Jun 2012 06:45:00 GMT\"
98
+ />\n \n\n <script type=\"text/javascript\">/*<![CDATA[*/\n current_video_cid
99
+ = \"e610922c2e78756cdaa4e5b1657c3c9f\";\n Behaviors.givlgivlgivl = 1684788324;\n
100
+ \ Behaviors.is_plus_only_video = true;\n Behaviors.is_video_previewable
101
+ = true\n Behaviors.is_auth_video = true\n \n\n function toggleDescription()
102
+ {\n if($('description-contents').style.display == \"none\") {\n $('description-switch').hide();\n
103
+ \ $('description-contents').show();\n } else {\n $('description-switch').show();\n
104
+ \ $('description-contents').hide(); \n }\n\n return false;\n
105
+ \ }\n\n Tag.Taggable = {\n id : 308569,\n type : \"Video\"\n
106
+ \ }\n var url_for_tagged_tags = \"/taggings/user_taggings?\" +\n \"taggable_id=308569&\"
107
+ +\n \"taggable_type=Video&\" + \n \"show_id=10\" ;\n var LoggedIn
108
+ = null;\n function setLoggedOut(){\n try{\n $('recommend-login-prompt').innerHTML
109
+ = \"<a href=\\\"#\\\" onclick=\\\"FloatingLoginForm.showTop(this.up()); return
110
+ false;\\\">Log in</a>\" + \" for personalized recommendations. \" +\n \"Don't
111
+ have an account? \" + \"<a href=\\\"/signup\\\">Sign up</a>\" + \" now.\";\n
112
+ \ if ( LoggedIn != false) {\n var obj_css_id = $('related-container').down('.vsl').identify();\n
113
+ \ var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n if(obj
114
+ && !obj.is_first_load) {\n obj._rTracking = new RecommendTracking();\n
115
+ \ obj.repopulate();\n }\n LoggedIn = false;\n }\n
116
+ \ Tag.ClearTagged() ;\n return;\n }catch(ex){\n return;\n
117
+ \ }\n }\n function setLoggedIn(){\n try {\n $('recommend-login-prompt').innerHTML
118
+ = \"Click here to \" +\n \"<a href=\\\"/recommendations?check_out_show=10\\\">see
119
+ all recommendations</a>\" + \n \". \" + \n \"If you are not
120
+ \" + \n Behaviors.getUsername().escapeHTML() + \", \" + \"<a href=\\\"#\\\"
121
+ onclick=\\\"new Ajax.Request('/logout', {asynchronous:true, evalScripts:true,
122
+ onComplete:function(request){Behaviors.setLoggedOut(true)}}); return false;\\\">click
123
+ here</a>\" + \".\" ;\n if (LoggedIn != true) {\n var obj_css_id
124
+ = $('related-container').down('.vsl').identify();\n var obj = VideoSlider.SLIDER_OBJECTS.get(obj_css_id);\n
125
+ \ if(obj && !obj.is_first_load) {\n obj._rTracking = new
126
+ RecommendTracking();\n obj.repopulate();\n }\n LoggedIn
127
+ = true;\n }\n Tag.LoadTagged(url_for_tagged_tags) ;\n return;\n
128
+ \ }catch(ex){\n return;\n }\n } \n\n if (top.location
129
+ != location) {\n top.location.href = document.location.href;\n }\n var
130
+ playerVersion = \"KQVCnD4zLl3zQJeis9oC3gd7dEI\";\n\n \n var cb = window.location.href.toQueryParams()[\"lpcb\"];\n
131
+ \ cb = cb ? \"?cb=\" + cb : \"\";\n \n \n var path = \"/site-player/load_player.js\"
132
+ + cb;\n \n document.write(\"<script src='\" + path + \"'></scr\" + \"ipt>\");\n
133
+ \ /*]]>*/</script>\n\n\n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/\n
134
+ \ if (typeof(TestGTM) != \"undefined\") TestGTM.run();\n \n //initialize
135
+ beacons\n Beacon.production = true;\n //Beacon.region_prefix = ;\n\n document.observe(\"dom:loaded\",
136
+ function() {\n if (/\\.facebook\\.com/.test(top.location.hostname)) return;\n
137
+ \ if (top.location != location) {\n top.location.href = document.location.href;\n
138
+ \ }\n });\n \n document.observe(\"dom:loaded\", function() {\n
139
+ \ Beacon.trackPageLoad(); //fire the page load beacon\n Beacon.init();
140
+ //we can get rid of this once we rewrite the beacons\n });\n\n function
141
+ setFs(value){\n TrackingUtility.setCookie(\"fs\", value, -1);\n }\n
142
+ \ function getFs(key){\n var fs = $(key);\n if (fs) {\n fs.value
143
+ = TrackingUtility.getCookie(\"fs\");\n }\n }\n function getSt(key){\n
144
+ \ var st = $(key);\n if (st){\n if (Math.random() < 0.2){\n
145
+ \ st.value = 1;\n } else {\n st.value = 0;\n }\n
146
+ \ }\n }\n\n \n\n var ie9 = new PinnedSite();\n (function()
147
+ {\n var loader = function() {\n Behaviors.getCramSwf(); //pre-load
148
+ the cram swf\n ie9.SetupGA();\n MobileDevice.onLoad();\n Behaviors.onLoad();\n
149
+ \ Behaviors.setLoggedIn();\n Login.setup();\n ie9.Initialize();\n
150
+ \ Tracking.track_ga_event_from_cram();\n BookmarkTracking.trackFromCram()
151
+ ;\n };\n\n if (MobileDevice.flags.useWindowLoad) {\n Event.observe(window,
152
+ \"load\", loader);\n }\n else {\n document.observe(\"dom:loaded\",
153
+ loader);\n }\n\n Event.observe(document, \"fb:init\", function() {\n
154
+ \ Social.Facebook.onFBinit();\n });\n })();\n Login.auth
155
+ = function(login, password, stay_logged_in, from) { if (Prototype.Browser.IE
156
+ && from != 'facebook-popup') { /* Sorry, IE users... */ Login.heavyFormAuth(login,
157
+ password, stay_logged_in, \"https://secure.hulu.com/account/authenticate\");
158
+ return; } document.cookie = 'login=' + encodeURIComponent(login) + '; path=/account/authenticate;
159
+ secure; domain=.hulu.com'; document.cookie = 'password=' + encodeURIComponent(password)
160
+ + '; path=/account/authenticate; secure; domain=.hulu.com'; if (stay_logged_in)
161
+ document.cookie = 'sli=1; path=/account/authenticate; secure; domain=.hulu.com';
162
+ else document.cookie = 'sli=0; path=/account/authenticate; secure; domain=.hulu.com';
163
+ el = $$('body').first(); if (el) { var script = document.createElement('script');
164
+ script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
165
+ + '?' + parseInt(Math.random() * 1000000000); if (typeof(from) != 'undefined')
166
+ { script.src += \"&from=\" + encodeURIComponent(from); } el.appendChild(script);
167
+ } }; Social.Facebook.submitSettings = function(options) { document.cookie =
168
+ 'fb_passwd=' + encodeURIComponent(options.password) + '; ; secure; domain=.hulu.com;
169
+ path=/social;'; document.cookie = 'fb_passwd_c=' + encodeURIComponent(options.confirm_password)
170
+ + '; ; secure; domain=.hulu.com; path=/social;'; Behaviors.setSecureFBCookie(\"secure.hulu.com\");
171
+ var el = $$('body').first(); if (el) { var url = \"https://secure.hulu.com/social/facebook_new_account\";
172
+ var connect_canvas_only_url = \"https://secure.hulu.com/social/convert_canvas_only_user\";
173
+ if (options.action == 'connect_canvas') { url = connect_canvas_only_url; } url
174
+ += '?fuid=' + encodeURIComponent(options.fuid) + '&cb=' + (new Date).getTime();
175
+ if (options.email) { url += \"&email=\" + encodeURIComponent(options.email);
176
+ } if (options.gender) { url += \"&gender=\" + encodeURIComponent(options.gender);
177
+ } if (options.birth_date) { url += \"&birth_date=\" + encodeURIComponent(options.birth_date);
178
+ } if (options.privacy_level) { url += \"&privacy_level=\" + encodeURIComponent(options.privacy_level);
179
+ } var script = document.createElement('script'); script.type = 'text/javascript';
180
+ script.src = url; el.appendChild(script); } }; Login.accept_privacy = function()
181
+ { el = $$('body').first(); if (el) { var script = document.createElement('script');
182
+ script.type = 'text/javascript'; script.src = \"https://secure.hulu.com/account/authenticate\"
183
+ + '?privacy_acceptance=1&' + parseInt(Math.random() * 1000000000); el.appendChild(script);
184
+ } };\n /*]]>*/</script>\n \n <!--[if IE]>\n <script type=\"text/javascript\"
185
+ event=\"FSCommand(command,args)\" for=\"vcs\">\n vcs_DoFSCommand(command,
186
+ args);\n </script>\n <![endif]-->\n \n <script src=\"http://www.google-analytics.com/ga.js\"
187
+ type=\"text/javascript\"></script><script type=\"text/javascript\">\n//<![CDATA[\n
188
+ var _pt = (function(gat) { if (typeof(gat) == \"undefined\" || !gat) return
189
+ null; var pt = gat._getTracker(\"UA-1384159-3\"); pt._setDomainName(\".hulu.com\");
190
+ pt._setAllowHash(false); var seg_status = Behaviors.isLoggedIn() ? (Behaviors.isPlusUser()
191
+ ? \"plus\" : \"loggedin\") : \"anonymous\"; var removePrefix = /^.*\\.(.*)/.exec(Behaviors.getCookie(\"__utmv\"));
192
+ if (removePrefix && removePrefix[1]) { if (removePrefix[1] != seg_status) {
193
+ pt._setVar(seg_status); } } else { pt._setVar(seg_status); } if (/^\\/plus\\/signup/.test(window.location.pathname))
194
+ { pt._trackPageview(\"/plus/signup\"); } else { pt._trackPageview(); } pt._trackPageLoadTime();
195
+ return pt; })(_gat); \n//]]>\n</script>\n</head>\n\n<body class=\"center\">\n
196
+ \ \n <div id=\"fb-root\"></div>\n <script type=\"text/javascript\">//<![CDATA[\n
197
+ \ window.fbAsyncInit = function() {\n FB.init({appId: '40582213222',
198
+ status: true, cookie: true, xfbml: true, channelUrl: \"http://www.hulu.com/fb_channel.html\",
199
+ oauth: true});\n if (Social.Common.fbDefined()) {\n FB.Event.subscribe('auth.login',
200
+ function(response) {\n Social.Facebook.loginCallback(response);\n
201
+ \ });\n FB.Event.subscribe('auth.logout', function(response)
202
+ {\n Social.Facebook.logoutCallback(response);\n });\n
203
+ \ }\n // call the api to parse XFBML tags again to avoid browser
204
+ specific issue (Firefox 3.5.5 on Mac reported by Betina)\n FB.XFBML.parse();\n
205
+ \ \n FB.Event.subscribe('edge.create', function(response) {\n
206
+ \ Behaviors.onFBLiked(response);\n });\n document.fire(\"fb:init\");\n
207
+ \ };\n\n function facebook_init() {\n // Sorry IE: http://bugs.developers.facebook.net/show_bug.cgi?id=9777\n
208
+ \ if (!Behaviors.isFlashEnabled() && Prototype.Browser.IE) return;\n\n
209
+ \ var e = document.createElement('script');\n e.async = true;\n
210
+ \ e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';\n
211
+ \ document.getElementById('fb-root').appendChild(e);\n };\n\n
212
+ \ Event.observe(window, \"load\", facebook_init); \n //]]></script>\n
213
+ \ \n <!--[if lte IE 6]> \n<div id=\"no-ie6\" class=\"relative container\"
214
+ style=\"text-align: left; height: 40px; background-color: #CFCFCF; display:none;\">\n
215
+ \ <div style=\"font-size: 14px; padding: 12px 0 8px 0;\" class=\"container
216
+ fixed-lg\">\n <img alt=\"Icon-ie6-close\" src=\"http://static.huluim.com/images/icon-ie6-close.png?1007151874\"
217
+ style=\"margin-left: 86px; vertical-align: middle;\" />\n <span style=\"margin-left:
218
+ 20px; vertical-align: middle;\">\n Internet Explorer 6.0 is no longer
219
+ a supported browser. Please click <a href=\"http://www.hulu.com/support\">here</a>
220
+ for our system requirements.\n </span>\n <span style=\"margin-left:
221
+ 20px;\">\n <a alt=\"Close this notice\" href=\"#\" onclick=\"Behaviors.hideIE6();;
222
+ return false;\"><img alt=\"Close this notice\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
223
+ style=\"vertical-align: middle;\" /></a>\n </span>\n </div>\n</div>\n\n<script
224
+ type=\"text/javascript\">\n//<![CDATA[\nBehaviors.showIE6();\n//]]>\n</script>\n<![endif]-->\n\n
225
+ \ <div class=\"relative container plus-hold-banner\" id=\"plus-hold-banner\"
226
+ style=\"display:none\">\n</div>\n\n <div id=\"delayed-js-container\"></div>\n
227
+ \ \n <div id=\"vc\"></div>\n\n \n <div class=\"fixed-lg relative\" id=\"container\"
228
+ style=\"z-index:98;position:relative;\">\n <div class=\"section top\">\n <div
229
+ class=\"standard tidy\">\n <ul id=\"logged-in-nav\" class=\"usernav\" style=\"display:none\">\n
230
+ \ <li class=\"first\">\n <span style=\"position:relative;\">\n
231
+ \ <span id=\"profile-drop-down-span\">\n <img alt=\"[!]\"
232
+ id=\"hold-icon\" src=\"http://static.huluim.com/images/icon-orange-alert.gif?990053788\"
233
+ style=\"display:none\" title=\"There are problems with your subscription.\"
234
+ />\n Welcome <a href=\"javascript:void(0);\" class=\"profile-drop-down-link
235
+ utility-link\" id=\"user-greeting\">User</a>\n </span>\n <div
236
+ id=\"profile-drop-down-placeholder\" style=\"position:absolute; height:12px;
237
+ top:12px; width:10px; left:0px;\"></div>\n <div class=\"profile-drop-down\"
238
+ style=\"display:none;\">\n <ul>\n <li><a href=\"/inbox\"
239
+ id=\"inbox-link\">Inbox</a></li>\n <li><a href=\"/profile/profile\">Profile</a></li>\n
240
+ \ <li><a href=\"/profile/activity_feed\">Community</a></li>\n
241
+ \ <li><a href=\"/profile/queue\">Content</a></li>\n <li><a
242
+ href=\"/profile/settings\">Privacy &amp; Settings</a></li>\n \t\t<li><a href=\"/profile/ad_tailor?src=account-dropdown\">Ad
243
+ Tailor</a></li>\n <li><a href=\"/help\">Help</a></li>\n <li><a
244
+ class=\"utility-link\" href=\"#\" id=\"top-nav-sign-out\" onclick=\"Behaviors.logoutFromTop();;
245
+ return false;\">Log Out</a></li>\n </ul>\n </div>\n
246
+ \ <div class=\"profile-drop-down-pointer\" style=\"display:none; background-image:url('/images/profile_dropdown_pointer.png');
247
+ background-position:0 0px;\"></div>\n </span>\n </li>\n <li>\n
248
+ \ <a href=\"/profile\" class=\"utility-link\">Account</a>\n </li>\n
249
+ \ \n <li>\n <a href=\"http://www.hulu.com/profile/queue\"
250
+ class=\"utility-link queue-count\" id=\"your-queue-link\">Queue</a>\n </li>\n
251
+ \ \n </ul>\n\n <ul id=\"logged-out-nav\" class=\"usernav\" style=\"display:none\">\n
252
+ \ <li class=\"first\">\n <a class=\"utility-link\" href=\"#\"
253
+ id=\"login-link\" onclick=\"FloatingLoginForm.showTop(this); return false;\">Log
254
+ In</a>\n </li>\n <li class=\"signin-border-left\">\n <a
255
+ href=\"http://www.hulu.com/users/forgot_password\" class=\"utility-link\">Forgot
256
+ Password?</a>\n </li>\n \n <li class=\"signin-border-left\">\n
257
+ \ <a href=\"http://www.hulu.com/signup\" class=\"utility-link\">Sign
258
+ Up</a>\n </li>\n \n </ul>\n\n <noscript>\n <ul
259
+ class=\"nojs usernav\">\n <li>\n Please <a href=\"/support/login_faq#cant_login\">enable
260
+ javascript</a> to log in.\n </li>\n </ul>\n </noscript>\n\n
261
+ \ \n \n <ul class=\"nv\"><li class=\"first\" style=\"\" id=\"home\"><a
262
+ href=\"http://www.hulu.com/?src=topnav\" rel=\"home\"><img alt=\"Hulu\" border=\"0\"
263
+ height=\"42\" id=\"main-hulu-logo\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
264
+ title=\"Hulu\" width=\"97\" /></a></li><li class=\"\" id=\"tv\"><a href=\"http://www.hulu.com/tv?src=topnav\"><img
265
+ alt=\"TV\" border=\"0\" height=\"42\" src=\"http://static.huluim.com/images/tab-active-tv.gif?1004936090\"
266
+ title=\"TV\" width=\"94\" /></a></li><li class=\"\" id=\"movies\"><a href=\"http://www.hulu.com/movies?src=topnav\"><img
267
+ alt=\"Movies\" border=\"0\" class=\"hover-me\" id=\"tab-movies.gif132353963123371\"
268
+ src=\"http://static.huluim.com/images/tab-movies.gif?996649533\" title=\"Movies\"
269
+ /></a></li><li class=\"\" id=\"huluplus\"><a href=\"http://www.hulu.com/plus?src=topnav\"><img
270
+ alt=\"More TV. On more devices.\" border=\"0\" class=\"hover-me\" id=\"tab-huluplus.gif13235396312343\"
271
+ src=\"http://static.huluim.com/images/tab-huluplus.gif?1034071429\" title=\"More
272
+ TV. On more devices.\" /></a></li></ul>\n \n </div>\n </div>\n</div>\n\n<div
273
+ id=\"header-search-auto-complete\"></div>\n\n<div class=\"fluid bar\" id=\"top-sec-nv\"
274
+ style=\"\">\n <div class=\"fixed-lg container\" style=\"position:relative\">\n
275
+ \ <ul class=\"snv tv\"><li id=\"snv-browse-tv\"><a href=\"http://www.hulu.com/browse/tv?src=topnav\"
276
+ class=\"menu-top\"><img alt=\"Browse TV\" border=\"0\" class=\"hover-me\" id=\"subnav-browsetv.gif132353963123553\"
277
+ src=\"http://static.huluim.com/images/subnav-browsetv.gif?1054524884\" title=\"Browse
278
+ TV\" /></a><div class=\"nav-menus long\" style=\"display:none;\"> <div class=\"liner\"></div>
279
+ <div class=\"three-items\"> <h2 class=\"menu-item first\"> <a href=\"http://www.hulu.com/browse/tv?src=topnav\"
280
+ title=\"Alphabetical\">Alphabetical</a> </h2> <h2 class=\"menu-item \"> <a
281
+ href=\"http://www.hulu.com/browse/network?src=topnav\" title=\"By Network\">By
282
+ Network</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/genres/tv?src=topnav\"
283
+ title=\"By Genre\">By Genre</a> </h2> </div><div class=\"more-items\"> <h2 class=\"menu-item\">
284
+ <a href=\"http://www.hulu.com/playlists?src=topnav\" title=\"Playlists\">Playlists</a>
285
+ </h2> <h2 class=\"menu-item\"> <a href=\"http://www.hulu.com/coming-soon?src=topnav\"
286
+ title=\"Coming Soon\">Coming Soon</a> </h2> </div></div></li><li id=\"snv-popular-shows\"><a
287
+ href=\"http://www.hulu.com/popular/tv?src=topnav\" class=\"menu-top\"><img alt=\"Popular
288
+ Shows\" border=\"0\" class=\"hover-me\" id=\"subnav-mostpopular.gif132353963123678\"
289
+ src=\"http://static.huluim.com/images/subnav-mostpopular.gif?981609852\" title=\"Popular
290
+ Shows\" /></a><div class=\"nav-menus long\" style=\"display:none;\"> <div class=\"liner\"></div>
291
+ <div class=\"three-items\"> <h2 class=\"menu-item first\"> <a href=\"http://www.hulu.com/browse/popular/tv?src=topnav\"
292
+ title=\"Shows\">Shows</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/episodes?src=topnav\"
293
+ title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/popular/clips?src=topnav\"
294
+ title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-recently-added\"><a
295
+ href=\"http://www.hulu.com/recent/tv?src=topnav\" class=\"menu-top\"><img alt=\"Recently
296
+ Added\" border=\"0\" class=\"hover-me\" id=\"subnav-recentlyadded.gif132353963123796\"
297
+ src=\"http://static.huluim.com/images/subnav-recentlyadded.gif?1251132303\"
298
+ title=\"Recently Added\" /></a><div class=\"nav-menus long\" style=\"display:none;\">
299
+ <div class=\"liner\"></div> <div class=\"three-items\"> <h2 class=\"menu-item
300
+ first\"> <a href=\"http://www.hulu.com/browse/recent/tv?src=topnav\" title=\"Shows\">Shows</a>
301
+ </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/episodes?src=topnav\"
302
+ title=\"Episodes\">Episodes</a> </h2> <h2 class=\"menu-item \"> <a href=\"http://www.hulu.com/recent/clips?src=topnav\"
303
+ title=\"Clips\">Clips</a> </h2> </div></div></li><li id=\"snv-coming-soon\"><a
304
+ href=\"http://www.hulu.com/coming-soon?src=topnav\" class=\"menu-top\"><img
305
+ alt=\"Coming Soon\" border=\"0\" class=\"hover-me\" id=\"subnav-comingsoon.gif132353963123915\"
306
+ src=\"http://static.huluim.com/images/subnav-comingsoon.gif?1029003075\" title=\"Coming
307
+ Soon\" /></a></li><li id=\"snv-favorites\"><a href=\"http://www.hulu.com/favorites?src=topnav\"
308
+ class=\"menu-top\"><img alt=\"Favorites\" border=\"0\" class=\"hover-me\" id=\"subnav-favorites.gif132353963124008\"
309
+ src=\"http://static.huluim.com/images/subnav-favorites.gif?1086275041\" title=\"Favorites\"
310
+ /></a><div class=\"nav-menus fullwidth short requirelogin\" style=\"display:none;width:920px;left:-545px;height:129px;\">
311
+ <div class=\"liner\"></div> <div class='favorites-loading'></div> </div></li></ul>
312
+ <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/ pingImage('/images/subnav-menus-bg-3items.gif');
313
+ pingImage('/images/subnav-menus-liner.gif'); /*]]>*/</script> \n <div class=\"searchnav\">\n
314
+ \ <form name=\"search_form\" id=\"search_form\" action=\"http://www.hulu.com/search\"
315
+ method=\"get\" onsubmit=\"if((typeof stopSearchSubmit) != 'undefined') {return
316
+ false;} if(this.query.value == '') {return false;} getSt('st');getFs('fs');if(!$('header-search-auto-complete').visible()){SearchTracking.trackSearchForm('search_form')}\">\n
317
+ \ <input id=\"video_search_term\" style=\"margin-right:-3px;\" type=\"text\"
318
+ \ value=\"\" autocomplete=\"off\" name=\"query\"/>\n <a href=\"javascript:void(0)\"><img
319
+ alt=\"Search\" border=\"0\" class=\"hover-me\" id=\"top-nav-search-button\"
320
+ onclick=\"if($('search_form').query.value == '') {return false;} SearchTracking.trackSearchForm('search_form');
321
+ getSt('st');getFs('fs'); $('search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
322
+ title=\"Search\" /></a>\n <input type=\"hidden\" name=\"st\" id=\"st\"
323
+ />\n <input type=\"hidden\" name=\"fs\" id=\"fs\" />\n </form>\n
324
+ \ </div>\n </div>\n</div>\n\n<script type=\"text/javascript\">//<![CDATA[\n
325
+ \ var search_query_auto_completer = new Ajax.HuluAutocompleter(\n 'video_search_term',\n
326
+ \ 'header-search-auto-complete',\n '/search/suggest_html',\n {\n onSelected
327
+ : function() {\n getSt('st');\n getFs('fs');\n $('search_form').submit();\n
328
+ \ },\n onSelectNone : function() {\n getSt('st');\n getFs('fs');\n
329
+ \ $('search_form').submit();\n SearchTracking.trackSearchForm('search_form');\n
330
+ \ },\n widthExpand : 54,\n parameters : getPageInfo(),\n method
331
+ : 'get'\n }\n );\n \n//]]></script>\n\n\n\n \n\n\n \n\n\n\n\n <div
332
+ class=\"fluid title\" id=\"description-container\" style=\"background:#eee repeat-x
333
+ bottom center; position:relative;\">\n <div id=\"branded-canvas-top\" style=\"width:100%;margin:0
334
+ auto;display:none; position: absolute;left:0;\"></div>\n <div class=\"fixed-lg
335
+ title-bar-container container\" style=\"position:relative; min-height: 145px;height:
336
+ auto !important;height: 145px;\">\n <div class=\"section\" id=\"description-content\">\n
337
+ \ <div class=\"standard tidy\">\n <div class=\"layout b-c\">\n
338
+ \ <div class=\"gr b ptop\" style=\"width:62%;padding-top:10px;\">\n
339
+ \ <div style=\"position: relative;height: 135px;\">\n
340
+ \ <h2 class=\"show-name cufonable\" style=\"margin-bottom:3px;\">The
341
+ Twist in the Twister</h2>\n <div class=\"description-shift\"
342
+ style=\"font-size:14px;\">\n <a href=\"/companies/8\"><img
343
+ alt=\"FOX\" border=\"0\" id=\"ext-company-logo-watch\" src=\"http://assets.huluim.com/networklogos/fox-gray.gif\"
344
+ style=\"\" /></a>\n <span class=\"show-title\" id=\"show-title-container\">\n
345
+ \ <a href=\"http://www.hulu.com/bones\" beaconid=\"10\" beacontype=\"show\"
346
+ class=\"beaconid beacontype\" onclick=\"; Beacon.trackThumbnailClick(this);\">Bones</a>\n
347
+ \ </span>\n </div>\n \n <div
348
+ class=\"description-shift\">\n Season 7 &nbsp;:&nbsp; Ep. 5<span
349
+ class=\"details-spacer\">|</span>43:51<span class=\"details-spacer\">|</span><span
350
+ id=\"star-rating-container\" class=\"video-rating\"></span><span id=\"star-rating-container-pcanvas\"
351
+ class=\"video-rating\" style=\"display:none;\"></span><script type=\"text/javascript\">\n//<![CDATA[\nnew
352
+ VideoRating('star-rating-container', 308569, 4.1945)\n//]]>\n</script><span
353
+ class=\"details-spacer\">|</span><img alt=\"Closed Captions available\" class=\"cc-logo\"
354
+ height=\"12\" src=\"http://static.huluim.com/images/icon-cc-gray.png?998824995\"
355
+ style=\"vertical-align:middle;\" title=\"Closed Captions available\" width=\"17\"
356
+ /><span id=\"dish-network-title-logo\" style=\"display:none;\"><span class=\"details-spacer\">|</span><span
357
+ style=\"background: url('/images/auth/dish-gray.gif') bottom left no-repeat;
358
+ \ padding-left:36px;padding-top: 6px;\">&nbsp;</span></span>\n </div>\n
359
+ \ <div id=\"description-switch\" class=\"description-shift\" style=\"padding-bottom:10px;\">\n
360
+ \ <a id=\"toggle-w-desc\" href=\"javascript:void(0);\" onclick=\"toggleDescription();\">View
361
+ Description</a>\n </div>\n <div id=\"description-contents\"
362
+ class=\"description-shift\" style=\"display: none; *padding-bottom: 4px;\">\n
363
+ \ A storm chaser gets caught in a deadly twister.<a id=\"toggle-w-desc-close\"
364
+ href=\"javascript:void(0)\" onclick=\"toggleDescription();\">Hide Description</a><div
365
+ class=\"video_copyright_details\">&copy;&nbsp;TM &amp; © 2010 Twentieth Century
366
+ Fox Film Corporation. All Rights Reserved.</div>\n </div>\n </div>\n\n
367
+ \ </div>\n <div class=\"gr c tright\" style=\"width:38%;padding-top:15px;padding-bottom:10px;\">\n
368
+ \ <div id=\"banner-ad-container\"></div>\n </div>\n
369
+ \ </div>\n </div>\n </div>\n </div>\n </div>\n
370
+ \n\n<div id=\"overlay-top\" style=\"z-index:1000;\" onclick=\"hideSearchPopup();try
371
+ {hideCollectionPopup();} catch(ex){}\" ></div>\n<div class=\"fluid bg\" id=\"breakout-container\">\n
372
+ \ <div class=\"fluid bg\">\n <div class=\"section\">\n <div id=\"load-container\"
373
+ style=\"position:absolute;top:0;left:0;width:1px\" ></div>\n <div id=\"upgrade-container\"
374
+ style=\"text-align:center;display:none;\"></div>\n <div id=\"player-container\"
375
+ >\n <div class=\"flash-player-invalid\" id=\"flash-player-invalid\" style=\"display:none;\">\n
376
+ \ <div class=\"invalid-message\">\n Hulu requires Flash Player 10.0.32 or
377
+ higher.\n Please <a href=\"http://get.adobe.com/flashplayer/\">download</a>\n
378
+ \ and install the latest version of Flash Player\n before continuing.\n
379
+ \ </div>\n</div>\n\n<noscript>\n <div class=\"nojs flash-player-invalid\">\n
380
+ \ <div class=\"invalid-message\">\n Javascript is required to use Hulu.
381
+ \ For the best experience, please\n <a href=\"/support/technical_faq#enable_cookies_and_javascript\">enable
382
+ Javascript</a>\n and reload this page.\n </div>\n </div>\n</noscript>\n\n
383
+ \ <div id=\"player-min-height\"></div>\n </div>\n </div>\n </div>\n</div>\n<div
384
+ id=\"overlay-bottom\" onclick=\"hideSearchPopup();try {hideCollectionPopup();}
385
+ catch(ex){}\" ></div>\n\n\n \n<script type=\"text/javascript\">\n (function()
386
+ {\n var qs = $H(location.search.toString().toQueryParams());\n var cph
387
+ = qs.get(\"cph\") || 0;\n \n var cpv = qs.get(\"cpv\") || 0;\n var
388
+ so = LoadPlayer.createSWFObject(cph, cpv);\n so.addVariable(\"content_id\",
389
+ 60012259);\n so.addVariable(\"user_id\", getUserId());\n so.addVariable(\"pgid\",
390
+ Behaviors.getPgid());\n so.addVariable(\"siteSessionId\", getSiteSessionId());\n
391
+ \ so.addVariable(\"userSocialIdentityIds\", getUserSocialIdentityIds());\n
392
+ \ so.addVariable(\"socialPopupStatus\", getSocialPopupStatus()); // remove
393
+ after social sponsorships are done\n addClipVariables(so);\n so.addVariable(\"authCookie\",
394
+ Behaviors.getCookie(\"_hulu_auth\"));\n so.addVariable(\"isAuthVideo\", Behaviors.is_auth_video);\n
395
+ \ so.addVariable(\"startLoadWrapperTime\", new Date().valueOf());\n \n
396
+ \ so.addVariable(\"modes\", ContinuousPlay.getModes());\n so.addVariable(\"initMode\",
397
+ ContinuousPlay.getInitMode());\n so.addVariable(\"sortBy\", ContinuousPlay.getSort());\n
398
+ \ if(ContinuousPlay.hasInitOnOffSetting()) {\n so.addVariable(\"continuous_play_on\",
399
+ ContinuousPlay.getManualActivation());\n }\n if(ContinuousPlay.isInPlaylist())
400
+ {\n so.addVariable(\"inPlaylist\", 1);\n }\n so.addVariable(\"referrer\",
401
+ encodeURIComponent(window.location));\n\n \n\n \n \n \n so.addVariable(\"overrideBrand\",
402
+ getOneShotBrandVar());\n \n\n \n\n var siteLocation = getOneShotSiteLocationVar(10);\n
403
+ \ if (siteLocation != null && siteLocation != \"\") {\n so.addVariable(\"sitelocationOverride\",
404
+ siteLocation);\n }\n\n so.addVariable(\"referralUrl\", encodeURIComponent(document.referrer));\n\n
405
+ \ if (!qs.get(\"cc\") && /^http(s)?\\:\\/\\/(([a-z0-9]+)\\.)*(facebook|hulu|huluqa)\\.com/.exec(document.referrer)){\n
406
+ \ so.addVariable(\"spv\", 1);\n }\n\n \n if (!MobileDevice.blockPlayer())
407
+ {\n if (!VersionCheck.write(so, \"player-container\")) {\n Element.hide(\"player-min-height\");\n
408
+ \ Element.show(\"flash-player-invalid\");\n } else {\n trackPlayerLoadingStart();\n
409
+ \ $(\"player-container\").removeClassName(\"player-min-height\");\n TitleHack.fixOnFocus($('player'));\n
410
+ \ }\n }\n })();\n</script>\n\n\n\n\t<div id=\"watch_page_social\">\n\t
411
+ <div class=\"watch_page_data container\" style=\"display: none;\">\n <div class=\"watch_page_social_border_left\">\n
412
+ \ <div id=\"watch_page_comments\" class=\"watch_comments\">\n <div id=\"unregistered_comments\">\n
413
+ \ <div class=\"comments top_level_comment_form\">\n <div class=\"comment_form_container
414
+ \ clearfix\" style=\"\">\n <div class=\"comment_form\">\n <form
415
+ onsubmit=\"FacebookCanvas.Comment.submitUnregisteredComment(); return false;\">\n
416
+ \ <textarea id=\"unregistered_comments_box\" class=\"comments-watch-page
417
+ dormant\" name=\"comment\" \n onblur=\"FacebookCanvas.Comment.clickTextArea(this,
418
+ event || window.event, true);\" \n onclick=\"FacebookCanvas.Comment.clickTextArea(this,
419
+ event || window.event, true);\"\n onfocus=\"if (!this._AutoGrowthSet)
420
+ { this._AutoGrowthSet = true; this.TextAreaAutoGrowth = new TextArea.AutoGrowth(this,
421
+ 1000); }\" \n onkeydown=\"FacebookCanvas.Comment.clickTextArea(this,
422
+ event || window.event, true);\" \n onkeyup=\"return FacebookCanvas.Comment.updateCharCount(this);\"
423
+ style=\"display: block;\" disabled=\"\">What are you thinking?</textarea>\n
424
+ \ <span class=\"comment_reset_button\" style=\"display: none;\"><a
425
+ href=\"#\" onclick=\"FacebookCanvas.Comment.reset($('unregistered_comments_box'));
426
+ return false;\"><img id=\"unreg_reset_button\" border=\"0\" src=\"/images/comment-reset.gif?1\"
427
+ class=\"hover-me\"/></a></span>\n <span class=\"comment_start_timestamp\"
428
+ style=\"display: none;\">(00:00)</span>\n \n \n
429
+ \ \n <input id=\"unreg_post_button\" alt=\"Post\"
430
+ border=\"0\" class=\"comment_submit hover-me\" onclick=\"if(!FacebookCanvas.Comment.valid('unregistered_comments_box'))
431
+ { return false; }\" src=\"/images/btn-post-to-fb-disabled.gif?1\" title=\"Post\"
432
+ type=\"image\" />\n \n <div style=\"display:
433
+ block; padding-top: 4px; padding-left: 1px; clear: both; visibility: hidden;\"
434
+ class=\"comments_footer clearfix\">\n <span style=\"float:
435
+ left; margin-top: 1px;\">\n <span class=\"chars_remaining\"
436
+ style=\"clear: both; vertical-align: baseline;\">140</span>\n <span
437
+ style=\"display: none;\" class=\"comment_error too_long\">This comment is too
438
+ long.</span>\n <span style=\"display: none; position: relative;\"
439
+ class=\"comment_error submit_error\">An error occurred.</span>\n <span
440
+ style=\"display: none; position: relative;\" class=\"comment_error valid_comment\">Please
441
+ enter a comment.</span>\n <span style=\"display: none;
442
+ position: relative;\" class=\"comment_error no_networks\">Please choose a Social
443
+ Network.</span>\n </span>\n <span class=\"comment_submit_span
444
+ clearfix\">\n <img alt=\"Loading-animated-circle\" class=\"comment_submit_spinner\"
445
+ src=\"/images/loading-animated-circle.gif\" style=\"display: none; float: left;
446
+ padding-right: 2px; vertical-align: text-top;\">\n <span
447
+ class=\"spoiler-check-box\" style=\"float: left;\"></span>\n </span>\n
448
+ \ </div>\n <div class=\"published_to_fb_text\"
449
+ style=\"display: none;\"></div>\n </form>\n </div>\n
450
+ \ </div>\n </div>\n </div>\n </div>\n \n \n\n<div
451
+ id=\"watch_comment_tooltip\" class=\"clearfix comments_tooltip_wrapper\" style=\"display:
452
+ none;\">\n <div style=\"position: relative;\">\n <img alt=\"Comment-tooltip\"
453
+ src=\"http://static.huluim.com/images/comment-tooltip.png?993476052\" />\n <div
454
+ id=\"watch_comment_tooltip_info\" class=\"clearfix comments_tooltip_info\">\n
455
+ \ <span style=\"float: left;\">\n <img alt=\"60012259_145x80_generated\"
456
+ height=\"56\" src=\"http://thumbnails.hulu.com/259/60012259/60012259_145x80_generated.jpg\"
457
+ width=\"101\" />\n <img alt=\"Jxuplchomfh\" height=\"24\" src=\"https://s-static.ak.facebook.com/rsrc.php/v1/yB/r/jxUplchomFH.png\"
458
+ style=\"position: absolute; left: 2px; top: 30px;\" width=\"32\" />\n </span>\n
459
+ \ <div style=\"float: left; width: 70%; padding-left: 10px;\">\n <div><span
460
+ class=\"show-title-gray\" style=\"font-weight: bold;\">Bones</span>: <span class=\"episode-title\">The
461
+ Twist in the Twister</span></div>\n <span class=\"comment_timestamp\"
462
+ style=\"color: #5588BB; font-size: 11px;\">(03:40) </span>\n <span style=\"font-size:
463
+ 11px; font-weight: bold;\">&#60;Your comments get inserted here&#62;</span>\n
464
+ \ </div>\n </div>\n \t<div class=\"comments_tooltip_close\">\n \t
465
+ \ <a href=\"#\" onclick=\"FacebookCanvas.Comment.hideTooltip(); return false;\"><img
466
+ alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-unrated.gif13235396310383\"
467
+ src=\"http://static.huluim.com/images/btn-unrated.gif?1264269104\" /></a>\n
468
+ \ \t</div>\n </div>\n</div>\n\n </div>\n <div class=\"watch_page_social_border_bottom_wrapper
469
+ clearfix\">\n <div class=\"watch_page_social_corner watch_page_social_corner_bottom_left\"></div>\n
470
+ \ <div class=\"watch_page_social_border_bottom\"></div>\n <div class=\"watch_page_social_corner
471
+ watch_page_social_corner_bottom_right\"></div>\n </div>\n </div>\n\t</div>\n\t<script
472
+ type=\"text/javascript\">\n document.observe('hulu:loginReady', function()
473
+ {\n try {\n Social.Common.showWatchPageData(308569, false);\n \n
474
+ \ FacebookCanvas.Comment.videoName = \"Hulu - Bones: The Twist in the
475
+ Twister\";\n FacebookCanvas.Comment.videoDescription = \"A storm chaser
476
+ gets caught in a deadly twister.\";\n FacebookCanvas.Comment.videoLink
477
+ = \"http://www.hulu.com/watch/308569/bones-the-twist-in-the-twister\";\n FacebookCanvas.Comment.videoContentId
478
+ = 60012259;\n FacebookCanvas.Comment.videoEmbedId = \"MARta6hueNP5OWbSC757mA\";\n
479
+ \ }\n catch(e) {}\n });\n\t</script>\n\n\n\n <div class=\"fixed-lg
480
+ container subscription-links\">\n <div style=\"width:350px; left:570px\">\n
481
+ \ \n <span id=\"fb_watch_page_like_button\"><fb:like href=\"http://www.hulu.com/watch/308569/bones-the-twist-in-the-twister\"
482
+ style=\"vertical-align: top\" layout=\"button_count\" show_faces=\"false\" width=\"90\"
483
+ font=\"lucida grande\"></fb:like></span>\n \n <span id=\"fb_watch_page_like_separator\"
484
+ style=\"margin: 0px 5px 0px 5px;\">|</span>\n <span>\n <a
485
+ class=\"small-subscription\" data-show-id=\"10\" href=\"#\" onclick=\"Subscription.toggle_popup(this,
486
+ 'Bones', 'bones', '10', true); return false;\">add to favorites</a>\n </span>\n
487
+ \ \n \n </div>\n </div>\n <div id=\"show-and-watch-container\"
488
+ style=\"position: relative;*position:static !important;*position:static;\">\n
489
+ \ <div class=\"fixed-lg container\">\n <ul class=\"tab-container\"
490
+ id=\"tab-container\" style=\"position: relative;\"><li class=\"tab-selected\"
491
+ id=\"tab-main\"><a href=\"#\"><img alt=\"Main\" border=\"0\" class=\"hover-me\"
492
+ height=\"28\" id=\"tab-main-img\" onclick=\"Tab.loadTab('main', null, false,
493
+ null); return false;\" src=\"http://static.huluim.com/images/tab-main-disabled.gif?1293982274\"
494
+ style=\"padding-right:2px;\" title=\"Main\" width=\"93\" /></a></li><li class=\"tab-unselected\"
495
+ id=\"tab-reviews\"><a href=\"#\"><img alt=\"Reviews\" border=\"0\" class=\"hover-me\"
496
+ height=\"28\" id=\"tab-reviews-img\" onclick=\"Tab.loadTab('reviews', &quot;http://www.hulu.com/reviews/tab_load?reviewable_id=308569&amp;reviewable_type=Video&amp;show_id=10&quot;,
497
+ false, null); return false;\" src=\"http://static.huluim.com/images/tab-reviews.gif?1314538723\"
498
+ style=\"padding-right:2px;\" title=\"Reviews\" width=\"93\" /></a></li><li class=\"tab-unselected\"
499
+ id=\"tab-forums\"><a href=\"#\"><img alt=\"Discussions\" border=\"0\" class=\"hover-me\"
500
+ height=\"28\" id=\"tab-forums-img\" onclick=\"Tab.loadTab('forums', &quot;http://www.hulu.com/topics/tab_load?show_id=308569&amp;topicable_id=308569&amp;topicable_type=Video&quot;,
501
+ false, null); return false;\" src=\"http://static.huluim.com/images/tab-forums.gif?1315535690\"
502
+ style=\"padding-right:2px;\" title=\"Discussions\" width=\"93\" /></a></li><li
503
+ class=\"tab-unselected\" id=\"tab-tag\"><a href=\"#\"><img alt=\"Tag\" border=\"0\"
504
+ class=\"hover-me\" height=\"28\" id=\"tab-tag-img\" onclick=\"\n TagTracking.track('click_to_tab',
505
+ 'tab', Tag.Taggable) ;\n Tab.loadTab('tag', &quot;/taggings/tab_load?show_id=10&amp;taggable_id=308569&amp;taggable_type=Video&quot;,
506
+ false, null); return false;\n \" src=\"http://static.huluim.com/images/tab-tag.gif?1111034483\"
507
+ style=\"padding-right:2px;\" title=\"Tag\" width=\"93\" /></a></li><li style=\"display:
508
+ inline; position: absolute; left: auto; top: auto;\"><span id=\"tab-loading\"
509
+ class=\"tab-loading\" style=\"display:none\"><img alt=\"Loading-animated-circle\"
510
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
511
+ width=\"16\" /></span></li></ul></div><ul class=\"pane-container\" id=\"pane-container\">\n
512
+ \ <li id=\"pane-main\" class=\"pane-selected\">\n <div class=\"fluid
513
+ container\">\n \n <div class=\"tab-header main white activatable\" style=\"padding:
514
+ 0px;\">\n <div class=\"fixed-lg container availability \">\n <div
515
+ class=\"availability-title\">Availability:</div>\n \n <div class=\"availability-text\"
516
+ id=\"availability-text-1\" style='display:none'>\n Season 7 episodes will
517
+ available free on Hulu.com and Fox.com 8 days after airing on TV.<div style='height:6px;
518
+ line-height:6px;' class='availability-note-break'></div><span class=\"plus-availability-notes\"><img
519
+ src=\"/images/plus-logo-sm.gif\" style=\"margin: 0 5px 0 0;\" />Subscribe to
520
+ Hulu Plus to watch the entire current season through November 2 in HD on TV,
521
+ mobile and computer. <a class=\"blue-link\" href=\"/plus?src=show_note\">Try
522
+ it FREE</a><div style=\"margin-top: 6px;\"/><img src=\"/images/auth/authentication.gif\"
523
+ style=\"margin: 0 5px 0 0;\" />Connect to your DISH Network account to watch
524
+ new episodes on your computer the day after air. <a class=\"blue-link\" href=\"/authenticate?src=show&param=10\">Learn
525
+ more</a></div></span>\n </div>\n <script>\n AvailabilityNotes.init(
526
+ $(\"availability-text-1\"), 1000 ) ;\n </script>\n \n <br style=\"clear:both;\"/>\n
527
+ \ \n \n </div>\n </div>\n \n <br style=\"clear:both\"
528
+ /> \n</div>\n\r\n\r\n\r\n\r\n<div id=\"filters_and_presenters\">\r\n \n\n\n\n\n\n\n
529
+ \ <div class=\"fluid container\" style=\"width:920px; margin-top: -10px; margin-bottom:
530
+ 25px;\">\n <div class=\"embed_search_bar\" id=\"search-bar\">\n <div class=\"fixed-lg
531
+ container\" >\n <div class=\"video-info\" style=\"padding:2px 0 0 9px; overflow:hidden;\">\n
532
+ \ <form style=\"float:left; width:96%\" id=\"channel_search_form\" name=\"search_form\"
533
+ action=\"/search/search_video_within_show?item_id=10&amp;place=watch&amp;show_id=10&amp;show_type=tv&amp;showname=Bones\"
534
+ method=\"get\" onsubmit=\"return searchInChannel()\">\n <div style=\"float:left;\">\n
535
+ \ <span style=\"font-size: 11px; font-weight: bold; color:#646464; margin-right:8px;
536
+ vertical-align:middle\">Search this show</span>\n <input id=\"embed-search-bar-query\"
537
+ class=\"search channel_search_term\" style=\"vertical-align:middle;width:230px;height:17px;border-color:#CCCCCC;color:#030303;border-right:0px;\"
538
+ type=\"text\" name=\"query\" autocomplete=\"off\" value=\"\" />\n <a
539
+ href=\"javascript:void(0);\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"embed-search-button\"
540
+ onclick=\"searchInChannel();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
541
+ style=\"vertical-align: middle; margin-left: -4px;\" title=\"Find specific shows
542
+ from this show\" /></a>\n </div>\n <div id='popular-terms' class=\"relative
543
+ search_bar_content\">\n \n \n <span class=\"label\">Popular
544
+ Searches:</span>\n \n <a href=\"javascript:void(0)\"
545
+ onclick=\"$('embed-search-bar-query').value=this.innerHTML; SearchAjaxCall('/search/search_video_within_show?item_id=10&amp;place=watch&amp;query=season+6&amp;show_id=10&amp;show_type=tv&amp;showname=Bones')\">season
546
+ 6</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
547
+ SearchAjaxCall('/search/search_video_within_show?item_id=10&amp;place=watch&amp;query=season+1&amp;show_id=10&amp;show_type=tv&amp;showname=Bones')\">season
548
+ 1</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
549
+ SearchAjaxCall('/search/search_video_within_show?item_id=10&amp;place=watch&amp;query=season+5&amp;show_id=10&amp;show_type=tv&amp;showname=Bones')\">season
550
+ 5</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
551
+ SearchAjaxCall('/search/search_video_within_show?item_id=10&amp;place=watch&amp;query=season+3&amp;show_id=10&amp;show_type=tv&amp;showname=Bones')\">season
552
+ 3</a>\n \n <a href=\"javascript:void(0)\" onclick=\"$('embed-search-bar-query').value=this.innerHTML;
553
+ SearchAjaxCall('/search/search_video_within_show?item_id=10&amp;place=watch&amp;query=season+4&amp;show_id=10&amp;show_type=tv&amp;showname=Bones')\">season
554
+ 4</a>\n \n \n </div>\n <div id='related-terms'></div>\n
555
+ \ </form>\n <div id=\"popup-close-button\" style=\"float:right; padding-right:6px;
556
+ display:none;\">\n <a href=\"javascript:void(null);\"><img alt=\"Close
557
+ results\" border=\"0\" class=\"hover-me\" id=\"channel-search-close-button\"
558
+ onclick=\"hideSearchPopup();\" src=\"http://static.huluim.com/images/button_x_lightgray_narrow.gif?1288166694\"
559
+ style=\"float:right; margin:3px 2px 0 0\" title=\"Close results\" /></a>\n </div>\n
560
+ \ </div>\n </div>\n</div>\n\n<div style=\"display:none\" id=\"search-result\"
561
+ class=\"search_result\"></div>\n\n </div>\n\n\n\n\n<div class=\"fixed-lg container\"
562
+ style=\"margin-top:10px;\">\n \n\n \n \n \n \n \n \n <div
563
+ class=\"vslc\" id=\"episode-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
564
+ href=\"http://www.hulu.com/feed/show/10/episodes\" class=\"rss-link\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
565
+ onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img alt=\"Hulu RSS
566
+ feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132353616007534\" src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\"
567
+ title=\"Hulu RSS feed\" /></a><h2 class=\"cufonable\">Episodes (5)</h2></div><a
568
+ class=\"season-playlist\" href=\"#\" onclick=\"s6530_17e73p0_episodes5.addSeasonToPlaylist(this,
569
+ 'episode'); return false;\">Add All to Queue</a><span class=\"season-playlist\"
570
+ style=\"display: none;\">Added to Queue</span></div><div class=\"vslnav\"><div
571
+ class=\"vl\"><div class=\"mod sort-filter\" style=\"display:none\" id=\"s6530_17e73p0_episodes5-sort\"><b>Sort
572
+ by:</b><ul><li class=\"active\" id=\"s6530_17e73p0_episodes5-sort-original_premiere_date\">Air
573
+ Date</li><li id=\"s6530_17e73p0_episodes5-sort-released_at\">Recently Added</li><li
574
+ id=\"s6530_17e73p0_episodes5-sort-view_count_today\">Most Popular Today</li><li
575
+ id=\"s6530_17e73p0_episodes5-sort-views\">Most Popular All Time</li><li id=\"s6530_17e73p0_episodes5-sort-rating\">User
576
+ Rating</li></ul></div></div><div style=\"padding:4px;\"></div></div><div class=\"vsl
577
+ vsl-short\" id=\"s6530_17e73p0_episodes5\"><ul><li style=\"position:relative\"><span
578
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/308569/bones-the-twist-in-the-twister\"
579
+ beaconid=\"308569\" beacontype=\"video\" class=\"beaconid beacontype info_hover
580
+ plus-preview\" onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null,
581
+ null, null, null, 'hulu_308569:-1')\"><img src=\"http://thumbnails.huluim.com/259/60012259/60012259_145x80_generated.jpg\"
582
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
583
+ event)\" alt=\"Bones: The Twist in the Twister (season 7, episode 5)\" width=\"145\"
584
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
585
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
586
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;: true,
587
+ &quot;plus_only&quot;: true, &quot;is_movie&quot;: false, &quot;id&quot;: 308569});
588
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616008186\"
589
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
590
+ href=\"/plus?src=sticker\" target=\"_self\"><img alt=\"Available in HD on TV,
591
+ mobile and computer with a Hulu Plus subscription\" class=\"hplus-sticker\"
592
+ src=\"http://static.huluim.com/images/icon-hulu-plus-badge-light.gif?1102795591\"
593
+ title=\"Available in HD on TV, mobile and computer with a Hulu Plus subscription\"
594
+ /></a><a href=\"/authenticate?src=show&param=10\"><img alt=\"Available on the
595
+ computer to DISH subscribers\" class=\"hplus-sticker auth-keyicon\" src=\"http://static.huluim.com/images/auth/authentication.gif?1083766096\"
596
+ title=\"Available on the computer to DISH subscribers\" /></a><a href=\"http://www.hulu.com/watch/308569/bones-the-twist-in-the-twister\"
597
+ beaconid=\"308569\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
598
+ onclick=\"; Beacon.trackThumbnailClick(this);\">The Twist in the Twister</a><span
599
+ class=\"video-info\" style=\"white-space: nowrap;\">Season 7 : Ep. 5&nbsp;&nbsp;&nbsp;(43:51)<img
600
+ alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
601
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
602
+ Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-308569\"
603
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
604
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
605
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/306238/bones-the-male-in-the-mail\"
606
+ beaconid=\"306238\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
607
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
608
+ null, null, 'hulu_306238:-1')\"><img src=\"http://thumbnails.huluim.com/369/60009369/60009369_145x80_generated.jpg\"
609
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
610
+ event)\" alt=\"Bones: The Male in the Mail (season 7, episode 4)\" width=\"145\"
611
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
612
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
613
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;: true,
614
+ &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;: 306238});
615
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616009155\"
616
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
617
+ href=\"http://www.hulu.com/watch/306238/bones-the-male-in-the-mail\" beaconid=\"306238\"
618
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The
619
+ Male in the Mail</a><span class=\"video-info\" style=\"white-space: nowrap;\">Season
620
+ 7 : Ep. 4&nbsp;&nbsp;&nbsp;(43:47)<img alt=\"Closed Captions available\" class=\"closed-captions\"
621
+ height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
622
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
623
+ Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-306238\"
624
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" 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/301043/bones-the-prince-in-the-plastic\"
627
+ beaconid=\"301043\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
628
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
629
+ null, null, 'hulu_301043:-1')\"><img src=\"http://thumbnails.huluim.com/980/60004980/60004980_145x80_generated.jpg\"
630
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
631
+ event)\" alt=\"Bones: The Prince in the Plastic (season 7, episode 3)\" width=\"145\"
632
+ height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span
633
+ class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a href=\"#\"
634
+ onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;: true,
635
+ &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;: 301043});
636
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616009824\"
637
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
638
+ href=\"http://www.hulu.com/watch/301043/bones-the-prince-in-the-plastic\" beaconid=\"301043\"
639
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The
640
+ Prince in the Plastic</a><span class=\"video-info\" style=\"white-space: nowrap;\">Season
641
+ 7 : Ep. 3&nbsp;&nbsp;&nbsp;(43:05)<img alt=\"Closed Captions available\" class=\"closed-captions\"
642
+ height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
643
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
644
+ Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-301043\"
645
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
646
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
647
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/298984/bones-the-hot-dog-in-the-competition\"
648
+ beaconid=\"298984\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
649
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
650
+ null, null, 'hulu_298984:-1')\"><img src=\"http://thumbnails.huluim.com/272/60002272/60002272_145x80_generated.jpg\"
651
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
652
+ event)\" alt=\"Bones: The Hot Dog in the Competition (season 7, episode 2)\"
653
+ width=\"145\" height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\"
654
+ /></a></span><span class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a
655
+ href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
656
+ true, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
657
+ 298984}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13235361601043\"
658
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
659
+ href=\"http://www.hulu.com/watch/298984/bones-the-hot-dog-in-the-competition\"
660
+ beaconid=\"298984\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
661
+ onclick=\"; Beacon.trackThumbnailClick(this);\">The Hot Dog in the Competition</a><span
662
+ class=\"video-info\" style=\"white-space: nowrap;\">Season 7 : Ep. 2&nbsp;&nbsp;&nbsp;(43:58)<img
663
+ alt=\"Closed Captions available\" class=\"closed-captions\" height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
664
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
665
+ Captions available\" width=\"17\" /></span><div class=\"currently-playing cp-298984\"
666
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
667
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
668
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/296608/bones-the-memories-in-the-shallow-grave\"
669
+ beaconid=\"296608\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
670
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
671
+ null, null, 'hulu_296608:-1')\"><img src=\"http://thumbnails.huluim.com/467/40059467/40059467_145x80_generated.jpg\"
672
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
673
+ event)\" alt=\"Bones: The Memories in the Shallow Grave (season 7, episode 1)\"
674
+ width=\"145\" height=\"80\" title=\"\" style=\"width: 145px; height: 80px;\"
675
+ /></a></span><span class=\"add-me super_plus\" title=\"Add to queue / playlist\"><a
676
+ href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
677
+ true, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
678
+ 296608}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616010932\"
679
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
680
+ href=\"http://www.hulu.com/watch/296608/bones-the-memories-in-the-shallow-grave\"
681
+ beaconid=\"296608\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
682
+ onclick=\"; Beacon.trackThumbnailClick(this);\">The Memories in the Shallow
683
+ Grave</a><span class=\"video-info\" style=\"white-space: nowrap;\">Season 7
684
+ : Ep. 1&nbsp;&nbsp;&nbsp;(43:34)<img alt=\"Closed Captions available\" class=\"closed-captions\"
685
+ height=\"12\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
686
+ style=\"vertical-align:-3px;padding-left:3px;display:inline; \" title=\"Closed
687
+ Captions available\" width=\"17\" /></span><span class=\"expire-warning\"><img
688
+ alt=\"Icon-expire-flag-gray\" class=\"expired-icon\" src=\"http://static.huluim.com/images/icon-expire-flag-gray.gif?1080089087\"
689
+ title=\"Expires in 5 days\" /> Expires in 5 days</span><div class=\"currently-playing
690
+ cp-296608\" style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\"
691
+ src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\" style=\"vertical-align:middle;\"
692
+ /> Now playing</div></li></ul></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
693
+ s6530_17e73p0_episodes5 = new VideoSlider(\"s6530_17e73p0_episodes5\", {\"maxCount\":
694
+ 5, \"urlOptions\": {\"show_id\": 10, \"type\": \"episode\", \"page\": 1, \"show_placeholders\":
695
+ \"1\", \"sort\": \"original_premiere_date\", \"season\": \"\", \"items_per_page\":
696
+ 5}, \"seasonCounts\": {\"all\": {\"s3\": 0, \"all\": 46, \"s4\": 3, \"s5\":
697
+ 6, \"s6\": 2, \"s7\": 14, \"s0\": 19, \"s1\": 1, \"s2\": 1}, \"clip\": {\"s3\":
698
+ 0, \"all\": 41, \"s4\": 3, \"s5\": 6, \"s6\": 2, \"s7\": 9, \"s0\": 19, \"s1\":
699
+ 1, \"s2\": 1}, \"episode\": {\"s3\": 0, \"all\": 5, \"s4\": 0, \"s5\": 0, \"s6\":
700
+ 0, \"s7\": 5, \"s0\": 0, \"s1\": 0, \"s2\": 0}}, \"url\": \"http://www.hulu.com/videos/slider\"})\n//]]>\n</script></div><div
701
+ class=\"vslc\" id=\"clip-container\"><div class=\"vsltitle\"><div class=\"vl\"><a
702
+ href=\"http://www.hulu.com/feed/show/10/clips\" class=\"rss-link\" onmouseover=\"Hover.image_toggle_over($(this).down('img'))\"
703
+ onmouseout=\"Hover.image_toggle_out($(this).down('img'))\"><img alt=\"Hulu RSS
704
+ feed\" border=\"0\" class=\"hover-me\" id=\"btn-rss.gif132353616079643\" src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\"
705
+ title=\"Hulu RSS feed\" /></a><h2 class=\"cufonable\">Clips (41)</h2></div><div
706
+ class=\"vr\"><div class=\"mod season-filter\" style=\"display:none\" id=\"s8841_17e73p0_clips41-season\"><b>Seasons:</b><ul><li
707
+ id=\"s8841_17e73p0_clips41-season-1\">1</li><li id=\"s8841_17e73p0_clips41-season-2\">2</li><li
708
+ id=\"s8841_17e73p0_clips41-season-4\">4</li><li id=\"s8841_17e73p0_clips41-season-5\">5</li><li
709
+ id=\"s8841_17e73p0_clips41-season-6\">6</li><li id=\"s8841_17e73p0_clips41-season-7\">7</li><li
710
+ class=\"active\" id=\"s8841_17e73p0_clips41-season-all\">All</li></ul></div></div><a
711
+ class=\"season-playlist\" href=\"#\" onclick=\"s8841_17e73p0_clips41.addSeasonToPlaylist(this,
712
+ 'clip'); return false;\">Add All to Queue</a><span class=\"season-playlist\"
713
+ style=\"display: none;\">Added to Queue</span></div><div class=\"vslnav\"><div
714
+ class=\"vl\"><div class=\"mod sort-filter\" style=\"display:none\" id=\"s8841_17e73p0_clips41-sort\"><b>Sort
715
+ by:</b><ul><li class=\"active\" id=\"s8841_17e73p0_clips41-sort-released_at\">Recently
716
+ Added</li><li id=\"s8841_17e73p0_clips41-sort-view_count_today\">Most Popular
717
+ Today</li><li id=\"s8841_17e73p0_clips41-sort-views\">Most Popular All Time</li><li
718
+ id=\"s8841_17e73p0_clips41-sort-rating\">User Rating</li></ul></div></div><div
719
+ class=\"vr\"><ul class=\"pages\" style=\"display: none;\" id=\"s8841_17e73p0_clips41-nav\"><li
720
+ title=\"Go to the first page\" class=\"btn first\"></li><li title=\"Go to the
721
+ previous page\" class=\"btn prev\"></li><li class=\"input\"><input autocomplete=\"off\"
722
+ name=\"page\" onfocus=\"$(this).select();\" onkeydown=\"if(event.keyCode ==
723
+ 13) s8841_17e73p0_clips41.move(event, 'input');\" type=\"text\" value=\"\" /></li><li
724
+ class=\"of\">of</li><li title=\"Go to the last page\" class=\"total\"></li><li
725
+ title=\"Go to the next page\" class=\"btn next\"></li></ul></div></div><div
726
+ class=\"vsl vsl-short\" id=\"s8841_17e73p0_clips41\"><ul><li style=\"position:relative\"><span
727
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/308378/bones-observing-remains\"
728
+ beaconid=\"308378\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
729
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
730
+ null, null, 'hulu_308378:-1')\"><img src=\"http://thumbnails.huluim.com/802/60011802/60011802_145x80_generated.jpg\"
731
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
732
+ event)\" alt=\"Bones: Observing Remains\" width=\"145\" height=\"80\" title=\"\"
733
+ style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
734
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
735
+ true, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
736
+ 308378}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616080356\"
737
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
738
+ href=\"http://www.hulu.com/watch/308378/bones-observing-remains\" beaconid=\"308378\"
739
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Observing
740
+ Remains</a><span class=\"video-info\" style=\"white-space: nowrap;\">Excerpt&nbsp;&nbsp;&nbsp;(01:18)</span><div
741
+ class=\"currently-playing cp-308378\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
742
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
743
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
744
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/308377/bones-grandpa\"
745
+ beaconid=\"308377\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
746
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
747
+ null, null, 'hulu_308377:-1')\"><img src=\"http://thumbnails.huluim.com/801/60011801/60011801_145x80_generated.jpg\"
748
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
749
+ event)\" alt=\"Bones: Grandpa\" width=\"145\" height=\"80\" title=\"\" style=\"width:
750
+ 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\" title=\"Add
751
+ to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
752
+ true, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
753
+ 308377}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616080799\"
754
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
755
+ href=\"http://www.hulu.com/watch/308377/bones-grandpa\" beaconid=\"308377\"
756
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Grandpa</a><span
757
+ class=\"video-info\" style=\"white-space: nowrap;\">Excerpt&nbsp;&nbsp;&nbsp;(01:43)</span><div
758
+ class=\"currently-playing cp-308377\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
759
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
760
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
761
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/305895/bones-we-need-more-interns-\"
762
+ beaconid=\"305895\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
763
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
764
+ null, null, 'hulu_305895:-1')\"><img src=\"http://thumbnails.huluim.com/322/60007322/60007322_145x80_generated.jpg\"
765
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
766
+ event)\" alt=\"Bones: We Need More Interns \" width=\"145\" height=\"80\"
767
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
768
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
769
+ false, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
770
+ 305895}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616081182\"
771
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
772
+ href=\"http://www.hulu.com/watch/305895/bones-we-need-more-interns-\" beaconid=\"305895\"
773
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">We
774
+ Need More Interns </a><span class=\"video-info\" style=\"white-space: nowrap;\">Behind
775
+ the Scenes&nbsp;&nbsp;&nbsp;(06:02)</span><div class=\"currently-playing cp-305895\"
776
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
777
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
778
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/305896/bones-old-school-jetpack-\"
779
+ beaconid=\"305896\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
780
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
781
+ null, null, 'hulu_305896:-1')\"><img src=\"http://thumbnails.huluim.com/323/60007323/60007323_145x80_generated.jpg\"
782
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
783
+ event)\" alt=\"Bones: Old School Jetpack \" width=\"145\" height=\"80\" title=\"\"
784
+ style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me super_plus\"
785
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
786
+ false, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
787
+ 305896}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616081515\"
788
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
789
+ href=\"http://www.hulu.com/watch/305896/bones-old-school-jetpack-\" beaconid=\"305896\"
790
+ beacontype=\"video\" class=\"beaconid beacontype info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Old
791
+ School Jetpack </a><span class=\"video-info\" style=\"white-space: nowrap;\">Behind
792
+ the Scenes&nbsp;&nbsp;&nbsp;(04:52)</span><div class=\"currently-playing cp-305896\"
793
+ style=\"display: none\"><img alt=\"Now-playing-arrow\" border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
794
+ style=\"vertical-align:middle;\" /> Now playing</div></li><li style=\"position:relative\"><span
795
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/watch/305897/bones-humor-makes-the-show-unique-\"
796
+ beaconid=\"305897\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
797
+ onclick=\"Beacon.trackThumbnailClick(this);; SearchTracking.send(null, null,
798
+ null, null, 'hulu_305897:-1')\"><img src=\"http://thumbnails.huluim.com/324/60007324/60007324_145x80_generated.jpg\"
799
+ class=\"thumbnail\" border=\"0\" onerror=\"thumbnailLoadError(window.event ||
800
+ event)\" alt=\"Bones: Humor Makes the Show Unique \" width=\"145\" height=\"80\"
801
+ title=\"\" style=\"width: 145px; height: 80px;\" /></a></span><span class=\"add-me
802
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;auth_valid&quot;:
803
+ false, &quot;plus_only&quot;: false, &quot;is_movie&quot;: false, &quot;id&quot;:
804
+ 305897}); return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353616081844\"
805
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span><a
806
+ href=\"http://www.hulu.com/watch/305897/bones-humor-makes-the-show-unique-\"
807
+ beaconid=\"305897\" beacontype=\"video\" class=\"beaconid beacontype info_hover\"
808
+ onclick=\"; Beacon.trackThumbnailClick(this);\">Humor Makes the Show Unique
809
+ </a><span class=\"video-info\" style=\"white-space: nowrap;\">Behind the Scenes&nbsp;&nbsp;&nbsp;(04:03)</span><div
810
+ class=\"currently-playing cp-305897\" style=\"display: none\"><img alt=\"Now-playing-arrow\"
811
+ border=\"0\" src=\"http://static.huluim.com/images/now-playing-arrow.gif?1006074267\"
812
+ style=\"vertical-align:middle;\" /> Now playing</div></li></ul></div><script
813
+ type=\"text/javascript\">\n//<![CDATA[\nvar s8841_17e73p0_clips41 = new VideoSlider(\"s8841_17e73p0_clips41\",
814
+ {\"maxCount\": 41, \"urlOptions\": {\"show_id\": 10, \"type\": \"clip\", \"page\":
815
+ 1, \"sort\": \"released_at\", \"season\": \"\", \"items_per_page\": 5}, \"seasonCounts\":
816
+ {\"all\": {\"s3\": 0, \"all\": 46, \"s4\": 3, \"s5\": 6, \"s6\": 2, \"s7\":
817
+ 14, \"s0\": 19, \"s1\": 1, \"s2\": 1}, \"clip\": {\"s3\": 0, \"all\": 41, \"s4\":
818
+ 3, \"s5\": 6, \"s6\": 2, \"s7\": 9, \"s0\": 19, \"s1\": 1, \"s2\": 1}, \"episode\":
819
+ {\"s3\": 0, \"all\": 5, \"s4\": 0, \"s5\": 0, \"s6\": 0, \"s7\": 5, \"s0\":
820
+ 0, \"s1\": 0, \"s2\": 0}}, \"url\": \"http://www.hulu.com/videos/slider\"})\n//]]>\n</script></div>\n
821
+ \ \n \n\n \n <div class=\"fluid container\">\n <div class=\"vslc\"
822
+ id=\"related-container\"><div class=\"vsltitle\"><div class=\"vl\"><h2 class=\"cufonable
823
+ no-rss-widget\">You Might Also Like</h2></div></div><div class=\"vslnav\"><div
824
+ class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
825
+ style=\"padding: 4px;\"></div></div><div class=\"lazy-load vsl vsl-short\" id=\"s6245_17e775f_youmightalsolike\"><ul></ul></div><script
826
+ type=\"text/javascript\">\n//<![CDATA[\nvar s6245_17e775f_youmightalsolike =
827
+ new VideoSlider(\"s6245_17e775f_youmightalsolike\", {\"seasonCounts\":{\"episode\":{\"s3\":0,\"all\":5,\"s4\":0,\"s5\":0,\"s6\":0,\"s7\":5,\"s0\":0,\"s1\":0,\"s2\":0},\"clip\":{\"s3\":0,\"all\":41,\"s4\":3,\"s5\":6,\"s6\":2,\"s7\":9,\"s0\":19,\"s1\":1,\"s2\":1},\"all\":{\"s3\":0,\"all\":46,\"s4\":3,\"s5\":6,\"s6\":2,\"s7\":14,\"s0\":19,\"s1\":1,\"s2\":1}},\"url\":\"http://www.hulu.com/videos/slider\",\"maxCount\":5,\"perPageCount\":5,\"urlOptions\":{\"show_id\":10,\"type\":\"related\",\"page\":1,\"season\":\"\",\"location\":\"watch-page\",\"sort\":\"all\",\"items_per_page\":5,\"for_user\":false}})\n//]]>\n</script></div>\n
828
+ \ </div>\n \n <div class=\"cached-lazy-slider\" style=\"display: none;\">\n
829
+ \ <div class=\"vslc\" id=\"related-container\"><div class=\"vsltitle\"><div
830
+ class=\"vl\"><h2 class=\"cufonable no-rss-widget\">You Might Also Like</h2></div></div><div
831
+ class=\"vslnav\"><div class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
832
+ style=\"padding: 4px;\"></div></div><div class=\"vsl vsl-short\" id=\"s6245_17e775f_youmightalsolike\"><ul><li><span><div
833
+ class=\"play-button-hover\"><a href=\"http://www.hulu.com/castle\" beaconid=\"2309\"
834
+ beacontype=\"show\" class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking)
835
+ != 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,2309,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;1&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
836
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/2309');;
837
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Castle\" border=\"0\" class=\"thumbnail\"
838
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_castle.jpg\"
839
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
840
+ href=\"http://www.hulu.com/castle\" beaconid=\"2309\" beacontype=\"show\" class=\"beaconid
841
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
842
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,2309,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;1&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
843
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/2309');;
844
+ Beacon.trackThumbnailClick(this);\">Castle</a><div style=\"margin: 2px 0;\">
845
+ \ <span id=\"rating-show-2309\" class=\"video-rating\"></span>\n <script
846
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-2309',\n
847
+ \ 2309,\n 4.56712945229451,\n null,\n \"show\"\n
848
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
849
+ href=\"http://www.hulu.com/house\" beaconid=\"48\" beacontype=\"show\" class=\"beaconid
850
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
851
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,48,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;2&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
852
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/48');;
853
+ Beacon.trackThumbnailClick(this);\"><img alt=\"House\" border=\"0\" class=\"thumbnail\"
854
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_house.jpg\"
855
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
856
+ href=\"http://www.hulu.com/house\" beaconid=\"48\" beacontype=\"show\" class=\"beaconid
857
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
858
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,48,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;2&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
859
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/48');;
860
+ Beacon.trackThumbnailClick(this);\">House</a><div style=\"margin: 2px 0;\">
861
+ \ <span id=\"rating-show-48\" class=\"video-rating\"></span>\n <script
862
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-48',\n
863
+ \ 48,\n 4.56099436723905,\n null,\n \"show\"\n
864
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
865
+ href=\"http://www.hulu.com/fringe\" beaconid=\"1241\" beacontype=\"show\" class=\"beaconid
866
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
867
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,1241,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;3&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
868
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/1241');;
869
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Fringe\" border=\"0\" class=\"thumbnail\"
870
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_fringe.jpg\"
871
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
872
+ href=\"http://www.hulu.com/fringe\" beaconid=\"1241\" beacontype=\"show\" class=\"beaconid
873
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
874
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,1241,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;3&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
875
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/1241');;
876
+ Beacon.trackThumbnailClick(this);\">Fringe</a><div style=\"margin: 2px 0;\">
877
+ \ <span id=\"rating-show-1241\" class=\"video-rating\"></span>\n <script
878
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-1241',\n
879
+ \ 1241,\n 4.48879319700814,\n null,\n \"show\"\n
880
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
881
+ href=\"http://www.hulu.com/lie-to-me\" beaconid=\"1721\" beacontype=\"show\"
882
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
883
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,1721,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;4&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
884
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/1721');;
885
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Lie To Me\" border=\"0\" class=\"thumbnail\"
886
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_lie_to_me.jpg\"
887
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
888
+ href=\"http://www.hulu.com/lie-to-me\" beaconid=\"1721\" beacontype=\"show\"
889
+ class=\"beaconid beacontype info_hover\" onclick=\"if( typeof(_rTracking) !=
890
+ 'undefined' &amp;&amp; _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,1721,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;4&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
891
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/1721');;
892
+ Beacon.trackThumbnailClick(this);\">Lie To Me</a><div style=\"margin: 2px 0;\">
893
+ \ <span id=\"rating-show-1721\" class=\"video-rating\"></span>\n <script
894
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-1721',\n
895
+ \ 1721,\n 4.46568068185563,\n null,\n \"show\"\n
896
+ \ );\n </script>\n</div></li><li><span><div class=\"play-button-hover\"><a
897
+ href=\"http://www.hulu.com/psych\" beaconid=\"81\" beacontype=\"show\" class=\"beaconid
898
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
899
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,81,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;5&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
900
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/81');;
901
+ Beacon.trackThumbnailClick(this);\"><img alt=\"Psych\" border=\"0\" class=\"thumbnail\"
902
+ height=\"80\" src=\"http://assets.huluim.com/shows/show_thumbnail_psych.jpg\"
903
+ style=\"width: 145px; height: 80px; \" title=\"\" width=\"145\" /></a></div></span><a
904
+ href=\"http://www.hulu.com/psych\" beaconid=\"81\" beacontype=\"show\" class=\"beaconid
905
+ beacontype info_hover\" onclick=\"if( typeof(_rTracking) != 'undefined' &amp;&amp;
906
+ _rTracking != null)_rTracking.useCookieSend(&quot;relatedshow&quot;,&quot;click&quot;,0,10,81,&quot;2309_48_1241_1721_81&quot;,null,&quot;1&quot;,&quot;5&quot;,&quot;watch-page&quot;,null,null,&quot;&quot;);if
907
+ (typeof(_pt) != 'undefined' &amp;&amp; _pt) _pt._trackPageview('/show_recommendations/10/81');;
908
+ Beacon.trackThumbnailClick(this);\">Psych</a><div style=\"margin: 2px 0;\">
909
+ \ <span id=\"rating-show-81\" class=\"video-rating\"></span>\n <script
910
+ type=\"text/javascript\">\n new VideoRating(\n 'rating-show-81',\n
911
+ \ 81,\n 4.58078761497075,\n null,\n \"show\"\n
912
+ \ );\n </script>\n</div></li></ul></div></div>\n </div>\n \n</div>\n\n\n
913
+ \ <div id=\"show-expander\" class=\"abc fixed-lg container\" style=\"padding-top:15px;border-top:1px
914
+ solid #eee;\">\n <div class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">List
915
+ of Episodes (5)</h2></div><div class=\"tr\" id=\"vex-episode-10-nav\"></div></div><table
916
+ class=\"vex vex-episode\" id=\"vex-episode-10\"><tr class=\"rh\"><td class=\"rh-c0
917
+ vex-down\"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;, &quot;/videos/expander?order=asc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=season&amp;amp;video_type=episode&quot;);
918
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
919
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
920
+ href=\"javascript:void(0)\">Season:Episode</a></td><td class=\"rh-c1 \"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;,
921
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=title&amp;amp;video_type=episode&quot;);
922
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
923
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
924
+ href=\"javascript:void(0)\">Title</a></td><td class=\"rh-c2 \"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;,
925
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=has_captions&amp;amp;video_type=episode&quot;);
926
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
927
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
928
+ href=\"javascript:void(0)\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
929
+ /></a></td><td class=\"rh-c3 \"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;,
930
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=duration&amp;amp;video_type=episode&quot;);
931
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
932
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
933
+ href=\"javascript:void(0)\">Runtime</a></td><td class=\"rh-c4 \"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;,
934
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=original_premiere_date&amp;amp;video_type=episode&quot;);
935
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
936
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
937
+ href=\"javascript:void(0)\">Air Date</a></td><td class=\"rh-c5 \"><a onclick=\"VideoExpander.filter(&quot;vex-episode-10&quot;,
938
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=rating&amp;amp;video_type=episode&quot;);
939
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
940
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
941
+ href=\"javascript:void(0)\">User Rating</a></td><td class=\"rh-c6 \">Queue</td></tr><tr
942
+ class=\"srh\" id=\"srh-7\"><td onclick=\"VideoExpander.subheadingClicked(&quot;s-7&quot;,
943
+ &quot;http://www.hulu.com/videos/season_expander?order=desc&amp;page=1&amp;season_number=7&amp;show_id=10&amp;sort=season&amp;video_type=episode&quot;)\"
944
+ class=\"vex-up\" id=\"s-7\" colspan=\"6\">Season 7<span class=\"srh-loading\"
945
+ style=\"display: none\"><img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\"
946
+ src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
947
+ width=\"16\" /></span></td><td style=\"text-align: center;\"><a class=\"season-playlist-link\"
948
+ href=\"#\" onclick=\"VideoExpander.addSeasonToPlaylist(this, {&quot;season_number&quot;:&quot;7&quot;,&quot;show_id&quot;:&quot;10&quot;});
949
+ return false;\"><img alt=\"Icon-vex-add\" src=\"http://static.huluim.com/images/icon-vex-add.gif?1068623387\"
950
+ /><span>All</span></a></td></tr><tr class=\" s-7 r\"><td class=\"c0\">5</td><td
951
+ class=\"c1\"><div class='vex-h'><a href=\"/plus?src=sticker\" target=\"_self\"><img
952
+ alt=\"Available in HD on TV, mobile and computer with a Hulu Plus subscription\"
953
+ class=\"vex-h-sticker\" src=\"http://static.huluim.com/images/icon-hulu-plus-badge-light.gif?1102795591\"
954
+ title=\"Available in HD on TV, mobile and computer with a Hulu Plus subscription\"
955
+ /></a><a href=\"/authenticate?src=show&param=10\"><img alt=\"Available on the
956
+ computer to DISH subscribers\" class=\"vex-h-sticker auth-keyicon\" src=\"http://static.huluim.com/images/auth/authentication.gif?1083766096\"
957
+ title=\"Available on the computer to DISH subscribers\" /></a><a href=\"http://www.hulu.com/watch/308569/bones-the-twist-in-the-twister#x-0,vepisode,1,0\"
958
+ beaconid=\"308569\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
959
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Twist in the
960
+ Twister</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
961
+ /></td><td class=\"c3\">43:51</td><td class=\"c4\">12/08/2011</td><td class=\"c5\"><span
962
+ id=\"video-rating-308569\" class=\"video-rating\"></span><script type=\"text/javascript\">new
963
+ VideoRating(\"video-rating-308569\", 308569, 4.194500, null);</script></td><td
964
+ class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
965
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:308569,&quot;plus_only&quot;:true});
966
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624364929\"
967
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
968
+ class=\" s-7 r\"><td class=\"c0\">4</td><td class=\"c1\"><div class='vex-h'><a
969
+ href=\"http://www.hulu.com/watch/306238/bones-the-male-in-the-mail#x-0,vepisode,1,0\"
970
+ beaconid=\"306238\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
971
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Male in the
972
+ Mail</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
973
+ /></td><td class=\"c3\">43:47</td><td class=\"c4\">12/01/2011</td><td class=\"c5\"><span
974
+ id=\"video-rating-306238\" class=\"video-rating\"></span><script type=\"text/javascript\">new
975
+ VideoRating(\"video-rating-306238\", 306238, 4.300590, null);</script></td><td
976
+ class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
977
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:306238,&quot;plus_only&quot;:false});
978
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624365375\"
979
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
980
+ class=\" s-7 r\"><td class=\"c0\">3</td><td class=\"c1\"><div class='vex-h'><a
981
+ href=\"http://www.hulu.com/watch/301043/bones-the-prince-in-the-plastic#x-0,vepisode,1,0\"
982
+ beaconid=\"301043\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
983
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Prince in the
984
+ Plastic</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
985
+ /></td><td class=\"c3\">43:05</td><td class=\"c4\">11/17/2011</td><td class=\"c5\"><span
986
+ id=\"video-rating-301043\" class=\"video-rating\"></span><script type=\"text/javascript\">new
987
+ VideoRating(\"video-rating-301043\", 301043, 4.268080, null);</script></td><td
988
+ class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
989
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:301043,&quot;plus_only&quot;:false});
990
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624365813\"
991
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
992
+ class=\" s-7 r\"><td class=\"c0\">2</td><td class=\"c1\"><div class='vex-h'><a
993
+ href=\"http://www.hulu.com/watch/298984/bones-the-hot-dog-in-the-competition#x-0,vepisode,1,0\"
994
+ beaconid=\"298984\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
995
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Hot Dog in
996
+ the Competition</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
997
+ /></td><td class=\"c3\">43:58</td><td class=\"c4\">11/10/2011</td><td class=\"c5\"><span
998
+ id=\"video-rating-298984\" class=\"video-rating\"></span><script type=\"text/javascript\">new
999
+ VideoRating(\"video-rating-298984\", 298984, 4.302170, null);</script></td><td
1000
+ class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1001
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:298984,&quot;plus_only&quot;:false});
1002
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624366244\"
1003
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1004
+ class=\"with-bottom-border s-7 r\"><td class=\"c0\">1</td><td class=\"c1\"><div
1005
+ class='vex-h'><a href=\"http://www.hulu.com/watch/296608/bones-the-memories-in-the-shallow-grave#x-0,vepisode,1,0\"
1006
+ beaconid=\"296608\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1007
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">The Memories in
1008
+ the Shallow Grave</a></div></td><td class=\"c2\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
1009
+ /></td><td class=\"c3\">43:34</td><td class=\"c4\">11/03/2011</td><td class=\"c5\"><span
1010
+ id=\"video-rating-296608\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1011
+ VideoRating(\"video-rating-296608\", 296608, 4.398370, null);</script></td><td
1012
+ class=\"c6\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1013
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:296608,&quot;plus_only&quot;:false});
1014
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624366674\"
1015
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
1016
+ type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",\"programming_type\",\"title\",\"duration\",\"original_premiere_date\",\"rating\"],
1017
+ {\"order\":\"desc\",\"page\":1,\"sort\":\"season\",\"video_type\":\"episode\",\"show_id\":10});\n\n//]]>\n</script><div
1018
+ class=\"vextitle\"><div class=\"tl\"><h2 class=\"cufonable\">List of Clips (41)</h2></div><div
1019
+ class=\"tr\" id=\"vex-clip-10-nav\"><div class=\"page\">\n <ul>\n <li style=\"display:
1020
+ none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\" border=\"0\"
1021
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1022
+ width=\"16\" /></li>\n \n <li class=\"btn first\">\n <img alt=\"Pagination-arrow-first-disabled\"
1023
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-first-disabled.gif?1045656182\"
1024
+ width=\"12\" />\n </li>\n \n \n <li class=\"btn\">\n <img
1025
+ alt=\"Pagination-arrow-prev-disabled\" height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1026
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/videos/expander?order=desc&amp;amp;show_id=10&amp;amp;sort=original_premiere_date&amp;amp;video_type=clip\"
1027
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1028
+ ; new Ajax.Request('/videos/expander?order=desc&amp;show_id=10&amp;sort=original_premiere_date&amp;video_type=clip',
1029
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1030
+ }, parameters:Form.serialize(this)}); return false;\" total_pages=\"3\"> <input
1031
+ autocomplete=\"off\" class=\"short\" name=\"page\" onfocus=\"$(this).select();\"
1032
+ type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
1033
+ \ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1034
+ ; new Ajax.Request('/videos/expander?order=desc&amp;page=3&amp;show_id=10&amp;sort=original_premiere_date&amp;video_type=clip',
1035
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1036
+ }}); return false;\" title=\"Go to the last page\">3</a>\n </li>\n\n <li
1037
+ class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
1038
+ ; new Ajax.Request('/videos/expander?order=desc&amp;page=2&amp;show_id=10&amp;sort=original_premiere_date&amp;video_type=clip',
1039
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1040
+ }}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
1041
+ height=\"12\" id=\"pagination-arrow-next.gif132353624419827\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1042
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1043
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n</div></div><table
1044
+ class=\"vex vex-clip\" id=\"vex-clip-10\"><tr class=\"rh\"><td class=\"rh-c0
1045
+ \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;, &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=season&amp;amp;video_type=clip&quot;);
1046
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1047
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1048
+ href=\"javascript:void(0)\">Season:Episode</a></td><td class=\"rh-c1 \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;,
1049
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=title&amp;amp;video_type=clip&quot;);
1050
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1051
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1052
+ href=\"javascript:void(0)\">Title</a></td><td class=\"rh-c2 \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;,
1053
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=has_captions&amp;amp;video_type=clip&quot;);
1054
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1055
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1056
+ href=\"javascript:void(0)\"><img alt=\"Icon-cc\" src=\"http://static.huluim.com/images/icon-cc.png?1086228904\"
1057
+ /></a></td><td class=\"rh-c3 \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;,
1058
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=programming_type&amp;amp;video_type=clip&quot;);
1059
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1060
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1061
+ href=\"javascript:void(0)\">Type</a></td><td class=\"rh-c4 \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;,
1062
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=duration&amp;amp;video_type=clip&quot;);
1063
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1064
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1065
+ href=\"javascript:void(0)\">Runtime</a></td><td class=\"rh-c5 vex-down\"><a
1066
+ onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;, &quot;/videos/expander?order=asc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=original_premiere_date&amp;amp;video_type=clip&quot;);
1067
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1068
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1069
+ href=\"javascript:void(0)\">Air Date</a></td><td class=\"rh-c6 \"><a onclick=\"VideoExpander.filter(&quot;vex-clip-10&quot;,
1070
+ &quot;/videos/expander?order=desc&amp;amp;page=1&amp;amp;show_id=10&amp;amp;sort=rating&amp;amp;video_type=clip&quot;);
1071
+ return false\" onmouseout=\"Hover.image_toggle_out($(this).down('img')); return
1072
+ false\" onmouseover=\"Hover.image_toggle_over($(this).down('img')); return false\"
1073
+ href=\"javascript:void(0)\">User Rating</a></td><td class=\"rh-c7 \">Queue</td></tr><tr
1074
+ class=\"r\"><td class=\"c0\">7 : 3</td><td class=\"c1\"><div class='vex-h'><a
1075
+ href=\"http://www.hulu.com/watch/300468/bones-bouncing-bears#x-4,vclip,1,0\"
1076
+ beaconid=\"300468\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1077
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Bouncing Bears</a></div></td><td
1078
+ class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">00:33</td><td
1079
+ class=\"c5\">11/17/2011</td><td class=\"c6\"><span id=\"video-rating-300468\"
1080
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-300468\",
1081
+ 300468, 4.310340, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1082
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:300468,&quot;plus_only&quot;:false});
1083
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624421498\"
1084
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1085
+ class=\"r\"><td class=\"c0\">7 : 2</td><td class=\"c1\"><div class='vex-h'><a
1086
+ href=\"http://www.hulu.com/watch/297889/bones-youthful-indiscretion-#x-4,vclip,1,0\"
1087
+ beaconid=\"297889\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1088
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Youthful Indiscretion
1089
+ </a></div></td><td class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">00:59</td><td
1090
+ class=\"c5\">11/10/2011</td><td class=\"c6\"><span id=\"video-rating-297889\"
1091
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-297889\",
1092
+ 297889, 4.406390, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1093
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:297889,&quot;plus_only&quot;:false});
1094
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif13235362442192\"
1095
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1096
+ class=\"r\"><td class=\"c0\">7 : 2</td><td class=\"c1\"><div class='vex-h'><a
1097
+ href=\"http://www.hulu.com/watch/297892/bones-going-back#x-4,vclip,1,0\" beaconid=\"297892\"
1098
+ beacontype=\"video\" class=\"beaconid beacontype show-thumb info_hover\" onclick=\";
1099
+ Beacon.trackThumbnailClick(this);\">Going Back</a></div></td><td class=\"c2\"></td><td
1100
+ class=\"c3\">Excerpt</td><td class=\"c4\">00:35</td><td class=\"c5\">11/10/2011</td><td
1101
+ class=\"c6\"><span id=\"video-rating-297892\" class=\"video-rating\"></span><script
1102
+ type=\"text/javascript\">new VideoRating(\"video-rating-297892\", 297892, 4.274190,
1103
+ null);</script></td><td class=\"c7\"><span class=\"expander-add-me super_plus\"
1104
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:297892,&quot;plus_only&quot;:false});
1105
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624422333\"
1106
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1107
+ class=\"r\"><td class=\"c0\">7 : 2</td><td class=\"c1\"><div class='vex-h'><a
1108
+ href=\"http://www.hulu.com/watch/297890/bones-eating-competition#x-4,vclip,1,0\"
1109
+ beaconid=\"297890\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1110
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Eating Competition</a></div></td><td
1111
+ class=\"c2\"></td><td class=\"c3\">Excerpt</td><td class=\"c4\">00:33</td><td
1112
+ class=\"c5\">11/10/2011</td><td class=\"c6\"><span id=\"video-rating-297890\"
1113
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-297890\",
1114
+ 297890, 4.166670, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1115
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:297890,&quot;plus_only&quot;:false});
1116
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624422748\"
1117
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1118
+ class=\"r\"><td class=\"c0\">7 : 1</td><td class=\"c1\"><div class='vex-h'><a
1119
+ href=\"http://www.hulu.com/watch/295798/bones-not-ready#x-4,vclip,1,0\" beaconid=\"295798\"
1120
+ beacontype=\"video\" class=\"beaconid beacontype show-thumb info_hover\" onclick=\";
1121
+ Beacon.trackThumbnailClick(this);\">Not Ready</a></div></td><td class=\"c2\"></td><td
1122
+ class=\"c3\">Excerpt</td><td class=\"c4\">01:37</td><td class=\"c5\">11/03/2011</td><td
1123
+ class=\"c6\"><span id=\"video-rating-295798\" class=\"video-rating\"></span><script
1124
+ type=\"text/javascript\">new VideoRating(\"video-rating-295798\", 295798, 4.301470,
1125
+ null);</script></td><td class=\"c7\"><span class=\"expander-add-me super_plus\"
1126
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:295798,&quot;plus_only&quot;:false});
1127
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624423158\"
1128
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1129
+ class=\"r\"><td class=\"c0\">7 : 1</td><td class=\"c1\"><div class='vex-h'><a
1130
+ href=\"http://www.hulu.com/watch/295799/bones-marriage#x-4,vclip,1,0\" beaconid=\"295799\"
1131
+ beacontype=\"video\" class=\"beaconid beacontype show-thumb info_hover\" onclick=\";
1132
+ Beacon.trackThumbnailClick(this);\">Marriage</a></div></td><td class=\"c2\"></td><td
1133
+ class=\"c3\">Excerpt</td><td class=\"c4\">01:48</td><td class=\"c5\">11/03/2011</td><td
1134
+ class=\"c6\"><span id=\"video-rating-295799\" class=\"video-rating\"></span><script
1135
+ type=\"text/javascript\">new VideoRating(\"video-rating-295799\", 295799, 4.123920,
1136
+ null);</script></td><td class=\"c7\"><span class=\"expander-add-me super_plus\"
1137
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:295799,&quot;plus_only&quot;:false});
1138
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624423567\"
1139
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1140
+ class=\"r\"><td class=\"c0\">7 : 1</td><td class=\"c1\"><div class='vex-h'><a
1141
+ href=\"http://www.hulu.com/watch/295816/bones-emotional#x-4,vclip,1,0\" beaconid=\"295816\"
1142
+ beacontype=\"video\" class=\"beaconid beacontype show-thumb info_hover\" onclick=\";
1143
+ Beacon.trackThumbnailClick(this);\">Emotional</a></div></td><td class=\"c2\"></td><td
1144
+ class=\"c3\">Excerpt</td><td class=\"c4\">01:37</td><td class=\"c5\">11/03/2011</td><td
1145
+ class=\"c6\"><span id=\"video-rating-295816\" class=\"video-rating\"></span><script
1146
+ type=\"text/javascript\">new VideoRating(\"video-rating-295816\", 295816, 4.032260,
1147
+ null);</script></td><td class=\"c7\"><span class=\"expander-add-me super_plus\"
1148
+ title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:true,&quot;id&quot;:295816,&quot;plus_only&quot;:false});
1149
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624423975\"
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/255114/bones-will-they-or-wont-they#x-4,vclip,1,0\"
1152
+ beaconid=\"255114\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1153
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Will They Or Won't
1154
+ They?</a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1155
+ class=\"c4\">04:30</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1156
+ id=\"video-rating-255114\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1157
+ VideoRating(\"video-rating-255114\", 255114, 4.186390, 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;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:255114,&quot;plus_only&quot;:false});
1160
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624424326\"
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/255115/bones-what-to-do-without-emily#x-4,vclip,1,0\"
1163
+ beaconid=\"255115\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1164
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">What To Do Without
1165
+ Emily?</a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1166
+ class=\"c4\">03:38</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1167
+ id=\"video-rating-255115\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1168
+ VideoRating(\"video-rating-255115\", 255115, 4.100000, null);</script></td><td
1169
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1170
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:255115,&quot;plus_only&quot;:false});
1171
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624424666\"
1172
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1173
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/305895/bones-we-need-more-interns-#x-4,vclip,1,0\"
1174
+ beaconid=\"305895\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1175
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">We Need More Interns
1176
+ \ </a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1177
+ class=\"c4\">06:02</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1178
+ id=\"video-rating-305895\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1179
+ VideoRating(\"video-rating-305895\", 305895, 4.198310, null);</script></td><td
1180
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1181
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:305895,&quot;plus_only&quot;:false});
1182
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624425005\"
1183
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1184
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/305896/bones-old-school-jetpack-#x-4,vclip,1,0\"
1185
+ beaconid=\"305896\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1186
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Old School Jetpack
1187
+ </a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1188
+ class=\"c4\">04:52</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1189
+ id=\"video-rating-305896\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1190
+ VideoRating(\"video-rating-305896\", 305896, 4.341560, null);</script></td><td
1191
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1192
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:305896,&quot;plus_only&quot;:false});
1193
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624425349\"
1194
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1195
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/305897/bones-humor-makes-the-show-unique-#x-4,vclip,1,0\"
1196
+ beaconid=\"305897\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1197
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Humor Makes the
1198
+ Show Unique </a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the
1199
+ Scenes</td><td class=\"c4\">04:03</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1200
+ id=\"video-rating-305897\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1201
+ VideoRating(\"video-rating-305897\", 305897, 4.302330, null);</script></td><td
1202
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1203
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:305897,&quot;plus_only&quot;:false});
1204
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624425687\"
1205
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1206
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255117/bones-freaky-friday-episode#x-4,vclip,1,0\"
1207
+ beaconid=\"255117\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1208
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Freaky Friday Episode</a></div></td><td
1209
+ class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td class=\"c4\">04:18</td><td
1210
+ class=\"c5\">05/09/2011</td><td class=\"c6\"><span id=\"video-rating-255117\"
1211
+ class=\"video-rating\"></span><script type=\"text/javascript\">new VideoRating(\"video-rating-255117\",
1212
+ 255117, 4.164090, null);</script></td><td class=\"c7\"><span class=\"expander-add-me
1213
+ super_plus\" title=\"Add to queue / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:255117,&quot;plus_only&quot;:false});
1214
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624426026\"
1215
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1216
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255116/bones-a-deep-bench-of-talent#x-4,vclip,1,0\"
1217
+ beaconid=\"255116\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1218
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">A Deep Bench Of
1219
+ Talent</a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1220
+ class=\"c4\">04:44</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1221
+ id=\"video-rating-255116\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1222
+ VideoRating(\"video-rating-255116\", 255116, 4.170280, null);</script></td><td
1223
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1224
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:255116,&quot;plus_only&quot;:false});
1225
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624426356\"
1226
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr><tr
1227
+ class=\"r\"><td class=\"c0\">-</td><td class=\"c1\"><div class='vex-h'><a href=\"http://www.hulu.com/watch/255118/bones-andrea-stop-watching-bones#x-4,vclip,1,0\"
1228
+ beaconid=\"255118\" beacontype=\"video\" class=\"beaconid beacontype show-thumb
1229
+ info_hover\" onclick=\"; Beacon.trackThumbnailClick(this);\">Andrea, Stop Watching
1230
+ Bones!</a></div></td><td class=\"c2\"></td><td class=\"c3\">Behind the Scenes</td><td
1231
+ class=\"c4\">04:15</td><td class=\"c5\">05/09/2011</td><td class=\"c6\"><span
1232
+ id=\"video-rating-255118\" class=\"video-rating\"></span><script type=\"text/javascript\">new
1233
+ VideoRating(\"video-rating-255118\", 255118, 4.032160, null);</script></td><td
1234
+ class=\"c7\"><span class=\"expander-add-me super_plus\" title=\"Add to queue
1235
+ / playlist\"><a href=\"#\" onclick=\"SuperPlus.show(window.event||event,{&quot;is_movie&quot;:false,&quot;auth_valid&quot;:false,&quot;id&quot;:255118,&quot;plus_only&quot;:false});
1236
+ return false;\"><img alt=\"\" border=\"0\" class=\"hover-me\" id=\"icon-add.gif132353624426677\"
1237
+ src=\"http://static.huluim.com/images/icon-add.gif?1216356738\" /></a></span></td></tr></table><script
1238
+ type=\"text/javascript\">\n//<![CDATA[\n VideoExpander.setState([\"season\",\"programming_type\",\"title\",\"duration\",\"original_premiere_date\",\"rating\"],
1239
+ {\"order\":\"desc\",\"page\":1,\"sort\":\"original_premiere_date\",\"video_type\":\"clip\",\"show_id\":10});\n\n//]]>\n</script>\n
1240
+ \ </div>\n\n\n<div class=\"fixed-lg container\">\n <div class=\"fluid container\">\n
1241
+ \ <div class=\"vslc\" id=\"offsite-container\"><div class=\"vsltitle\"><div
1242
+ class=\"vl\"><h2 class=\"cufonable no-rss-widget\">Available Elsewhere (1)</h2></div></div><div
1243
+ class=\"vslnav\"><div class=\"vl\" style=\"min-height: 29px\"><div style=\"padding-top:
1244
+ 5px\">Episodes available for free on other websites.</div></div><div style=\"padding:4px;\"></div></div><div
1245
+ class=\"lazy-load vsl vsl-short\" id=\"s6691_17e775f_availableelsewhere1\"><ul></ul></div><script
1246
+ type=\"text/javascript\">\n//<![CDATA[\nvar s6691_17e775f_availableelsewhere1
1247
+ = new VideoSlider(\"s6691_17e775f_availableelsewhere1\", {\"seasonCounts\":{\"all\":{\"all\":1,\"s6\":1},\"offsite\":{\"all\":1,\"s6\":1}},\"url\":\"http://www.hulu.com/videos/slider\",\"maxCount\":1,\"perPageCount\":5,\"urlOptions\":{\"show_id\":10,\"type\":\"offsite\",\"page\":1,\"season\":\"\",\"sort\":\"original_premiere_date\",\"items_per_page\":5}})\n//]]>\n</script></div>\n
1248
+ \ </div>\n</div>\n\r\n</div>\r\n\r\n\r\n <div class=\"ext-show-link-container-watch\"><div
1249
+ class=\"ext-show-link\">For insider news, photos, and more visit the official
1250
+ <a href=\"http://www.fox.com/bones/\" target=\"_blank\">Bones website</a></div></div>\r\n\r\n\r\n\r\n
1251
+ \ \n<div class=\"activities-pane\" id=\"activities-pane\">\n <div class=\"fluid
1252
+ bg-gray\" style=\"margin: 0px; padding: 20px 0px 5px 0px;\">\n <div class=\"fixed-lg
1253
+ container\" id=\"activities-container\">\n \n <div class=\"header\">\n
1254
+ \ <div id=\"activities-scrollto\"></div>\n <div class=\"title\">\n <h2 class=\"cufonable\">Activities</h2>\n
1255
+ \ </div>\n <div class=\"activities-select\" style=\"float: left; padding: 5px
1256
+ 0px 0px 5px;\">\n \n ( <a class=\"utility-link\" href=\"#\" onclick=\"if
1257
+ (!Behaviors.isLoggedIn()) { FloatingLoginForm.show(this); return false; } Activity.toggleSelection('friends',
1258
+ 308569, 'Video');; return false;\">show only my Friends' activities</a> )\n
1259
+ \ \n </div>\n <div id=\"activities-preview-loading\" class=\"tab-loading-circle
1260
+ activities-preview-loading\" style=\"display: none;\">\n <img alt=\"Loading-animated-circle\"
1261
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1262
+ width=\"16\" />\n </div>\n <br style=\"clear:both;\"/>\n</div>\n<div class=\"section\"
1263
+ style=\"padding-top: 5px;\">\n <div class=\"activities-list\">\n <div class=\"header\">\n
1264
+ \ <div style=\"float: left; padding-right: 5px;\">\n <div style=\"padding-bottom:
1265
+ 4px;\">\n <a class=\"utility-link\" href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('reviews',
1266
+ '/reviews/tab_load?reviewable_id=308569&amp;reviewable_type=Video', true, null);
1267
+ window.scrollTo(0, 400); return false;; return false;\">Reviews (4)</a>\n </div>\n
1268
+ \ <a href=\"#\"><img alt=\"Create new review\" border=\"0\" class=\"hover-me\"
1269
+ id=\"btn-addreview-small.gif132353963111745\" onclick=\"Activity.createNewReview(this,
1270
+ 308569,'Video');return false;\" src=\"http://static.huluim.com/images/btn-addreview-small.gif?1204017197\"
1271
+ title=\"Create new review\" /></a>\n </div>\n <div style=\"float:
1272
+ left;\">\n <div style=\"padding-bottom: 4px;\">\n <a class=\"utility-link\"
1273
+ href=\"#\" onclick=\"$('activities-preview-loading').show();Tab.loadTab('forums',
1274
+ '/topics/tab_load?topicable_id=308569&amp;topicable_type=Video', true, null);
1275
+ window.scrollTo(0, 400); return false;; return false;\">Discussions (2)</a>\n
1276
+ \ </div>\n <a href=\"#\"><img alt=\"Create new topic\" border=\"0\"
1277
+ class=\"hover-me\" id=\"btn-add-topic.gif132353963111921\" onclick=\"Activity.createNewTopic(this,
1278
+ 308569,'Video');return false;\" src=\"http://static.huluim.com/images/btn-add-topic.gif?1292384754\"
1279
+ title=\"Create new topic\" /></a>\n </div>\n\n <div class=\"page\">\n
1280
+ \ <ul>\n <li style=\"display: none\" class=\"pagination-loading\"><img alt=\"Loading-animated-circle\"
1281
+ border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1282
+ width=\"16\" /></li>\n \n \n <li class=\"btn\">\n <img alt=\"Pagination-arrow-prev-disabled\"
1283
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1284
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;amp;target_id=308569&amp;amp;target_type=Video\"
1285
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1286
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;target_id=308569&amp;target_type=Video',
1287
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1288
+ }, parameters:Form.serialize(this)}); return false;\" total_pages=\"2\"> <input
1289
+ autocomplete=\"off\" class=\"short\" name=\"page\" onfocus=\"$(this).select();\"
1290
+ type=\"text\" value=\"1\" />\n </form> \n </li>\n <li class=\"of\">of</li>\n
1291
+ \ <li class=\"total\">\n <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1292
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=2&amp;target_id=308569&amp;target_type=Video',
1293
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1294
+ }}); return false;\" title=\"Go to the last page\">2</a>\n </li>\n\n <li
1295
+ class=\"btn\" id=\"sosodssfs\">\n <a href=\"#\" onclick=\"Pagination.loading($(this));
1296
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=2&amp;target_id=308569&amp;target_type=Video',
1297
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1298
+ }}); return false;\"><img alt=\"Go to the next page\" border=\"0\" class=\"hover-me\"
1299
+ height=\"12\" id=\"pagination-arrow-next.gif13235396311264\" src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1300
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1301
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
1302
+ \ <br style=\"clear:both;\"/>\n </div>\n <div class=\"list\">\n \n
1303
+ \ \n \n <div class=\"item activatable review\">\n \n <div
1304
+ class=\"extras\">\n <div class=\"timestamp\">about 7 hours ago</div>\n
1305
+ \ \n <div class=\"hover\"> \n <span style=\"position: relative\">\n
1306
+ \ Was this review helpful?&nbsp;<a class=\"p-content-extras-link\"
1307
+ href=\"#\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show($(this));
1308
+ return false; }this.parentNode.update('Thank you for voting!'); new Ajax.Request('/reviews/vote',
1309
+ {asynchronous:true, evalScripts:true, parameters:{voted_up:1, review_id:545218}});
1310
+ return false; ; return false;\">Yes</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link\"
1311
+ href=\"#\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show($(this));
1312
+ return false; }this.parentNode.update('Thank you for voting!'); new Ajax.Request('/reviews/vote',
1313
+ {asynchronous:true, evalScripts:true, parameters:{voted_up:0, review_id:545218}});
1314
+ return false; ; return false;\">No</a>\n </span><br/><span style=\"position:
1315
+ relative\"><a class=\"p-content-extras-link report-link\" href=\"javascript:void(0)\"
1316
+ data-url=\"/reviews/report/545218?flag_type=spoiler\" data-after=\"Reported\">Report
1317
+ this review</a></span><br/><br/><a href=\"#\" onclick=\"Tab.loadTab('reviews',
1318
+ '/reviews/tab_load?review_id=545218&amp;reviewable_id=308569&amp;reviewable_type=Video',
1319
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1320
+ on this review\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132353963113198\"
1321
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1322
+ on this review\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1323
+ \ \n <div class=\"header\">\n <a href=\"/profiles/soccerchick2002\"
1324
+ class=\"info_hover\">Melissa M</a> reviewed this \n video.<br/>\n
1325
+ \ <div style=\"padding: 3px 0px\">\n <span class=\"rating\"
1326
+ style=\"padding-left: 0px;\" ><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1327
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1328
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1329
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1330
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_empty.gif?1118912662\"
1331
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /></span>\n <a
1332
+ href=\"#\" onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545218&amp;reviewable_id=308569&amp;reviewable_type=Video',
1333
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Cute episode</a>\n
1334
+ \ </div>\n </div>\n <div>\n After reading
1335
+ the previous reviews, I agree a little. It's not to the point where it bothers
1336
+ me, but it's something I picked up on a bit. I hope this is just an episode
1337
+ or two funk (or until the baby is born) and then they'll get another multi episode
1338
+ plot going. The show is lacking without any set bad guy who stretches a story
1339
+ line over multiple episodes (example- like the gravedigger). So for now, it's
1340
+ wait and see.<div class=\"p-spacer\"></div>Also, did anyone notice how rainbow
1341
+ chick in this episode is an Asian version of Daisy?\n </div> \n </div>
1342
+ \n <br style=\"clear:both;\"/>\n </div>\n\n\n \n \n <div
1343
+ class=\"item activatable comment\">\n \n <div class=\"extras\">\n <div
1344
+ class=\"timestamp\">about 13 hours ago</div>\n \n <div class=\"hover\">
1345
+ <a href=\"#\" onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=544965&amp;reviewable_id=308569&amp;reviewable_type=Video',
1346
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1347
+ on this review too\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132353963113843\"
1348
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1349
+ on this review too\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1350
+ \ \n <div class=\"header\">\n <a href=\"/profiles/rhpowell\"
1351
+ class=\"info_hover\">RH Powell</a> commented on the review \"<a href=\"#\"
1352
+ onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=544965&amp;reviewable_id=308569&amp;reviewable_type=Video',
1353
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Getting
1354
+ worse and worse</a>\"<br/>\n </div>\n <div>\n FYI.
1355
+ Large storms always rotate cyclonically (clockwise in the southern hemisphere
1356
+ and counterclockwise in the northern hemisphere). This is due to the Coriolis
1357
+ effect based on the earth’s rotation. Tornados and thunder storms are too small
1358
+ to always be affected by the earth’s rotation (as indicated by their large Rossby
1359
+ numbers). They can shift rotational direction if they are influenced by natural
1360
+ terrain or large man-made structures. About 1% of tornados rotate in an anticyclonic
1361
+ direction, but are usually short-lived. So much for the 3rd grade.\n </div>
1362
+ \n </div> \n <br style=\"clear:both;\"/>\n </div>\n\n\n \n \n
1363
+ \ <div class=\"item activatable review\">\n \n <div class=\"extras\">\n
1364
+ \ <div class=\"timestamp\">about 13 hours ago</div>\n \n <div
1365
+ class=\"hover\"> \n <span style=\"position: relative\">\n Was
1366
+ this review helpful?&nbsp;<a class=\"p-content-extras-link\" href=\"#\" onclick=\"if
1367
+ (!Behaviors.isLoggedIn()) { FloatingLoginForm.show($(this)); return false; }this.parentNode.update('Thank
1368
+ you for voting!'); new Ajax.Request('/reviews/vote', {asynchronous:true, evalScripts:true,
1369
+ parameters:{voted_up:1, review_id:545138}}); return false; ; return false;\">Yes</a>&nbsp;/&nbsp;<a
1370
+ class=\"p-content-extras-link\" href=\"#\" onclick=\"if (!Behaviors.isLoggedIn())
1371
+ { FloatingLoginForm.show($(this)); return false; }this.parentNode.update('Thank
1372
+ you for voting!'); new Ajax.Request('/reviews/vote', {asynchronous:true, evalScripts:true,
1373
+ parameters:{voted_up:0, review_id:545138}}); return false; ; return false;\">No</a>\n
1374
+ \ </span><br/><span style=\"position: relative\"><a class=\"p-content-extras-link
1375
+ report-link\" href=\"javascript:void(0)\" data-url=\"/reviews/report/545138?flag_type=spoiler\"
1376
+ data-after=\"Reported\">Report this review</a></span><br/><br/><a href=\"#\"
1377
+ onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545138&amp;reviewable_id=308569&amp;reviewable_type=Video',
1378
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1379
+ on this review\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif13235396311439\"
1380
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1381
+ on this review\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1382
+ \ \n <div class=\"header\">\n <a href=\"/profiles/rhpowell\"
1383
+ class=\"info_hover\">Rh Powell</a> reviewed this \n video.<br/>\n
1384
+ \ <div style=\"padding: 3px 0px\">\n <span class=\"rating\"
1385
+ style=\"padding-left: 0px;\" ><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1386
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1387
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_empty.gif?1118912662\"
1388
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_empty.gif?1118912662\"
1389
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_empty.gif?1118912662\"
1390
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /></span>\n <a
1391
+ href=\"#\" onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545138&amp;reviewable_id=308569&amp;reviewable_type=Video',
1392
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Bones is
1393
+ twisting out of control</a>\n </div>\n </div>\n <div>\n
1394
+ \ Bones has long been a favorite of mine but it continues to stray
1395
+ from reality into a kind of Keystone Cops/Looney Tunes storyline with dialogue
1396
+ to match. These could be cartoon characters. I have 5 perfectly normal children
1397
+ and 10 perfectly normal grandchildren. This overly dramatic, hand wringing behavior
1398
+ by new parents is annoying and silly. The nerd and his mother sucks air out
1399
+ of the room—if it's meant to be funny, it's not. It's tiresome. And a pregnant
1400
+ woman who would willingly and unnecessarily endanger her life and the life of
1401
+ her unborn needs serious help. I hate it, but this show is losing me. It's become
1402
+ a sitcom without the humor.<div class=\"p-spacer\"></div>I think this season,
1403
+ David Boreanaz is wasting his talent—or it's being wasted for him.\n </div>
1404
+ \n </div> \n <br style=\"clear:both;\"/>\n </div>\n\n\n \n \n
1405
+ \ <div class=\"item activatable comment\">\n \n <div class=\"extras\">\n
1406
+ \ <div class=\"timestamp\">about 15 hours ago</div>\n \n <div
1407
+ class=\"hover\"> <a href=\"#\" onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545044&amp;reviewable_id=308569&amp;reviewable_type=Video',
1408
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1409
+ on this review too\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132353963114897\"
1410
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1411
+ on this review too\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1412
+ \ \n <div class=\"header\">\n <a href=\"/profiles/biogirl52\"
1413
+ class=\"info_hover\">Courtney Hornberg</a> commented on the review \"<a href=\"#\"
1414
+ onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545044&amp;reviewable_id=308569&amp;reviewable_type=Video',
1415
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Assistants</a>\"<br/>\n
1416
+ \ </div>\n <div>\n Ummmm don't you remember what
1417
+ happened to him? He helped a serial killer.\n </div> \n </div>
1418
+ \n <br style=\"clear:both;\"/>\n </div>\n\n\n \n \n <div
1419
+ class=\"item activatable topic\">\n \n <div class=\"extras\">\n <div
1420
+ class=\"timestamp\">about 16 hours ago</div>\n \n <div class=\"hover\">
1421
+ \n <span style=\"position: relative\">\n Report as: &nbsp;
1422
+ <a class=\"p-content-extras-link report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1330827?type=spam\"
1423
+ data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link
1424
+ report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1330827?type=offensive\"
1425
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1426
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1330827&amp;segregate_video=true&amp;topic_id=306564&amp;topicable_id=308569&amp;topicable_type=Video',
1427
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1428
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif13235396311528\"
1429
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1430
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1431
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1432
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1433
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1434
+ \ <a href=\"/profiles/u/xOEnpQNsVfZOm9RAybugrg\" class=\"info_hover\">Diane
1435
+ Gorka</a> started a new discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1436
+ '/topics/tab_load?segregate_video=true&amp;topic_id=306564&amp;topicable_id=308569&amp;topicable_type=Video',
1437
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Cam said
1438
+ it best...</a>\"<br/>\n \n </div>\n <div class=\"\"
1439
+ style=\"overflow: hidden;\"> &quot;Didn't someone get murdered?&quot;<div class=\"p-spacer\"></div>The
1440
+ focus on interpersonal relationships and raising a child in the 7th season is
1441
+ overkill. I understand that with the progression of any series, characters are
1442
+ supposed to develop and grow, but they've taken a creative and brilliant show
1443
+ and turned into a daytime soap opera. <div class=\"p-spacer\"></div>I will concede,
1444
+ however, that this season is a great form of contraception. I have no intention
1445
+ of procreating anytime soon. </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1446
+ \ </div>\n\n\n \n \n <div class=\"item activatable review\">\n
1447
+ \ \n <div class=\"extras\">\n <div class=\"timestamp\">about 19
1448
+ hours ago</div>\n \n <div class=\"hover\"> \n <span style=\"position:
1449
+ relative\">\n Was this review helpful?&nbsp;<a class=\"p-content-extras-link\"
1450
+ href=\"#\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show($(this));
1451
+ return false; }this.parentNode.update('Thank you for voting!'); new Ajax.Request('/reviews/vote',
1452
+ {asynchronous:true, evalScripts:true, parameters:{voted_up:1, review_id:545044}});
1453
+ return false; ; return false;\">Yes</a>&nbsp;/&nbsp;<a class=\"p-content-extras-link\"
1454
+ href=\"#\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show($(this));
1455
+ return false; }this.parentNode.update('Thank you for voting!'); new Ajax.Request('/reviews/vote',
1456
+ {asynchronous:true, evalScripts:true, parameters:{voted_up:0, review_id:545044}});
1457
+ return false; ; return false;\">No</a>\n </span><br/><span style=\"position:
1458
+ relative\"><a class=\"p-content-extras-link report-link\" href=\"javascript:void(0)\"
1459
+ data-url=\"/reviews/report/545044?flag_type=spoiler\" data-after=\"Reported\">Report
1460
+ this review</a></span><br/><br/><a href=\"#\" onclick=\"Tab.loadTab('reviews',
1461
+ '/reviews/tab_load?review_id=545044&amp;reviewable_id=308569&amp;reviewable_type=Video',
1462
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Comment
1463
+ on this review\" border=\"0\" class=\"hover-me\" id=\"btn-comment.gif132353963115824\"
1464
+ src=\"http://static.huluim.com/images/btn-comment.gif?1168633157\" title=\"Comment
1465
+ on this review\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1466
+ \ \n <div class=\"header\">\n <a href=\"/profiles/u/j13F3j_ZYJMaalddO9y0mA\"
1467
+ class=\"info_hover\">Jessica Turner</a> reviewed this \n video.<br/>\n
1468
+ \ <div style=\"padding: 3px 0px\">\n <span class=\"rating\"
1469
+ style=\"padding-left: 0px;\" ><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1470
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1471
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1472
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1473
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /><img src=\"http://static.huluim.com/images/rating_full.gif?1285449890\"
1474
+ height=\"11\" width=\"11\" border=\"0\" alt=\"Rating star\" /></span>\n <a
1475
+ href=\"#\" onclick=\"Tab.loadTab('reviews', '/reviews/tab_load?review_id=545044&amp;reviewable_id=308569&amp;reviewable_type=Video',
1476
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Assistants</a>\n
1477
+ \ </div>\n </div>\n <div>\n I love how
1478
+ they use different lab assistants in different episodes it keeps things interesting.
1479
+ I wish they would bring back the first original assistant. \n </div>
1480
+ \n </div> \n <br style=\"clear:both;\"/>\n </div>\n\n\n \n \n
1481
+ \ <div class=\"item activatable post\">\n \n <div class=\"extras\">\n
1482
+ \ <div class=\"timestamp\">about 22 hours ago</div>\n \n <div
1483
+ class=\"hover\"> \n <span style=\"position: relative\">\n Report
1484
+ as: &nbsp; <a class=\"p-content-extras-link report-link\" href=\"javascript:void(0)\"
1485
+ data-url=\"/posts/flag/1330395?type=spam\" data-after=\"Reported as spam\">spam</a>&nbsp;/&nbsp;<a
1486
+ class=\"p-content-extras-link report-link\" href=\"javascript:void(0)\" data-url=\"/posts/flag/1330395?type=offensive\"
1487
+ data-after=\"Reported as offensive\">offensive</a></span><br/><br/><a href=\"#\"
1488
+ onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1330395&amp;segregate_video=true&amp;topic_id=306453&amp;topicable_id=308569&amp;topicable_type=Video',
1489
+ true, null); window.scrollTo(0, 400); return false;; return false;\"><img alt=\"Reply
1490
+ to this topic\" border=\"0\" class=\"hover-me\" id=\"btn-reply-topic.gif132353963116351\"
1491
+ src=\"http://static.huluim.com/images/btn-reply-topic.gif?1189499590\" title=\"Reply
1492
+ to this topic\" /></a>\n </div> \n </div> \n <div class=\"content\">\n
1493
+ \ <div class=\"icon\" style=\"float: left; padding: 2px 6px 0px 0px;\"><img
1494
+ alt=\"Icon-notification-post\" src=\"http://static.huluim.com/images/icon-notification-post.gif?1032580506\"
1495
+ /></div> <div style=\"float: left; width: 535px\"> <div class=\"header\">\n
1496
+ \ <a href=\"/profiles/maggielizer\" class=\"info_hover\">Maggie
1497
+ Bonadies</a> replied to the discussion \"<a href=\"#\" onclick=\"Tab.loadTab('forums',
1498
+ '/topics/tab_load?post_id=1330395&amp;segregate_video=true&amp;topic_id=306453&amp;topicable_id=308569&amp;topicable_type=Video',
1499
+ true, null); window.scrollTo(0, 400); return false;; return false;\">Sweets
1500
+ is the worst psychologist ever</a>\"<br/>\n \n </div>\n
1501
+ \ <div class=\"\" style=\"overflow: hidden;\"> Sweets never said that
1502
+ &quot;insane&quot; is a real PSYCHOLOGICAL word. Additionally, if Sweets was
1503
+ trained in a program that focused on the psychodynamic perspective (instead
1504
+ of behavior, cognitive, humanistic, etc), then of course he'd reference Freud.
1505
+ But you are totally right that most psychologists trained in other models do
1506
+ not accept many of the psychodynamic principles because they are subjective
1507
+ and cannot directly be observed or studied. \n &nbsp;&nbsp;<a class=\"utility-link\"
1508
+ href=\"#\" onclick=\"Tab.loadTab('forums', '/topics/tab_load?post_id=1330395&amp;segregate_video=true&amp;topic_id=306453&amp;topicable_id=308569&amp;topicable_type=Video',
1509
+ true, null); window.scrollTo(0, 400); return false;; return false;\">See 2 other
1510
+ replies</a> </div></div> \n </div> \n <br style=\"clear:both;\"/>\n
1511
+ \ </div>\n\n\n \n \n </div>\n\n <div class=\"ender\" style=\"margin-bottom:
1512
+ 10px;\">\n <div class=\"page\">\n <ul>\n <li style=\"display: none\"
1513
+ class=\"pagination-loading\"><img alt=\"Loading-animated-circle\" border=\"0\"
1514
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1515
+ width=\"16\" /></li>\n \n \n <li class=\"btn\">\n <img alt=\"Pagination-arrow-prev-disabled\"
1516
+ height=\"12\" src=\"http://static.huluim.com/images/pagination-arrow-prev-disabled.gif?1211782027\"
1517
+ width=\"8\" />\n </li>\n\n <li>\n \n <form action=\"/activities/list?display_type=default&amp;amp;target_id=308569&amp;amp;target_type=Video\"
1518
+ current_page=\"1\" method=\"post\" onsubmit=\"Pagination.fixInput($(this));
1519
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;target_id=308569&amp;target_type=Video',
1520
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1521
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}, parameters:Form.serialize(this)});
1522
+ return false;\" total_pages=\"2\"> <input autocomplete=\"off\" class=\"short\"
1523
+ name=\"page\" onfocus=\"$(this).select();\" type=\"text\" value=\"1\" />\n </form>
1524
+ \ \n </li>\n <li class=\"of\">of</li>\n <li class=\"total\">\n
1525
+ \ <a alt=\"Go to the last page\" href=\"#\" onclick=\"Pagination.loading($(this));
1526
+ ; new Ajax.Updater('activities-container', '/activities/list?display_type=default&amp;page=2&amp;target_id=308569&amp;target_type=Video',
1527
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1528
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"
1529
+ title=\"Go to the last page\">2</a>\n </li>\n\n <li class=\"btn\" id=\"sosodssfs\">\n
1530
+ \ <a href=\"#\" onclick=\"Pagination.loading($(this)); ; new Ajax.Updater('activities-container',
1531
+ '/activities/list?display_type=default&amp;page=2&amp;target_id=308569&amp;target_type=Video',
1532
+ {asynchronous:true, evalScripts:true, method:'get', onComplete:function(request){Pagination.doneLoading($(this));
1533
+ Effect.ScrollTo('activities-scrollto', { offset: -20 });}}); return false;\"><img
1534
+ alt=\"Go to the next page\" border=\"0\" class=\"hover-me\" height=\"12\" id=\"pagination-arrow-next.gif132353963117275\"
1535
+ src=\"http://static.huluim.com/images/pagination-arrow-next.gif?1179338841\"
1536
+ title=\"Go to the next page\" width=\"8\" /></a>\n </li>\n </ul>\n <script
1537
+ type=\"text/javascript\">\n//<![CDATA[\nHover.makeSandy();\n//]]>\n</script>\n</div>\n\n
1538
+ \ <br style=\"clear:both;\"/>\n </div>\n\n </div>\n <br style=\"clear:both;\"
1539
+ />\n</div>\n\n<script type=\"text/javascript\">\n//<![CDATA[\nif (typeof(google_analytics_ajax)
1540
+ == \"function\") google_analytics_ajax(\"activities/default/Video/308569/1\");\n//]]>\n</script>\n\n
1541
+ \ \n </div>\n </div>\n</div>\n\n<div id=\"report-menu\" class=\"report-menu\"
1542
+ style=\"display:none\">\n <div class=\"report-menu-bar\">\n <a href=\"#\"
1543
+ onclick=\"Review.hideReportMenu(); return false;\"><img alt=\"Popup-close\"
1544
+ border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1545
+ width=\"11\" /></a>\n </div>\n\n <div class=\"report-menu-content\">\n <form
1546
+ action=\"/watch/308569\" method=\"post\" onsubmit=\"Review.sendReport(); return
1547
+ false\">\n <p class=\"indicate\">Please indicate why you're flagging this
1548
+ review:</p>\n\n <table>\n \n <tr>\n <td>\n <input
1549
+ checked=\"checked\" id=\"flag_type_insulting\" name=\"flag_type\" type=\"radio\"
1550
+ value=\"insulting\" />\n <label for=\"flag_type_insulting\">Violent/Insulting</label>\n
1551
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_language\"
1552
+ name=\"flag_type\" type=\"radio\" value=\"language\" />\n <label for=\"flag_type_language\">Bad
1553
+ Language</label>\n </td>\n </tr>\n \n <tr>\n <td>\n
1554
+ \ <input id=\"flag_type_spoiler\" name=\"flag_type\" type=\"radio\"
1555
+ value=\"spoiler\" />\n <label for=\"flag_type_spoiler\">Spoiler</label>\n
1556
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_spam\"
1557
+ name=\"flag_type\" type=\"radio\" value=\"spam\" />\n <label for=\"flag_type_spam\">Spam</label>\n
1558
+ \ </td>\n </tr>\n \n <tr>\n <td>\n <input
1559
+ id=\"flag_type_content_request\" name=\"flag_type\" type=\"radio\" value=\"content_request\"
1560
+ />\n <label for=\"flag_type_content_request\">Content Request</label>\n
1561
+ \ </td>\n \n \n \n <td>\n <input id=\"flag_type_off_topic\"
1562
+ name=\"flag_type\" type=\"radio\" value=\"off_topic\" />\n <label for=\"flag_type_off_topic\">Off-Topic</label>\n
1563
+ \ </td>\n </tr>\n \n </table>\n\n <p class=\"policy\">To
1564
+ see Hulu's review policy, <a href=\"http://www.hulu.com/support/login_faq#review\">click
1565
+ here</a>.</p>\n\n <div class=\"buttons\">\n <input alt=\"Submit\"
1566
+ border=\"0\" class=\"save hover-me\" id=\"btn-submit-small.gif132353963117661\"
1567
+ src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\" title=\"Submit\"
1568
+ type=\"image\" />\n <a href=\"#\" onclick=\"Review.hideReportMenu();
1569
+ return false;\"><img alt=\"Cancel\" border=\"0\" class=\"cancel hover-me\" id=\"btn-cancel-small.gif132353963117707\"
1570
+ src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" title=\"Cancel\"
1571
+ /></a>\n </div>\n <div class=\"button-container working\" style=\"display:none;\">'\n
1572
+ \ <img alt=\"Loading-animated-small\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
1573
+ />\n </div>\n\n </form>\n </div>\n</div>\n\n\r\n <div class=\"m-tags-pane\"
1574
+ id='m_tags_pane'>\n <div class=\"fluid bg-gray\">\n \n<div class=\"fixed-lg
1575
+ container\" >\n <div class=\"header\">\n <div class=\"tags-top-search\">\n
1576
+ \ <form action=\"/search/search_tag\" autocomplete=\"off\" id=\"m_search_tag_form\"
1577
+ method=\"get\" onsubmit=\"return (this.query.value != '')\">\n <div class=\"tags-top-search-label\">\n
1578
+ \ Search with tags:\n </div>\n <div class=\"tags-top-search-input\"
1579
+ style=\"float: left;\">\n <input autocomplete=\"off\" class=\"tags-search\"
1580
+ id=\"m_search_tag_name\" name=\"query\" type=\"text\" value=\"\" />\n <a
1581
+ href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
1582
+ id=\"m_tags_search_button\" onclick=\"if($('m_search_tag_form').query.value
1583
+ != '') $('m_search_tag_form').submit();\" src=\"http://static.huluim.com/images/button-search-in-channel.gif?1103041016\"
1584
+ style=\"vertical-align: top; margin-left: -4px; *margin-top: 1px;\" /></a>\n
1585
+ \ </div>\n </form>\n <ul id=\"m_search_tags_suggestion\" style=\"display:none;\"
1586
+ class=\"tags-suggestion-container\"></ul>\n </div>\n <h2 class=\"cufonable
1587
+ tags-cufon-title\">Tags<span id='m_tags_count' style='padding-left:10px;'>(0)</span></h2>\n
1588
+ \ <div class=\"learn-more-link\">\n <a href=\"javascript:void(null)\" class=\"bracket-link\"
1589
+ onclick=\"return toggle_tags_learn_more(this); return false ;\">[ <span>?</span>
1590
+ ]</a>\n </div>\n <div style=\"clear:both\"></div>\n</div>\n\n <div id=\"m_tags_caption\"
1591
+ style=\"display:none;\" class=\"middle-caption\">\n Tags are user-generated
1592
+ labels related to this video or show that can help you discover related videos
1593
+ on Hulu. Check the tags you feel are most appropriate for this video or add
1594
+ your own (the number in parentheses indicates how many other users have used
1595
+ that tag.) To find other videos with similar tags, simply click on the tag that
1596
+ interests you most.\n </div>\n <div id='m_tags_content_loading' class=\"tags-content-loading\">\n
1597
+ \ <img src=\"/images/loading-animated-small.gif\" alt=\"loading\"/>\n </div>\n
1598
+ \ <div id='m_tags_content_wrapper' style=\"display:none;\" class='tags-content-wrapper'>\n
1599
+ \ <div id='m_tags_content' class=\"tags-content\">\n <div style=''>\r\n
1600
+ \ <div class=\"tags-content-table\" id=\"m_content_table\">\r\n \r\n <div
1601
+ class=\"tags-category-name\">\r\n Genre:\r\n </div>\r\n <div
1602
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1603
+ tid= '1563' cid='11'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1604
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:11,&quot;tag_name&quot;:&quot;crime
1605
+ drama&quot;,&quot;tag_id&quot;:1563});\" tid=\"1563\" type=\"checkbox\" value=\"crime
1606
+ drama\" /></span><img alt=\"Loading-animated-circle\" border=\"0\" class=\"check-box-loading\"
1607
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1608
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=crime+drama\"
1609
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1563?count=0&amp;name=crime+drama&amp;taggable_id=308569&amp;taggable_type=Video\"
1610
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">crime drama</a>\n <div
1611
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1612
+ \ \r\n <div class='tags-content-cell' tid= '39' cid='11'><span
1613
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1614
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:11,&quot;tag_name&quot;:&quot;crime&quot;,&quot;tag_id&quot;:39});\"
1615
+ tid=\"39\" type=\"checkbox\" value=\"crime\" /></span><img alt=\"Loading-animated-circle\"
1616
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1617
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=crime\"
1618
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/39?count=0&amp;name=crime&amp;taggable_id=308569&amp;taggable_type=Video\"
1619
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">crime</a>\n <div class='tagging-count'>\n
1620
+ \ (<span>0</span>)\n </div>\n </div>\r\n \r\n <div
1621
+ class='tags-content-cell' tid= '2090' cid='11'><span class='tags-checkbox'><input
1622
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1623
+ &quot;m_&quot;,\n {&quot;tag_type_id&quot;:11,&quot;tag_name&quot;:&quot;comedy-drama&quot;,&quot;tag_id&quot;:2090});\"
1624
+ tid=\"2090\" type=\"checkbox\" value=\"comedy-drama\" /></span><img alt=\"Loading-animated-circle\"
1625
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1626
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=comedy-drama\"
1627
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2090?count=0&amp;name=comedy-drama&amp;taggable_id=308569&amp;taggable_type=Video\"
1628
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">comedy-drama</a>\n <div
1629
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1630
+ \ \r\n <div class='tags-content-cell' tid= '2287' cid='11'><span
1631
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1632
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:11,&quot;tag_name&quot;:&quot;science&quot;,&quot;tag_id&quot;:2287});\"
1633
+ tid=\"2287\" type=\"checkbox\" value=\"science\" /></span><img alt=\"Loading-animated-circle\"
1634
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1635
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=science\"
1636
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/2287?count=0&amp;name=science&amp;taggable_id=308569&amp;taggable_type=Video\"
1637
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">science</a>\n <div
1638
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1639
+ \ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
1640
+ class=\"tags-category-name\">\r\n People:\r\n </div>\r\n <div
1641
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1642
+ tid= '13194' cid='13'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1643
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:13,&quot;tag_name&quot;:&quot;david
1644
+ boreanaz&quot;,&quot;tag_id&quot;:13194});\" tid=\"13194\" type=\"checkbox\"
1645
+ value=\"david boreanaz\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1646
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1647
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=david+boreanaz\"
1648
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/13194?count=0&amp;name=david+boreanaz&amp;taggable_id=308569&amp;taggable_type=Video\"
1649
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">david boreanaz</a>\n <div
1650
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1651
+ \ \r\n <div class='tags-content-cell' tid= '13188' cid='13'><span
1652
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1653
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:13,&quot;tag_name&quot;:&quot;emily
1654
+ deschanel&quot;,&quot;tag_id&quot;:13188});\" tid=\"13188\" type=\"checkbox\"
1655
+ value=\"emily deschanel\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1656
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1657
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=emily+deschanel\"
1658
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/13188?count=0&amp;name=emily+deschanel&amp;taggable_id=308569&amp;taggable_type=Video\"
1659
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">emily deschanel</a>\n <div
1660
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1661
+ \ \r\n </div>\r\n <br class=\"shim\" />\r\n \r\n <div
1662
+ class=\"tags-category-name\">\r\n Details:\r\n </div>\r\n <div
1663
+ class=\"tags-categoried\">\r\n \r\n <div class='tags-content-cell'
1664
+ tid= '647' cid='15'><span class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\"
1665
+ onclick=\"\n Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;forensics&quot;,&quot;tag_id&quot;:647});\"
1666
+ tid=\"647\" type=\"checkbox\" value=\"forensics\" /></span><img alt=\"Loading-animated-circle\"
1667
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1668
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=forensics\"
1669
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/647?count=0&amp;name=forensics&amp;taggable_id=308569&amp;taggable_type=Video\"
1670
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">forensics</a>\n <div
1671
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1672
+ \ \r\n <div class='tags-content-cell' tid= '6260' cid='15'><span
1673
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1674
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;bones&quot;,&quot;tag_id&quot;:6260});\"
1675
+ tid=\"6260\" type=\"checkbox\" value=\"bones\" /></span><img alt=\"Loading-animated-circle\"
1676
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1677
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=bones\"
1678
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/6260?count=0&amp;name=bones&amp;taggable_id=308569&amp;taggable_type=Video\"
1679
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">bones</a>\n <div class='tagging-count'>\n
1680
+ \ (<span>0</span>)\n </div>\n </div>\r\n \r\n <div
1681
+ class='tags-content-cell' tid= '59415' cid='15'><span class='tags-checkbox'><input
1682
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1683
+ &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;anthropology&quot;,&quot;tag_id&quot;:59415});\"
1684
+ tid=\"59415\" type=\"checkbox\" value=\"anthropology\" /></span><img alt=\"Loading-animated-circle\"
1685
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1686
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=anthropology\"
1687
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/59415?count=0&amp;name=anthropology&amp;taggable_id=308569&amp;taggable_type=Video\"
1688
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">anthropology</a>\n <div
1689
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1690
+ \ \r\n <div class='tags-content-cell' tid= '103670' cid='15'><span
1691
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1692
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;quirky
1693
+ characters&quot;,&quot;tag_id&quot;:103670});\" tid=\"103670\" type=\"checkbox\"
1694
+ value=\"quirky characters\" /></span><img alt=\"Loading-animated-circle\" border=\"0\"
1695
+ class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1696
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=quirky+characters\"
1697
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/103670?count=0&amp;name=quirky+characters&amp;taggable_id=308569&amp;taggable_type=Video\"
1698
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">quirky characters</a>\n <div
1699
+ class='tagging-count'>\n (<span>0</span>)\n </div>\n </div>\r\n
1700
+ \ \r\n <div class='tags-content-cell' tid= '3395' cid='15'><span
1701
+ class='tags-checkbox'><input id=\"check_tag\" name=\"check_tag\" onclick=\"\n
1702
+ \ Tag.OnClick(this, &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;humor&quot;,&quot;tag_id&quot;:3395});\"
1703
+ tid=\"3395\" type=\"checkbox\" value=\"humor\" /></span><img alt=\"Loading-animated-circle\"
1704
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1705
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=humor\"
1706
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/3395?count=0&amp;name=humor&amp;taggable_id=308569&amp;taggable_type=Video\"
1707
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">humor</a>\n <div class='tagging-count'>\n
1708
+ \ (<span>0</span>)\n </div>\n </div>\r\n \r\n <div
1709
+ class='tags-content-cell' tid= '1555' cid='15'><span class='tags-checkbox'><input
1710
+ id=\"check_tag\" name=\"check_tag\" onclick=\"\n Tag.OnClick(this,
1711
+ &quot;m_&quot;,\n {&quot;tag_type_id&quot;:15,&quot;tag_name&quot;:&quot;fbi&quot;,&quot;tag_id&quot;:1555});\"
1712
+ tid=\"1555\" type=\"checkbox\" value=\"fbi\" /></span><img alt=\"Loading-animated-circle\"
1713
+ border=\"0\" class=\"check-box-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1714
+ style=\"display: none;\" width=\"16\" /><a href=\"/search/search_tag?query=fbi\"
1715
+ class=\"info_hover clickable\" mt=\"/tags/most_tagged_taggables/1555?count=0&amp;name=fbi&amp;taggable_id=308569&amp;taggable_type=Video\"
1716
+ onclick=\"Behaviors.setCookie('_tp', 'page', 1);\">fbi</a>\n <div class='tagging-count'>\n
1717
+ \ (<span>0</span>)\n </div>\n </div>\r\n \r\n </div>\r\n
1718
+ \ <br class=\"shim\" />\r\n \r\n \r\n <br class=\"shim\" />\r\n
1719
+ \ </div>\r\n</div>\r\n\n </div>\n <div style=\"clear:both\"></div>\n <div
1720
+ class=\"tags-bottom\" style=\"\">\n <div id = \"m_add_tags\" style=\"\">\n
1721
+ \ \n <div class=\"tags-title add-tags\">Add Tags</div>\n <form action=\"/taggings/create\"
1722
+ autocomplete=\"off\" id=\"m_tag_add_form\" method=\"post\" onsubmit=\"Tag.AddSubmit($('m_tagging_tag_name'),$('m_tagging_tag_button'),
1723
+ $('m_tags_error'), $('m_tag_add_loading')); return false;\">\n <input autocomplete=\"off\"
1724
+ class=\"tags-search\" id=\"m_tagging_tag_name\" name=\"tagging[tag_names]\"
1725
+ style=\"float: left;margin-right: -1px;\" type=\"text\" value=\"\" />\n <a
1726
+ href=\"javascript:void(null);\"><img alt=\"\" border=\"0\" class=\"hover-me\"
1727
+ id=\"m_tagging_tag_button\" onclick=\"Tag.AddSubmit($('m_tagging_tag_name'),
1728
+ $('m_tagging_tag_button'),$('m_tags_error'), $('m_tag_add_loading')); return
1729
+ false ;\" src=\"http://static.huluim.com/images/btn-add.gif?1188269094\" style=\"vertical-align:
1730
+ middle; float: left;\" /></a>\n\n <div id=\"m_tag_add_loading\" style=\"display:none;float:left;margin-left:
1731
+ 10px;\">\n <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\"
1732
+ src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1733
+ style=\"vertical-align:middle;padding-top:2px; \" width=\"16\" />\n </div>\n
1734
+ \ <span id=\"m_tags_error\" style=\"display:none;\" class=\"tags-error\"></span>\n
1735
+ \ <span id=\"m_tags_tooltip\" style=\"display:none; position: absolute;\"
1736
+ >Add one or more comma separated tags (e.g. <b>snl</b>, <b>alec baldwin</b>,
1737
+ <b>tina fey</b>)</span>\n </form>\n <ul id=\"m_tags_suggestion\" style=\"display:none;\"
1738
+ class=\"tags-suggestion-container\"></ul>\n </div>\n\n <div style=\"clear:both\"></div>\n\n
1739
+ \ <div id='m_your_tags' >\n <div style=\"display:none\" class='your-tags'>\n
1740
+ \ <div class=\"tags-title\">You tagged this video</div>\n <div id=\"m_tagged_tags_container\"
1741
+ class='tagged-tags-container' style=\"\"></div>\n </div> \n <div class=\"tagged-link-container\"
1742
+ style=\"display:none\">\n <a href=\"/profile/tags\" class=\"tagged-link\">All
1743
+ your tags...</a>\n </div>\n </div>\n\n</div>\n\n </div>\n</div>\n\n </div>\n
1744
+ \ <script type='text/javascript' charset='utf-8'>/*<![CDATA[*/\n _m_tag =
1745
+ new Tag({\n prefix : \"m_\",\n items_per_page : 15 ,\n update_table:
1746
+ true,\n total_count : 0\n });\n new TagSuggest( $(\"m_tagging_tag_name\"),
1747
+ $(\"m_tags_suggestion\"), $(\"m_tags_error\"), $(\"m_tags_tooltip\") ) ;\n new
1748
+ TagSuggest( $(\"m_search_tag_name\"), $(\"m_search_tags_suggestion\") );\n function
1749
+ load_and_show(ev){\n var _top = document.viewport.getScrollOffsets() ;\n
1750
+ \ _top = _top.top + document.viewport.getHeight() ;\n var el = $('m_tags_pane');\n
1751
+ \ if ( $('pane-main').hasClassName(\"pane-selected\") && el ){\n var
1752
+ elTop = el.cumulativeOffset().top + el.getHeight() ;\n if( _top >= (elTop
1753
+ - 100) ){\n Event.stopObserving(window, \"scroll\", load_and_show);
1754
+ \n Event.stopObserving(window, \"resize\", load_and_show);\n _m_tag
1755
+ = Tag.PushTab(_m_tag) ;\n if( Behaviors.isLoggedIn() ){\n Tag.LoadTagged(url_for_tagged_tags,
1756
+ _m_tag);\n }\n else {\n _m_tag.setLoaded() ;\n
1757
+ \ }\n TagTracking.track(\"load\", \"main\", Tag.Taggable)\n
1758
+ \ }\n }\n };\n \n Event.observe(window, \"scroll\", load_and_show
1759
+ );\n Event.observe(window, \"resize\", load_and_show );\n /*]]>*/</script>\n</div>\n\n\r\n\r\n\r\n\r\n\r\n<script
1760
+ type=\"text/javascript\">\n//<![CDATA[\nif (typeof(VersionCheck) != 'undefined')
1761
+ VersionCheck.run()\n//]]>\n</script>\r\n\n </li>\n \n <li
1762
+ id=\"pane-reviews\" class=\"pane-preload\"></li>\n \n <li id=\"pane-forums\"
1763
+ class=\"pane-preload\"></li>\n \n <li id=\"pane-tag\" class=\"pane-preload\"></li>\n
1764
+ \ </ul></div>\n\n\n<script type=\"text/javascript\">/*<![CDATA[*/\nEvent.observe(window,
1765
+ \"load\", function() {\n if(Behaviors.getCookie(\"_r_tracking_\"))\n { \n
1766
+ \ var cookieContent = unescape(Behaviors.getCookie(\"_r_tracking_\"));\n
1767
+ \ \n if( typeof(_rTracking) != 'undefined' && _rTracking != null)\n _rTracking.loadCookieAndSend(cookieContent);\n
1768
+ \ Behaviors.eraseCookie(\"_r_tracking_\");\n }\n setTimeout(function() {\n
1769
+ \ if (Behaviors.isLoggedIn()) {\n var vid = 308569;\n new Ajax.Request(\"/exstack/get_vote/Video/\"
1770
+ + vid, {\n method: 'get',\n onSuccess: function(req) {\n var
1771
+ rating = parseInt(req.responseText);\n if (rating && rating > 0) VideoRating.set_user_vote(vid,
1772
+ rating);\n } \n });\n }\n }, 1000);\n \n Auth.setBrandingForAuthVideo();\n});\n/*]]>*/</script>\n\n\n
1773
+ \ <div id=\"recommended-videos\" class=\"fluid\" style=\"margin:0; padding:1px
1774
+ 0; background:#FFF url(/images/related-base-middle-gray.gif) repeat-x\">\n <div
1775
+ class=\"fixed-lg container\" style=\"margin-top: 20px;\">\n <div class=\"vslc\"
1776
+ id=\"related-container\"><div class=\"vsltitle\"><div class=\"vl\"><h2 class=\"cufonable
1777
+ no-rss-widget\">Recommended Videos</h2></div></div><div class=\"vslnav\"><div
1778
+ class=\"vl\"><div class=\"recommend-login-prompt\" id=\"recommend-login-prompt\"></div></div><div
1779
+ class=\"vr\"><ul class=\"pages\" style=\"display: none;\" id=\"s6374_17e775f_relateds25-nav\"><li
1780
+ title=\"Go to the first page\" class=\"btn first\"></li><li title=\"Go to the
1781
+ previous page\" class=\"btn prev\"></li><li class=\"input\"><input autocomplete=\"off\"
1782
+ name=\"page\" onfocus=\"$(this).select();\" onkeydown=\"if(event.keyCode ==
1783
+ 13) s6374_17e775f_relateds25.move(event, 'input');\" type=\"text\" value=\"\"
1784
+ /></li><li class=\"of\">of</li><li title=\"Go to the last page\" class=\"total\"></li><li
1785
+ title=\"Go to the next page\" class=\"btn next\"></li></ul></div></div><div
1786
+ class=\"lazy-load vsl \" id=\"s6374_17e775f_relateds25\"><ul></ul></div><script
1787
+ type=\"text/javascript\">\n//<![CDATA[\nvar s6374_17e775f_relateds25 = new VideoSlider(\"s6374_17e775f_relateds25\",
1788
+ {\"url\":\"http://www.hulu.com/videos/slider\",\"maxCount\":25,\"perPageCount\":5,\"urlOptions\":{\"type\":\"related\",\"page\":1,\"season\":\"\",\"sort\":\"all\",\"items_per_page\":5,\"video_id\":308569},\"dontRewriteLinks\":true})\n//]]>\n</script></div>
1789
+ \n </div>\n <br/>\n </div>\n <br/>\n\n\n<div id='tags_learn_more' style=\"display:none\">\r\n
1790
+ \ <div class=\"content tags-learn-more-content\" style=\"text-align: justify;\">\r\n
1791
+ \ <div>\r\n Tags are keywords or category labels that can help you and
1792
+ others find videos on Hulu. They also classify videos for later recall. You
1793
+ can tag videos yourself by simply checking the box next to a popular tag for
1794
+ a video or by using the \"add\" field to create a new tag. Click on any tag
1795
+ — \"comedy\" for example — to discover other videos similarly tagged by you
1796
+ or other users. Because tags are reviewed by Hulu, there may be a delay in surfacing
1797
+ your tags. The most relevant tags are sorted by category for the rest of Hulu
1798
+ to see. You may assign up to 30 tags for any video or show; to review all of
1799
+ your tags, see the Tags section on your profile page.\r\n </div>\r\n <p>Your
1800
+ tags may be visible to other users on Hulu. You should not use:</p>\r\n <ul>\r\n
1801
+ \ <li>Profane or obscene language</li>\r\n <li>Tags that are inciting
1802
+ or spiteful</li>\r\n <li>Tags that might harass, abuse or threaten members
1803
+ of the community</li>\r\n <li>Tags that may reveal your personal information
1804
+ or any personal information about children under age 13</li>\r\n <li>Tags
1805
+ that promote illegal or immoral conduct</li>\r\n <li>Tags containing special
1806
+ characters or more than 50 characters</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\n\n\n
1807
+ \ <iframe id=\"popup_frame\" class=\"playlist-box\" style=\"display:none;\"></iframe>\n
1808
+ \ <iframe id=\"search_popup_frame\" class=\"playlist-box\" style=\"display:none;\"></iframe>\n\n
1809
+ \ <div class=\"flf popup\" style=\"display:none\">\n <div class=\"popup-bar\">\n
1810
+ \ <a href=\"#\" onclick=\"FloatingLoginForm.hide(); return false;\"><img alt=\"Popup-close\"
1811
+ border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1812
+ width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
1813
+ class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1814
+ width=\"16\" />\n Please login or <a href=\"/signup\" class=\"signup\">sign
1815
+ up</a> first.\n <div class=\"login-form\">\n <form action=\"https://secure.hulu.com/account/authenticate\"
1816
+ method=\"get\" name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n
1817
+ \ <div>\n <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
1818
+ none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
1819
+ type=\"password\" style=\"display: none;\" name=\"password\" value='' autocomplete='off'/>\n
1820
+ \ <input class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
1821
+ />\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
1822
+ /> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
1823
+ id=\"btn-signin-small.gif132353963124361\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
1824
+ style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
1825
+ href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
1826
+ id=\"btn-x.gif132353963124414\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
1827
+ title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
1828
+ \ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
1829
+ \ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
1830
+ \ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
1831
+ name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
1832
+ onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
1833
+ me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
1834
+ 0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
1835
+ class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
1836
+ \ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
1837
+ middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
1838
+ border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1839
+ style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
1840
+ \ <div style=\"clear: both\">\n <a href=\"/users/forgot_password\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
1841
+ your password?</a>\n </div>\n \n <!-- todo change to alternative flow. if
1842
+ user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
1843
+ \ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
1844
+ alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
1845
+ style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
1846
+ vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
1847
+ ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
1848
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
1849
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
1850
+ \ \n</div>\n\n <div class=\"flf tflf popup\" style=\"display:none\">\n <div
1851
+ class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingLoginForm.hide();
1852
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1853
+ width=\"11\" /></a>\n </div>\n <div class=\"flf-content\">\n <img alt=\"Attention\"
1854
+ class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1855
+ width=\"16\" />\n Please input your email and password.\n <div class=\"login-form\">\n
1856
+ \ <form action=\"https://secure.hulu.com/account/authenticate\" method=\"get\"
1857
+ name=\"login-form\" onsubmit=\"Login.submit(this); return false;\">\n <div>\n
1858
+ \ <input id=\"login\" class=\"active login\" type=\"text\" style=\"display:
1859
+ none;\" name=\"username\"/>\n <input id=\"password\" class=\"active password\"
1860
+ type=\"password\" style=\"display: none;\" name=\"password\" value='' autocomplete='off'/>\n
1861
+ \ <input class=\"inactive dummy login\" type=\"text\" value=\"email\" name=\"dummy_login\"
1862
+ />\n <input class=\"inactive dummy\" type=\"text\" value=\"password\" name=\"dummy_password\"
1863
+ /> \n <input alt=\"Login\" border=\"0\" class=\"login-submit hover-me\"
1864
+ id=\"btn-signin-small.gif132353963124812\" src=\"http://static.huluim.com/images/btn-signin-small.gif?1154250707\"
1865
+ style=\"width: 44px; height: 20;\" title=\"Login\" type=\"image\" />\n <a
1866
+ href=\"#\"><img alt=\"Cancel\" border=\"0\" class=\"hover-me\" height=\"20\"
1867
+ id=\"btn-x.gif132353963124865\" onclick=\"Login.cancel();return false\" src=\"http://static.huluim.com/images/btn-x.gif?1219063468\"
1868
+ title=\"Cancel\" width=\"18\" /></a>\n <br style=\"clear: both;\"/>\n </div>\n
1869
+ \ <div class=\"login-status\" style=\"color: red; display: none;\"></div>\n
1870
+ \ <div class=\"stay-logged-in-container\">\n <div style=\"float: left;\">\n
1871
+ \ <input id=\"expire\" class=\"stay-logged-in\" type=\"checkbox\" checked=\"true\"
1872
+ name=\"stayloggedin\" style=\"float: none; vertical-align: middle;\"/>\n <span
1873
+ onclick=\"Login.switchExpire();\" style=\"font-size: 11px; cursor: pointer;\">Keep
1874
+ me logged in for 30 days.</span>\n <span style=\"font-size: 11px; margin:
1875
+ 0px 3px;\">\n <a href=\"http://www.hulu.com/support/account#faq-keep-logged-in\"
1876
+ class=\"bracket-link\" style=\"float: none;\">[ <span>?</span> ]</a>\n </span>\n
1877
+ \ </div>\n <div class=\"login-status-img\" style=\"float: left; vertical-align:
1878
+ middle; margin-left: 5px; display: none;\">\n <img alt=\"Loading-animated-circle\"
1879
+ border=\"0\" class=\"login-status-loading\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1880
+ style=\"position: relative; top: 4px;\" width=\"16\" />\n </div>\n </div>\n
1881
+ \ <div style=\"clear: both\">\n <a href=\"/users/forgot_password\" style=\"float:none;margin-left:17px;font-size:11px;\">Forgot
1882
+ your password?</a>\n </div>\n \n <!-- todo change to alternative flow. if
1883
+ user clicks this, it's like activating facebook connect. -->\n <div class=\"form-fb-container\">\n
1884
+ \ <a href=\"#\" onclick=\"Social.Facebook.connect(); return false;\"><img
1885
+ alt=\"Btn-facebook-connect\" src=\"http://static.huluim.com/images/btn-facebook-connect.png?996062738\"
1886
+ style=\"vertical-align: middle\" /></a>\n <span style=\"line-height: 27px;
1887
+ vertical-align:middle; padding-left: 8px; color: #333;\">Login with your Facebook
1888
+ ID.</span>\n </div>\n \n \n</form>\n\n </div>\n </div>\n <div class=\"shw-top-right\"></div>\n
1889
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
1890
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
1891
+ \ \n</div>\n\n <div class=\"floating-container popup\" id=\"floating-container\"
1892
+ style=\"display:none\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"FloatingDiv.hide();
1893
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1894
+ title=\"close\" width=\"11\" /></a>\n </div>\n \n <div class=\"shw-top-right\"></div>\n
1895
+ \ <div class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n
1896
+ \ <div class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>
1897
+ \ \n</div>\n\n\n \n <div class=\"int-warning popup\" style=\"display:none;\">\n
1898
+ \ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"IntWarning.cancel();
1899
+ return false;\"><img alt=\"Popup-close\" border=\"0\" height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1900
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"int-thanks\" style=\"display:
1901
+ none\">\n <p>Thanks for your interest.</p>\n <a href=\"#\"><img alt=\"Cancel\"
1902
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132353963125206\"
1903
+ onclick=\"IntWarning.cancel();return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
1904
+ title=\"Cancel\" width=\"65\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
1905
+ \ <p class=\"int-title\">\n <img alt=\"Int-warning\" class=\"int-icon\"
1906
+ src=\"http://static.huluim.com/images/int-warning.gif?1282174508\" />\n Sorry,
1907
+ currently our video library can only be watched from within the United States\n
1908
+ \ </p>\n\n <p>Hulu is committed to making its content available worldwide.
1909
+ \ To do so,\n we must work through a number of legal and business issues,
1910
+ including\n obtaining international streaming rights. Know that we are working
1911
+ to make\n this happen and will continue to do so. Given the international
1912
+ background\n of the Hulu team, we have both a professional and personal interest
1913
+ in\n bringing Hulu to a global audience.</p>\n\n <p>If you'd like, please
1914
+ leave us your email address and the country in\n which you live, and we will
1915
+ email you when our videos are available in your\n area.</p>\n\n <form
1916
+ action=\"/watch/308569\" id=\"int-request\" method=\"post\" onsubmit=\"return
1917
+ false;\">\n <table>\n <tr>\n <td><label for=\"int-email\">Email:</label></td>\n
1918
+ \ <td class=\"field\"><input id=\"int-email\" name=\"email[]\" size=\"30\"
1919
+ type=\"text\" /></td>\n </tr>\n <tr>\n <td><label for=\"int-country\">Country:</label><br/>\n
1920
+ \ </td>\n <td class=\"field\"><input id=\"int-country\"
1921
+ name=\"country\" type=\"text\" value=\"\" /></td>\n </tr>\n <tr>\n
1922
+ \ <td class=\"last\" colspan=\"2\">\n <a href=\"#\"><img
1923
+ alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-submit-small.gif132353963125335\"
1924
+ onclick=\"IntWarning.submit(); return false\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
1925
+ title=\"Submit\" width=\"65\" /></a>\n <a href=\"#\"><img alt=\"Cancel\"
1926
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-close.gif132353963125389\"
1927
+ onclick=\"IntWarning.cancel(); return false\" src=\"http://static.huluim.com/images/btn-close.gif?1138336199\"
1928
+ title=\"Cancel\" width=\"65\" /></a>\n </td>\n </tr>\n </table>\n
1929
+ \ </form>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
1930
+ \ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
1931
+ \ <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div class=\"int-warning-jp
1932
+ popup\" style=\"display:none;\">\n <div class=\"popup-bar\">\n <a href=\"#\"
1933
+ onclick=\"IntWarning.cancel(); return false;\"><img alt=\"Popup-close\" border=\"0\"
1934
+ height=\"11\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1935
+ title=\"close\" width=\"11\" /></a>\n </div>\n\n <div class=\"int-form popup-content\">\n
1936
+ \ <div class=\"relative\">\n <img alt=\"Int-warning\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1937
+ style=\"position:absolute; left:-20px; top:1px;\" />\n <p>Huluを日本でお楽しみいただくには、<a
1938
+ href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a>をご利用ください。</p>\n\n
1939
+ \ <p>Hulu is now officially available in Japan. Please continue onto <a
1940
+ href=\"http://www.hulu.jp?from=hulu_us\" class=\"blue-link\">Hulu.jp</a> to
1941
+ enjoy great videos in Japan.</p>\n\n <a href=\"http://www.hulu.jp?from=hulu_us\"><img
1942
+ alt=\"Go to Hulu Japan\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"btn-plus-continue.gif132353963125543\"
1943
+ src=\"http://static.huluim.com/images/btn-plus-continue.gif?1207633618\" style=\"float:
1944
+ right;\" title=\"Go to Hulu Japan\" width=\"87\" /></a>\n <br class='shim'
1945
+ />\n\n </div>\n </div>\n\n <div class=\"shw-top-right\"></div>\n <div
1946
+ class=\"shw-right\"></div>\n <div class=\"shw-bottom-right\"></div>\n <div
1947
+ class=\"shw-bottom\"></div>\n <div class=\"shw-bottom-left\"></div>\n</div>\n\n<div
1948
+ class=\"overlay-full\" style=\"display:none\"></div>\n\n \n <div class=\"privacy-acceptance\"
1949
+ style=\"display:none\">\n <div id=\"accept-choice\">\n <div class=\"content\">\n
1950
+ \ <div class=\"flf-content\">\n <img alt=\"Attention\" class=\"warning\"
1951
+ height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1952
+ width=\"16\" />\n Do you accept the new <a href=\"/terms\" target=\"_blank\">Terms
1953
+ of Use</a> and <a href=\"/privacy\" target=\"_blank\">Privacy Policy</a>?\n
1954
+ \ </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
1955
+ \ <div id=\"privacy-acceptance-loading\" style=\"display:none; padding:
1956
+ 2px 20px; float: left\">\n <img alt=\"Loading-animated-circle\" border=\"0\"
1957
+ height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
1958
+ style=\"vertical-align:middle\" width=\"16\" />\n </div>\n <a
1959
+ href=\"#\" onclick=\"Login.acceptPrivacy(); return false;\"><img alt=\"accept\"
1960
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"accept-button\" src=\"http://static.huluim.com/images/btn-i-accept.gif?1254406432\"
1961
+ title=\"accept\" width=\"102\" /></a>&nbsp;&nbsp;\n <a href=\"#\" onclick=\"Login.showDeny();
1962
+ return false;\"><img alt=\"do not accept\" border=\"0\" class=\"hover-me\" height=\"20\"
1963
+ id=\"accept-not-button\" src=\"http://static.huluim.com/images/btn-i-accept-do-not.gif?1063117107\"
1964
+ title=\"do not accept\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n
1965
+ \ <div id=\"deny-choice\">\n <div class=\"content\">\n <div class=\"flf-content\">\n
1966
+ \ <img alt=\"Attention\" class=\"warning\" height=\"16\" src=\"http://static.huluim.com/images/int-warning.gif?1282174508\"
1967
+ width=\"16\" />\n Sorry, you cannot log in to your account unless you
1968
+ accept.\n </div>\n <div style=\"text-align: right; padding-top: 10px;\">\n
1969
+ \ <a href=\"#\" onclick=\"Login.showPrivacy(); return false;\"><img alt=\"back\"
1970
+ border=\"0\" class=\"hover-me\" height=\"20\" id=\"back-button\" src=\"http://static.huluim.com/images/btn-back.gif?1120309156\"
1971
+ title=\"back\" width=\"69\" /></a>&nbsp;&nbsp;\n <a href=\"#\" onclick=\"ModalPopup.hide();
1972
+ return false;\"><img alt=\"continue\" border=\"0\" class=\"hover-me\" height=\"20\"
1973
+ id=\"ok-continue-button\" src=\"http://static.huluim.com/images/btn-ok-continue.gif?1077529514\"
1974
+ title=\"continue\" width=\"102\" /></a>\n </div>\n </div>\n </div>\n</div>\n\n
1975
+ \ <div id=\"modal-popup\" style=\"display: none;\">\n <div id=\"modal-popup-container\">\n
1976
+ \ <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"; return false;\"><img
1977
+ alt=\"Popup-close\" border=\"0\" height=\"11\" id=\"close-popup\" src=\"http://static.huluim.com/images/popup-close.gif?1027427675\"
1978
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"popup-bar-19h\">\n
1979
+ \ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-header-close-19h\"
1980
+ border=\"0\" height=\"19\" id=\"close-popup-19h\" src=\"http://static.huluim.com/images/popup-header-close-19h.gif?1183885817\"
1981
+ title=\"close\" width=\"15\" /></a>\n </div>\n <div class=\"popup-bar-dark\">\n
1982
+ \ <a href=\"#\" onclick=\"; return false;\"><img alt=\"Popup-close-dark\"
1983
+ border=\"0\" height=\"11\" id=\"close-popup-dark\" src=\"http://static.huluim.com/images/popup-close-dark.gif?1245360475\"
1984
+ title=\"close\" width=\"11\" /></a>\n </div>\n <div class=\"modal-content\">\n
1985
+ \ <div id=\"modal-question\"></div>\n <div id=\"modal-text\"></div>\n
1986
+ \ <div style=\"text-align: right;\">\n <a href=\"#\" onclick=\"ModalPopup.hide();
1987
+ return false;\"><img alt=\"OK\" border=\"0\" class=\"hover-me\" height=\"20\"
1988
+ id=\"dismiss-popup\" src=\"http://static.huluim.com/images/btn-ok.gif?1277491716\"
1989
+ title=\"OK\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
1990
+ return false;\"><img alt=\"Yes\" border=\"0\" class=\"hover-me\" height=\"20\"
1991
+ id=\"accept-popup\" src=\"http://static.huluim.com/images/btn-yes.gif?1147659175\"
1992
+ title=\"Yes\" width=\"50\" /></a>\n <a href=\"#\" onclick=\"ModalPopup.hide();
1993
+ return false;\"><img alt=\"No\" border=\"0\" class=\"hover-me\" height=\"20\"
1994
+ id=\"reject-popup\" src=\"http://static.huluim.com/images/btn-no.gif?1296732270\"
1995
+ title=\"No\" width=\"50\" /></a>\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>\n
1998
+ \ </div>\n</div>\n\n <div id=\"subscription-popup\" class=\"popup\" style=\"display:
1999
+ none;\">\n <div class=\"popup-bar\">\n <a href=\"#\" onclick=\"Subscription.hide_popup();
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 <div class=\"ss-content\">\n
2002
+ \ Add <span id=\"ss-show-name\"></span> to your favorites to automatically
2003
+ update your queue with new <span id=\"ss-has-episodes\">episodes and </span><span
2004
+ id=\"ss-has-clips\">clips</span>.\n <div class=\"ss-options\">\n <input
2005
+ id=\"ss-show\" name=\"ss-show\" type=\"hidden\" value=\"0\" />\n <a class=\"checkbox
2006
+ checked\" href=\"#\" id=\"ss-episodes\" onclick=\"Subscription.toggle_input('ss-episodes');
2007
+ return false;\" style=\"margin-right: 54px;\">Episodes</a>\n <a class=\"checkbox
2008
+ checked\" href=\"#\" id=\"ss-clips\" onclick=\"Subscription.toggle_input('ss-clips');
2009
+ return false;\">Clips</a>\n <a class=\"radio pressed\" href=\"#\" id=\"ss-trailers-clips\"
2010
+ onclick=\"Subscription.toggle_input('ss-trailers-clips'); return false;\">Trailers
2011
+ and Clips</a>\n <a class=\"radio\" href=\"#\" id=\"ss-trailers-only\" onclick=\"Subscription.toggle_input('ss-trailers-only');
2012
+ return false;\" style=\"margin-left: 20px;\">Trailers only</a>\n <br style=\"clear:
2013
+ both;\" />\n <div style=\"padding: 7px 0px 0px 25px;\">\n <a class=\"radio
2014
+ pressed\" href=\"#\" id=\"ss-episodes-all\" onclick=\"Subscription.toggle_input('ss-episodes-all');
2015
+ return false;\">All</a>\n <br />\n <a class=\"radio\" href=\"#\"
2016
+ id=\"ss-episodes-first\" onclick=\"Subscription.toggle_input('ss-episodes-first');
2017
+ return false;\">New episodes only</a>\n </div>\n </div>\n <a class=\"checkbox\"
2018
+ href=\"#\" id=\"ss-email\" onclick=\"Subscription.toggle_input('ss-email');
2019
+ return false;\">Send me an alert when new videos are added to my queue.</a>\n
2020
+ \ <img alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" id=\"ss-loading\"
2021
+ src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2022
+ style=\"position:absolute; margin: 19px 0px 0px 45px; display: none;\" title=\"\"
2023
+ width=\"16\" />\n <img alt=\"Icon-check\" border=\"0\" height=\"16\" id=\"ss-done\"
2024
+ src=\"http://static.huluim.com/images/icon-check.gif?1125927925\" style=\"position:absolute;
2025
+ margin: 19px 0px 0px 45px; display: none;\" title=\"Checkmark\" width=\"16\"
2026
+ />\n <div style=\"width: 143px; height: 20px; margin: 17px auto 0px;\">\n
2027
+ \ <a href=\"#\" onclick=\"Subscription.hide_popup(); return false;\"><img
2028
+ alt=\"Close\" border=\"0\" class=\"hover-me\" height=\"20\" id=\"cancel-subsciption\"
2029
+ src=\"http://static.huluim.com/images/btn-cancel-small.gif?1189781601\" style=\"float:
2030
+ right;\" title=\"Close\" width=\"65\" /></a>\n <a href=\"#\" onclick=\"Subscription.submit_options(this);
2031
+ return false;\"><img alt=\"Submit\" border=\"0\" class=\"hover-me\" height=\"20\"
2032
+ id=\"submit-subsciption\" src=\"http://static.huluim.com/images/btn-submit-small.gif?1099109130\"
2033
+ title=\"Submit\" width=\"65\" /></a>\n <br style=\"clear: both;\" />\n
2034
+ \ </div>\n </div>\n <div class=\"shw-top-right\"></div>\n <div class=\"shw-right\"></div>\n
2035
+ \ <div class=\"shw-bottom-right\"></div>\n <div class=\"shw-bottom\"></div>\n
2036
+ \ <div class=\"shw-bottom-left\"></div>\n</div>\n\n <div id=\"mobile-popup\"
2037
+ style=\"display:none\">\n <div class=\"mobile-warning popup\" style=\"position:
2038
+ absolute;\" id='mobile-warning'>\n <div id=\"mobile-popup-content\" style=\"text-align:
2039
+ center; font-size: 14px; margin-bottom: 20px; \">\n </div>\n </div>\n <div
2040
+ class=\"mobile-overlay-full\"></div>\n</div>\n<div id=\"mobile-first-entry\"
2041
+ style=\"display:none\">\n <div class=\"content\">\n <div style=\"text-align:
2042
+ left;\" class=\"mobile-left\">\n <img alt=\"Hulu\" height=\"42\" src=\"http://static.huluim.com/images/logo.jpg?1067996145\"
2043
+ title=\"Hulu\" width=\"97\" />\n </div>\n <div class=\"supported mobile-right\"
2044
+ style=\"display:none\">\n \n <p style=\"margin-bottom:0.5em\">\n To
2045
+ watch videos on this <span class=\"platform-name\">device</span>,<br/> please
2046
+ subscribe to Hulu Plus. \n </p>\n <p>\n <a href=\"/plus\" class=\"learn-more\">Learn
2047
+ more</a>\n </p>\n <p style=\"margin-bottom: 0.5em\">\n Already
2048
+ a Hulu Plus subscriber?\n </p>\n \n <p>\n <a href=\"http://itunes.apple.com/us/app/hulu-plus/id376510438?mt=8\"
2049
+ class=\"app-download-link\">Download app</a>\n <a href=\"javascript:MobileDevice.setCookieAndPlay()\"
2050
+ class=\"download-app\">Already downloaded</a>\n </p>\n <p>\n <a
2051
+ href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
2052
+ return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"unsupported
2053
+ mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
2054
+ \ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
2055
+ notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
2056
+ device</span>. It's\n not available, but we are working hard to bring
2057
+ our Hulu Plus\n subscription service to <span class=\"platform-name-with-article\">this
2058
+ device</span>!\n Stay tuned for updates.\n </p>\n <p>\n <a
2059
+ href=\"javascript:void(0)\" class=\"continue-to-browse\" onclick=\"MobilePopup.acknowledge();
2060
+ return false;\">continue to browse</a>\n </p>\n </div>\n <div class=\"really-unsupported
2061
+ mobile-right\">\n <p style=\"margin-bottom:0.5em\">\n Hello!\n </p>\n
2062
+ \ <p style=\"font-size:12px;font-weight:normal;margin-bottom:1em\">\n We
2063
+ notice that you are trying to access Hulu from your <span\n class=\"platform-name\">unsupported
2064
+ device</span>. Right now\n this device is not supported.\n </p>\n
2065
+ \ <p>\n <a href=\"javascript:void(0)\" class=\"continue-to-browse\"
2066
+ onclick=\"MobilePopup.acknowledge(); return false;\">continue to browse</a>\n
2067
+ \ </p>\n </div>\n <br style=\"clear:both\" />\n </div>\n</div>\n<div
2068
+ id=\"mobile-video-unavailable\" style=\"display:none\">\n <div class=\"content\">\n
2069
+ \ <div style=\"text-align: left;\">\n <img alt=\"Hulu\" src=\"http://static.huluim.com/images/logo-plus.jpg?1300913395\"
2070
+ />\n </div>\n <div style=\"font-size: 20px; margin-top:10px;\">\n The
2071
+ video is not available on the <span class='platform-name'>iPad</span>.\n <div
2072
+ style=\"margin-top:20px;\">\n <a href=\"#\" class=\"continue-to-browse\"
2073
+ onclick=\"MobilePopup.acknowledge(); return false;\">continue to hulu.com</a>\n
2074
+ \ </div>\n </div>\n </div>\n</div>\n<script type=\"text/javascript\">\n//<![CDATA[\nMobileDevice.handleWarning()\n//]]>\n</script>\n\n
2075
+ \ <div id='facebook-connect-popup' style=\"display:none;\">\n <div class=\"fb_corner
2076
+ fb_corner_bottom_left\"></div>\n <div class=\"fb_corner fb_corner_bottom_right\"></div>\n
2077
+ \ <div class=\"fb_corner fb_corner_top_left\"></div>\n <div class=\"fb_corner
2078
+ fb_corner_top_right\"></div>\n <div class=\"fb_border_top\"></div>\n <div
2079
+ class=\"fb_border_bottom\"></div>\n <div class=\"fb_border_right\"></div>\n
2080
+ \ <div class=\"fb_border_left\"></div>\n\n <div class=\"relative container\">\n
2081
+ \ <div style=\"float:right; margin-right: 7px; margin-top: 7px;\">\n <a
2082
+ href=\"#\" onclick=\"Social.Facebook.closePopup('remind-me-later'); return false;\"><img
2083
+ alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-x-round.gif132353963126851\"
2084
+ src=\"http://static.huluim.com/images/btn-x-round.gif?1181198444\" /></a>\n
2085
+ \ </div>\n <div class=\"standard tidy\">\n <div class=\"content-container\">\n
2086
+ \ <div class=\"content\" style=\"margin: 20px 12px 20px 12px; padding:
2087
+ 3px 24px 6px 24px;\">\n <div class=\"clearfix\">\n <h2 class=\"cufonable
2088
+ title classic active\" style=\"float: left\"><span class=\"cufonable username\"></span>Hulu.
2089
+ Now with Friends</h2>\n <h2 class=\"cufonable title plus inactive\"
2090
+ \ style=\"float: left\"><span class=\"cufonable username\"></span>Go Social
2091
+ with Hulu</h2>\n <div class=\"login-welcome\" style=\"display:none;
2092
+ float: left\">\n <span class=\"not-me-name\"></span>\n <a
2093
+ class=\"fb_link not-me\" href=\"#\" onclick=\"Social.Facebook.logoutFromPopup();;
2094
+ return false;\"></a>)\n </div>\n </div>\n <div
2095
+ class=\"line\"></div>\n <div class=\"reason classic\" style=\"margin-top:
2096
+ 10px;\">\n Start conversations with friends about your favorite shows'
2097
+ twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
2098
+ style=\"font-weight: 700;\">and receive a FREE month on your subscription to</span>
2099
+ \n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
2100
+ />\n </div>\n <div class=\"reason plus inactive\" style=\"margin-top:
2101
+ 10px;\">\n Start conversations with friends about your favorite shows'
2102
+ twists, turns and laughs. Connect with your friends on Hulu and Facebook - <span
2103
+ style=\"font-weight: 700;\">and we'll tack on a FREE month on your subscription
2104
+ to</span> \n <img alt=\"Huluplus-logo-availability-note\" src=\"http://static.huluim.com/images/huluplus-logo-availability-note.png?984453507\"
2105
+ />\n </div>\n <div style=\"margin-top: 18px; margin-bottom:
2106
+ 10px;\">\n <a href=\"#\" onclick=\"$$('span.confirm-loading')[0].show();
2107
+ Social.Facebook.connect(); return false;\" style=\"float: left;\"><img alt=\"Btn-fbconnect-large\"
2108
+ src=\"http://static.huluim.com/images/btn-fbconnect-large.png?1190692617\" /></a>\n
2109
+ \ <span class=\"confirm-loading\" style=\"margin-left: 10px; padding-top:
2110
+ 4px; vertical-align: top; display:none; float: left;\">\n <img
2111
+ alt=\"Loading-animated-circle\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2112
+ width=\"16\" />\n </span>\n <br style=\"clear: both;\"/>\n
2113
+ \ </div>\n <div style=\"padding-bottom: 26px;\"><a class=\"fb_link\"
2114
+ href=\"#\" onclick=\"Social.Facebook.closePopup('no-thanks'); return false;\">No
2115
+ thanks</a></div>\n </div>\n </div>\n </div>\n </div>\n</div>\n<div
2116
+ class=\"overlay-full\" style=\"display:none;\"></div>\n\n <div id=\"initial-fav-nav\"
2117
+ style=\"display:none;\">\n <div id=\"updated-fav-nav\" style=\"width:920px;height:120px;align:center;color:white;\">\n
2118
+ \ <div style=\"padding-top:46px;text-align:center;font-size:16px;\">\n\t\t\tPlease
2119
+ <a href=\"/account/signin\" style=\"color:white;text-decoration:underline;\">log
2120
+ in</a> to view your favorites.\n </div>\n </div>\n</div>\n \n\n <br style=\"clear:both\"
2121
+ />\n\n <div id='footer' style=''>\n <div id=\"footer-search-auto-complete\"></div>\n
2122
+ \ <div class=\"fluid bar\" style=\"clear:both\">\n <div class=\"fixed-lg
2123
+ container\">\n <div class=\"searchnav\" style=\"width:96%; text-align:center;
2124
+ height:20px\">\n <form id=\"bottom_search_form\" name=\"search_form\" action=\"http://www.hulu.com/search\"
2125
+ method=\"get\" onsubmit=\"if(this.query.value == '') {return false;} getFs('fsb');getSt('stb');
2126
+ if(!$('footer-search-auto-complete').visible()){SearchTracking.trackSearchForm('bottom_search_form')}\">\n
2127
+ \ <input id=\"bottom_video_search_term\" class=\"search\" type=\"text\"
2128
+ \ value=\"\" autocomplete=\"off\" name=\"query\" style=\"margin-right: -3px;\"
2129
+ />\n <a href=\"javascript:void(0)\"><img alt=\"Search\" border=\"0\" class=\"hover-me\"
2130
+ id=\"bottom-nav-search-button\" onclick=\"if($('bottom_search_form').query.value
2131
+ == '') {return false;} getSt('stb');getFs('fsb');SearchTracking.trackSearchForm('bottom_search_form');
2132
+ $('bottom_search_form').submit()\" src=\"http://static.huluim.com/images/btn-search.gif?1103076024\"
2133
+ style=\"vertical-align: middle; margin-left: -1px;margin-bottom:2px;\" title=\"Search\"
2134
+ /></a>\n <a class=\"search-footer-link\" href=\"/search/advanced_search\"
2135
+ onclick=\"if (!$('serp-header')) return true; window.scroll(0,0); var el = $('advanced-search');
2136
+ if (!el || !el.visible()) toggleAdvancedSearch(); return false\">Advanced Search</a>\n
2137
+ \ <span class=\"search-footer-spacer\">|</span>\n <a class=\"search-footer-link\"
2138
+ href=\"javascript:void(0)\" onclick=\"installOpenSearch(); return false\" >Search
2139
+ Plugin</a>\n <input type=\"hidden\" name=\"st\" id=\"stb\" />\n <input
2140
+ type=\"hidden\" name=\"fs\" id=\"fsb\" />\n </form>\n </div>\n </div>\n
2141
+ \ </div>\n <script type=\"text/javascript\">//<![CDATA[\n var bottom_search_query_auto_completer
2142
+ = new Ajax.HuluAutocompleter(\n 'bottom_video_search_term',\n 'footer-search-auto-complete',\n
2143
+ \ '/search/suggest_html',\n { onSelected: function() { getFs('fsb');getSt('stb');
2144
+ $('bottom_search_form').submit();},\n method: 'get',\n onSelectNone
2145
+ : function() {getFs('fsb');getSt('stb');$('bottom_search_form').submit(); SearchTracking.trackSearchForm('bottom_search_form');}\n
2146
+ \ }\n );\n //]]></script>\n\n <br style=\"clear:both\" />\n <div
2147
+ class=\"fluid footer\">\n <div class=\"fixed-lg container\">\n <div
2148
+ style=\"width:68%\">\n <div style=\"float:none; margin-bottom: 6px\"></div>\n
2149
+ \ <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/\"
2150
+ class=\"footer-link\">Home</a>\n <a href=\"http://www.hulu.com/tv\"
2151
+ class=\"footer-link\">TV</a>\n <a href=\"http://www.hulu.com/movies\"
2152
+ class=\"footer-link\">Movies</a>\n </div>\n <div class=\"footer-column\">\n
2153
+ \ <a href=\"http://www.hulu.com/genres\" class=\"footer-link\">Genres</a>\n
2154
+ \ <a href=\"http://www.hulu.com/trailers\" class=\"footer-link\">Trailers</a>\n
2155
+ \ <a href=\"http://www.hulu.com/labs\" class=\"footer-link\">Labs</a>\n
2156
+ \ </div>\n <div class=\"footer-column\"> \n <a
2157
+ href=\"http://www.hulu.com/discussions\" class=\"footer-link\">Discussions</a>\n
2158
+ \ <a href=\"/plus/gifting\" class=\"footer-link\">Buy/Redeem Gifts</a>\n
2159
+ \ <a href=\"http://www.hulu.jp\" class=\"footer-link\">Hulu Japan</a>\n
2160
+ \ </div>\n <div class=\"footer-column\" style=\"width:90px;\">\n
2161
+ \ <a href=\"http://www.hulu.com/distribution\" class=\"footer-link\">Distribution</a>\n
2162
+ \ <a href=\"http://www.hulu.com/about/advertising\" class=\"footer-link\">Advertising</a>\n
2163
+ \ <a href=\"http://www.hulu.com/feed\" class=\"footer-link\" style=\"display:inline;\">RSS</a>
2164
+ <a href=\"http://www.hulu.com/feed\"><img alt=\"Hulu RSS Feeds\" border=\"0\"
2165
+ class=\"hover-me\" id=\"rss-footer-link\" src=\"http://static.huluim.com/images/btn-rss.gif?1246596290\"
2166
+ style=\"vertical-align:bottom;display:inline;margin-left:5px;padding-bottom:2px;\"
2167
+ title=\"Hulu RSS Feeds\" /></a>\n </div>\n <script type=\"text/javascript\">\n//<![CDATA[\nBehaviors.updateFooterLinks()\n//]]>\n</script>\n
2168
+ \ </div>\n\n <div style=\"float:right; width: 32%;\">\n <div
2169
+ style=\"float:none; margin-bottom: 6px\"></div>\n <div class=\"footer-column\">\n
2170
+ \ <a href=\"http://www.hulu.com/jobs\" class=\"footer-link\">Jobs</a>\n
2171
+ \ <a href=\"http://www.hulu.com/about\" class=\"footer-link\">About</a>\n
2172
+ \ <a href=\"http://blog.hulu.com\" class=\"footer-link\">Blog</a>\n
2173
+ \ </div>\n <div class=\"footer-column\">\n <a href=\"http://www.hulu.com/help\"
2174
+ class=\"footer-link\">Help</a>\n <a href=\"http://www.hulu.com/about/product_tour\"
2175
+ class=\"footer-link\">Product Tour</a>\n <a href=\"http://www.hulu.com/support/contact\"
2176
+ class=\"footer-link\">Contact Us</a>\n </div>\n </div>\n <div
2177
+ class=\"disclaimer-container\">\n <div style=\"float:right;padding-right:36px;\">Copyright
2178
+ &copy; 2011 Hulu. All rights reserved.</div>\n <div style=\"float:left;\">\n
2179
+ \ Use of this Web site constitutes acceptance of the Hulu <a href=\"http://www.hulu.com/terms\">Terms
2180
+ of Use</a>\n and <a href=\"http://www.hulu.com/privacy\">Privacy
2181
+ Policy</a>.\n </div>\n </div>\n <br style=\"clear:both;\"/><br
2182
+ style=\"clear:both;\"/>\n </div>\n <div class=\"corner-stone\">\n
2183
+ \ <a href=\"/home/cornerstone\">&nbsp;&nbsp;</a>\n </div>\n <div
2184
+ class=\"corner-stone\">\n <a href=\"/home/cornerstone/ew\">&nbsp;&nbsp;</a>\n
2185
+ \ </div>\n </div>\n </div>\n\n <div id=\"video_search_term_suggestion\"
2186
+ style=\"display: none;\"></div>\n <div id=\"video_search_term_suggestion_js\"
2187
+ style=\"display:none;\"></div>\n\n <div id=\"info_hover\" class=\"info_hover_box\"
2188
+ style=\"display:none\">\n <div class=\"pointer\"> </div>\n <div class=\"content\"></div>\n
2189
+ \ <div class=\"gra-top-left\"> </div><div class=\"gra-top-right\"> </div>\n
2190
+ \ <div class=\"gra-bottom-left\"> </div><div class=\"gra-bottom-right\"> </div>\n
2191
+ \ <div class=\"gra-h\"> </div><div class=\"gra-v-left\"> </div><div class=\"gra-v-right\">
2192
+ </div>\n </div>\n \n <div id=\"notes-modal-containter\" style=\"display:none;\">\n
2193
+ \ <div id=\"notes-form-container\" class=\"content\">\n\t <div class=\"item\">\n\t
2194
+ \ <div class=\"input-area\">\n\t <form action=\"/watch/308569\" id=\"notes-form\"
2195
+ method=\"post\" onsubmit=\"Note.submit(); return false;; new Ajax.Request('/watch/308569',
2196
+ {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return
2197
+ false;\">\n\n\t\t\t\n\t\t\t <span id=\"note-user-name\" style=\"font-size: 14px;
2198
+ font-weight: bold;\"></span>\n\n\t <input id=\"notes-form-user-id\"
2199
+ type=\"hidden\" value=\"\" name=\"note[user_id]\"/>\n\t <textarea name=\"note[body]\"
2200
+ id=\"notes-form-body\" class=\"form-body\"></textarea>\n\n\t\t\t<div>\n\t\t\t\t<span
2201
+ style=\"float: right\">\n\t\t \t <img alt=\"\" border=\"0\" class=\"hover-me\"
2202
+ id=\"notes-form-cancel\" onclick=\"ModalPopup.hide()\" src=\"http://static.huluim.com/images/btn-cancel-65w.gif?1106460533\"
2203
+ title=\"Cancel\" />\n\n\t\t\t <input alt=\"\" border=\"0\" class=\"hover-me\"
2204
+ id=\"notes-form-submit\" onclick=\"if (!Behaviors.isLoggedIn()) { FloatingLoginForm.show(this);
2205
+ return false; }\" src=\"http://static.huluim.com/images/btn-send-small.gif?1116262920\"
2206
+ title=\"Send\" type=\"image\" />\n\t\t\t\t</span>\n\t\t\t\n\t\t <div
2207
+ id=\"notes-form-loading\" class=\"loading\" style=\"display: none;\">\n\t\t
2208
+ \ <img alt=\"\" border=\"0\" height=\"16\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2209
+ style=\"vertical-align:middle;padding-top:2px;\" width=\"16\" />\n\t\t </div>\n\t\t
2210
+ \ <div id=\"notes-error-container\" style=\"display: none;\">\n\t\t <div
2211
+ class=\"notes-error-image\"><img alt=\"\" src=\"http://static.huluim.com/images/icon-warning.gif?1282174508\"
2212
+ /></div>\n\t\t <div id=\"notes-form-errors\"></div>\n\t\t <br
2213
+ style=\"clear:both;\"/>\n\t\t </div>\n\t\t\t </div>\n\t\t</form>\n\t
2214
+ \ </div>\n\t <br style=\"clear: both;\"/>\n\t </div>\n\t</div>\n</div>\n\n
2215
+ \ \n\n <div id=\"friends_for_video_popup\" style=\"display:none\">\n </div>\n\n
2216
+ \ <div id=\"super_plus\" class=\"info_hover_box\" style=\"display:none\">\n
2217
+ \ <div class=\"content\">\n <div class=\"menu-initial\">\n <ul>\n
2218
+ \ <li id='sp-add-to-queue' onclick=\"SuperPlus.Actions.addToQueue()\">Add
2219
+ to queue</li>\n <li onclick=\"SuperPlus.Actions.addToPlaylist()\">Add
2220
+ to playlist&nbsp;&nbsp;&gt;</li>\n </ul>\n </div>\n <div class=\"menu-loading\">\n
2221
+ \ <img alt=\"\" src=\"http://static.huluim.com/images/loading-animated-small.gif?1124342053\"
2222
+ />\n </div>\n <div class=\"menu-playlist relative\">\n <div
2223
+ class=\"subsection header\">Add to Playlist</div>\n <div class=\"subsection
2224
+ playlists\">\n <div></div>\n </div>\n <div class=\"subsection
2225
+ bottom\">\n <img alt=\"\" border=\"0\" class=\"hover-me\" id=\"btn-create-new-playlist.gif132353963127912\"
2226
+ onclick=\"SuperPlus.showCreatePlaylist();\" src=\"http://static.huluim.com/images/btn-create-new-playlist.gif?1110603016\"
2227
+ />\n </div>\n <div class='playlist-add-error' style=\"display:none;\">\n
2228
+ \ <div class='playlist-add-error-content'></div>\n </div>\n </div>\n
2229
+ \ <div class=\"menu-complete\">Added</div>\n </div>\n\n <div class=\"gra-top-left\">
2230
+ </div><div class=\"gra-top-right\"> </div>\n <div class=\"gra-bottom-left\">
2231
+ </div><div class=\"gra-bottom-right\"> </div>\n <div class=\"gra-h\"> </div><div
2232
+ class=\"gra-v-left\"> </div><div class=\"gra-v-right\"> </div>\n <div class=\"gra-plus\">
2233
+ </div><div class=\"gra-plus-corner\"> </div>\n\n <div class=\"border-cover\"
2234
+ style=\"\"> </div>\n </div>\n\n <div id='super-plus-create-form' style=\"display:none;\">\n
2235
+ \ <div class=\"content super-plus-create-form\">\n <form onsubmit=\"return
2236
+ false;\" autocomplete=\"off\">\n <h2 class=\"cufonable\">Create New Playlist</h2>\n
2237
+ \ <table id='playlist-create-table'>\n <tr>\n <td
2238
+ class='col1'>\n Playlist Name\n </td>\n <td
2239
+ class='col2'>\n Privacy Setting\n </td>\n </tr>\n
2240
+ \ <tr>\n <td class='col1'><input type=\"text\" name=\"name\"
2241
+ class='pl-name' /></td>\n <td class='col2'>\n <div class=\"cbx\"
2242
+ id=\"privacy_level\"><div class=\"cbx-choice\">Private</div><input autocomplete=\"off\"
2243
+ id=\"privacy_level\" name=\"privacy_level\" type=\"hidden\" value=\"1\" /><div
2244
+ class=\"cbx-options\" style=\"display: none;\"><ul><li value=\"0\">Public</li><li
2245
+ class=\"selected\" value=\"1\">Private</li></ul></div></div><script type=\"text/javascript\">\n//<![CDATA[\nvar
2246
+ privacy_level = new ComboBox(\"privacy_level\", {\"onchange\":\"\"});\n//]]>\n</script>\n
2247
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2248
+ class='col1-2'>\n <div style=\"height: 20px;min-height: 20px;\">\n
2249
+ \ <div class='playlist-create-error'> </div>\n </div>\n
2250
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2251
+ class='col1-2'>\n Description<br/>\n <textarea name=\"description\"></textarea>\n
2252
+ \ </td>\n </tr>\n <tr>\n <td colspan=2
2253
+ class='col1-2'>\n <div class='submit'>\n <img alt=\"\"
2254
+ id=\"playlist-create-loading\" src=\"http://static.huluim.com/images/loading-animated-circle.gif?1309922598\"
2255
+ style=\"position: relative; top: -2px; left: -2px; display:none;\" title=\"\"
2256
+ />\n <input alt=\"\" border=\"0\" class=\"hover-me\" id=\"create-new-playlist-submit\"
2257
+ src=\"http://static.huluim.com/images/btn-create-and-add.gif?1063828135\" type=\"image\"
2258
+ />\n </div>\n </td>\n </tr>\n </table>\n
2259
+ \ <div class='playlist-create-success' style='display: none;'>\n <ul
2260
+ id='playlist-create-success-text'>\n </ul>\n <img alt=\"\"
2261
+ border=\"0\" class=\"hover-me\" id=\"btn-done.gif132353963128094\" onclick=\"FloatingDiv.hide();\"
2262
+ src=\"http://static.huluim.com/images/btn-done.gif?1023849742\" />\n </div>\n
2263
+ \ </form>\n </div>\n </div>\n \n <script type=\"text/javascript\">\n//<![CDATA[\nCufon.now();
2264
+ document.charset = 'utf-8';\n//]]>\n</script>\n\n \n <script type=\"text/javascript\">\n//<![CDATA[\noverrideDocumentWrite();\n//]]>\n</script>\n
2265
+ \ \n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/\n getSt();\n
2266
+ \ TrackingSystem.initializeTrackingSystem(\n function(){\n if(!TrackingSystem.searchTrackingSystem(\"SERPTrackingSystem\")){\n
2267
+ \ var trackingSystem = new TrackingSystem(\"SERPTrackingSystem\", SERPTracking.SERPTrackingSystemCallBackFunctions);\n
2268
+ \ }\n }\n );\n \n /*]]>*/</script>\n\n \n <div id='third-party-js-delay-load-id'>\n
2269
+ \ <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%2Fwatch%2F308569&c5=watch&c6=&c7=&c8=&c9=&x=NOJAVASCRIPT\"
2270
+ alt=\"\" /></noscript>\n </div>\n <script type=\"text/javascript\" charset=\"utf-8\">/*<![CDATA[*/
2271
+ \ \n document.observe(\"dom:loaded\", function() {\n Comscore.update({\"c15\":\"\",\"c2\":\"3000007\",\"c3\":\"3000007\",\"baseURL\":\"http://beacon.scorecardresearch.com/scripts/beacon.dll\",\"c4\":\"hulu.com/watch/308569\",\"c5\":\"watch\",\"c1\":\"2\"});\n
2272
+ \ Comscore.track();\n\n \n });\n /*]]>*/</script>\n \n</body>\n</html>\n\n"
2273
+ http_version: '1.1'
2274
+ - !ruby/struct:VCR::HTTPInteraction
2275
+ request: !ruby/struct:VCR::Request
2276
+ method: :get
2277
+ uri: http://www.hulu.com:80/api/oembed.json?url=http://www.hulu.com/watch/308569/the-twist-in-the-twister
2278
+ body:
2279
+ headers:
2280
+ response: !ruby/struct:VCR::Response
2281
+ status: !ruby/struct:VCR::ResponseStatus
2282
+ code: 200
2283
+ message: OK
2284
+ headers:
2285
+ server:
2286
+ - nginx
2287
+ content-type:
2288
+ - application/json; charset=utf-8
2289
+ status:
2290
+ - 200 OK
2291
+ x-ua-compatible:
2292
+ - IE=EmulateIE9; IE=EmulateIE7
2293
+ content-length:
2294
+ - '807'
2295
+ cache-control:
2296
+ - max-age=3381
2297
+ date:
2298
+ - Sat, 10 Dec 2011 18:16:32 GMT
2299
+ body: ! '{"thumbnail_width":145,"type":"video","thumbnail_height":80,"title":"The
2300
+ Twist in the Twister (Bones)","provider_name":"Hulu","duration":2631.67,"embed_url":"http://www.hulu.com/embed/MARta6hueNP5OWbSC757mA","width":512,"thumbnail_url":"http://thumbnails.hulu.com/259/60012259/60012259_145x80_generated.jpg","provider_url":"http://www.hulu.com/","version":"1.0","height":296,"cache_age":3600,"html":"<object
2301
+ width=\"512\" height=\"296\"><param name=\"movie\" value=\"http://www.hulu.com/embed/MARta6hueNP5OWbSC757mA\"></param><param
2302
+ name=\"flashvars\" value=\"ap=1\"></param><embed src=\"http://www.hulu.com/embed/MARta6hueNP5OWbSC757mA\"
2303
+ type=\"application/x-shockwave-flash\" width=\"512\" height=\"296\" flashvars=\"ap=1\"></embed></object>","author_name":"FOX","air_date":"Thu
2304
+ Dec 08 00:00:00 UTC 2011"}'
2305
+ http_version: '1.1'