cyx-scraper 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -29,6 +29,7 @@ begin
29
29
  test.libs << 'test'
30
30
  test.pattern = 'test/**/*_test.rb'
31
31
  test.verbose = true
32
+ test.rcov_opts << '--exclude "gems/*"'
32
33
  end
33
34
  rescue LoadError
34
35
  task :rcov do
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
data/lib/scraper.rb CHANGED
@@ -7,15 +7,16 @@ module Scraper
7
7
  autoload :Vimeo, 'scraper/vimeo'
8
8
  autoload :Modules, 'scraper/modules'
9
9
 
10
- HANDLERS = [ :Youtube, :Article ]
10
+ HANDLERS = [ :Youtube, :Vimeo, :Article ]
11
11
  end
12
12
 
13
13
  def Scraper( args = {} )
14
- if handler = Scraper::HANDLERS.detect { |h| Scraper.const_get(h) =~ args }
15
- Scraper.const_get( handler ).new( args )
16
- else
17
- raise ArgumentError, "Scraper cannot handle content from #{args}"
14
+ Scraper::HANDLERS.each do |handler|
15
+ if object = (Scraper.const_get(handler) =~ args)
16
+ return object
17
+ end
18
18
  end
19
+ raise ArgumentError, "Scraper cannot handle content from #{args}"
19
20
  end
20
21
 
21
22
  $LOAD_PATH.unshift( File.dirname(__FILE__) )
@@ -34,7 +34,11 @@ module Scraper
34
34
  attr_reader :title
35
35
 
36
36
  def self.=~( args )
37
- return true
37
+ begin
38
+ @article = Scraper::Article.new( args )
39
+ rescue Scraper::Article::Unsupported
40
+ return nil
41
+ end
38
42
  end
39
43
 
40
44
  # Usage:
@@ -99,8 +103,10 @@ module Scraper
99
103
  end
100
104
 
101
105
  def calculate_top_div( paragraphs )
102
- scores = rate_and_score_paragraphs( paragraphs )
103
- scores.sort_by { |e| e[:score] }.last[:node]
106
+ if scores = rate_and_score_paragraphs( paragraphs )
107
+ top = scores.sort_by { |e| e[:score] }.last
108
+ top && top[:node]
109
+ end
104
110
  end
105
111
 
106
112
  def rate_and_score_paragraphs( paragraphs )
@@ -10,7 +10,7 @@ module Scraper
10
10
  uri = URI.parse( args[:url] )
11
11
 
12
12
  if valid_host_name?( uri.host )
13
- return true
13
+ return new( args )
14
14
  end
15
15
  end
16
16
  end
data/lib/scraper/vimeo.rb CHANGED
@@ -7,7 +7,7 @@ module Scraper
7
7
  class Vimeo
8
8
  @@config = {
9
9
  :valid_host_name => /\A([a-z]+\.)?vimeo\.com\z/,
10
- :video_id_matcher => /([0-9]+)/,
10
+ :video_id_matcher => /\A\/?([0-9]+)\z/,
11
11
  :title_selector => '.title',
12
12
  :description_selector => "#description",
13
13
  :thumbnail_selector => ".current.clip .style_wrap img",
data/scraper.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{scraper}
5
- s.version = "0.3.0"
5
+ s.version = "0.3.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Cyril David"]
@@ -30,11 +30,13 @@ Gem::Specification.new do |s|
30
30
  "test/article_test.rb",
31
31
  "test/fixtures/5826468.html",
32
32
  "test/fixtures/dLO2s7SDHJo.html",
33
+ "test/fixtures/non-article.html",
33
34
  "test/fixtures/scraped.html",
34
35
  "test/fixtures/unwebbable.html",
35
36
  "test/scraper_test.rb",
36
37
  "test/test_helper.rb",
37
38
  "test/vimeo_test.rb",
39
+ "test/web_test.rb",
38
40
  "test/youtube_test.rb"
39
41
  ]
40
42
  s.homepage = %q{http://github.com/cyx/scraper}
@@ -47,6 +49,7 @@ Gem::Specification.new do |s|
47
49
  "test/scraper_test.rb",
48
50
  "test/test_helper.rb",
49
51
  "test/vimeo_test.rb",
52
+ "test/web_test.rb",
50
53
  "test/youtube_test.rb"
51
54
  ]
52
55
 
data/test/article_test.rb CHANGED
@@ -1,6 +1,26 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class Scraper::ArticleTest < Test::Unit::TestCase
4
+ context "given an unreadable content (youtube's homepage for ex)" do
5
+ setup do
6
+ @content = fixture_file('non-article.html')
7
+ end
8
+
9
+ should "raise an Article::Unsupported error" do
10
+ assert_raise Scraper::Article::Unsupported do
11
+ Scraper::Article.new(:content => @content)
12
+ end
13
+ end
14
+ end
15
+
16
+ context "given an argument :foobar" do
17
+ should "raise an ArgumentError" do
18
+ assert_raise ArgumentError do
19
+ Scraper::Article.new(:foobar => 'asehtusaeotu')
20
+ end
21
+ end
22
+ end
23
+
4
24
  context "given the unwebbable A-List-Apart article" do
5
25
  setup do
6
26
  @fixture = fixture_file('unwebbable.html')
@@ -0,0 +1,2396 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
2
+
3
+
4
+ <html lang="en">
5
+
6
+ <!-- machid: WkFSZzctYUFHdmljcGI5WEI2WU03THk3QkNOUWZ4Z3lYOS1FTURPVmxYZG1VZXNHbHdURFBn -->
7
+ <head>
8
+
9
+
10
+ <title>YouTube - Broadcast Yourself.</title>
11
+
12
+ <link rel="stylesheet" type="text/css" href="http://s.ytimg.com/yt/cssbin/www-core-vfl111657.css"/>
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+ <script type="text/javascript" src="http://s.ytimg.com/yt/js/base_all_with_bidi-vfl111852.js"></script>
28
+
29
+
30
+
31
+
32
+
33
+ <script type="text/javascript">
34
+ var gIsGoogleAnalyticsEnabled = false;
35
+
36
+ var gXSRF_token = '';
37
+ var gXSRF_field_name = '';
38
+ var gXSRF_ql_pair = '';
39
+ var onLoadFunctionList = onLoadFunctionList || [];
40
+
41
+ gXSRF_token = 'kIVyvJUaHScSsZTeJytiIY8r7Dt8MTI0OTExODAxNw==';
42
+ gXSRF_field_name = 'session_token';
43
+ onLoadFunctionList.push(function() { populate_session_token() });
44
+
45
+
46
+ gXSRF_ql_pair = 'session_token=FwCROMnTa7hnDA5XhiadpXHRhX58MA==';
47
+
48
+
49
+
50
+
51
+
52
+ </script>
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+ <script type="text/javascript">
65
+ var php_support;
66
+
67
+ var homepageCallback = function() {
68
+
69
+
70
+ php_support = new YT_php_support('kIVyvJUaHScSsZTeJytiIY8r7Dt8MTI0OTExODAxNw==', false, true);
71
+
72
+ php_support.add_module("FEA");
73
+ php_support.add_module("POP");
74
+ php_support.add_module("PRO");
75
+ php_support.add_module("TOP");
76
+
77
+ php_support.init();
78
+
79
+ };
80
+
81
+
82
+
83
+ </script>
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch?locale=en_US" title="YouTube Video Search">
92
+ <link rel="icon" href="http://s.ytimg.com/yt/favicon-vfl86530.ico" type="image/x-icon">
93
+ <link rel="shortcut icon" href="http://s.ytimg.com/yt/favicon-vfl86530.ico" type="image/x-icon">
94
+ <link rel="canonical" href="/"/>
95
+
96
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Blog" href="/rss/global/our_blog.rss">
97
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Top Favorites Today" href="http://gdata.youtube.com/feeds/base/standardfeeds/top_favorites?client=ytapi-youtube-index&time=today&v=2">
98
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Top Rated Today" href="http://gdata.youtube.com/feeds/base/standardfeeds/top_rated?client=ytapi-youtube-index&time=today&v=2">
99
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Top Viewed Today" href="http://gdata.youtube.com/feeds/base/standardfeeds/most_viewed?client=ytapi-youtube-index&time=today&v=2">
100
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Most Discussed Today" href="http://gdata.youtube.com/feeds/base/standardfeeds/most_discussed?client=ytapi-youtube-index&time=today&v=2">
101
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Recently Added" href="http://gdata.youtube.com/feeds/base/standardfeeds/most_recent?client=ytapi-youtube-index&v=2">
102
+ <link rel="alternate" type="application/rss+xml" title="YouTube - Recently Featured" href="http://gdata.youtube.com/feeds/base/standardfeeds/recently_featured?client=ytapi-youtube-index&v=2">
103
+
104
+
105
+ <link rel="alternate" media="handheld" href="http://m.youtube.com/index?desktop_uri=%2F&">
106
+
107
+
108
+
109
+ <meta name="description" content="Share your videos with friends, family, and the world">
110
+
111
+ <meta name="keywords" content="video, sharing, camera phone, video phone, free, upload">
112
+
113
+ </head>
114
+
115
+
116
+ <body class="en_US is-english" onload="performOnLoadFunctions();" onunload="performOnUnloadFunctions();">
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <div id="baseDiv" class="date-20090731 video-info ">
129
+
130
+
131
+
132
+
133
+ <!-- begin top section -->
134
+ <div id="masthead">
135
+ <div id="masthead-inner">
136
+
137
+ <a href="/" onmousedown="urchinTracker('/Events/Header_3/YouTubeLogo');" id="logo"><button onclick="window.top.location.href='/'; return false;" class="master-sprite" title=""></button></a>
138
+ <div id="region-and-language-picker-links-wrapper">
139
+ <button id="slogan" class="master-sprite" title=""></button>
140
+ <span class="util-item first with-flag"><a href="#" class="region-picker-link hLink" onclick="loadFlagImgs('region-picker-box'); return false;" onmousedown="urchinTracker('/Events/Header/UtilLinks/I18n/text');">Worldwide</a></span>
141
+ <span class="util-item"><a href="#" class="language-picker-link hLink" onclick="loadFlagImgs('language-picker-box'); return false;" onmousedown="urchinTracker('/Events/Header/UtilLinks/I18n/text');">English</a></span>
142
+
143
+ </div>
144
+ <div class="user-info">
145
+
146
+
147
+
148
+
149
+ <div id="util-links" class="normal-utility-links">
150
+
151
+
152
+ <span class="util-item first"><b><a class="hLink" href="/signup?next=/" onmousedown="urchinTracker('/Events/Header/UtilLinks/SignUp');">
153
+ Sign Up
154
+
155
+ </a></b></span>
156
+ <span class="util-item"><a class="hLink" href="/watch_queue?all" onmousedown="urchinTracker('/Events/Header/UtilLinks/QuickList');">QuickList</a> (<span id="quicklist-utility">0</span>)</span>
157
+ <span class="util-item"><a class="hLink" href="http://www.google.com/support/youtube/bin/static.py?page=start.cs&hl=en-US" onmousedown="urchinTracker('/Events/Header/UtilLinks/Help');">Help</a></span>
158
+
159
+
160
+ <span class="util-item"><a class="hLink" href="/login?next=/" onmousedown="urchinTracker('/Events/Header/UtilLinks/SignIn');">Sign In</a></span>
161
+
162
+
163
+ </div>
164
+
165
+ <form name="logoutForm" method="post" target="_top" action="/index">
166
+ <input type="hidden" name="action_logout" value="1">
167
+ </form>
168
+
169
+
170
+
171
+ </div>
172
+ <div id="masthead-region-and-language-picker-box" style="display: none;">Loading...</div>
173
+ <div class="clear"></div>
174
+ </div>
175
+
176
+ <div id="bar" class="master-sprite">
177
+ <div id="bar-inner">
178
+
179
+ <a class="master-sprite nav-item" href="/" onmousedown="urchinTracker('/Events/Header_3/MainTabs/HomeTab');">Home</a>
180
+
181
+
182
+ <a class="master-sprite nav-item" href="/browse" onmousedown="urchinTracker('/Events/Header_3/MainTabs/VideosTab');">Videos</a>
183
+
184
+
185
+ <a class="master-sprite nav-item" href="/members" onmousedown="urchinTracker('/Events/Header_3/MainTabs/ChannelsTab');">Channels</a>
186
+
187
+ <a class="master-sprite nav-item" href="/community" onmousedown="urchinTracker('/Events/Header_3/MainTabs/CommunityTab');">Community</a>
188
+
189
+
190
+ <div id="masthead-bar-contents">
191
+
192
+ <form autocomplete="off" class="search-form" action="/results" method="get" name="searchForm">
193
+ <input id="masthead-search-term" class="search-term" name="search_query" type="text" tabindex="1" onkeyup = "top.goog.i18n.bidi.setDirAttribute(event,this)" value="" maxlength="128" onkeydown="searchBarFocusTest(event);" onfocus="addClass(this, 'search-term-focus')" onblur="removeClass(this, 'search-term-focus')">
194
+ <input id="search-type-masthead" name="search_type" type="hidden" value="">
195
+ <a class="yt-button yt-button-primary" id="" style="" href="#" onclick="document.searchForm.submit(); return false;"><span>Search</span></a>
196
+
197
+ </form>
198
+ <script>
199
+ _gel('masthead-search-term').focus();
200
+ </script>
201
+
202
+ <span class="yt-menubutton yt-menubutton-urgent" id="upload-button" style="" onmouseenter="this.className += ' yt-menubutton-urgent-hover';" onmouseleave="this.className = this.className.replace(' yt-menubutton-urgent-hover', '');"><a class="yt-menubutton-btn yt-button yt-button-urgent" href="/my_videos_upload" onclick="urchinTracker('/Events/Header/UploadButton');"><span>Upload</span></a><a class="yt-menubutton-arr yt-button yt-button-urgent" href="/my_videos_upload" onclick="urchinTracker('/Events/Header/UploadButton');"><button></button><span></span></a><ul class="yt-menubutton-menu"><li><a href="/my_videos_upload" onclick="urchinTracker('/Events/Header/UploadButton');">Upload Video File</a></li><li><a href="/my_webcam" onclick="urchinTracker('Events/Header/WebcamButton');">Record from Webcam</a></li></ul> </span>
203
+
204
+ </div>
205
+ <div class="clearL"></div>
206
+ </div>
207
+ </div>
208
+
209
+ <div class="clear"></div>
210
+ </div>
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+ <div id="homepage-main-content" class="homepage-non-interactive">
226
+
227
+
228
+
229
+ <div id="dragdrop" style="overflow: hidden; clear: both;">
230
+
231
+
232
+
233
+ <div id="feedmodule-FEA" class="feedmodule-anchor">
234
+ <div class="feedmodule-modheader" onmousedown="bootstrapHomepage()" id="FEA-titlebar">
235
+
236
+ <div id="feed_featured">
237
+ <div class="fm2-title-border-box-gray yt-rounded">
238
+ <div class="fm2-title">
239
+ <img class="img_feed_featured master-sprite fm2-icon" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
240
+ <span class="fm2-titleText" id="feed_featured-titleText">X Games</span>
241
+ </div>
242
+
243
+ <div class="feedmodule-preamble">
244
+ <a href="/browse?s=rf" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/View_Featured/Logged_Out');">(view all)</a>
245
+ </div>
246
+
247
+ <div class="feedmodule-updown">
248
+
249
+ <span id="medit-FEA" class="iyt-edit-link iyt-edit-link-gray" onclick="queueHomepageFunction(function() { php_support.open_options_pane('FEA-options');})">edit</span>
250
+
251
+ <span id="mup-FEA" class="up-button" onclick="queueHomepageFunction(function() { php_support.move_module('FEA', 'up');})"><img class="master-sprite img-php-up-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mdown-FEA" class="down-button" onclick="queueHomepageFunction(function() { php_support.move_module('FEA', 'down');})"><img class="master-sprite img-php-down-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mclose-FEA" onclick="queueHomepageFunction(function() { php_support.remove_module('FEA');})"><img class="master-sprite img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span>
252
+ </div>
253
+
254
+ </div>
255
+ </div>
256
+
257
+
258
+ </div>
259
+
260
+ <div class="clear feedmodule-border-gray yt-rounded" id="feed_featured-content">
261
+
262
+ <div id="FEA-options" class="opt-pane" style="display: none;">
263
+ <div class="opt-box-top">
264
+ <img class="homepage-ajax-sprite img-php-opt-box-caret" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
265
+ </div>
266
+ <div class="opt-banner">
267
+ <div class="opt-links">
268
+ <div class="opt-edit">Editing: X Games</div>
269
+ <div class="opt-close opt-close-button" onclick="queueHomepageFunction(function() { php_support.close_options_pane('FEA-options');})"><img class="img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif"/></div>
270
+ <div class="opt-close opt-close-text" onclick="queueHomepageFunction(function() { php_support.close_options_pane('FEA-options');})">close</div>
271
+ <div id="FEA-loading-msg" class="opt-loading-msg" style="display: none;">
272
+ Saving...
273
+ </div>
274
+ <div id="FEA-loading-icn" class="opt-loading-icn" style="display: none;">
275
+ <img width="16" id="FEA-loading-icn-image" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" image="http://s.ytimg.com/yt/img/icn_loading_animated-vfl24663.gif">
276
+ </div>
277
+ <div class="clear"></div>
278
+ </div>
279
+ </div>
280
+ <div class="opt-main">
281
+ <div class="opt-simple-msg">
282
+ Want to customize this homepage?
283
+
284
+ <a href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignup%3Fnomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US&ltmpl=sso" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignIn/EditModuleBox');">Sign In</a> or <a href="/signup?next=%2F" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignUp/EditModuleBox');">Sign Up</a> now!
285
+
286
+ </div>
287
+ </div>
288
+ </div>
289
+
290
+
291
+ <div id="FEA-data" class="feedmodule-data">
292
+
293
+
294
+ <div class="feedmodule-feditor">
295
+ <div class="feedmodule-feditor-img user-thumb-large" style="margin-right: 10px"><div>
296
+ <a href="/ESPN"><img src="http://i2.ytimg.com/i/iWLfSweyRNmLpgEHekhoAg/1.jpg?v=669c9b" alt="editor image"></a>
297
+ </div></div>
298
+ <div class="guest-editor-with-comment">
299
+ <div class="guest-editor-profile-link"><a href="/ESPN" >ESPN</a></div>
300
+ <div class="guest-editor-comment">ESPN's four-day action sports extravaganza is going down now. Here are classic moments from past Games, and a few of the athletes striving for immortality this year. We'll add new highlights throughout the day, or subscribe to ESPN for the freshest clips.</div>
301
+ </div>
302
+ <div class="spacer">&nbsp;</div>
303
+ </div>
304
+
305
+
306
+
307
+ <div class="feedmodule-body grid-view">
308
+ <div class="clearL">
309
+
310
+
311
+ <div class="video-cell" style="width:24.5%">
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+ <div class="video-entry">
320
+
321
+
322
+
323
+
324
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-uxHx71w19sQ" href="/watch?v=uxHx71w19sQ&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" rel="nofollow"><img title="Memorable X Games Moments: Jake Browns Slam and Resurrection" src="http://i2.ytimg.com/vi/uxHx71w19sQ/default.jpg" class="vimg120" qlicon="uxHx71w19sQ" alt="Memorable X Games Moments: Jake Browns Slam and Resurrection"></a><div id="quicklist-icon-uxHx71w19sQ" class="addtoQL90"><a id="add-to-quicklist-uxHx71w19sQ" href="#" ql="uxHx71w19sQ" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
325
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/uxHx71w19sQ/default.jpg', 'Memorable X Games Moments: Jake Browns Slam and Resurrection');return false;"
326
+ onmouseover="mouseOverQuickAdd(this)"
327
+ onmouseout="mouseOutQuickAdd(this)"
328
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
329
+ <div class="video-time"><span id="video-run-time-uxHx71w19sQ">4:08</span></div></div></div></div>
330
+
331
+ <div class="video-main-content" id="video-main-content-uxHx71w19sQ">
332
+
333
+
334
+ <div class="video-title ">
335
+ <div class="video-short-title">
336
+ <span id="translated_short_prefix_uxHx71w19sQ" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
337
+ <a id="video-short-title-uxHx71w19sQ" href="/watch?v=uxHx71w19sQ&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Memorable X Games Moments: Jake Browns Slam and Resurrection" rel="nofollow">Memorable X Games Moments: Jake ...</a>
338
+ </div>
339
+ <div class="video-long-title">
340
+ <span id="translated_long_prefix_uxHx71w19sQ" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
341
+ <a id="video-long-title-uxHx71w19sQ" href="/watch?v=uxHx71w19sQ&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Memorable X Games Moments: Jake Browns Slam and Resurrection" rel="nofollow">Memorable X Games Moments: Jake Browns Slam and Resurrection</a>
342
+ <a href="/watch?v=uxHx71w19sQ&feature=featured&hd=1"><img src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" class="master-sprite hd-video-logo " /></a>
343
+
344
+ </div>
345
+ </div>
346
+
347
+ <div id="video-description-uxHx71w19sQ" class="video-description">
348
+ After 2007s Slam Heard Round the World Jake Brown not only walked off on his own p...
349
+ </div>
350
+
351
+
352
+
353
+ <div class="video-facets">
354
+
355
+ <span id="video-average-rating-uxHx71w19sQ" class="video-rating-list ">
356
+
357
+
358
+ <div>
359
+
360
+
361
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
362
+
363
+
364
+
365
+ </div>
366
+
367
+
368
+ </span>
369
+
370
+ <span id="video-added-time-uxHx71w19sQ" class="video-date-added">1 month ago</span>
371
+
372
+ <span id="video-num-views-uxHx71w19sQ" class="video-view-count">3,389 views</span>
373
+
374
+ <span class="video-username"><a id="video-from-username-uxHx71w19sQ" class="hLink" href="/user/ESPN">ESPN</a></span>
375
+
376
+
377
+ <span id="video-average-rating-uxHx71w19sQ" class="video-rating-grid ">
378
+
379
+
380
+ <div>
381
+
382
+
383
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
384
+
385
+
386
+
387
+ </div>
388
+
389
+
390
+ </span>
391
+
392
+
393
+ </div>
394
+
395
+ </div>
396
+
397
+ <div class="video-clear-list-left"></div>
398
+
399
+
400
+
401
+ </div>
402
+ </div>
403
+
404
+
405
+ <div class="video-cell" style="width:24.5%">
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+ <div class="video-entry">
414
+
415
+
416
+
417
+
418
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" rel="nofollow"><img title="Memorable X Games Moments: Tony Hawks 900" src="http://i3.ytimg.com/vi/RstrPAUmtnA/default.jpg" class="vimg120" qlicon="RstrPAUmtnA" alt="Memorable X Games Moments: Tony Hawks 900"></a><div id="quicklist-icon-RstrPAUmtnA" class="addtoQL90"><a id="add-to-quicklist-RstrPAUmtnA" href="#" ql="RstrPAUmtnA" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
419
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i3.ytimg.com/vi/RstrPAUmtnA/default.jpg', 'Memorable X Games Moments: Tony Hawks 900');return false;"
420
+ onmouseover="mouseOverQuickAdd(this)"
421
+ onmouseout="mouseOutQuickAdd(this)"
422
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
423
+ <div class="video-time"><span id="video-run-time-RstrPAUmtnA">2:12</span></div></div></div></div>
424
+
425
+ <div class="video-main-content" id="video-main-content-RstrPAUmtnA">
426
+
427
+
428
+ <div class="video-title ">
429
+ <div class="video-short-title">
430
+ <span id="translated_short_prefix_RstrPAUmtnA" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
431
+ <a id="video-short-title-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Memorable X Games Moments: Tony Hawks 900" rel="nofollow">Memorable X Games Moments: Tony ...</a>
432
+ </div>
433
+ <div class="video-long-title">
434
+ <span id="translated_long_prefix_RstrPAUmtnA" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
435
+ <a id="video-long-title-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Memorable X Games Moments: Tony Hawks 900" rel="nofollow">Memorable X Games Moments: Tony Hawks 900</a>
436
+ <a href="/watch?v=RstrPAUmtnA&feature=featured&hd=1"><img src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" class="master-sprite hd-video-logo " /></a>
437
+
438
+ </div>
439
+ </div>
440
+
441
+ <div id="video-description-RstrPAUmtnA" class="video-description">
442
+ After 11 exhausting attempts during the 1999 Best Trick comp, Tony Hawk finally st...
443
+ </div>
444
+
445
+
446
+
447
+ <div class="video-facets">
448
+
449
+ <span id="video-average-rating-RstrPAUmtnA" class="video-rating-list ">
450
+
451
+
452
+ <div>
453
+
454
+
455
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
456
+
457
+
458
+
459
+ </div>
460
+
461
+
462
+ </span>
463
+
464
+ <span id="video-added-time-RstrPAUmtnA" class="video-date-added">1 month ago</span>
465
+
466
+ <span id="video-num-views-RstrPAUmtnA" class="video-view-count">3,876 views</span>
467
+
468
+ <span class="video-username"><a id="video-from-username-RstrPAUmtnA" class="hLink" href="/user/ESPN">ESPN</a></span>
469
+
470
+
471
+ <span id="video-average-rating-RstrPAUmtnA" class="video-rating-grid ">
472
+
473
+
474
+ <div>
475
+
476
+
477
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
478
+
479
+
480
+
481
+ </div>
482
+
483
+
484
+ </span>
485
+
486
+
487
+ </div>
488
+
489
+ </div>
490
+
491
+ <div class="video-clear-list-left"></div>
492
+
493
+
494
+
495
+ </div>
496
+ </div>
497
+
498
+
499
+ <div class="video-cell" style="width:24.5%">
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+ <div class="video-entry">
508
+
509
+
510
+
511
+
512
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-X5Z8ZePa5K0" href="/watch?v=X5Z8ZePa5K0&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" rel="nofollow"><img title="Chaz in Charge" src="http://i1.ytimg.com/vi/X5Z8ZePa5K0/default.jpg" class="vimg120" qlicon="X5Z8ZePa5K0" alt="Chaz in Charge"></a><div id="quicklist-icon-X5Z8ZePa5K0" class="addtoQL90"><a id="add-to-quicklist-X5Z8ZePa5K0" href="#" ql="X5Z8ZePa5K0" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
513
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i1.ytimg.com/vi/X5Z8ZePa5K0/default.jpg', 'Chaz in Charge');return false;"
514
+ onmouseover="mouseOverQuickAdd(this)"
515
+ onmouseout="mouseOutQuickAdd(this)"
516
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
517
+ <div class="video-time"><span id="video-run-time-X5Z8ZePa5K0">4:34</span></div></div></div></div>
518
+
519
+ <div class="video-main-content" id="video-main-content-X5Z8ZePa5K0">
520
+
521
+
522
+ <div class="video-title ">
523
+ <div class="video-short-title">
524
+ <span id="translated_short_prefix_X5Z8ZePa5K0" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
525
+ <a id="video-short-title-X5Z8ZePa5K0" href="/watch?v=X5Z8ZePa5K0&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Chaz in Charge" rel="nofollow">Chaz in Charge</a>
526
+ </div>
527
+ <div class="video-long-title">
528
+ <span id="translated_long_prefix_X5Z8ZePa5K0" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
529
+ <a id="video-long-title-X5Z8ZePa5K0" href="/watch?v=X5Z8ZePa5K0&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Chaz in Charge" rel="nofollow">Chaz in Charge</a>
530
+ </div>
531
+ </div>
532
+
533
+ <div id="video-description-X5Z8ZePa5K0" class="video-description">
534
+ At 15, Chaz Ortiz already has a Dew Tour Cup, Gatorade deal, and Zoo York video pa...
535
+ </div>
536
+
537
+
538
+
539
+ <div class="video-facets">
540
+
541
+ <span id="video-average-rating-X5Z8ZePa5K0" class="video-rating-list ">
542
+
543
+
544
+ <div>
545
+
546
+
547
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
548
+
549
+
550
+
551
+ </div>
552
+
553
+
554
+ </span>
555
+
556
+ <span id="video-added-time-X5Z8ZePa5K0" class="video-date-added">3 days ago</span>
557
+
558
+ <span id="video-num-views-X5Z8ZePa5K0" class="video-view-count">315 views</span>
559
+
560
+ <span class="video-username"><a id="video-from-username-X5Z8ZePa5K0" class="hLink" href="/user/ESPN">ESPN</a></span>
561
+
562
+
563
+ <span id="video-average-rating-X5Z8ZePa5K0" class="video-rating-grid ">
564
+
565
+
566
+ <div>
567
+
568
+
569
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
570
+
571
+
572
+
573
+ </div>
574
+
575
+
576
+ </span>
577
+
578
+
579
+ </div>
580
+
581
+ </div>
582
+
583
+ <div class="video-clear-list-left"></div>
584
+
585
+
586
+
587
+ </div>
588
+ </div>
589
+
590
+
591
+ <div class="video-cell" style="width:24.5%">
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+ <div class="video-entry">
600
+
601
+
602
+
603
+
604
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-aVX6bwyR280" href="/watch?v=aVX6bwyR280&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" rel="nofollow"><img title="Danny Way On Summer X Games" src="http://i2.ytimg.com/vi/aVX6bwyR280/default.jpg" class="vimg120" qlicon="aVX6bwyR280" alt="Danny Way On Summer X Games"></a><div id="quicklist-icon-aVX6bwyR280" class="addtoQL90"><a id="add-to-quicklist-aVX6bwyR280" href="#" ql="aVX6bwyR280" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
605
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/aVX6bwyR280/default.jpg', 'Danny Way On Summer X Games');return false;"
606
+ onmouseover="mouseOverQuickAdd(this)"
607
+ onmouseout="mouseOutQuickAdd(this)"
608
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
609
+ <div class="video-time"><span id="video-run-time-aVX6bwyR280">8:50</span></div></div></div></div>
610
+
611
+ <div class="video-main-content" id="video-main-content-aVX6bwyR280">
612
+
613
+
614
+ <div class="video-title ">
615
+ <div class="video-short-title">
616
+ <span id="translated_short_prefix_aVX6bwyR280" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
617
+ <a id="video-short-title-aVX6bwyR280" href="/watch?v=aVX6bwyR280&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Danny Way On Summer X Games" rel="nofollow">Danny Way On Summer X Games</a>
618
+ </div>
619
+ <div class="video-long-title">
620
+ <span id="translated_long_prefix_aVX6bwyR280" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
621
+ <a id="video-long-title-aVX6bwyR280" href="/watch?v=aVX6bwyR280&feature=featured" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/FEA/Logged_Out');" title="Danny Way On Summer X Games" rel="nofollow">Danny Way On Summer X Games</a>
622
+ </div>
623
+ </div>
624
+
625
+ <div id="video-description-aVX6bwyR280" class="video-description">
626
+ Danny Way sits down with Jim Rome
627
+ </div>
628
+
629
+
630
+
631
+ <div class="video-facets">
632
+
633
+ <span id="video-average-rating-aVX6bwyR280" class="video-rating-list ">
634
+
635
+
636
+ <div>
637
+
638
+
639
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
640
+
641
+
642
+
643
+ </div>
644
+
645
+
646
+ </span>
647
+
648
+ <span id="video-added-time-aVX6bwyR280" class="video-date-added">1 week ago</span>
649
+
650
+ <span id="video-num-views-aVX6bwyR280" class="video-view-count">301 views</span>
651
+
652
+ <span class="video-username"><a id="video-from-username-aVX6bwyR280" class="hLink" href="/user/ESPN">ESPN</a></span>
653
+
654
+
655
+ <span id="video-average-rating-aVX6bwyR280" class="video-rating-grid ">
656
+
657
+
658
+ <div>
659
+
660
+
661
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
662
+
663
+
664
+
665
+ </div>
666
+
667
+
668
+ </span>
669
+
670
+
671
+ </div>
672
+
673
+ </div>
674
+
675
+ <div class="video-clear-list-left"></div>
676
+
677
+
678
+
679
+ </div>
680
+ </div>
681
+
682
+ </div>
683
+ </div>
684
+
685
+
686
+ </div>
687
+ </div>
688
+ <div class="clear"></div>
689
+
690
+
691
+ </div>
692
+
693
+
694
+
695
+ <div id="feedmodule-POP" class="feedmodule-anchor">
696
+ <div class="feedmodule-modheader" onmousedown="bootstrapHomepage()" id="POP-titlebar">
697
+
698
+ <div id="feed_popular">
699
+ <div class="fm2-title-border-box-gray yt-rounded">
700
+ <div class="fm2-title">
701
+ <img class="img_feed_popular master-sprite fm2-icon" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
702
+ <span class="fm2-titleText" id="feed_popular-titleText">Videos Being Watched Now</span>
703
+ </div>
704
+
705
+ <div class="feedmodule-preamble">
706
+ <a href="/browse?s=pop" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/View_Popular/Logged_Out');">(view all)</a>
707
+ </div>
708
+
709
+ <div class="feedmodule-updown">
710
+
711
+ <span id="medit-POP" class="iyt-edit-link iyt-edit-link-gray" onclick="queueHomepageFunction(function() { php_support.open_options_pane('POP-options');})">edit</span>
712
+
713
+ <span id="mup-POP" class="up-button" onclick="queueHomepageFunction(function() { php_support.move_module('POP', 'up');})"><img class="master-sprite img-php-up-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mdown-POP" class="down-button" onclick="queueHomepageFunction(function() { php_support.move_module('POP', 'down');})"><img class="master-sprite img-php-down-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mclose-POP" onclick="queueHomepageFunction(function() { php_support.remove_module('POP');})"><img class="master-sprite img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span>
714
+ </div>
715
+
716
+ </div>
717
+ </div>
718
+
719
+
720
+ </div>
721
+
722
+ <div class="clear feedmodule-border-gray yt-rounded" id="feed_popular-content">
723
+
724
+ <div id="POP-options" class="opt-pane" style="display: none;">
725
+ <div class="opt-box-top">
726
+ <img class="homepage-ajax-sprite img-php-opt-box-caret" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
727
+ </div>
728
+ <div class="opt-banner">
729
+ <div class="opt-links">
730
+ <div class="opt-edit">Editing: Videos Being Watched Now</div>
731
+ <div class="opt-close opt-close-button" onclick="queueHomepageFunction(function() { php_support.close_options_pane('POP-options');})"><img class="img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif"/></div>
732
+ <div class="opt-close opt-close-text" onclick="queueHomepageFunction(function() { php_support.close_options_pane('POP-options');})">close</div>
733
+ <div id="POP-loading-msg" class="opt-loading-msg" style="display: none;">
734
+ Saving...
735
+ </div>
736
+ <div id="POP-loading-icn" class="opt-loading-icn" style="display: none;">
737
+ <img width="16" id="POP-loading-icn-image" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" image="http://s.ytimg.com/yt/img/icn_loading_animated-vfl24663.gif">
738
+ </div>
739
+ <div class="clear"></div>
740
+ </div>
741
+ </div>
742
+ <div class="opt-main">
743
+ <div class="opt-simple-msg">
744
+ Want to customize this homepage?
745
+
746
+ <a href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignup%3Fnomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US&ltmpl=sso" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignIn/EditModuleBox');">Sign In</a> or <a href="/signup?next=%2F" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignUp/EditModuleBox');">Sign Up</a> now!
747
+
748
+ </div>
749
+ </div>
750
+ </div>
751
+
752
+
753
+ <div id="POP-data" class="feedmodule-data">
754
+
755
+
756
+ <div class="feedmodule-body bigthumb-view">
757
+
758
+
759
+
760
+
761
+
762
+ <div class="feeditem-bigthumb super-large-video ">
763
+ <div style="font-size: 12px;" class="floatL">
764
+ <div class="feedmodule-thumbnail">
765
+ <div class="v220WideEntry"><div class="v220WrapperOuter"><div class="v220WrapperInner"><a id="video-url-O0Q8Ca9jhQs" href="/watch?v=O0Q8Ca9jhQs&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" rel="nofollow"><img title="Halo 3: ODST Video Documentary Desperate Measures Trailer [HD]" src="http://i4.ytimg.com/vi/O0Q8Ca9jhQs/hqdefault.jpg" class="vimg220" qlicon="O0Q8Ca9jhQs" alt="Halo 3: ODST Video Documentary Desperate Measures Trailer [HD]"></a><div id="quicklist-icon-O0Q8Ca9jhQs" class="addtoQL90"><a id="add-to-quicklist-O0Q8Ca9jhQs" href="#" ql="O0Q8Ca9jhQs" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
766
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/O0Q8Ca9jhQs/default.jpg', 'Halo 3: ODST Video Documentary Desperate Measures Trailer [HD]');return false;"
767
+ onmouseover="mouseOverQuickAdd(this)"
768
+ onmouseout="mouseOutQuickAdd(this)"
769
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
770
+ <div class="video-time"><span id="video-run-time-O0Q8Ca9jhQs">3:41</span></div></div></div></div>
771
+ </div>
772
+ </div>
773
+
774
+ <div class="feedmodule-singleform-info">
775
+
776
+ <div class="video-title">
777
+ <a href="/watch?v=O0Q8Ca9jhQs&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" title="Halo 3: ODST Video Documentary Desperate Measures Trailer [HD]" >Halo 3: ODST Video Documentary Desperate Measures...</a>
778
+ </div>
779
+ <div>
780
+ 8,578 views
781
+ </div>
782
+ <div>
783
+ <nobr>
784
+ <a href="/user/machinima">machinima</a>
785
+ </nobr>
786
+ </div>
787
+ <div class="feedmodule-singleform-info-ratings">
788
+
789
+
790
+ <span>
791
+
792
+
793
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
794
+
795
+
796
+
797
+ </span>
798
+
799
+
800
+ </div>
801
+ </div>
802
+
803
+ <div class="spacer">&nbsp;</div>
804
+ </div>
805
+
806
+
807
+
808
+
809
+ <div class="feeditem-bigthumb normal-size-video ">
810
+ <div style="font-size: 12px;" class="floatL">
811
+ <div class="feedmodule-thumbnail">
812
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-6pkl59Q-UnM" href="/watch?v=6pkl59Q-UnM&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" rel="nofollow"><img title="Mean Kitty Vlog - Routine 7.29.09" src="http://i3.ytimg.com/vi/6pkl59Q-UnM/default.jpg" class="vimg120" qlicon="6pkl59Q-UnM" alt="Mean Kitty Vlog - Routine 7.29.09"></a><div id="quicklist-icon-6pkl59Q-UnM" class="addtoQL90"><a id="add-to-quicklist-6pkl59Q-UnM" href="#" ql="6pkl59Q-UnM" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
813
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i3.ytimg.com/vi/6pkl59Q-UnM/default.jpg', 'Mean Kitty Vlog - Routine 7.29.09');return false;"
814
+ onmouseover="mouseOverQuickAdd(this)"
815
+ onmouseout="mouseOutQuickAdd(this)"
816
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
817
+ <div class="video-time"><span id="video-run-time-6pkl59Q-UnM">3:20</span></div></div></div></div>
818
+ </div>
819
+ </div>
820
+
821
+ <div class="feedmodule-singleform-info">
822
+
823
+ <div class="video-title">
824
+ <a href="/watch?v=6pkl59Q-UnM&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" title="Mean Kitty Vlog - Routine 7.29.09" >Mean Kitty Vlog - Routine 7.29.09</a>
825
+ </div>
826
+ <div>
827
+ 13,008 views
828
+ </div>
829
+ <div>
830
+ <nobr>
831
+ <a href="/user/TheMeanKitty">TheMeanKitty</a>
832
+ </nobr>
833
+ </div>
834
+ <div class="feedmodule-singleform-info-ratings">
835
+
836
+
837
+ <span>
838
+
839
+
840
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
841
+
842
+
843
+
844
+ </span>
845
+
846
+
847
+ </div>
848
+ </div>
849
+
850
+ <div class="spacer">&nbsp;</div>
851
+ </div>
852
+
853
+
854
+
855
+
856
+ <div class="feeditem-bigthumb normal-size-video ">
857
+ <div style="font-size: 12px;" class="floatL">
858
+ <div class="feedmodule-thumbnail">
859
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-5eUtSV519vU" href="/watch?v=5eUtSV519vU&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" rel="nofollow"><img title="Stephon Marbury Eats Vaseline" src="http://i2.ytimg.com/vi/5eUtSV519vU/default.jpg" class="vimg120" qlicon="5eUtSV519vU" alt="Stephon Marbury Eats Vaseline"></a><div id="quicklist-icon-5eUtSV519vU" class="addtoQL90"><a id="add-to-quicklist-5eUtSV519vU" href="#" ql="5eUtSV519vU" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
860
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/5eUtSV519vU/default.jpg', 'Stephon Marbury Eats Vaseline');return false;"
861
+ onmouseover="mouseOverQuickAdd(this)"
862
+ onmouseout="mouseOutQuickAdd(this)"
863
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
864
+ <div class="video-time"><span id="video-run-time-5eUtSV519vU">2:06</span></div></div></div></div>
865
+ </div>
866
+ </div>
867
+
868
+ <div class="feedmodule-singleform-info">
869
+
870
+ <div class="video-title">
871
+ <a href="/watch?v=5eUtSV519vU&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" title="Stephon Marbury Eats Vaseline" >Stephon Marbury Eats Vaseline</a>
872
+ </div>
873
+ <div>
874
+ 40,006 views
875
+ </div>
876
+ <div>
877
+ <nobr>
878
+ <a href="/user/DDKTien">DDKTien</a>
879
+ </nobr>
880
+ </div>
881
+ <div class="feedmodule-singleform-info-ratings">
882
+
883
+
884
+ <span>
885
+
886
+
887
+ <button class="master-sprite ratingVS ratingVS-4.0" title="4.0"></button>
888
+
889
+
890
+
891
+ </span>
892
+
893
+
894
+ </div>
895
+ </div>
896
+
897
+ <div class="spacer">&nbsp;</div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+ <div class="feeditem-bigthumb normal-size-video ">
904
+ <div style="font-size: 12px;" class="floatL">
905
+ <div class="feedmodule-thumbnail">
906
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-o0CdAKrTZ0A" href="/watch?v=o0CdAKrTZ0A&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" rel="nofollow"><img title="Every Week on Entourage" src="http://i4.ytimg.com/vi/o0CdAKrTZ0A/default.jpg" class="vimg120" qlicon="o0CdAKrTZ0A" alt="Every Week on Entourage"></a><div id="quicklist-icon-o0CdAKrTZ0A" class="addtoQL90"><a id="add-to-quicklist-o0CdAKrTZ0A" href="#" ql="o0CdAKrTZ0A" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
907
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/o0CdAKrTZ0A/default.jpg', 'Every Week on Entourage');return false;"
908
+ onmouseover="mouseOverQuickAdd(this)"
909
+ onmouseout="mouseOutQuickAdd(this)"
910
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
911
+ <div class="video-time"><span id="video-run-time-o0CdAKrTZ0A">2:31</span></div></div></div></div>
912
+ </div>
913
+ </div>
914
+
915
+ <div class="feedmodule-singleform-info">
916
+
917
+ <div class="video-title">
918
+ <a href="/watch?v=o0CdAKrTZ0A&feature=popular" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/POP/Logged_Out');" title="Every Week on Entourage" >Every Week on Entourage</a>
919
+ </div>
920
+ <div>
921
+ 75,074 views
922
+ </div>
923
+ <div>
924
+ <nobr>
925
+ <a href="/user/collegehumor">collegehumor</a>
926
+ </nobr>
927
+ </div>
928
+ <div class="feedmodule-singleform-info-ratings">
929
+
930
+
931
+ <span>
932
+
933
+
934
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
935
+
936
+
937
+
938
+ </span>
939
+
940
+
941
+ </div>
942
+ </div>
943
+
944
+ <div class="spacer">&nbsp;</div>
945
+ </div>
946
+
947
+ <div class="spacer">&nbsp;</div>
948
+ </div>
949
+
950
+
951
+ </div>
952
+ </div>
953
+ <div class="clear"></div>
954
+
955
+
956
+ </div>
957
+
958
+
959
+
960
+ <div id="feedmodule-PRO" class="feedmodule-anchor">
961
+ <div class="feedmodule-modheader" onmousedown="bootstrapHomepage()" id="PRO-titlebar">
962
+
963
+ <div id="feed_promoted">
964
+ <div class="fm2-title-border-box-blue yt-rounded">
965
+ <div class="fm2-title">
966
+ <img class="img_feed_promoted master-sprite fm2-icon" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
967
+ <span class="fm2-titleText" id="feed_promoted-titleText">Featured Videos</span>
968
+ </div>
969
+
970
+
971
+ <div class="feedmodule-updown">
972
+
973
+
974
+ <span id="mup-PRO" class="up-button" onclick="queueHomepageFunction(function() { php_support.move_module('PRO', 'up');})"><img class="master-sprite img-php-up-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mdown-PRO" class="down-button" onclick="queueHomepageFunction(function() { php_support.move_module('PRO', 'down');})"><img class="master-sprite img-php-down-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span>
975
+ </div>
976
+
977
+ </div>
978
+ </div>
979
+
980
+
981
+ </div>
982
+
983
+ <div class="clear feedmodule-border-blue yt-rounded" id="feed_promoted-content">
984
+
985
+ <div id="PRO-options" class="opt-pane" style="display: none;">
986
+ <div class="opt-box-top">
987
+ <img class="homepage-ajax-sprite img-php-opt-box-caret" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
988
+ </div>
989
+ <div class="opt-banner">
990
+ <div class="opt-links">
991
+ <div class="opt-edit">Editing: Featured Videos</div>
992
+ <div class="opt-close opt-close-button" onclick="queueHomepageFunction(function() { php_support.close_options_pane('PRO-options');})"><img class="img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif"/></div>
993
+ <div class="opt-close opt-close-text" onclick="queueHomepageFunction(function() { php_support.close_options_pane('PRO-options');})">close</div>
994
+ <div id="PRO-loading-msg" class="opt-loading-msg" style="display: none;">
995
+ Saving...
996
+ </div>
997
+ <div id="PRO-loading-icn" class="opt-loading-icn" style="display: none;">
998
+ <img width="16" id="PRO-loading-icn-image" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" image="http://s.ytimg.com/yt/img/icn_loading_animated-vfl24663.gif">
999
+ </div>
1000
+ <div class="clear"></div>
1001
+ </div>
1002
+ </div>
1003
+ <div class="opt-main">
1004
+ <div class="opt-simple-msg">
1005
+ Want to customize this homepage?
1006
+
1007
+ <a href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignup%3Fnomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US&ltmpl=sso" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignIn/EditModuleBox');">Sign In</a> or <a href="/signup?next=%2F" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignUp/EditModuleBox');">Sign Up</a> now!
1008
+
1009
+ </div>
1010
+ </div>
1011
+ </div>
1012
+
1013
+
1014
+ <div id="PRO-data" class="feedmodule-data">
1015
+
1016
+
1017
+ <div class="feedmodule-body grid-view">
1018
+ <div class="clearL">
1019
+
1020
+
1021
+ <div class="video-cell" style="width:24.5%">
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+ <div class="video-entry">
1030
+
1031
+
1032
+
1033
+
1034
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-ArbOk2b3Kms" href="/watch?v=ArbOk2b3Kms&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" rel="nofollow"><img title="ComicCon: Politics, Zombies, Catwoman, Superman..." src="http://i2.ytimg.com/vi/ArbOk2b3Kms/default.jpg" class="vimg120" qlicon="ArbOk2b3Kms" alt="ComicCon: Politics, Zombies, Catwoman, Superman..."></a><div id="quicklist-icon-ArbOk2b3Kms" class="addtoQL90"><a id="add-to-quicklist-ArbOk2b3Kms" href="#" ql="ArbOk2b3Kms" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1035
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/ArbOk2b3Kms/default.jpg', 'ComicCon: Politics, Zombies, Catwoman, Superman...');return false;"
1036
+ onmouseover="mouseOverQuickAdd(this)"
1037
+ onmouseout="mouseOutQuickAdd(this)"
1038
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1039
+ <div class="video-time"><span id="video-run-time-ArbOk2b3Kms">2:06</span></div></div></div></div>
1040
+
1041
+ <div class="video-main-content" id="video-main-content-ArbOk2b3Kms">
1042
+
1043
+
1044
+ <div class="video-title ">
1045
+ <div class="video-short-title">
1046
+ <span id="translated_short_prefix_ArbOk2b3Kms" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1047
+ <a id="video-short-title-ArbOk2b3Kms" href="/watch?v=ArbOk2b3Kms&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="ComicCon: Politics, Zombies, Catwoman, Superman..." rel="nofollow">ComicCon: Politics, Zombies, Cat...</a>
1048
+ </div>
1049
+ <div class="video-long-title">
1050
+ <span id="translated_long_prefix_ArbOk2b3Kms" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1051
+ <a id="video-long-title-ArbOk2b3Kms" href="/watch?v=ArbOk2b3Kms&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="ComicCon: Politics, Zombies, Catwoman, Superman..." rel="nofollow">ComicCon: Politics, Zombies, Catwoman, Superman...</a>
1052
+ </div>
1053
+ </div>
1054
+
1055
+ <div id="video-description-ArbOk2b3Kms" class="video-description">
1056
+ Cooper Harris reports from ComicCon in San Diego. What lantern was Zombie Jesus?
1057
+ </div>
1058
+
1059
+
1060
+
1061
+ <div class="video-facets">
1062
+
1063
+ <span id="video-average-rating-ArbOk2b3Kms" class="video-rating-list ">
1064
+
1065
+
1066
+ <div>
1067
+
1068
+
1069
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1070
+
1071
+
1072
+
1073
+ </div>
1074
+
1075
+
1076
+ </span>
1077
+
1078
+ <span id="video-added-time-ArbOk2b3Kms" class="video-date-added">4 days ago</span>
1079
+
1080
+ <span id="video-num-views-ArbOk2b3Kms" class="video-view-count">297,952 views</span>
1081
+
1082
+ <span class="video-username"><a id="video-from-username-ArbOk2b3Kms" class="hLink" href="/user/barelypolitical">barelypolitical</a></span>
1083
+
1084
+
1085
+ <span id="video-average-rating-ArbOk2b3Kms" class="video-rating-grid ">
1086
+
1087
+
1088
+ <div>
1089
+
1090
+
1091
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1092
+
1093
+
1094
+
1095
+ </div>
1096
+
1097
+
1098
+ </span>
1099
+
1100
+
1101
+ </div>
1102
+
1103
+ </div>
1104
+
1105
+ <div class="video-clear-list-left"></div>
1106
+
1107
+
1108
+
1109
+ </div>
1110
+ </div>
1111
+
1112
+
1113
+ <div class="video-cell" style="width:24.5%">
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+ <div class="video-entry">
1122
+
1123
+
1124
+
1125
+
1126
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-gkiXbd2OTek" href="/watch?v=gkiXbd2OTek&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" rel="nofollow"><img title="NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears" src="http://i4.ytimg.com/vi/gkiXbd2OTek/default.jpg" class="vimg120" qlicon="gkiXbd2OTek" alt="NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears"></a><div id="quicklist-icon-gkiXbd2OTek" class="addtoQL90"><a id="add-to-quicklist-gkiXbd2OTek" href="#" ql="gkiXbd2OTek" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1127
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/gkiXbd2OTek/default.jpg', 'NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears');return false;"
1128
+ onmouseover="mouseOverQuickAdd(this)"
1129
+ onmouseout="mouseOutQuickAdd(this)"
1130
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1131
+ <div class="video-time"><span id="video-run-time-gkiXbd2OTek">3:52</span></div></div></div></div>
1132
+
1133
+ <div class="video-main-content" id="video-main-content-gkiXbd2OTek">
1134
+
1135
+
1136
+ <div class="video-title ">
1137
+ <div class="video-short-title">
1138
+ <span id="translated_short_prefix_gkiXbd2OTek" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1139
+ <a id="video-short-title-gkiXbd2OTek" href="/watch?v=gkiXbd2OTek&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears" rel="nofollow">NewsPop Comedy: Barack, Trillion...</a>
1140
+ </div>
1141
+ <div class="video-long-title">
1142
+ <span id="translated_long_prefix_gkiXbd2OTek" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1143
+ <a id="video-long-title-gkiXbd2OTek" href="/watch?v=gkiXbd2OTek&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears" rel="nofollow">NewsPop Comedy: Barack, Trillions, Baseball and Polar Bears</a>
1144
+ </div>
1145
+ </div>
1146
+
1147
+ <div id="video-description-gkiXbd2OTek" class="video-description">
1148
+ Rooftop Comedy films stand-up comedy 7 nights a week in the best comedy clubs arou...
1149
+ </div>
1150
+
1151
+
1152
+
1153
+ <div class="video-facets">
1154
+
1155
+ <span id="video-average-rating-gkiXbd2OTek" class="video-rating-list ">
1156
+
1157
+
1158
+ <div>
1159
+
1160
+
1161
+ <button class="master-sprite ratingVS ratingVS-4.0" title="4.0"></button>
1162
+
1163
+
1164
+
1165
+ </div>
1166
+
1167
+
1168
+ </span>
1169
+
1170
+ <span id="video-added-time-gkiXbd2OTek" class="video-date-added">3 weeks ago</span>
1171
+
1172
+ <span id="video-num-views-gkiXbd2OTek" class="video-view-count">11,690 views</span>
1173
+
1174
+ <span class="video-username"><a id="video-from-username-gkiXbd2OTek" class="hLink" href="/user/RooftopComedy">RooftopComedy</a></span>
1175
+
1176
+
1177
+ <span id="video-average-rating-gkiXbd2OTek" class="video-rating-grid ">
1178
+
1179
+
1180
+ <div>
1181
+
1182
+
1183
+ <button class="master-sprite ratingVS ratingVS-4.0" title="4.0"></button>
1184
+
1185
+
1186
+
1187
+ </div>
1188
+
1189
+
1190
+ </span>
1191
+
1192
+
1193
+ </div>
1194
+
1195
+ </div>
1196
+
1197
+ <div class="video-clear-list-left"></div>
1198
+
1199
+
1200
+
1201
+ </div>
1202
+ </div>
1203
+
1204
+
1205
+ <div class="video-cell" style="width:24.5%">
1206
+
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+
1213
+ <div class="video-entry">
1214
+
1215
+
1216
+
1217
+
1218
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-bq_6IO-F1uM" href="/watch?v=bq_6IO-F1uM&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" rel="nofollow"><img title="Primer Gol de Cristiano Ronaldo con el Real Madrid" src="http://i3.ytimg.com/vi/bq_6IO-F1uM/default.jpg" class="vimg120" qlicon="bq_6IO-F1uM" alt="Primer Gol de Cristiano Ronaldo con el Real Madrid"></a><div id="quicklist-icon-bq_6IO-F1uM" class="addtoQL90"><a id="add-to-quicklist-bq_6IO-F1uM" href="#" ql="bq_6IO-F1uM" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1219
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i3.ytimg.com/vi/bq_6IO-F1uM/default.jpg', 'Primer Gol de Cristiano Ronaldo con el Real Madrid');return false;"
1220
+ onmouseover="mouseOverQuickAdd(this)"
1221
+ onmouseout="mouseOutQuickAdd(this)"
1222
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1223
+ <div class="video-time"><span id="video-run-time-bq_6IO-F1uM">0:40</span></div></div></div></div>
1224
+
1225
+ <div class="video-main-content" id="video-main-content-bq_6IO-F1uM">
1226
+
1227
+
1228
+ <div class="video-title ">
1229
+ <div class="video-short-title">
1230
+ <span id="translated_short_prefix_bq_6IO-F1uM" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1231
+ <a id="video-short-title-bq_6IO-F1uM" href="/watch?v=bq_6IO-F1uM&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="Primer Gol de Cristiano Ronaldo con el Real Madrid" rel="nofollow">Primer Gol de Cristiano Ronaldo ...</a>
1232
+ </div>
1233
+ <div class="video-long-title">
1234
+ <span id="translated_long_prefix_bq_6IO-F1uM" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1235
+ <a id="video-long-title-bq_6IO-F1uM" href="/watch?v=bq_6IO-F1uM&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="Primer Gol de Cristiano Ronaldo con el Real Madrid" rel="nofollow">Primer Gol de Cristiano Ronaldo con el Real Madrid</a>
1236
+ </div>
1237
+ </div>
1238
+
1239
+ <div id="video-description-bq_6IO-F1uM" class="video-description">
1240
+ Valoracion de Cristiano Ronaldo tras marcar su primer gol con el Real Madrid. Cris...
1241
+ </div>
1242
+
1243
+
1244
+
1245
+ <div class="video-facets">
1246
+
1247
+ <span id="video-average-rating-bq_6IO-F1uM" class="video-rating-list ">
1248
+
1249
+
1250
+ <div>
1251
+
1252
+
1253
+ <button class="master-sprite ratingVS ratingVS-4.0" title="4.0"></button>
1254
+
1255
+
1256
+
1257
+ </div>
1258
+
1259
+
1260
+ </span>
1261
+
1262
+ <span id="video-added-time-bq_6IO-F1uM" class="video-date-added">1 day ago</span>
1263
+
1264
+ <span id="video-num-views-bq_6IO-F1uM" class="video-view-count">92,077 views</span>
1265
+
1266
+ <span class="video-username"><a id="video-from-username-bq_6IO-F1uM" class="hLink" href="/user/realmadridcf">realmadridcf</a></span>
1267
+
1268
+
1269
+ <span id="video-average-rating-bq_6IO-F1uM" class="video-rating-grid ">
1270
+
1271
+
1272
+ <div>
1273
+
1274
+
1275
+ <button class="master-sprite ratingVS ratingVS-4.0" title="4.0"></button>
1276
+
1277
+
1278
+
1279
+ </div>
1280
+
1281
+
1282
+ </span>
1283
+
1284
+
1285
+ </div>
1286
+
1287
+ </div>
1288
+
1289
+ <div class="video-clear-list-left"></div>
1290
+
1291
+
1292
+
1293
+ </div>
1294
+ </div>
1295
+
1296
+
1297
+ <div class="video-cell" style="width:24.5%">
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+ <div class="video-entry">
1306
+
1307
+
1308
+
1309
+
1310
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" rel="nofollow"><img title="Memorable X Games Moments: Tony Hawks 900" src="http://i3.ytimg.com/vi/RstrPAUmtnA/default.jpg" class="vimg120" qlicon="RstrPAUmtnA" alt="Memorable X Games Moments: Tony Hawks 900"></a><div id="quicklist-icon-RstrPAUmtnA" class="addtoQL90"><a id="add-to-quicklist-RstrPAUmtnA" href="#" ql="RstrPAUmtnA" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1311
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i3.ytimg.com/vi/RstrPAUmtnA/default.jpg', 'Memorable X Games Moments: Tony Hawks 900');return false;"
1312
+ onmouseover="mouseOverQuickAdd(this)"
1313
+ onmouseout="mouseOutQuickAdd(this)"
1314
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1315
+ <div class="video-time"><span id="video-run-time-RstrPAUmtnA">2:12</span></div></div></div></div>
1316
+
1317
+ <div class="video-main-content" id="video-main-content-RstrPAUmtnA">
1318
+
1319
+
1320
+ <div class="video-title ">
1321
+ <div class="video-short-title">
1322
+ <span id="translated_short_prefix_RstrPAUmtnA" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1323
+ <a id="video-short-title-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="Memorable X Games Moments: Tony Hawks 900" rel="nofollow">Memorable X Games Moments: Tony ...</a>
1324
+ </div>
1325
+ <div class="video-long-title">
1326
+ <span id="translated_long_prefix_RstrPAUmtnA" style="font-size: 10px;" class="hid">[TRANSLATED]</span>
1327
+ <a id="video-long-title-RstrPAUmtnA" href="/watch?v=RstrPAUmtnA&feature=fvhl" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/PRO/Logged_Out');" title="Memorable X Games Moments: Tony Hawks 900" rel="nofollow">Memorable X Games Moments: Tony Hawks 900</a>
1328
+ <a href="/watch?v=RstrPAUmtnA&feature=fvhl&hd=1"><img src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" class="master-sprite hd-video-logo " /></a>
1329
+
1330
+ </div>
1331
+ </div>
1332
+
1333
+ <div id="video-description-RstrPAUmtnA" class="video-description">
1334
+ After 11 exhausting attempts during the 1999 Best Trick comp, Tony Hawk finally st...
1335
+ </div>
1336
+
1337
+
1338
+
1339
+ <div class="video-facets">
1340
+
1341
+ <span id="video-average-rating-RstrPAUmtnA" class="video-rating-list ">
1342
+
1343
+
1344
+ <div>
1345
+
1346
+
1347
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1348
+
1349
+
1350
+
1351
+ </div>
1352
+
1353
+
1354
+ </span>
1355
+
1356
+ <span id="video-added-time-RstrPAUmtnA" class="video-date-added">1 month ago</span>
1357
+
1358
+ <span id="video-num-views-RstrPAUmtnA" class="video-view-count">3,876 views</span>
1359
+
1360
+ <span class="video-username"><a id="video-from-username-RstrPAUmtnA" class="hLink" href="/user/ESPN">ESPN</a></span>
1361
+
1362
+
1363
+ <span id="video-average-rating-RstrPAUmtnA" class="video-rating-grid ">
1364
+
1365
+
1366
+ <div>
1367
+
1368
+
1369
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1370
+
1371
+
1372
+
1373
+ </div>
1374
+
1375
+
1376
+ </span>
1377
+
1378
+
1379
+ </div>
1380
+
1381
+ </div>
1382
+
1383
+ <div class="video-clear-list-left"></div>
1384
+
1385
+
1386
+
1387
+ </div>
1388
+ </div>
1389
+
1390
+ </div>
1391
+ </div>
1392
+
1393
+
1394
+ </div>
1395
+ </div>
1396
+ <div class="clear"></div>
1397
+
1398
+
1399
+ </div>
1400
+
1401
+
1402
+
1403
+ <div id="feedmodule-TOP" class="feedmodule-anchor">
1404
+ <div class="feedmodule-modheader" onmousedown="bootstrapHomepage()" id="TOP-titlebar">
1405
+
1406
+ <div id="feed_top_videos">
1407
+ <div class="fm2-title-border-box-gray yt-rounded">
1408
+ <div class="fm2-title">
1409
+ <img class="img_feed_top_videos master-sprite fm2-icon" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
1410
+ <span class="fm2-titleText" id="feed_top_videos-titleText">Most Popular</span>
1411
+ </div>
1412
+
1413
+ <div class="feedmodule-preamble">
1414
+ <a href="/browse?s=pop" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/View_TopVideos/Logged_Out');">(view all)</a>
1415
+ </div>
1416
+
1417
+ <div class="feedmodule-updown">
1418
+
1419
+
1420
+ <span id="mup-TOP" class="up-button" onclick="queueHomepageFunction(function() { php_support.move_module('TOP', 'up');})"><img class="master-sprite img-php-up-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mdown-TOP" class="down-button" onclick="queueHomepageFunction(function() { php_support.move_module('TOP', 'down');})"><img class="master-sprite img-php-down-arrow" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span><span id="mclose-TOP" onclick="queueHomepageFunction(function() { php_support.remove_module('TOP');})"><img class="master-sprite img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" /></span>
1421
+ </div>
1422
+
1423
+ </div>
1424
+ </div>
1425
+
1426
+
1427
+ </div>
1428
+
1429
+ <div class="clear feedmodule-border-gray yt-rounded" id="feed_top_videos-content">
1430
+
1431
+ <div id="TOP-options" class="opt-pane" style="display: none;">
1432
+ <div class="opt-box-top">
1433
+ <img class="homepage-ajax-sprite img-php-opt-box-caret" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" />
1434
+ </div>
1435
+ <div class="opt-banner">
1436
+ <div class="opt-links">
1437
+ <div class="opt-edit">Editing: Most Popular</div>
1438
+ <div class="opt-close opt-close-button" onclick="queueHomepageFunction(function() { php_support.close_options_pane('TOP-options');})"><img class="img-php-close-button" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif"/></div>
1439
+ <div class="opt-close opt-close-text" onclick="queueHomepageFunction(function() { php_support.close_options_pane('TOP-options');})">close</div>
1440
+ <div id="TOP-loading-msg" class="opt-loading-msg" style="display: none;">
1441
+ Saving...
1442
+ </div>
1443
+ <div id="TOP-loading-icn" class="opt-loading-icn" style="display: none;">
1444
+ <img width="16" id="TOP-loading-icn-image" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" image="http://s.ytimg.com/yt/img/icn_loading_animated-vfl24663.gif">
1445
+ </div>
1446
+ <div class="clear"></div>
1447
+ </div>
1448
+ </div>
1449
+ <div class="opt-main">
1450
+ <div class="opt-simple-msg">
1451
+ Want to customize this homepage?
1452
+
1453
+ <a href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignup%3Fnomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US&ltmpl=sso" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignIn/EditModuleBox');">Sign In</a> or <a href="/signup?next=%2F" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/LoginSuggest/SignUp/EditModuleBox');">Sign Up</a> now!
1454
+
1455
+ </div>
1456
+ </div>
1457
+ </div>
1458
+
1459
+
1460
+ <div id="TOP-data" class="feedmodule-data">
1461
+
1462
+
1463
+ <div class="feedmodule-body compressed-view">
1464
+ <div class="feeditem-compressed">
1465
+
1466
+ <div class="feeditem-compressed-category-title">
1467
+ <div>
1468
+ <a class="hLink" href="/browse?c=24" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/24');">Entertainment</a>
1469
+ </div>
1470
+ </div>
1471
+
1472
+ <div class="TOP-data compressed-form-content">
1473
+ <div class="clear">
1474
+ <div class="feedmodule-thumbnail">
1475
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-x-sjphuKusk" href="/watch?v=x-sjphuKusk&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/24');" rel="nofollow"><img title="Shane Dawson - MR GAY YOUTUBE ???" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i1.ytimg.com/vi/x-sjphuKusk/default.jpg" class="vimg120" qlicon="x-sjphuKusk" alt="Shane Dawson - MR GAY YOUTUBE ???"></a><div id="quicklist-icon-x-sjphuKusk" class="addtoQL90"><a id="add-to-quicklist-x-sjphuKusk" href="#" ql="x-sjphuKusk" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1476
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i1.ytimg.com/vi/x-sjphuKusk/default.jpg', 'Shane Dawson - MR GAY YOUTUBE ???');return false;"
1477
+ onmouseover="mouseOverQuickAdd(this)"
1478
+ onmouseout="mouseOutQuickAdd(this)"
1479
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1480
+ <div class="video-time"><span id="video-run-time-x-sjphuKusk">4:57</span></div></div></div></div>
1481
+ </div>
1482
+
1483
+
1484
+ <div class="feedmodule-singleform-info">
1485
+
1486
+ <div class="video-title">
1487
+ <a href="/watch?v=x-sjphuKusk&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/24');" title="Shane Dawson - MR GAY YOUTUBE ???" >Shane Dawson - MR GAY YOUTUBE ???</a>
1488
+ </div>
1489
+ <div>
1490
+ 108,587 views
1491
+ </div>
1492
+ <div>
1493
+ <nobr>
1494
+ <a href="/user/WHATTHEBUCKSHOW">WHATTHEBUCKSHOW</a>
1495
+ </nobr>
1496
+ </div>
1497
+ <div class="feedmodule-singleform-info-ratings">
1498
+
1499
+
1500
+ <span>
1501
+
1502
+
1503
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1504
+
1505
+
1506
+
1507
+ </span>
1508
+
1509
+
1510
+ </div>
1511
+ </div>
1512
+
1513
+ <div class="spacer">&nbsp;</div>
1514
+ </div>
1515
+ </div>
1516
+
1517
+ <div class="spacer">&nbsp;</div>
1518
+ </div>
1519
+ <div class="feeditem-compressed">
1520
+
1521
+ <div class="feeditem-compressed-category-title">
1522
+ <div>
1523
+ <a class="hLink" href="/browse?c=10" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/10');">Music</a>
1524
+ </div>
1525
+ </div>
1526
+
1527
+ <div class="TOP-data compressed-form-content">
1528
+ <div class="clear">
1529
+ <div class="feedmodule-thumbnail">
1530
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-CS-3R1nyec8" href="/watch?v=CS-3R1nyec8&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/10');" rel="nofollow"><img title="Lady Gaga Love Game ULTRA FX 1080p HD CLEAN Version From Poker Face Just Dance Album" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i4.ytimg.com/vi/CS-3R1nyec8/default.jpg" class="vimg120" qlicon="CS-3R1nyec8" alt="Lady Gaga Love Game ULTRA FX 1080p HD CLEAN Version From Poker Face Just Dance Album"></a><div id="quicklist-icon-CS-3R1nyec8" class="addtoQL90"><a id="add-to-quicklist-CS-3R1nyec8" href="#" ql="CS-3R1nyec8" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1531
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/CS-3R1nyec8/default.jpg', 'Lady Gaga Love Game ULTRA FX 1080p HD CLEAN Version From Poker Face Just Dance Album');return false;"
1532
+ onmouseover="mouseOverQuickAdd(this)"
1533
+ onmouseout="mouseOutQuickAdd(this)"
1534
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1535
+ <div class="video-time"><span id="video-run-time-CS-3R1nyec8">3:48</span></div></div></div></div>
1536
+ </div>
1537
+
1538
+
1539
+ <div class="feedmodule-singleform-info">
1540
+
1541
+ <div class="video-title">
1542
+ <a href="/watch?v=CS-3R1nyec8&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/10');" title="Lady Gaga Love Game ULTRA FX 1080p HD CLEAN Version From Poker Face Just Dance Album" >Lady Gaga Love Game ULTRA FX 1080p HD...</a>
1543
+ </div>
1544
+ <div>
1545
+ 228,136 views
1546
+ </div>
1547
+ <div>
1548
+ <nobr>
1549
+ <a href="/user/GAMBITGODDESS">GAMBITGODDESS</a>
1550
+ </nobr>
1551
+ </div>
1552
+ <div class="feedmodule-singleform-info-ratings">
1553
+
1554
+
1555
+ <span>
1556
+
1557
+
1558
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1559
+
1560
+
1561
+
1562
+ </span>
1563
+
1564
+
1565
+ </div>
1566
+ </div>
1567
+
1568
+ <div class="spacer">&nbsp;</div>
1569
+ </div>
1570
+ </div>
1571
+
1572
+ <div class="spacer">&nbsp;</div>
1573
+ </div>
1574
+ <div class="feeditem-compressed">
1575
+
1576
+ <div class="feeditem-compressed-category-title">
1577
+ <div>
1578
+ <a class="hLink" href="/browse?c=25" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/25');">News &amp; Politics</a>
1579
+ </div>
1580
+ </div>
1581
+
1582
+ <div class="TOP-data compressed-form-content">
1583
+ <div class="clear">
1584
+ <div class="feedmodule-thumbnail">
1585
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-ylK11FxxLCw" href="/watch?v=ylK11FxxLCw&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/25');" rel="nofollow"><img title="Boston Cop Calls Harvard Prof. Gates A &quot;Jungle Monkey&quot; In Email" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i2.ytimg.com/vi/ylK11FxxLCw/default.jpg" class="vimg120" qlicon="ylK11FxxLCw" alt="Boston Cop Calls Harvard Prof. Gates A &quot;Jungle Monkey&quot; In Email"></a><div id="quicklist-icon-ylK11FxxLCw" class="addtoQL90"><a id="add-to-quicklist-ylK11FxxLCw" href="#" ql="ylK11FxxLCw" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1586
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/ylK11FxxLCw/default.jpg', 'Boston Cop Calls Harvard Prof. Gates A &quot;Jungle Monkey&quot; In Email');return false;"
1587
+ onmouseover="mouseOverQuickAdd(this)"
1588
+ onmouseout="mouseOutQuickAdd(this)"
1589
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1590
+ <div class="video-time"><span id="video-run-time-ylK11FxxLCw">1:20</span></div></div></div></div>
1591
+ </div>
1592
+
1593
+
1594
+ <div class="feedmodule-singleform-info">
1595
+
1596
+ <div class="video-title">
1597
+ <a href="/watch?v=ylK11FxxLCw&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/25');" title="Boston Cop Calls Harvard Prof. Gates A &quot;Jungle Monkey&quot; In Email" >Boston Cop Calls Harvard Prof. Gates ...</a>
1598
+ </div>
1599
+ <div>
1600
+ 30,607 views
1601
+ </div>
1602
+ <div>
1603
+ <nobr>
1604
+ <a href="/user/NewsPoliticsNews">NewsPoliticsNews</a>
1605
+ </nobr>
1606
+ </div>
1607
+ <div class="feedmodule-singleform-info-ratings">
1608
+
1609
+
1610
+ <span>
1611
+
1612
+
1613
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1614
+
1615
+
1616
+
1617
+ </span>
1618
+
1619
+
1620
+ </div>
1621
+ </div>
1622
+
1623
+ <div class="spacer">&nbsp;</div>
1624
+ </div>
1625
+ </div>
1626
+
1627
+ <div class="spacer">&nbsp;</div>
1628
+ </div>
1629
+ <div class="feeditem-compressed">
1630
+
1631
+ <div class="feeditem-compressed-category-title">
1632
+ <div>
1633
+ <a class="hLink" href="/browse?c=1" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/1');">Film &amp; Animation</a>
1634
+ </div>
1635
+ </div>
1636
+
1637
+ <div class="TOP-data compressed-form-content">
1638
+ <div class="clear">
1639
+ <div class="feedmodule-thumbnail">
1640
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-w7CFQQLxF9M" href="/watch?v=w7CFQQLxF9M&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/1');" rel="nofollow"><img title="Dr. Tran - Fruit Hat" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i4.ytimg.com/vi/w7CFQQLxF9M/default.jpg" class="vimg120" qlicon="w7CFQQLxF9M" alt="Dr. Tran - Fruit Hat"></a><div id="quicklist-icon-w7CFQQLxF9M" class="addtoQL90"><a id="add-to-quicklist-w7CFQQLxF9M" href="#" ql="w7CFQQLxF9M" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1641
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/w7CFQQLxF9M/default.jpg', 'Dr. Tran - Fruit Hat');return false;"
1642
+ onmouseover="mouseOverQuickAdd(this)"
1643
+ onmouseout="mouseOutQuickAdd(this)"
1644
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1645
+ <div class="video-time"><span id="video-run-time-w7CFQQLxF9M">6:35</span></div></div></div></div>
1646
+ </div>
1647
+
1648
+
1649
+ <div class="feedmodule-singleform-info">
1650
+
1651
+ <div class="video-title">
1652
+ <a href="/watch?v=w7CFQQLxF9M&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/1');" title="Dr. Tran - Fruit Hat" >Dr. Tran - Fruit Hat</a>
1653
+ </div>
1654
+ <div>
1655
+ 220,846 views
1656
+ </div>
1657
+ <div>
1658
+ <nobr>
1659
+ <a href="/user/MondoMedia">MondoMedia</a>
1660
+ </nobr>
1661
+ </div>
1662
+ <div class="feedmodule-singleform-info-ratings">
1663
+
1664
+
1665
+ <span>
1666
+
1667
+
1668
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1669
+
1670
+
1671
+
1672
+ </span>
1673
+
1674
+
1675
+ </div>
1676
+ </div>
1677
+
1678
+ <div class="spacer">&nbsp;</div>
1679
+ </div>
1680
+ </div>
1681
+
1682
+ <div class="spacer">&nbsp;</div>
1683
+ </div>
1684
+ <div class="feeditem-compressed">
1685
+
1686
+ <div class="feeditem-compressed-category-title">
1687
+ <div>
1688
+ <a class="hLink" href="/browse?c=17" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/17');">Sports</a>
1689
+ </div>
1690
+ </div>
1691
+
1692
+ <div class="TOP-data compressed-form-content">
1693
+ <div class="clear">
1694
+ <div class="feedmodule-thumbnail">
1695
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-4S3C4AC908w" href="/watch?v=4S3C4AC908w&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/17');" rel="nofollow"><img title="Hilarious Shake Weight Exercise for Women Video" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i1.ytimg.com/vi/4S3C4AC908w/default.jpg" class="vimg120" qlicon="4S3C4AC908w" alt="Hilarious Shake Weight Exercise for Women Video"></a><div id="quicklist-icon-4S3C4AC908w" class="addtoQL90"><a id="add-to-quicklist-4S3C4AC908w" href="#" ql="4S3C4AC908w" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1696
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i1.ytimg.com/vi/4S3C4AC908w/default.jpg', 'Hilarious Shake Weight Exercise for Women Video');return false;"
1697
+ onmouseover="mouseOverQuickAdd(this)"
1698
+ onmouseout="mouseOutQuickAdd(this)"
1699
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1700
+ <div class="video-time"><span id="video-run-time-4S3C4AC908w">1:52</span></div></div></div></div>
1701
+ </div>
1702
+
1703
+
1704
+ <div class="feedmodule-singleform-info">
1705
+
1706
+ <div class="video-title">
1707
+ <a href="/watch?v=4S3C4AC908w&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/17');" title="Hilarious Shake Weight Exercise for Women Video" >Hilarious Shake Weight Exercise for W...</a>
1708
+ </div>
1709
+ <div>
1710
+ 171,814 views
1711
+ </div>
1712
+ <div>
1713
+ <nobr>
1714
+ <a href="/user/rmcld">rmcld</a>
1715
+ </nobr>
1716
+ </div>
1717
+ <div class="feedmodule-singleform-info-ratings">
1718
+
1719
+
1720
+ <span>
1721
+
1722
+
1723
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1724
+
1725
+
1726
+
1727
+ </span>
1728
+
1729
+
1730
+ </div>
1731
+ </div>
1732
+
1733
+ <div class="spacer">&nbsp;</div>
1734
+ </div>
1735
+ </div>
1736
+
1737
+ <div class="spacer">&nbsp;</div>
1738
+ </div>
1739
+ <div class="feeditem-compressed">
1740
+
1741
+ <div class="feeditem-compressed-category-title">
1742
+ <div>
1743
+ <a class="hLink" href="/browse?c=26" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/26');">Howto &amp; Style</a>
1744
+ </div>
1745
+ </div>
1746
+
1747
+ <div class="TOP-data compressed-form-content">
1748
+ <div class="clear">
1749
+ <div class="feedmodule-thumbnail">
1750
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-T6cEgRR1IgY" href="/watch?v=T6cEgRR1IgY&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/26');" rel="nofollow"><img title="wXw Episode 6: Summer Casual Wear" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i1.ytimg.com/vi/T6cEgRR1IgY/default.jpg" class="vimg120" qlicon="T6cEgRR1IgY" alt="wXw Episode 6: Summer Casual Wear"></a><div id="quicklist-icon-T6cEgRR1IgY" class="addtoQL90"><a id="add-to-quicklist-T6cEgRR1IgY" href="#" ql="T6cEgRR1IgY" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1751
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i1.ytimg.com/vi/T6cEgRR1IgY/default.jpg', 'wXw Episode 6: Summer Casual Wear');return false;"
1752
+ onmouseover="mouseOverQuickAdd(this)"
1753
+ onmouseout="mouseOutQuickAdd(this)"
1754
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1755
+ <div class="video-time"><span id="video-run-time-T6cEgRR1IgY">5:05</span></div></div></div></div>
1756
+ </div>
1757
+
1758
+
1759
+ <div class="feedmodule-singleform-info">
1760
+
1761
+ <div class="video-title">
1762
+ <a href="/watch?v=T6cEgRR1IgY&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/26');" title="wXw Episode 6: Summer Casual Wear" >wXw Episode 6: Summer Casual Wear</a>
1763
+ </div>
1764
+ <div>
1765
+ 51,267 views
1766
+ </div>
1767
+ <div>
1768
+ <nobr>
1769
+ <a href="/user/xteeener">xteeener</a>
1770
+ </nobr>
1771
+ </div>
1772
+ <div class="feedmodule-singleform-info-ratings">
1773
+
1774
+
1775
+ <span>
1776
+
1777
+
1778
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1779
+
1780
+
1781
+
1782
+ </span>
1783
+
1784
+
1785
+ </div>
1786
+ </div>
1787
+
1788
+ <div class="spacer">&nbsp;</div>
1789
+ </div>
1790
+ </div>
1791
+
1792
+ <div class="spacer">&nbsp;</div>
1793
+ </div>
1794
+ <div class="feeditem-compressed">
1795
+
1796
+ <div class="feeditem-compressed-category-title">
1797
+ <div>
1798
+ <a class="hLink" href="/browse?c=23" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/23');">Comedy</a>
1799
+ </div>
1800
+ </div>
1801
+
1802
+ <div class="TOP-data compressed-form-content">
1803
+ <div class="clear">
1804
+ <div class="feedmodule-thumbnail">
1805
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-oRJvbEej_Is" href="/watch?v=oRJvbEej_Is&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/23');" rel="nofollow"><img title="Rant on Music (Remade)" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i4.ytimg.com/vi/oRJvbEej_Is/default.jpg" class="vimg120" qlicon="oRJvbEej_Is" alt="Rant on Music (Remade)"></a><div id="quicklist-icon-oRJvbEej_Is" class="addtoQL90"><a id="add-to-quicklist-oRJvbEej_Is" href="#" ql="oRJvbEej_Is" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1806
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/oRJvbEej_Is/default.jpg', 'Rant on Music (Remade)');return false;"
1807
+ onmouseover="mouseOverQuickAdd(this)"
1808
+ onmouseout="mouseOutQuickAdd(this)"
1809
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1810
+ <div class="video-time"><span id="video-run-time-oRJvbEej_Is">2:48</span></div></div></div></div>
1811
+ </div>
1812
+
1813
+
1814
+ <div class="feedmodule-singleform-info">
1815
+
1816
+ <div class="video-title">
1817
+ <a href="/watch?v=oRJvbEej_Is&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/23');" title="Rant on Music (Remade)" >Rant on Music (Remade)</a>
1818
+ </div>
1819
+ <div>
1820
+ 732,835 views
1821
+ </div>
1822
+ <div>
1823
+ <nobr>
1824
+ <a href="/user/nigahiga">nigahiga</a>
1825
+ </nobr>
1826
+ </div>
1827
+ <div class="feedmodule-singleform-info-ratings">
1828
+
1829
+
1830
+ <span>
1831
+
1832
+
1833
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1834
+
1835
+
1836
+
1837
+ </span>
1838
+
1839
+
1840
+ </div>
1841
+ </div>
1842
+
1843
+ <div class="spacer">&nbsp;</div>
1844
+ </div>
1845
+ </div>
1846
+
1847
+ <div class="spacer">&nbsp;</div>
1848
+ </div>
1849
+ <div class="feeditem-compressed">
1850
+
1851
+ <div class="feeditem-compressed-category-title">
1852
+ <div>
1853
+ <a class="hLink" href="/browse?c=20" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/20');">Gaming</a>
1854
+ </div>
1855
+ </div>
1856
+
1857
+ <div class="TOP-data compressed-form-content">
1858
+ <div class="clear">
1859
+ <div class="feedmodule-thumbnail">
1860
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-sG1c7dfLneM" href="/watch?v=sG1c7dfLneM&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/20');" rel="nofollow"><img title="Bleep Bloop: Grey's Anatomy on Wii" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i4.ytimg.com/vi/sG1c7dfLneM/default.jpg" class="vimg120" qlicon="sG1c7dfLneM" alt="Bleep Bloop: Grey's Anatomy on Wii"></a><div id="quicklist-icon-sG1c7dfLneM" class="addtoQL90"><a id="add-to-quicklist-sG1c7dfLneM" href="#" ql="sG1c7dfLneM" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1861
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i4.ytimg.com/vi/sG1c7dfLneM/default.jpg', 'Bleep Bloop: Grey\'s Anatomy on Wii');return false;"
1862
+ onmouseover="mouseOverQuickAdd(this)"
1863
+ onmouseout="mouseOutQuickAdd(this)"
1864
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1865
+ <div class="video-time"><span id="video-run-time-sG1c7dfLneM">4:36</span></div></div></div></div>
1866
+ </div>
1867
+
1868
+
1869
+ <div class="feedmodule-singleform-info">
1870
+
1871
+ <div class="video-title">
1872
+ <a href="/watch?v=sG1c7dfLneM&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/20');" title="Bleep Bloop: Grey's Anatomy on Wii" >Bleep Bloop: Grey's Anatomy on Wii</a>
1873
+ </div>
1874
+ <div>
1875
+ 51,335 views
1876
+ </div>
1877
+ <div>
1878
+ <nobr>
1879
+ <a href="/user/collegehumor">collegehumor</a>
1880
+ </nobr>
1881
+ </div>
1882
+ <div class="feedmodule-singleform-info-ratings">
1883
+
1884
+
1885
+ <span>
1886
+
1887
+
1888
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1889
+
1890
+
1891
+
1892
+ </span>
1893
+
1894
+
1895
+ </div>
1896
+ </div>
1897
+
1898
+ <div class="spacer">&nbsp;</div>
1899
+ </div>
1900
+ </div>
1901
+
1902
+ <div class="spacer">&nbsp;</div>
1903
+ </div>
1904
+ <div class="feeditem-compressed">
1905
+
1906
+ <div class="feeditem-compressed-category-title">
1907
+ <div>
1908
+ <a class="hLink" href="/browse?c=0&s=mp" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/0%26s%3Dmp');">Most Viewed</a>
1909
+ </div>
1910
+ </div>
1911
+
1912
+ <div class="TOP-data compressed-form-content">
1913
+ <div class="clear">
1914
+ <div class="feedmodule-thumbnail">
1915
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-eNu3QGprTlw" href="/watch?v=eNu3QGprTlw&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/0%26s%3Dmp');" rel="nofollow"><img title="Joe Jackson Confirms Omer Bhatti is Micheal Jackson's Son" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i2.ytimg.com/vi/eNu3QGprTlw/default.jpg" class="vimg120" qlicon="eNu3QGprTlw" alt="Joe Jackson Confirms Omer Bhatti is Micheal Jackson's Son"></a><div id="quicklist-icon-eNu3QGprTlw" class="addtoQL90"><a id="add-to-quicklist-eNu3QGprTlw" href="#" ql="eNu3QGprTlw" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1916
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i2.ytimg.com/vi/eNu3QGprTlw/default.jpg', 'Joe Jackson Confirms Omer Bhatti is Micheal Jackson\'s Son');return false;"
1917
+ onmouseover="mouseOverQuickAdd(this)"
1918
+ onmouseout="mouseOutQuickAdd(this)"
1919
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1920
+ <div class="video-time"><span id="video-run-time-eNu3QGprTlw">1:06</span></div></div></div></div>
1921
+ </div>
1922
+
1923
+
1924
+ <div class="feedmodule-singleform-info">
1925
+
1926
+ <div class="video-title">
1927
+ <a href="/watch?v=eNu3QGprTlw&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/0%26s%3Dmp');" title="Joe Jackson Confirms Omer Bhatti is Micheal Jackson's Son" >Joe Jackson Confirms Omer Bhatti is M...</a>
1928
+ </div>
1929
+ <div>
1930
+ 317,112 views
1931
+ </div>
1932
+ <div>
1933
+ <nobr>
1934
+ <a href="/user/blackplanet">blackplanet</a>
1935
+ </nobr>
1936
+ </div>
1937
+ <div class="feedmodule-singleform-info-ratings">
1938
+
1939
+
1940
+ <span>
1941
+
1942
+
1943
+ <button class="master-sprite ratingVS ratingVS-4.5" title="4.5"></button>
1944
+
1945
+
1946
+
1947
+ </span>
1948
+
1949
+
1950
+ </div>
1951
+ </div>
1952
+
1953
+ <div class="spacer">&nbsp;</div>
1954
+ </div>
1955
+ </div>
1956
+
1957
+ <div class="spacer">&nbsp;</div>
1958
+ </div>
1959
+ <div class="feeditem-compressed">
1960
+
1961
+ <div class="feeditem-compressed-category-title">
1962
+ <div>
1963
+ <a class="hLink" href="/browse?c=0&s=mf" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/CategoryTitle/Logged_Out/0%26s%3Dmf');">Top Favorited</a>
1964
+ </div>
1965
+ </div>
1966
+
1967
+ <div class="TOP-data compressed-form-content">
1968
+ <div class="clear">
1969
+ <div class="feedmodule-thumbnail">
1970
+ <div class="v120WideEntry"><div class="v120WrapperOuter"><div class="v120WrapperInner"><a id="video-url-x-sjphuKusk" href="/watch?v=x-sjphuKusk&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/0%26s%3Dmf');" rel="nofollow"><img title="Shane Dawson - MR GAY YOUTUBE ???" src="http://s.ytimg.com/yt/img/pixel-vfl73.gif" thumb="http://i1.ytimg.com/vi/x-sjphuKusk/default.jpg" class="vimg120" qlicon="x-sjphuKusk" alt="Shane Dawson - MR GAY YOUTUBE ???"></a><div id="quicklist-icon-x-sjphuKusk" class="addtoQL90"><a id="add-to-quicklist-x-sjphuKusk" href="#" ql="x-sjphuKusk" title="Add Video to QuickList"><button class="master-sprite QLIconImg" title=""
1971
+ onclick="clicked_add_icon(this, this.parentNode.getAttribute('ql'), 0, 'http://i1.ytimg.com/vi/x-sjphuKusk/default.jpg', 'Shane Dawson - MR GAY YOUTUBE ???');return false;"
1972
+ onmouseover="mouseOverQuickAdd(this)"
1973
+ onmouseout="mouseOutQuickAdd(this)"
1974
+ onmousedown="urchinTracker('/Events/index/QuickList+AddTo')"></button></a><div class="hid quicklist-inlist"><a href="/watch_queue?all">Added</a></div></div>
1975
+ <div class="video-time"><span id="video-run-time-x-sjphuKusk">4:57</span></div></div></div></div>
1976
+ </div>
1977
+
1978
+
1979
+ <div class="feedmodule-singleform-info">
1980
+
1981
+ <div class="video-title">
1982
+ <a href="/watch?v=x-sjphuKusk&feature=topvideos" onmousedown="urchinTracker('/Events/Home/PersonalizedHome/TOP/Logged_Out/0%26s%3Dmf');" title="Shane Dawson - MR GAY YOUTUBE ???" >Shane Dawson - MR GAY YOUTUBE ???</a>
1983
+ </div>
1984
+ <div>
1985
+ 108,587 views
1986
+ </div>
1987
+ <div>
1988
+ <nobr>
1989
+ <a href="/user/WHATTHEBUCKSHOW">WHATTHEBUCKSHOW</a>
1990
+ </nobr>
1991
+ </div>
1992
+ <div class="feedmodule-singleform-info-ratings">
1993
+
1994
+
1995
+ <span>
1996
+
1997
+
1998
+ <button class="master-sprite ratingVS ratingVS-5.0" title="5.0"></button>
1999
+
2000
+
2001
+
2002
+ </span>
2003
+
2004
+
2005
+ </div>
2006
+ </div>
2007
+
2008
+ <div class="spacer">&nbsp;</div>
2009
+ </div>
2010
+ </div>
2011
+
2012
+ <div class="spacer">&nbsp;</div>
2013
+ </div>
2014
+ <div class="spacer">&nbsp;</div>
2015
+ </div>
2016
+
2017
+
2018
+ </div>
2019
+ </div>
2020
+ <div class="clear"></div>
2021
+
2022
+
2023
+ </div>
2024
+
2025
+ </div>
2026
+
2027
+ <div class="main-spacer-bottom"></div>
2028
+
2029
+
2030
+ </div>
2031
+
2032
+
2033
+ <div id="homepage-side-content">
2034
+
2035
+ <script type="text/javascript">
2036
+ google_ad_client = 'ca-youtube-homepage';
2037
+ google_ad_channel = 'pyv-top-right-homepage-us logged-out';
2038
+ google_max_num_ads = '1';
2039
+ google_ad_output = 'js';
2040
+ google_ad_type = 'text';
2041
+ google_kw = 'movie,music,sports,comedy,entertainment';
2042
+ google_kw_type = 'broad';
2043
+ google_only_pyv_ads = true;
2044
+ google_ad_request_done = pyv_google_ad_request_done;
2045
+ var is_pyv_allowed = false;
2046
+
2047
+ </script>
2048
+
2049
+
2050
+
2051
+ <div id="pyv-placeholder"></div>
2052
+
2053
+ <!-- Begin ad tag -->
2054
+
2055
+ <div id="ad_creative_2" class="ad-div homepage-side-block">
2056
+
2057
+
2058
+
2059
+
2060
+
2061
+
2062
+
2063
+
2064
+ <input type="hidden" id="pvaHl" value="en"/>
2065
+ <input type="hidden" id="pvaTag" value="http://n4061ad.hk.doubleclick.net/adj/com.ythome/_default;sz=399x299;kl=N;klg=en;kt=K;kga=-1;kgg=-1;kcr=us;dc_dedup=1;kmyd=ad_creative_2;kap=0;tile=2;"/>
2066
+ <input type="hidden" id="burl" value="http://www.youtube.com/pva/"/>
2067
+ <input type="hidden" id="canv" value="False"/>
2068
+ <input type="hidden" id="tdl" value="http://www.youtube.com/"/>
2069
+ <input type="hidden" id="yeurl" value="http://s.ytimg.com/yt/swf/yvaexpandable-vfl109248.swf"/>
2070
+
2071
+
2072
+
2073
+
2074
+
2075
+ <script type="text/javascript">
2076
+ if (window['jstiming']) {
2077
+ window['jstiming']['addomain']="n4061ad.hk.doubleclick.net";
2078
+ }
2079
+ ord=Math.random()*10000000000000000;
2080
+ document.write('<script language="JavaScript" src="http://n4061ad.hk.doubleclick.net/adj/com.ythome/_default;sz=399x299;kl=N;klg=en;kt=K;kga=-1;kgg=-1;kcr=us;dc_dedup=1;kmyd=ad_creative_2;kap=0;tile=2;ord=' + ord + '?" type="text/javascript"><\/script>');
2081
+ </script>
2082
+
2083
+ <div style="font-size: 10px; padding-top: 3px;" class="alignC grayText">
2084
+ <a href="/t/ads_preferences">Advertisement</a>
2085
+
2086
+ </div>
2087
+
2088
+ </div>
2089
+
2090
+
2091
+
2092
+ <!-- End ad tag -->
2093
+
2094
+
2095
+ <div id="iyt-login-suggest-side-box" class="homepage-side-block">
2096
+ <div style="border: 1px solid rgb(153, 153, 153); padding: 5px;">
2097
+ <div style="border: 1px solid rgb(204, 204, 204); padding: 4px; background: #eee; text-align: center;">
2098
+ <strong>Want to customize this homepage?
2099
+ </strong><br/>
2100
+
2101
+ <a href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignup%3Fnomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US&ltmpl=sso">Sign In</a> or <a href="/signup?next=%2F">Sign Up</a> now!
2102
+
2103
+ </div> </div>
2104
+ </div>
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+
2111
+
2112
+
2113
+ <!-- Begin ad tag -->
2114
+
2115
+ <div id="ad_creative_3" class="ad-div homepage-side-block">
2116
+
2117
+
2118
+
2119
+
2120
+
2121
+
2122
+
2123
+
2124
+
2125
+
2126
+
2127
+ <script type="text/javascript">
2128
+ if (window['jstiming']) {
2129
+ window['jstiming']['addomain']="n4061ad.hk.doubleclick.net";
2130
+ }
2131
+ ord=Math.random()*10000000000000000;
2132
+ document.write('<script language="JavaScript" src="http://n4061ad.hk.doubleclick.net/adj/tst.ythome/promo1;sz=300x50,300x100;kl=N;klg=en;kt=K;kga=-1;kgg=-1;kcr=us;dc_dedup=1;kmyd=ad_creative_3;tile=3;ord=' + ord + '?" type="text/javascript"><\/script>');
2133
+ </script>
2134
+
2135
+
2136
+ </div>
2137
+
2138
+
2139
+
2140
+ <!-- End ad tag -->
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+
2147
+ <!-- Begin ad tag -->
2148
+
2149
+ <div id="ad_creative_5" class="ad-div homepage-side-block">
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+ <script type="text/javascript">
2162
+ if (window['jstiming']) {
2163
+ window['jstiming']['addomain']="n4061ad.hk.doubleclick.net";
2164
+ }
2165
+ ord=Math.random()*10000000000000000;
2166
+ document.write('<script language="JavaScript" src="http://n4061ad.hk.doubleclick.net/adj/tst.ythome/promo3;sz=300x50,300x100;kl=N;klg=en;kt=K;kga=-1;kgg=-1;kcr=us;dc_dedup=1;kmyd=ad_creative_5;tile=5;ord=' + ord + '?" type="text/javascript"><\/script>');
2167
+ </script>
2168
+
2169
+
2170
+ </div>
2171
+
2172
+
2173
+
2174
+ <!-- End ad tag -->
2175
+
2176
+
2177
+
2178
+ <div class="clear"></div>
2179
+
2180
+ <div class="homepage-side-block">
2181
+ <div id="homepage-whats-new-block">
2182
+ <div class="side-announcement-box yt-rounded">
2183
+ <div class="homepage-whats-new-content">
2184
+ <div class="homepage-block-heading">What's New</div>
2185
+
2186
+ <div class="homepage-whatsnew-entry">
2187
+ <div class="homepage-whatsnew-entry-title">
2188
+ <a href="/trailers?feature=hwn">Movie Trailers</a>
2189
+ </div>
2190
+ <div class="homepage-whatsnew-text">
2191
+ Get a sneak peek into upcoming movies!
2192
+ </div>
2193
+ </div><div class="clear"></div>
2194
+ <div class="homepage-whatsnew-entry">
2195
+ <div class="homepage-whatsnew-entry-title">
2196
+ <a href="/news?feature=hwn">YouTube News</a>
2197
+ </div>
2198
+ <div class="homepage-whatsnew-text">
2199
+ See the latest breaking news
2200
+ </div>
2201
+ </div><div class="clear"></div>
2202
+
2203
+
2204
+
2205
+
2206
+
2207
+ <div class="bottomBorderDotted"></div>
2208
+ <b><a href="http://youtube-global.blogspot.com/" style="color:#CC6600; font-size: 13px;">Eye-popping X Games action</a></b><br>
2209
+ <div><span>The world's premiere action sports event, X Games 15, starts today in Los Angeles with a slew of competitions, including street park and vert ramp skateboarding, BMX, motocross, rally car and more ...</span></div>
2210
+ <div class="alignR" style="padding-top: 5px;">
2211
+ <a href="http://youtube-global.blogspot.com/" style="color:#CC6600">Read more in our Blog</a>
2212
+ </div>
2213
+ <div style="font-size: 1px; height: 1px;"><br/></div>
2214
+ </div>
2215
+
2216
+ <div class="spacer">&nbsp;</div>
2217
+ </div>
2218
+ </div>
2219
+
2220
+ </div>
2221
+
2222
+
2223
+
2224
+
2225
+
2226
+
2227
+ <!-- Begin ad tag -->
2228
+
2229
+ <div id="ad_creative_4" class="ad-div homepage-side-block">
2230
+
2231
+
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+
2238
+
2239
+
2240
+
2241
+ <script type="text/javascript">
2242
+ if (window['jstiming']) {
2243
+ window['jstiming']['addomain']="n4061ad.hk.doubleclick.net";
2244
+ }
2245
+ ord=Math.random()*10000000000000000;
2246
+ document.write('<script language="JavaScript" src="http://n4061ad.hk.doubleclick.net/adj/tst.ythome/promo2;sz=300x50,300x100;kl=N;klg=en;kt=K;kga=-1;kgg=-1;kcr=us;dc_dedup=1;kmyd=ad_creative_4;tile=4;ord=' + ord + '?" type="text/javascript"><\/script>');
2247
+ </script>
2248
+
2249
+
2250
+ </div>
2251
+
2252
+
2253
+
2254
+ <!-- End ad tag -->
2255
+
2256
+
2257
+ </div> <!-- end homepage-side-content -->
2258
+
2259
+ <div class="clear"></div>
2260
+
2261
+
2262
+
2263
+
2264
+
2265
+
2266
+ <!-- begin footer section -->
2267
+ <div class="clear"></div>
2268
+
2269
+ <div id="footer">
2270
+ <div class="search">
2271
+ <div class="form-wrapper">
2272
+
2273
+ <form autocomplete="off" class="search-form" action="/results" method="get" name="footer-search-form">
2274
+ <input id="footer-search-term" class="search-term" name="search_query" type="text" onkeyup = "top.goog.i18n.bidi.setDirAttribute(event,this)" value="" maxlength="128" onfocus="addClass(this, 'search-term-focus')" onblur="removeClass(this, 'search-term-focus')">
2275
+ <input id="search-type-footer" name="search_type" type="hidden" value="">
2276
+ <a class="yt-button yt-button-primary" id="" style="" href="#" onclick="document.searchForm.submit(); return false;"><span>Search</span></a>
2277
+
2278
+ </form>
2279
+
2280
+ </div>
2281
+ </div>
2282
+ <div class="links">
2283
+ <table cellpadding="0" cellspacing="0">
2284
+ <tr>
2285
+ <th >YouTube</th>
2286
+ <th >Programs</th>
2287
+ <th >Help</th>
2288
+ <th>Policy</th>
2289
+ <th >Discover</th>
2290
+ </tr>
2291
+ <tr>
2292
+ <td><a href="/t/contact_us"
2293
+ >Contact Us</a></td>
2294
+ <td ><a href="/advertise"
2295
+ >Advertising</a></td>
2296
+ <td><a href="http://www.google.com/support/youtube/bin/static.py?page=start.cs&hl=en-US"
2297
+ >Help Resources</a></td>
2298
+ <td ><a href="/t/privacy"
2299
+ >Privacy Policy</a></td>
2300
+ <td><a href="/mobile"
2301
+ >YouTube on Your Phone</a></td>
2302
+ </tr>
2303
+ <tr>
2304
+ <td ><a href="/t/about"
2305
+ >Company Info</a></td>
2306
+ <td ><a href="http://code.google.com/apis/youtube/overview.html"
2307
+ >Developers</a></td>
2308
+ <td><a href="/t/yt_handbook_home"
2309
+ >YouTube Handbook</a></td>
2310
+ <td ><a href="/t/terms"
2311
+ >Terms of Service</a></td>
2312
+ <td><a href="/youtubeonyoursite"
2313
+ >YouTube on Your Site</a></td>
2314
+ </tr>
2315
+ <tr>
2316
+ <td><a href="/press_room"
2317
+ >Press Room</a></td>
2318
+ <td><a href="/partners"
2319
+ >Partnerships</a></td>
2320
+ <td><a href="http://www.google.com/support/forum/p/youtube?hl=en"
2321
+ >Community Help Forums</a></td>
2322
+ <td><a href="/t/dmca_policy"
2323
+ >Copyright Notices</a></td>
2324
+ <td><a href="/youtubeonyourtv"
2325
+ >YouTube on Your TV</a></td>
2326
+ </tr>
2327
+ <tr>
2328
+ <td><a href="http://ytbizblog.blogspot.com/"
2329
+ >Business Blog</a></td>
2330
+ <td><a href="/t/content_management"
2331
+ >Content Management</a></td>
2332
+ <td ><a href="http://www.google.com/support/youtube/bin/request.py?contact_type=abuse&hl=en-US"
2333
+ >Safety Center</a></td>
2334
+ <td><a href="/t/community_guidelines"
2335
+ >Community Guidelines</a></td>
2336
+ <td><a href="/t/rss_feeds"
2337
+ >YouTube RSS Feeds</a></td>
2338
+ </tr>
2339
+ <tr>
2340
+ <td><a href="/blog"
2341
+ >YouTube Blog</a></td>
2342
+ <td colspan="3"></td>
2343
+ <td ><a href="/testtube"
2344
+ >TestTube</a></td>
2345
+ </tr>
2346
+ </table>
2347
+ </div>
2348
+ <div class="google-home">
2349
+ <a href="http://www.google.com/webmasters/igoogle/youtube.html">Add YouTube to your Google homepage</a>
2350
+ </div>
2351
+ </div>
2352
+ <div id="copyright">
2353
+ &copy; 2009 YouTube, LLC
2354
+ </div>
2355
+
2356
+ <!-- end footer section -->
2357
+
2358
+
2359
+ </div> <!-- end baseDiv -->
2360
+
2361
+ <script type="text/javascript">
2362
+ thumbnailDelayLoad.fudgeFactor = 0;
2363
+
2364
+ if (document.documentElement["getBoundingClientRect"]) {
2365
+ addListener(window, 'scroll', thumbnailDelayLoad.loadImages);
2366
+ addListener(window, 'resize', thumbnailDelayLoad.loadImages);
2367
+ }
2368
+ thumbnailDelayLoad.loadImages();
2369
+
2370
+ thumbnailDelayLoad.loadAllAtOnce = true;
2371
+ </script>
2372
+
2373
+
2374
+
2375
+
2376
+ <a name="pageBottom"></a>
2377
+
2378
+
2379
+
2380
+
2381
+
2382
+
2383
+
2384
+ </body>
2385
+ <script type="text/javascript">
2386
+ window.setTimeout(
2387
+ "window.google.ac.install(document.searchForm,document.searchForm.search_query,'yt','en','close', \
2388
+ 'Suggestions', \
2389
+ 'Web search', \
2390
+ -1, \
2391
+ false)", 100);
2392
+ </script>
2393
+
2394
+
2395
+
2396
+ </html>