onebox 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
|
@@ -0,0 +1,1272 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# video: http://ogp.me/ns/video#">
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<link rel="dns-prefetch" href="http://0.media.collegehumor.cvcdn.com/">
|
|
6
|
+
<link rel="dns-prefetch" href="http://1.media.collegehumor.cvcdn.com/">
|
|
7
|
+
<link rel="dns-prefetch" href="http://2.media.collegehumor.cvcdn.com/">
|
|
8
|
+
<link rel="dns-prefetch" href="http://0.static.collegehumor.cvcdn.com/">
|
|
9
|
+
<link rel="dns-prefetch" href="http://1.static.collegehumor.cvcdn.com/">
|
|
10
|
+
<title>Mitt Romney Style (Gangnam Style Parody) - CollegeHumor Video</title>
|
|
11
|
+
<meta name="robots" content="index, follow">
|
|
12
|
+
<meta name="aol-te-auth" content="08d86b13-3d5b-46ff-aa55-00d37cc161f5">
|
|
13
|
+
<meta name="google-site-verification" content="BvXU_g4Hvuew1pLqINg8c5zs5NMPWF20m7mf8RtvpM8">
|
|
14
|
+
<meta property="og:locale" content="en_US">
|
|
15
|
+
<meta property="og:site_name" content="CollegeHumor">
|
|
16
|
+
<meta property="fb:app_id" content="271750421132">
|
|
17
|
+
<meta name="twitter:site" content="CollegeHumor">
|
|
18
|
+
<meta name="p:domain_verify" content="06643a85207ed17e6ee571967b3ab982">
|
|
19
|
+
<meta name="description" content="Heyyy wealthy ladies!"Mitt Romney Style" is now available on iTunes Watch "Mitt Romney Style (Gangnam Style Parody)" and more funny videos on CollegeHumor">
|
|
20
|
+
<meta name="date" content="2012-10-02">
|
|
21
|
+
<meta name="keywords" content="video,Politics,mitt romney,Music Videos,election2012,electoral collegehumor,shorts">
|
|
22
|
+
<meta name="twitter:card" content="player">
|
|
23
|
+
<meta name="medium" content="video">
|
|
24
|
+
<meta name="video_type" content="application/x-shockwave-flash">
|
|
25
|
+
<meta name="video_width" content="600">
|
|
26
|
+
<meta name="video_height" content="338">
|
|
27
|
+
<meta name="twitter:player" content="https://www.collegehumor.com/e/6830834">
|
|
28
|
+
<meta name="twitter:player:width" content="600">
|
|
29
|
+
<meta name="twitter:player:height" content="338">
|
|
30
|
+
<meta property="og:title" content="Mitt Romney Style (Gangnam Style Parody)">
|
|
31
|
+
<meta property="og:type" content="video.episode">
|
|
32
|
+
<meta property="og:url" content="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody">
|
|
33
|
+
<meta property="og:description" content="Heyyy wealthy ladies!"Mitt Romney Style" is now available on iTunes">
|
|
34
|
+
<meta property="og:video" content="http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.1.0.31.swf?clip_id=6830834&use_node_id=true&og=1&auto=true">
|
|
35
|
+
<meta property="og:video:width" content="600">
|
|
36
|
+
<meta property="og:video:height" content="338">
|
|
37
|
+
<meta property="og:video:type" content="application/x-shockwave-flash">
|
|
38
|
+
<meta property="video:release_date" content="2012-10-03 13:00:00">
|
|
39
|
+
<meta property="og:video:secure_url" content="https://www.collegehumor.com/moogaloop/moogaloop.1.0.31.swf?clip_id=6830834&use_node_id=true&og=1&auto=true">
|
|
40
|
+
<meta property="video:tag" content="Politics,mitt romney,Music Videos,election2012,electoral collegehumor,shorts">
|
|
41
|
+
<meta property="video:duration" content="172">
|
|
42
|
+
<meta property="og:image" content="http://0.media.collegehumor.cvcdn.com/62/99/a9febe641d5beb264bbab0de49272e5a-mitt-romney-style-gangnam-style-parody.jpg">
|
|
43
|
+
<meta property="video:series" content="http://www.collegehumor.com/musicvideos">
|
|
44
|
+
<link href="/originals/rss" rel="alternate" type="application/rss+xml">
|
|
45
|
+
<link rel="stylesheet" type="text/css" href="http://0.static.collegehumor.cvcdn.com/css/packages/fa4e1d3fb7d0535721ad2b7b42319b36.css">
|
|
46
|
+
<link rel="stylesheet" type="text/css" href="http://0.static.collegehumor.cvcdn.com/css/packages/384f869bf094e5591ad6375771be51c1.css">
|
|
47
|
+
<link rel="shortcut icon" href="/favicon.ico?v=2">
|
|
48
|
+
<link rel="canonical" href="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody">
|
|
49
|
+
<link rel="alternate" href="http://www.collegehumor.com/oembed.json?url=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody" type="application/json+oembed" title="Mitt Romney Style (Gangnam Style Parody)">
|
|
50
|
+
<link rel="alternate" href="http://www.collegehumor.com/oembed.xml?url=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody" type="application/xml+oembed" title="Mitt Romney Style (Gangnam Style Parody)">
|
|
51
|
+
<link rel="video_src" href="http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.1.0.31.swf?clip_id=6830834&use_node_id=true">
|
|
52
|
+
<link rel="image_src" href="http://0.media.collegehumor.cvcdn.com/62/99/a9febe641d5beb264bbab0de49272e5a-mitt-romney-style-gangnam-style-parody.jpg">
|
|
53
|
+
<script>
|
|
54
|
+
var _metrics = _metrics || [];
|
|
55
|
+
_metrics.push(['_setConfig', 'api_key', '1743998f92cedc07da4e071792f9a558f6dc37e7']);
|
|
56
|
+
_metrics.push(['_setConfig', 'api_url', 'http://api.metrics.chmedia.com']);
|
|
57
|
+
_metrics.push(['_setConfig', 'pixel_url', 'http://metrics.chmedia.com/pixel.gif']);
|
|
58
|
+
</script>
|
|
59
|
+
<script>
|
|
60
|
+
var player = window.player || {};
|
|
61
|
+
player.jukebox = 'http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.jukebox.1.0.39.swf';
|
|
62
|
+
player.lightbox = 'http://1.static.collegehumor.cvcdn.com/moogaloop/moogaloop.lightbox.1.0.20.swf';
|
|
63
|
+
var _gaq = _gaq || [];
|
|
64
|
+
_gaq.push(['_setAccount', 'UA-76641-6']);
|
|
65
|
+
</script>
|
|
66
|
+
<script type="text/javascript" src="http://1.static.collegehumor.cvcdn.com/js/packages/9c82901cfc25069bc0e37efbb7c926a6.js"></script>
|
|
67
|
+
<script type="text/javascript" src="http://metrics.chmedia.com/2.1/track.min.js"></script>
|
|
68
|
+
<script type="text/javascript" src="http://voss.collegehumor.com/js/voss.min.js"></script>
|
|
69
|
+
<script>
|
|
70
|
+
var adslots = {};
|
|
71
|
+
var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; (function() { var gads = document.createElement("script"); gads.async = true; gads.type = "text/javascript"; var useSSL = "https:" == document.location.protocol; gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js"; var node = document.getElementsByTagName("script")[0]; node.parentNode.insertBefore(gads, node); })();
|
|
72
|
+
googletag.cmd.push(function() {
|
|
73
|
+
adslots['4x4-100x30'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[4,4],[100,30]], "ad-nav-tab").addService(googletag.pubads());
|
|
74
|
+
adslots['728x90-1x1-970x66'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[728,90],[1,1],[970,66]], "div-gpt-ad-7313636").addService(googletag.pubads());
|
|
75
|
+
adslots['5x5'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[5,5]], "div-gpt-ad-685162").addService(googletag.pubads());
|
|
76
|
+
adslots['300x250-position:top'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[300,250]], "div-gpt-ad-35878945").addService(googletag.pubads());
|
|
77
|
+
adslots['300x250-position:top'].setTargeting("position", "top");
|
|
78
|
+
adslots['300x80'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[300,80]], "div-gpt-ad-85608265").addService(googletag.pubads());
|
|
79
|
+
adslots['728x91'] = googletag.defineSlot("/8422/collegehumor.com/videos/content/originals", [[728,91]], "div-gpt-ad-23021646").addService(googletag.pubads());
|
|
80
|
+
});
|
|
81
|
+
googletag.cmd.push(function() { googletag.pubads().setTargeting("rating", "nsfa");googletag.pubads().setTargeting("node_id", "6830834");googletag.pubads().setTargeting("ctype", "video");googletag.pubads().setTargeting("tags", "politics,mitt-romney,music-videos,election2012,electoral-collegehumor,shorts");googletag.pubads().enableSingleRequest();googletag.pubads().enableAsyncRendering();googletag.enableServices(); });
|
|
82
|
+
</script>
|
|
83
|
+
<!--[if lt IE 9]>
|
|
84
|
+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
85
|
+
<![endif]-->
|
|
86
|
+
</head>
|
|
87
|
+
<body class="subscription_lightbox two-columns item video continuous original series musicvideos">
|
|
88
|
+
<div id="site-top">
|
|
89
|
+
<header id="header">
|
|
90
|
+
<div class="container">
|
|
91
|
+
<div id="top-bar">
|
|
92
|
+
<div id="user-nav" class="nav-tab">
|
|
93
|
+
<div id="user-action" class="signed-out uses-fbconnect">
|
|
94
|
+
<p>
|
|
95
|
+
<a href="/signin" class="requires-login">Sign in</a> | <a href="/signup">Sign up</a>
|
|
96
|
+
| <a href="/signin" class="requires-fbconnect"><img src="http://1.static.collegehumor.cvcdn.com/images/fb_connect/fb_connect_small.gif" width="61" height="13" alt="Connect with Facebook"></a>
|
|
97
|
+
</p>
|
|
98
|
+
</div>
|
|
99
|
+
</div> </div>
|
|
100
|
+
<div id="nav-bar" class="cfx">
|
|
101
|
+
<div class="ga_feature_usage" data-ga-feature="Logo">
|
|
102
|
+
<a href="http://www.collegehumor.com" title="CollegeHumor" id="logo" class="ga_feature_usage" data-ga-feature="Logo">
|
|
103
|
+
<img src="http://0.static.collegehumor.cvcdn.com/images/logo-collegehumor.png" width="180" height="45" alt="CollegeHumor">
|
|
104
|
+
</a>
|
|
105
|
+
</div>
|
|
106
|
+
<div id="nav-social">
|
|
107
|
+
<a href="http://blog.collegehumor.com" class="sm-icon-small sm-icon-small-tumblr" rel="external" data-button=".button-tumblr">CollegeHumor on Tumblr</a>
|
|
108
|
+
<a href="http://www.facebook.com/CollegeHumor" class="sm-icon-small sm-icon-small-facebook" rel="external" data-button=".button-facebook">CollegeHumor on Facebook</a>
|
|
109
|
+
<a href="http://www.twitter.com/CollegeHumor" class="sm-icon-small sm-icon-small-twitter" rel="external" data-button=".button-twitter">CollegeHumor on Twitter</a>
|
|
110
|
+
<a href="http://www.youtube.com/CollegeHumor" class="sm-icon-small sm-icon-small-youtube" rel="external" data-button=".button-youtube">CollegeHumor on YouTube</a>
|
|
111
|
+
<div class="popover-wrap button-facebook hide">
|
|
112
|
+
<div class="popover bottom">
|
|
113
|
+
<div class="popover-content">
|
|
114
|
+
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FCollegeHumor&send=false&layout=button_count&width=0&show_faces=false&font=arial&colorscheme=light&action=like&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe>
|
|
115
|
+
</div>
|
|
116
|
+
<div class="arrow"></div>
|
|
117
|
+
</div>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="popover-wrap button-twitter hide">
|
|
120
|
+
<div class="popover bottom">
|
|
121
|
+
<div class="popover-content">
|
|
122
|
+
<a href="http://twitter.com/CollegeHumor" class="twitter-follow-button" data-show-count="false" data-show-screen-name="true">Follow @CollegeHumor</a> </div>
|
|
123
|
+
<div class="arrow"></div>
|
|
124
|
+
</div>
|
|
125
|
+
</div>
|
|
126
|
+
<div class="popover-wrap button-tumblr hide">
|
|
127
|
+
<div class="popover bottom">
|
|
128
|
+
<div class="popover-content">
|
|
129
|
+
<iframe height="25" width="115" src="http://platform.tumblr.com/v1/follow_button.html?button_type=2&tumblelog=collegehumor&color_scheme=dark" class="tumblr-follow-button" frameborder="0" border="0" scrolling="no" allowtransparency="true"></iframe>
|
|
130
|
+
</div>
|
|
131
|
+
<div class="arrow"></div>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
<div class="popover-wrap button-youtube hide">
|
|
135
|
+
<div class="popover bottom">
|
|
136
|
+
<div class="popover-content">
|
|
137
|
+
<a class="youtube-follow-button" href="http://www.youtube.com/subscription_center?add_user=CollegeHumor">
|
|
138
|
+
<img src="//s.ytimg.com/yt/img/creators_corner/Subscribe_to_my_videos/YT_Subscribe_61x23_red.png" width="61" height="23" alt="Subscribe to me on YouTube">
|
|
139
|
+
</a>
|
|
140
|
+
</div>
|
|
141
|
+
<div class="arrow"></div>
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
<nav id="primary-nav" class="vertical cfx">
|
|
146
|
+
<ul class="ga_feature_usage" data-ga-feature="Navigation">
|
|
147
|
+
<li class="nav-item dropdown active">
|
|
148
|
+
<a href="/videos" class="nav-link dropdown-toggle cfx"><span>Videos</span></a>
|
|
149
|
+
<div class="dropdown-menu videos">
|
|
150
|
+
<div class="dropdown-list cfx">
|
|
151
|
+
<ul class="ga_feature_usage" data-ga-feature="Navigation Dropdown">
|
|
152
|
+
<li><a href="/originals">All Originals</a></li>
|
|
153
|
+
<li><a href="/jakeandamir">Jake and Amir</a></li>
|
|
154
|
+
<li><a href="/shorts">Shorts</a></li>
|
|
155
|
+
<li><a href="/troopers">Troopers</a></li>
|
|
156
|
+
<li><a href="/hardlyworking">Hardly Working</a></li>
|
|
157
|
+
<li><a href="/verymarykate">Very Mary-Kate</a></li>
|
|
158
|
+
<li><a href="/dinosaur-office">Dinosaur Office</a></li>
|
|
159
|
+
<li><a href="/badman">Batman</a></li>
|
|
160
|
+
<li><a href="/bleepbloop">Bleep Bloop</a></li>
|
|
161
|
+
<li><a href="/preciousplum">Precious Plum</a></li>
|
|
162
|
+
</ul>
|
|
163
|
+
</div>
|
|
164
|
+
<div class="dropdown-media cfx" data-ga-feature="Nav Dropdown Listing">
|
|
165
|
+
<div class="media cfx">
|
|
166
|
+
<a href="/video/6902837/panhandler-pranks-entire-subway-car" title="Panhandler Pranks Entire Subway Car" data-ga-feature-name="Listing">
|
|
167
|
+
<img src="http://2.media.collegehumor.cvcdn.com/91/11/23f6b6a0e499c4ab735dbc019b1091ce-panhandler-pranks-entire-subway-car.jpg" width="138" height="78" alt="Panhandler Pranks Entire Subway Car">
|
|
168
|
+
<span class="badge">Original</span>
|
|
169
|
+
<strong>Panhandler Pranks Entire Subway Car</strong>
|
|
170
|
+
</a>
|
|
171
|
+
</div>
|
|
172
|
+
<div class="media cfx">
|
|
173
|
+
<a href="/video/6906153/detroits-kickstarter-needs-your-help" title="Detroit's Kickstarter Needs Your Help" data-ga-feature-name="Listing">
|
|
174
|
+
<img src="http://2.media.collegehumor.cvcdn.com/83/76/452b642d2b2468ae5d60d9a1e937f9c1-detroits-kickstarter-needs-your-help.jpg" width="138" height="78" alt="Detroit's Kickstarter Needs Your Help">
|
|
175
|
+
<span class="badge">Original</span>
|
|
176
|
+
<strong>Detroit's Kickstarter Needs Your Help</strong>
|
|
177
|
+
</a>
|
|
178
|
+
</div>
|
|
179
|
+
<div class="media cfx">
|
|
180
|
+
<a href="/video/6905984/dogs-stoned-after-the-vet" title="Dogs Stoned After the Vet" data-ga-feature-name="Listing">
|
|
181
|
+
<img src="http://2.media.collegehumor.cvcdn.com/50/68/e0b9e1c3c81b76af53a45b57b7f4a597-dogs-stoned-after-the-vet.jpg" width="138" height="78" alt="Dogs Stoned After the Vet">
|
|
182
|
+
<span class="badge">Original</span>
|
|
183
|
+
<strong>Dogs Stoned After the Vet</strong>
|
|
184
|
+
</a>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="media rightside cfx">
|
|
187
|
+
<a href="/video/6905935/camp-boys-vs-girls" title="CAMP: Boys vs. Girls" data-ga-feature-name="Listing">
|
|
188
|
+
<img src="http://0.media.collegehumor.cvcdn.com/77/58/d0c963af0e44d51b9bf9513bd8f734d7-camp-boys-vs-girls.jpg" width="138" height="78" alt="CAMP: Boys vs. Girls">
|
|
189
|
+
<span class="badge">Original</span>
|
|
190
|
+
<strong>CAMP: Boys vs. Girls</strong>
|
|
191
|
+
</a>
|
|
192
|
+
</div>
|
|
193
|
+
<a href="/videos" class="more-link pull-right">See More <span>»</span></a>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
</li>
|
|
197
|
+
<li class="nav-item dropdown ga_feature_usage" data-ga-feature="Navigation">
|
|
198
|
+
<a href="/pictures" class="nav-link dropdown-toggle cfx"><span>Pictures</span></a>
|
|
199
|
+
<div class="dropdown-menu pictures">
|
|
200
|
+
<div class="dropdown-list cfx">
|
|
201
|
+
<ul class="cfx ga_feature_usage" data-ga-feature="Navigation Dropdown">
|
|
202
|
+
<li><a href="/pictures/sexy">Sexy</a></li>
|
|
203
|
+
<li><a href="/pictures/wtf">WTF</a></li>
|
|
204
|
+
<li><a href="/pictures/college">College</a></li>
|
|
205
|
+
<li><a href="/pictures/facebook">Facebook</a></li>
|
|
206
|
+
<li><a href="/pictures/relationships">Relationships</a></li>
|
|
207
|
+
<li><a href="/pictures/animals">Animals</a></li>
|
|
208
|
+
<li><a href="/tv-movies">TV/Movies</a></li>
|
|
209
|
+
</ul>
|
|
210
|
+
</div>
|
|
211
|
+
<div class="dropdown-media cfx" data-ga-feature="Nav Dropdown Listing">
|
|
212
|
+
<div class="media cfx">
|
|
213
|
+
<a href="/picture/6906242/miley-cyrus-making-out-with-a-terrifying-mutant-baby-thing" title="Miley Cyrus Making Out With a Terrifying Mutant Baby Thing" data-ga-feature-name="Listing">
|
|
214
|
+
<img src="http://1.media.collegehumor.cvcdn.com/39/91/34c177d49e02d8f0de1dd4364d77876d-miley-cyrus-making-out-with-a-terrifying-mutant-baby-thing.jpg" width="138" height="78" alt="Miley Cyrus Making Out With a Terrifying Mutant Baby Thing">
|
|
215
|
+
<strong>Miley Cyrus Making Out With a Terrifying Mutant Baby Thing</strong>
|
|
216
|
+
</a>
|
|
217
|
+
</div>
|
|
218
|
+
<div class="media cfx">
|
|
219
|
+
<a href="/picture/6906196/strike-three" title="Strike Three!" data-ga-feature-name="Listing">
|
|
220
|
+
<img src="http://2.media.collegehumor.cvcdn.com/61/45/1db0f4b6d6ac19d76d7a52badacdfe3e-strike-three.jpg" width="138" height="78" alt="Strike Three!">
|
|
221
|
+
<strong>Strike Three!</strong>
|
|
222
|
+
</a>
|
|
223
|
+
</div>
|
|
224
|
+
<div class="media cfx">
|
|
225
|
+
<a href="/picture/6906189/kid-pees-himself-while-on-dads-shoulders" title="Kid Pees Himself While on Dad's Shoulders" data-ga-feature-name="Listing">
|
|
226
|
+
<img src="http://0.media.collegehumor.cvcdn.com/38/21/1fa3c624ad4411f096e8224bd1df80c4-kid-pees-himself-while-on-dads-shoulders.jpg" width="138" height="78" alt="Kid Pees Himself While on Dad's Shoulders">
|
|
227
|
+
<strong>Kid Pees Himself While on Dad's Shoulders</strong>
|
|
228
|
+
</a>
|
|
229
|
+
</div>
|
|
230
|
+
<div class="media rightside cfx">
|
|
231
|
+
<a href="/picture/6906170/we-saw-matt-damon" title="We Saw Matt Damon!" data-ga-feature-name="Listing">
|
|
232
|
+
<img src="http://1.media.collegehumor.cvcdn.com/94/28/3648d5fa4d9b86dba1fd954c9890dab8-we-saw-matt-damon.jpg" width="138" height="78" alt="We Saw Matt Damon!">
|
|
233
|
+
<strong>We Saw Matt Damon!</strong>
|
|
234
|
+
</a>
|
|
235
|
+
</div>
|
|
236
|
+
<a href="/pictures" class="more-link pull-right">See More <span>»</span></a>
|
|
237
|
+
</div>
|
|
238
|
+
</div>
|
|
239
|
+
</li>
|
|
240
|
+
<li class="nav-item dropdown ga_feature_usage" data-ga-feature="Navigation">
|
|
241
|
+
<a href="/articles" class="nav-link dropdown-toggle cfx"><span>Articles</span></a>
|
|
242
|
+
<div class="dropdown-menu articles list-double">
|
|
243
|
+
<div class="dropdown-list cfx">
|
|
244
|
+
<ul class="cfx ga_feature_usage" data-ga-feature="Navigation Dropdown">
|
|
245
|
+
<li><a href="/articles/column/almost-reading">Almost Reading</a></li>
|
|
246
|
+
<li><a href="/articles/column/the-graphic-truth">The Graphic Truth</a></li>
|
|
247
|
+
<li><a href="/articles/column/the-troll">The Troll</a></li>
|
|
248
|
+
<li><a href="/articles/column/twidiots">Twidiots</a></li>
|
|
249
|
+
<li><a href="/articles/column/tldnr">TLDNR</a></li>
|
|
250
|
+
<li><a href="/articles/column/regret-everything">Regret Everything</a></li>
|
|
251
|
+
<li><a href="/articles/column/collegehumor-interview">CollegeHumor Interview</a></li>
|
|
252
|
+
<li><a href="/articles/column/leaked">Exclusive Leaks</a></li>
|
|
253
|
+
</ul>
|
|
254
|
+
</div>
|
|
255
|
+
<div class="dropdown-media cfx" data-ga-feature="Nav Dropdown Listing">
|
|
256
|
+
<div class="media cfx">
|
|
257
|
+
<a href="/article/6906172/french-kisses-for-other-countries" title="French Kisses for Other Countries" data-ga-feature-name="Listing">
|
|
258
|
+
<img src="http://2.media.collegehumor.cvcdn.com/35/52/a81f739974149f4c2d17486ad46e2f8d-french-kisses-for-other-countries.jpg" width="138" height="78" alt="French Kisses for Other Countries">
|
|
259
|
+
<span>French Kisses for Other Countries</span>
|
|
260
|
+
</a>
|
|
261
|
+
</div>
|
|
262
|
+
<div class="media cfx">
|
|
263
|
+
<a href="/article/6906157/the-troll-asteroids-moons-and-the-pope" title="The Troll: Asteroids, Moons, and the Pope" data-ga-feature-name="Listing">
|
|
264
|
+
<img src="http://1.media.collegehumor.cvcdn.com/63/36/e76758231a355110acde60ba5aa4a2e4-the-troll-asteroids-moons-and-the-pope.jpg" width="138" height="78" alt="The Troll: Asteroids, Moons, and the Pope">
|
|
265
|
+
<span>The Troll: Asteroids, Moons, and the Pope</span>
|
|
266
|
+
</a>
|
|
267
|
+
</div>
|
|
268
|
+
<div class="media cfx">
|
|
269
|
+
<a href="/article/6905239/8-more-celebrities-about-to-escape-their-bodies" title="8 More Celebrities About to Escape Their Bodies" data-ga-feature-name="Listing">
|
|
270
|
+
<img src="http://1.media.collegehumor.cvcdn.com/42/45/f20c87f473de835e0d707b3453a792c5-8-more-celebrities-about-to-escape-their-bodies.jpg" width="138" height="78" alt="8 More Celebrities About to Escape Their Bodies">
|
|
271
|
+
<span>8 More Celebrities About to Escape Their Bodies</span>
|
|
272
|
+
</a>
|
|
273
|
+
</div>
|
|
274
|
+
<div class="media rightside cfx">
|
|
275
|
+
<a href="/article/6897374/5-epic-dance-moves-in-cinema" title="The 5 Best Dance Moves Ever Captured on Screen" data-ga-feature-name="Listing">
|
|
276
|
+
<img src="http://2.media.collegehumor.cvcdn.com/10/38/da6489f48b1b927ad7d31ad8ce20b843-the-5-best-dance-moves-ever-captured-on-screen.jpg" width="138" height="78" alt="The 5 Best Dance Moves Ever Captured on Screen">
|
|
277
|
+
<span>The 5 Best Dance Moves Ever Captured on Screen</span>
|
|
278
|
+
</a>
|
|
279
|
+
</div>
|
|
280
|
+
<a href="/articles" class="more-link pull-right">See More <span>»</span></a>
|
|
281
|
+
</div>
|
|
282
|
+
</div>
|
|
283
|
+
</li>
|
|
284
|
+
<li class="nav-item dropdown small ga_feature_usage" data-ga-feature="Navigation">
|
|
285
|
+
<a href="/more" class="nav-link dropdown-toggle cfx"><span>More</span></a>
|
|
286
|
+
<div class="dropdown-menu more">
|
|
287
|
+
<div class="dropdown-list cfx">
|
|
288
|
+
<ul class="cfx ga_feature_usage" data-ga-feature="Navigation Dropdown">
|
|
289
|
+
<li><a href="/toplists">Toplists</a></li>
|
|
290
|
+
<li><a href="/surveys">Surveys</a></li>
|
|
291
|
+
<li><a href="/topics">Topics</a></li>
|
|
292
|
+
</ul>
|
|
293
|
+
<a href="/more" class="more-link">See More <span>»</span></a>
|
|
294
|
+
</div>
|
|
295
|
+
</div>
|
|
296
|
+
</li>
|
|
297
|
+
<li class="nav-item dropdown small upload ga_feature_usage" data-ga-feature="Navigation">
|
|
298
|
+
<a href="/upload" class="nav-link dropdown-toggle cfx"><span>Upload</span></a>
|
|
299
|
+
<div class="dropdown-menu more">
|
|
300
|
+
<div class="dropdown-list cfx">
|
|
301
|
+
<ul class="cfx ga_feature_usage" data-ga-feature="Navigation Dropdown">
|
|
302
|
+
<li><a href="/submit/picture" class="picture">Picture</a></li>
|
|
303
|
+
<li><a href="/submit/gallery" class="gallery">Gallery</a></li>
|
|
304
|
+
<li><a href="/submit/video" class="video">Video</a></li>
|
|
305
|
+
<li><a href="/submit/article" class="article">Article</a></li>
|
|
306
|
+
</ul>
|
|
307
|
+
</div>
|
|
308
|
+
</div>
|
|
309
|
+
</li>
|
|
310
|
+
</ul>
|
|
311
|
+
</nav>
|
|
312
|
+
<div id="ad-nav-tab"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("ad-nav-tab"); }); }</script></div> <div id="nav-search" class="ga_feature_usage" data-ga-feature="Search Module">
|
|
313
|
+
<form action="/search" method="post" class="search-form">
|
|
314
|
+
<div class="control-group cfx">
|
|
315
|
+
<input type="text" class="search-text" name="q" placeholder="Search">
|
|
316
|
+
<input type="submit" class="btn-search" name="submit" value="Go">
|
|
317
|
+
</div>
|
|
318
|
+
</form>
|
|
319
|
+
</div>
|
|
320
|
+
<nav id="secondary-nav" class="cfx ga_feature_usage" data-ga-feature="Navigation Hot Topics">
|
|
321
|
+
<ul class="unstyled cfx">
|
|
322
|
+
<li><a href="/video/6905953/crazy-rhubarb-lady-caught-stealing-rhubarb">rhubarb lady</a></li>
|
|
323
|
+
<li><a href="/article/6905754/honest-apple-employee-manual">apple employee manuals</a></li>
|
|
324
|
+
<li><a href="/pictures/gallery/6905740/25-photos-0-fucks-given">zero f*cks given</a></li>
|
|
325
|
+
<li><a href="/article/6905665/the-7-worst-conversations-weve-all-had">the 7 worst conversations</a></li>
|
|
326
|
+
<li><a href="/pictures/gallery/6905524/replacing-phones-with-pop-tarts-on-the-streets-of-nyc-hardly-gets-anyone-to-bat-an-eyelash">pop tart phones</a></li>
|
|
327
|
+
</ul>
|
|
328
|
+
</nav>
|
|
329
|
+
</div>
|
|
330
|
+
</div>
|
|
331
|
+
</header>
|
|
332
|
+
</div>
|
|
333
|
+
<div id="site-body">
|
|
334
|
+
<div id="skin_body">
|
|
335
|
+
<div id="skin">
|
|
336
|
+
<div id="container" class="container">
|
|
337
|
+
<div id="skin_banner">
|
|
338
|
+
<div class="ad_banner cfx">
|
|
339
|
+
<div id="div-gpt-ad-7313636"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("div-gpt-ad-7313636"); }); }</script></div> </div>
|
|
340
|
+
</div>
|
|
341
|
+
<div id="frame" class="cfx">
|
|
342
|
+
<section id="content" class="cfx">
|
|
343
|
+
<script>
|
|
344
|
+
jument.analytics.track('Media', 'On Site View', '6830834', 1);
|
|
345
|
+
jument.metrics.track_node(6830834, 'onsite_node_view');
|
|
346
|
+
</script><div class="page-header">
|
|
347
|
+
<h1><a href="/videos">Videos</a></h1>
|
|
348
|
+
<div class="bug din"><a href="/originals"><span class="ch-brand">CollegeHumor</span> Original</a></div></div>
|
|
349
|
+
<article>
|
|
350
|
+
<div id="body" class="stage">
|
|
351
|
+
<header><h1><a href="/video/6830834/mitt-romney-style-gangnam-style-parody" rel="bookmark"><span class="din">Music Videos / </span> Mitt Romney Style (Gangnam Style Parody)</a></h1></header>
|
|
352
|
+
<div id="player">
|
|
353
|
+
<div id="video-player">
|
|
354
|
+
<noscript><object id="moogaloop" type="application/x-shockwave-flash" data="http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.jukebox.1.0.39.swf?clip_id=6830834&use_node_id=true&autostart=false&fullscreen=1&context=YTozOntpOjA7TzoyMjoibW9kZWxzXE9yaWdpbmFsX1NlcmllcyI6NDp7czo3OiJfb2JqX2lkIjtOO3M6MTA6IgAqAF92YWx1ZXMiO2E6MDp7fXM6MTM6IgAqAF9pc19sb2FkZWQiO2I6MDtzOjEzOiIAKgBfaXNfc3RhdGljIjtiOjA7fWk6MTtzOjE2OiJyZWNlbnRfb3JpZ2luYWxzIjtpOjI7YToyOntzOjU6InRpdGxlIjtzOjE2OiJSZWNlbnQgT3JpZ2luYWxzIjtzOjM6InVybCI7czoxMDoiL29yaWdpbmFscyI7fX0=&use_hash=&is_playlist=0&playlist_id=0&cont_play=true&cont_autoplay=true&ad_count_rate=3&ad_inactivity_count=22&ad_time_rate=250&ad_video_delay=1&url_slug=mitt-romney-style-gangnam-style-parody&original=true&referer=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody&tags=politics,mitt-romney,music-videos,election2012,electoral-collegehumor,shorts&rating=nsfa" width="947" height="386">
|
|
355
|
+
<param name="allowfullscreen" value="true"/>
|
|
356
|
+
<param name="wmode" value="transparent"/>
|
|
357
|
+
<param name="allowScriptAccess" value="always"/>
|
|
358
|
+
<param name="movie" quality="best" value="http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.jukebox.1.0.39.swf?clip_id=6830834&use_node_id=true&autostart=false&fullscreen=1&context=YTozOntpOjA7TzoyMjoibW9kZWxzXE9yaWdpbmFsX1NlcmllcyI6NDp7czo3OiJfb2JqX2lkIjtOO3M6MTA6IgAqAF92YWx1ZXMiO2E6MDp7fXM6MTM6IgAqAF9pc19sb2FkZWQiO2I6MDtzOjEzOiIAKgBfaXNfc3RhdGljIjtiOjA7fWk6MTtzOjE2OiJyZWNlbnRfb3JpZ2luYWxzIjtpOjI7YToyOntzOjU6InRpdGxlIjtzOjE2OiJSZWNlbnQgT3JpZ2luYWxzIjtzOjM6InVybCI7czoxMDoiL29yaWdpbmFscyI7fX0=&use_hash=&is_playlist=0&playlist_id=0&cont_play=true&cont_autoplay=true&ad_count_rate=3&ad_inactivity_count=22&ad_time_rate=250&ad_video_delay=1&url_slug=mitt-romney-style-gangnam-style-parody&original=true&referer=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody&tags=politics,mitt-romney,music-videos,election2012,electoral-collegehumor,shorts&rating=nsfa"/>
|
|
359
|
+
<embed src="http://0.static.collegehumor.cvcdn.com/moogaloop/moogaloop.jukebox.1.0.39.swf?clip_id=6830834&use_node_id=true&autostart=false&fullscreen=1&context=YTozOntpOjA7TzoyMjoibW9kZWxzXE9yaWdpbmFsX1NlcmllcyI6NDp7czo3OiJfb2JqX2lkIjtOO3M6MTA6IgAqAF92YWx1ZXMiO2E6MDp7fXM6MTM6IgAqAF9pc19sb2FkZWQiO2I6MDtzOjEzOiIAKgBfaXNfc3RhdGljIjtiOjA7fWk6MTtzOjE2OiJyZWNlbnRfb3JpZ2luYWxzIjtpOjI7YToyOntzOjU6InRpdGxlIjtzOjE2OiJSZWNlbnQgT3JpZ2luYWxzIjtzOjM6InVybCI7czoxMDoiL29yaWdpbmFscyI7fX0=&use_hash=&is_playlist=0&playlist_id=0&cont_play=true&cont_autoplay=true&ad_count_rate=3&ad_inactivity_count=22&ad_time_rate=250&ad_video_delay=1&url_slug=mitt-romney-style-gangnam-style-parody&original=true&referer=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody&tags=politics,mitt-romney,music-videos,election2012,electoral-collegehumor,shorts&rating=nsfa" type="application/x-shockwave-flash" wmode="transparent" width="947" height="386" allowScriptAccess="always"></embed>
|
|
360
|
+
</object></noscript>
|
|
361
|
+
</div>
|
|
362
|
+
<script>
|
|
363
|
+
var vidplaylist = jument.playlist.create({ current_id: "6830834", server: "www.collegehumor.com", autostart: "false", fullscreen: "1", context: "YTozOntpOjA7TzoyMjoibW9kZWxzXE9yaWdpbmFsX1NlcmllcyI6NDp7czo3OiJfb2JqX2lkIjtOO3M6MTA6IgAqAF92YWx1ZXMiO2E6MDp7fXM6MTM6IgAqAF9pc19sb2FkZWQiO2I6MDtzOjEzOiIAKgBfaXNfc3RhdGljIjtiOjA7fWk6MTtzOjE2OiJyZWNlbnRfb3JpZ2luYWxzIjtpOjI7YToyOntzOjU6InRpdGxlIjtzOjE2OiJSZWNlbnQgT3JpZ2luYWxzIjtzOjM6InVybCI7czoxMDoiL29yaWdpbmFscyI7fX0=", use_hash: "", is_playlist: "0", playlist_id: "0", cont_play: "true", cont_autoplay: "true", ad_count_rate: "3", ad_inactivity_count: "22", ad_time_rate: "250", ad_video_delay: "1", url_slug: "mitt-romney-style-gangnam-style-parody", original: "true", referer: "http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody", tags: "politics,mitt-romney,music-videos,election2012,electoral-collegehumor,shorts", rating: "nsfa" });
|
|
364
|
+
var so = vidplaylist.so;
|
|
365
|
+
so.addVariable("full_url", window.location.href);
|
|
366
|
+
vidplaylist.hookupPlayer();
|
|
367
|
+
</script> </div>
|
|
368
|
+
</div>
|
|
369
|
+
<div class="primary">
|
|
370
|
+
<div class="share-bar" data-url="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody">
|
|
371
|
+
<ul class="nav social-media-icons">
|
|
372
|
+
<li><em>Share</em></li>
|
|
373
|
+
<li><a href="#" data-href="http://www.tumblr.com/share/video?embed=%3Ciframe+src%3D%22http%3A%2F%2Fwww.collegehumor.com%2Fe%2F6830834%2Fmitt-romney-style-gangnam-style-parody%22+width%3D%22610%22+height%3D%22343%22+frameborder%3D%220%22+webkitAllowFullScreen+allowFullScreen%3E%3C%2Fiframe%3E&caption=%3Cp%3E%3Ca+href%3D%22http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody%22%3E%3Cstrong%3EMitt+Romney+Style+%28Gangnam+Style+Parody%29%3C%2Fstrong%3E%3C%2Fa%3E%3C%2Fp%3E%3Cp%3EHeyyy+wealthy+ladies%21%0A%22Mitt+Romney+Style%22+is+now+available+on+%22iTunes%22%3Ahttps%3A%2F%2Fitunes.apple.com%2Fus%2Falbum%2Fmitt-romney-style-gangnam%2Fid570275249+%3C%2Fp%3E" class="sm-icon sm-icon-tumblr popout">Tumblr</a></li>
|
|
374
|
+
<li><a href="#" data-href="http://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody" class="sm-icon sm-icon-facebook popout">Facebook</a></li>
|
|
375
|
+
<li><a href="#" data-href="https://twitter.com/intent/tweet?related=sportspickle&text=Mitt+Romney+Style+%28Gangnam+Style+Parody%29&url=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody&via=CollegeHumor" class="sm-icon sm-icon-twitter popout">Twitter</a></li>
|
|
376
|
+
<li><a href="#" data-href="http://reddit.com/submit?url=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody&title=Mitt Romney Style (Gangnam Style Parody)" class="sm-icon sm-icon-reddit popout">Reddit</a></li>
|
|
377
|
+
<li><a href="#" data-href="http://www.stumbleupon.com/badge/?url=http%3A%2F%2Fwww.collegehumor.com%2Fvideo%2F6830834%2Fmitt-romney-style-gangnam-style-parody" class="sm-icon sm-icon-stumble popout">Stumble Upon</a></li>
|
|
378
|
+
<li><a href="#" class="email-friend sm-icon sm-icon-email">Email</a></li>
|
|
379
|
+
<li><div class="g-plusone" data-annotation="none"></div></li>
|
|
380
|
+
<li><div class="fb-like" data-href="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false"></div></li>
|
|
381
|
+
<li class="embed-code">
|
|
382
|
+
<a href="javascript:void(0);" class="sm-icon sm-icon-embed copytoclipboard" data-clipboard-target="copy-embed-code">Embed</a>
|
|
383
|
+
<input type="text" id="copy-embed-code" value="<iframe src="http://www.collegehumor.com/e/6830834" width="600" height="369" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe><div style="padding:5px 0; text-align:center; width:600px;"><p><a href="http://www.collegehumor.com/videos/most-viewed/this-year">CollegeHumor's Favorite Funny Videos</a></p></div>" spellcheck="false">
|
|
384
|
+
</li>
|
|
385
|
+
</ul>
|
|
386
|
+
</div>
|
|
387
|
+
<div id="email-modal" class="modal hide">
|
|
388
|
+
<div class="modal-header">
|
|
389
|
+
<a href="#" class="close" data-dismiss="modal">×</a>
|
|
390
|
+
<strong class="heading">Share with friend</strong>
|
|
391
|
+
</div>
|
|
392
|
+
<div class="modal-body">
|
|
393
|
+
<form action="/video/6830834/mitt-romney-style-gangnam-style-parody" method="post" id="share-email-form" class="form-horizontal">
|
|
394
|
+
<input type="hidden" name="form0_submitted" value="1" />
|
|
395
|
+
<p class="alert alert-error error_list" style="display:none;"></p>
|
|
396
|
+
<input type="hidden" name="share_url" value="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody" />
|
|
397
|
+
<ul>
|
|
398
|
+
<li class="cfx">
|
|
399
|
+
<label for="share_name">Your Name</label><br />
|
|
400
|
+
<input type="text" id="share_name" name="share_name" value="" /> </li>
|
|
401
|
+
<li class="cfx">
|
|
402
|
+
<label for="share_from">Your Email</label><br />
|
|
403
|
+
<input type="text" id="share_from" name="share_from" value="" /> </li>
|
|
404
|
+
<li class="cfx">
|
|
405
|
+
<label for="share_to">Friends' Emails</label><br />
|
|
406
|
+
<small>(Separate multiple addresses with commas)</small><br /><br />
|
|
407
|
+
<textarea id="share_to" name="share_to" ></textarea> </li>
|
|
408
|
+
<li><button class="btn btn-large" name="submit" type="submit">Send</button></li>
|
|
409
|
+
</ul>
|
|
410
|
+
</form>
|
|
411
|
+
</div>
|
|
412
|
+
</div><script>
|
|
413
|
+
(function() {
|
|
414
|
+
var po = document.createElement('script');
|
|
415
|
+
po.type = 'text/javascript';
|
|
416
|
+
po.async = true;
|
|
417
|
+
po.src = 'https://apis.google.com/js/plusone.js';
|
|
418
|
+
var s = document.getElementsByTagName('script')[0];
|
|
419
|
+
s.parentNode.insertBefore(po, s);
|
|
420
|
+
})();
|
|
421
|
+
</script>
|
|
422
|
+
<div class="cfx">
|
|
423
|
+
<div class="pull-right">
|
|
424
|
+
<a href="/signin" class="subscribe-button subscription_12813 btn-submit btn-submit-subscribe requires-login" data-json="{'tag':'12813','logged_in':false,'item_title':'Music Videos','feature':'subscriptions','type':'original_series','location':'Music Videos video'}"><span>Subscribe</span></a>
|
|
425
|
+
<a href="/submit/video" class="btn-submit btn-submit-video">
|
|
426
|
+
<span>Submit a Video</span>
|
|
427
|
+
</a>
|
|
428
|
+
</div>
|
|
429
|
+
<div class="description">
|
|
430
|
+
<p>Heyyy wealthy ladies!<br />
|
|
431
|
+
"Mitt Romney Style" is now available on <a href="https://itunes.apple.com/us/album/mitt-romney-style-gangnam/id570275249">iTunes</a></p> </div>
|
|
432
|
+
<p class="byline">
|
|
433
|
+
From <a class="ga_feature_usage" data-ga-feature="Author User Page" href="/user/101536">CH Staff</a> on <time class="date">October 2, 2012</time>
|
|
434
|
+
</p> </div>
|
|
435
|
+
<div id="leftovers">
|
|
436
|
+
<ul class="nav nav-tabs nav-tabs-4">
|
|
437
|
+
<li class="active"><a href="#recommended" data-toggle="tab">Recommended</a></li>
|
|
438
|
+
<li><a href="#comments" id="disabled-comments">Comments (<fb:comments-count href="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody" class="fb-comments-count-update"></fb:comments-count>)</a></li>
|
|
439
|
+
<li><a href="#lyrics" data-toggle="tab">Lyrics</a></li>
|
|
440
|
+
<li><a href="#credits" data-toggle="tab">Credits</a></li>
|
|
441
|
+
</ul>
|
|
442
|
+
<div class="tab-content">
|
|
443
|
+
<div id="recommended" class="tab-pane active">
|
|
444
|
+
<div class="media-list">
|
|
445
|
+
<div class="media-list-entries cfx ga_feature_usage" data-ga-feature="Listing">
|
|
446
|
+
<article class="entry type-video">
|
|
447
|
+
<div class="info-bar">
|
|
448
|
+
<a href="/videos" class="media-type">video</a>
|
|
449
|
+
</div>
|
|
450
|
+
<div class="entry-content cfx">
|
|
451
|
+
<a href="/video/6853761/the-worst-gangnam-style-cover-by-far" class="thumb unstyled pull-left">
|
|
452
|
+
<img src="http://0.media.collegehumor.cvcdn.com/48/75/3e6c1259043b6774a59166f57d0d4d4e-the-worst-gangnam-style-cover-by-far.jpg" width="175" height="98" alt="The Worst Gangnam Style Cover, By Far">
|
|
453
|
+
<i class="play-btn">▶</i>
|
|
454
|
+
</a>
|
|
455
|
+
<div class="entry-body">
|
|
456
|
+
<h1 class="entry-header"><a href="/video/6853761/the-worst-gangnam-style-cover-by-far">The Worst Gangnam Style Cover, By Far</a></h1>
|
|
457
|
+
<div class="entry-meta"><p class="byline">
|
|
458
|
+
via <a href="http://www.youtube.com/user/Cym4tic?feature=watch">Cym4tic</a> <time class="date">December 5, 2012</time>
|
|
459
|
+
</p></div>
|
|
460
|
+
<p>Spartan High School makes a Gangnam Style parody so terrible we're convinced it must have been intentional.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
461
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6853761/the-worst-gangnam-style-cover-by-far" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
462
|
+
</div>
|
|
463
|
+
</div>
|
|
464
|
+
</div>
|
|
465
|
+
</div>
|
|
466
|
+
</article> <article class="entry type-video">
|
|
467
|
+
<div class="info-bar">
|
|
468
|
+
<a href="/videos" class="media-type">video</a>
|
|
469
|
+
</div>
|
|
470
|
+
<div class="entry-content cfx">
|
|
471
|
+
<a href="/video/6839271/behind-the-scenes-on-mitt-romney-style" class="thumb unstyled pull-left">
|
|
472
|
+
<img src="http://1.media.collegehumor.cvcdn.com/40/34/2d53593b1febec01cf12719134fee2c1-behind-the-scenes-on-mitt-romney-style.jpg" width="175" height="98" alt="Behind-the-Scenes on Mitt Romney Style">
|
|
473
|
+
<i class="play-btn">▶</i>
|
|
474
|
+
</a>
|
|
475
|
+
<div class="entry-body">
|
|
476
|
+
<h1 class="entry-header"><a href="/video/6839271/behind-the-scenes-on-mitt-romney-style">Behind-the-Scenes on Mitt Romney Style</a></h1>
|
|
477
|
+
<div class="entry-meta"><p class="byline">
|
|
478
|
+
From <a class="ga_feature_usage" data-ga-feature="Author User Page" href="/user/101536">CH Staff</a> on <time class="date">October 24, 2012</time>
|
|
479
|
+
</p></div>
|
|
480
|
+
<p>Mitt's a baller backstage too.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
481
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6839271/behind-the-scenes-on-mitt-romney-style" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
482
|
+
</div>
|
|
483
|
+
</div>
|
|
484
|
+
</div>
|
|
485
|
+
</div>
|
|
486
|
+
</article> <article class="entry type-video">
|
|
487
|
+
<div class="info-bar">
|
|
488
|
+
<a href="/videos" class="media-type">video</a>
|
|
489
|
+
</div>
|
|
490
|
+
<div class="entry-content cfx">
|
|
491
|
+
<a href="/video/6766314/charles-barkley-to-mitt-romney-youre-going-down-bro" class="thumb unstyled pull-left">
|
|
492
|
+
<img src="http://2.media.collegehumor.cvcdn.com/67/16/ed55bc934116b3f283f0ed13c12d67e0.jpg" width="175" height="98" alt="Charles Barkley to Mitt Romney: &quot;You're going down, bro.&quot;">
|
|
493
|
+
<i class="play-btn">▶</i>
|
|
494
|
+
</a>
|
|
495
|
+
<div class="entry-body">
|
|
496
|
+
<h1 class="entry-header"><a href="/video/6766314/charles-barkley-to-mitt-romney-youre-going-down-bro">Charles Barkley to Mitt Romney: "You're going down, bro."</a></h1>
|
|
497
|
+
<div class="entry-meta"><p class="byline">
|
|
498
|
+
From <a href="http://www.youtube.com/user/NewsPoliticsNow">NewsPoliticsNow</a> on <time class="date">May 7, 2012</time>
|
|
499
|
+
</p></div>
|
|
500
|
+
<p>Rejected.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
501
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6766314/charles-barkley-to-mitt-romney-youre-going-down-bro" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
502
|
+
</div>
|
|
503
|
+
</div>
|
|
504
|
+
</div>
|
|
505
|
+
</div>
|
|
506
|
+
</article> <article class="entry type-video">
|
|
507
|
+
<div class="info-bar">
|
|
508
|
+
<a href="/videos" class="media-type">video</a>
|
|
509
|
+
</div>
|
|
510
|
+
<div class="entry-content cfx">
|
|
511
|
+
<a href="/video/6770158/james-lipton-gives-mitt-romney-acting-advice" class="thumb unstyled pull-left">
|
|
512
|
+
<img src="http://2.media.collegehumor.cvcdn.com/89/68/a4c22da531e6a663f1940e7ce966f120-james-lipton-gives-mitt-romney-acting-advice.jpg" width="175" height="98" alt="James Lipton Gives Mitt Romney Acting Advice">
|
|
513
|
+
<i class="play-btn">▶</i>
|
|
514
|
+
</a>
|
|
515
|
+
<div class="entry-body">
|
|
516
|
+
<h1 class="entry-header"><a href="/video/6770158/james-lipton-gives-mitt-romney-acting-advice">James Lipton Gives Mitt Romney Acting Advice</a></h1>
|
|
517
|
+
<div class="entry-meta"><p class="byline">
|
|
518
|
+
From <a href="http://nymag.com/daily/intel/2012/05/how-to-act-human-liptons-advice-for-romney.html">NY Mag</a> on <time class="date">May 16, 2012</time>
|
|
519
|
+
</p></div>
|
|
520
|
+
<p>Mitt's performance thus far has been hardly scrumtralescent.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
521
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6770158/james-lipton-gives-mitt-romney-acting-advice" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
522
|
+
</div>
|
|
523
|
+
</div>
|
|
524
|
+
</div>
|
|
525
|
+
</div>
|
|
526
|
+
</article> <article class="entry type-video">
|
|
527
|
+
<div class="info-bar">
|
|
528
|
+
<a href="/videos" class="media-type">video</a>
|
|
529
|
+
<a href="/sketch" class="din">Sketch</a>
|
|
530
|
+
</div>
|
|
531
|
+
<div class="entry-content cfx">
|
|
532
|
+
<a href="/video/6836105/mitt-romney-wont-release-his-spotify-playlist" class="thumb unstyled pull-left">
|
|
533
|
+
<img src="http://2.media.collegehumor.cvcdn.com/29/50/079b037686a49506d4cdf13970d8007f-mitt-romney-wont-release-his-spotify-playlist.jpg" width="175" height="98" alt="Mitt Romney Won't Release His Spotify Playlist">
|
|
534
|
+
<span class="badge ">Original</span>
|
|
535
|
+
<i class="play-btn">▶</i>
|
|
536
|
+
</a>
|
|
537
|
+
<div class="entry-body">
|
|
538
|
+
<h1 class="entry-header"><a href="/video/6836105/mitt-romney-wont-release-his-spotify-playlist">Mitt Romney Won't Release His Spotify Playlist</a></h1>
|
|
539
|
+
<div class="entry-meta"><p class="byline">
|
|
540
|
+
From <a class="ga_feature_usage" data-ga-feature="Author User Page" href="/user/101536">CH Staff</a> on <time class="date">October 16, 2012</time>
|
|
541
|
+
</p></div>
|
|
542
|
+
<p>Let's keep house music out of the White House.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
543
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6836105/mitt-romney-wont-release-his-spotify-playlist" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
544
|
+
</div>
|
|
545
|
+
</div>
|
|
546
|
+
</div>
|
|
547
|
+
</div>
|
|
548
|
+
</article> <article class="entry type-video">
|
|
549
|
+
<div class="info-bar">
|
|
550
|
+
<a href="/videos" class="media-type">video</a>
|
|
551
|
+
<a href="/sketch" class="din">Sketch</a>
|
|
552
|
+
</div>
|
|
553
|
+
<div class="entry-content cfx">
|
|
554
|
+
<a href="/video/6420466/the-problem-with-jeggings" class="thumb unstyled pull-left">
|
|
555
|
+
<img src="http://1.media.collegehumor.cvcdn.com/24/70/60688f8cefa0a70e205e00b1488c8a60.jpg" width="175" height="98" alt="The Problem with Jeggings">
|
|
556
|
+
<span class="badge ">Original</span>
|
|
557
|
+
<i class="play-btn">▶</i>
|
|
558
|
+
</a>
|
|
559
|
+
<div class="entry-body">
|
|
560
|
+
<h1 class="entry-header"><a href="/video/6420466/the-problem-with-jeggings">The Problem with Jeggings</a></h1>
|
|
561
|
+
<div class="entry-meta"><p class="byline">
|
|
562
|
+
<time class="date">February 8, 2011</time>
|
|
563
|
+
</p></div>
|
|
564
|
+
<p>Nudity is not a style.</p> <div class="pull-right"><div class="fb-actions cfx">
|
|
565
|
+
<div class="fb-like" data-href="http://www.collegehumor.com/video/6420466/the-problem-with-jeggings" data-width="0" data-colorscheme="light" data-show-faces="false" data-font="arial" data-header="false" data-stream="false" data-layout="button_count"></div>
|
|
566
|
+
</div>
|
|
567
|
+
</div>
|
|
568
|
+
</div>
|
|
569
|
+
</div>
|
|
570
|
+
</article> </div>
|
|
571
|
+
<div id="div-gpt-ad-685162"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("div-gpt-ad-685162"); }); }</script></div> <div id="nrelate_related_placeholder" class="ga_feature_usage" data-ga-feature="Third party Listing"></div>
|
|
572
|
+
<!-- Lazy load nRelate JS in onload.js @ 172 -->
|
|
573
|
+
</div>
|
|
574
|
+
</div>
|
|
575
|
+
<div id="lyrics" class="tab-pane">
|
|
576
|
+
<div class="title"><h1>Mitt Romney Style (Gangnam Style Parody)</h1>
|
|
577
|
+
<span class="author">Written by Adam Conover & Emily Axford</span>
|
|
578
|
+
</div>
|
|
579
|
+
<p>Mitt Mitt Romney Style!<br />
|
|
580
|
+
Romney Style!<br />
|
|
581
|
+
<br />
|
|
582
|
+
I got a horse in the Olympics girl but I don't even watch 'em<br />
|
|
583
|
+
In and out of tax loopholes cause I'm so f***in' awesome<br />
|
|
584
|
+
Bitch it's Friday night you know we benefit hoppin'<br />
|
|
585
|
+
Check my conspicuous consumption<br />
|
|
586
|
+
<br />
|
|
587
|
+
I got distinguished hair<br />
|
|
588
|
+
And a private jet that flies me way up in the air<br />
|
|
589
|
+
Buy and sell ya company with so much savoir faire<br />
|
|
590
|
+
I bought a mansion for each one of my two dozen heirs<br />
|
|
591
|
+
Straight up millionaire<br />
|
|
592
|
+
<br />
|
|
593
|
+
Affluence, Extravagance, that's Mitt (hey!)<br />
|
|
594
|
+
Yeah that's so Mitt (hey!)<br />
|
|
595
|
+
Profits, investments! That's Mitt! (hey!)<br />
|
|
596
|
+
Yeah that's so Mitt! (hey!)<br />
|
|
597
|
+
You should elect me cause I got so much mon-ay AY AY AY AY AYYYYY ------<br />
|
|
598
|
+
<br />
|
|
599
|
+
Mitt Mitt Romney Style!<br />
|
|
600
|
+
Romney style<br />
|
|
601
|
+
Heyyyyyyy! Wealthy ladies!<br />
|
|
602
|
+
Mitt! Mitt! Mitt Mitt! Mitt Mitt Romney style<br />
|
|
603
|
+
<br />
|
|
604
|
+
Yo I'm the vee pee nominee and yo budget I be cuttin'<br />
|
|
605
|
+
I got the eyes and body so you know I'm gon be struttin'<br />
|
|
606
|
+
I'll cut ya social safety net you losers ain't got nothin'<br />
|
|
607
|
+
Gotta stop snoozin' start hustlin'<br />
|
|
608
|
+
<br />
|
|
609
|
+
I got large amounts<br />
|
|
610
|
+
in Swiss Bank accounts<br />
|
|
611
|
+
Norris and Eastwood in my vacation house<br />
|
|
612
|
+
Talkin' wine and cheese<br />
|
|
613
|
+
Mad Ivy degrees<br />
|
|
614
|
+
Baby baby I got butlers just for my TP<br />
|
|
615
|
+
YOU KNOW WHAT I'M SAYIN?<br />
|
|
616
|
+
<br />
|
|
617
|
+
Heyyyyyy! Wealthy ladies!<br />
|
|
618
|
+
Mitt! Mitt! Mitt Mitt! Mitt Romney style<br />
|
|
619
|
+
Heyyyyyy! Kissin' babies!<br />
|
|
620
|
+
Mitt! Mitt! Mitt Mitt! Mitt Romney style!<br />
|
|
621
|
+
<br />
|
|
622
|
+
Mitt Romney Style!</p>
|
|
623
|
+
</div>
|
|
624
|
+
<div id="credits" class="tab-pane cfx">
|
|
625
|
+
<div id="credit_cast" class="cred_col">
|
|
626
|
+
<table id="cast" cellspacing="10">
|
|
627
|
+
<tr>
|
|
628
|
+
<td colspan="2" class="type">cast</td>
|
|
629
|
+
</tr>
|
|
630
|
+
<tr>
|
|
631
|
+
<td class="title">Mitt Romney</td><td>Matt Walton</td></tr>
|
|
632
|
+
<tr>
|
|
633
|
+
<td class="title">Paul Ryan</td><td>Brandon J Sornberger</td></tr>
|
|
634
|
+
<tr>
|
|
635
|
+
<td class="title">Ann Romney</td><td>Jeanne Taylor</td></tr>
|
|
636
|
+
<tr>
|
|
637
|
+
<td class="title">Caddy</td><td>Matt Moseley</td></tr>
|
|
638
|
+
<tr>
|
|
639
|
+
<td class="title">Clint Eastwood</td><td>Jim Krestalude</td></tr>
|
|
640
|
+
<tr>
|
|
641
|
+
<td class="title">Chuck Norris</td><td>Mark O'Connor</td></tr>
|
|
642
|
+
<tr>
|
|
643
|
+
<td class="title">Chris Christie</td><td>Nick Mundy</td></tr>
|
|
644
|
+
<tr>
|
|
645
|
+
<td class="title">Old Woman in Garage</td><td>Elaine Partnow</td></tr>
|
|
646
|
+
<tr>
|
|
647
|
+
<td class="title">Parking Attendant</td><td><a href="/user/2505261">David Kerns</a>
|
|
648
|
+
</td>
|
|
649
|
+
</tr>
|
|
650
|
+
<tr>
|
|
651
|
+
<td class="title">Butler</td><td>John Holloway</td></tr>
|
|
652
|
+
<tr>
|
|
653
|
+
<td class="title">Small Business Owner</td><td>Joseph Callari</td></tr>
|
|
654
|
+
<tr>
|
|
655
|
+
<td class="title">Romney Supporter</td><td>Katy Dore</td></tr>
|
|
656
|
+
<tr>
|
|
657
|
+
<td class="title">
|
|
658
|
+
</td>
|
|
659
|
+
<td>Judy Durning</td></tr>
|
|
660
|
+
<tr>
|
|
661
|
+
<td class="title">
|
|
662
|
+
</td>
|
|
663
|
+
<td>Casey O'Keefe</td></tr>
|
|
664
|
+
<tr>
|
|
665
|
+
<td class="title">
|
|
666
|
+
</td>
|
|
667
|
+
<td>Jennifer Jhaveri</td></tr>
|
|
668
|
+
<tr>
|
|
669
|
+
<td class="title">
|
|
670
|
+
</td>
|
|
671
|
+
<td>Phil Hunter</td></tr>
|
|
672
|
+
<tr>
|
|
673
|
+
<td class="title">
|
|
674
|
+
</td>
|
|
675
|
+
<td>Sarah McDermott</td></tr>
|
|
676
|
+
<tr>
|
|
677
|
+
<td class="title">
|
|
678
|
+
</td>
|
|
679
|
+
<td>Michael Kelly</td></tr>
|
|
680
|
+
<tr>
|
|
681
|
+
<td class="title">Mitt Romney Voice</td><td>Adam Conover</td></tr>
|
|
682
|
+
<tr>
|
|
683
|
+
<td class="title">Paul Ryan Voice</td><td><a href="/user/3443480">Brian Murphy</a>
|
|
684
|
+
</td>
|
|
685
|
+
</tr>
|
|
686
|
+
</table>
|
|
687
|
+
</div>
|
|
688
|
+
<div id="credit_crew" class="cred_col">
|
|
689
|
+
<table id="crew" cellspacing="10">
|
|
690
|
+
<tr>
|
|
691
|
+
<td colspan="2" class="type">crew</td>
|
|
692
|
+
</tr>
|
|
693
|
+
<tr>
|
|
694
|
+
<td class="title">Director</td><td><a href="/user/124229">Vincent Peone</a>
|
|
695
|
+
</td>
|
|
696
|
+
</tr>
|
|
697
|
+
<tr>
|
|
698
|
+
<td class="title">Writer</td><td>Adam Conover</td></tr>
|
|
699
|
+
<tr>
|
|
700
|
+
<td class="title">
|
|
701
|
+
</td>
|
|
702
|
+
<td>Emily Axford</td></tr>
|
|
703
|
+
<tr>
|
|
704
|
+
<td class="title">Producer</td><td><a href="/user/5509633">Jon Wolf</a>
|
|
705
|
+
</td>
|
|
706
|
+
</tr>
|
|
707
|
+
<tr>
|
|
708
|
+
<td class="title">Cinematography</td><td>Adam Bricker</td></tr>
|
|
709
|
+
<tr>
|
|
710
|
+
<td class="title">Editor</td><td>Nick Barbieri</td></tr>
|
|
711
|
+
<tr>
|
|
712
|
+
<td class="title">President of Original Content</td><td><a href="/user/378">Sam Reich</a>
|
|
713
|
+
</td>
|
|
714
|
+
</tr>
|
|
715
|
+
<tr>
|
|
716
|
+
<td class="title">Vice President of Production / Executive Producer</td><td><a href="/user/1755952">Spencer Griffin</a>
|
|
717
|
+
</td>
|
|
718
|
+
</tr>
|
|
719
|
+
<tr>
|
|
720
|
+
<td class="title">Director of Production</td><td><a href="/user/1295549">Sam Sparks</a>
|
|
721
|
+
</td>
|
|
722
|
+
</tr>
|
|
723
|
+
<tr>
|
|
724
|
+
<td class="title">Director of Post Production</td><td><a href="/user/1772808">Michael Schaubach</a>
|
|
725
|
+
</td>
|
|
726
|
+
</tr>
|
|
727
|
+
<tr>
|
|
728
|
+
<td class="title">Assistant Production Manager</td><td><a href="/user/6505494">Jeremy Reitz</a>
|
|
729
|
+
</td>
|
|
730
|
+
</tr>
|
|
731
|
+
<tr>
|
|
732
|
+
<td class="title">Post Production Producer</td><td><a href="/user/2435603">Lacy Wittman</a>
|
|
733
|
+
</td>
|
|
734
|
+
</tr>
|
|
735
|
+
<tr>
|
|
736
|
+
<td class="title">Art Director</td><td>Zach Silverstein</td></tr>
|
|
737
|
+
<tr>
|
|
738
|
+
<td class="title">Hair and Makeup</td><td>Erin Nichols</td></tr>
|
|
739
|
+
<tr>
|
|
740
|
+
<td class="title">Hair and Makeup Assistant</td><td>Kate Mullin</td></tr>
|
|
741
|
+
<tr>
|
|
742
|
+
<td class="title">Script Supervisor</td><td>Kalyn Heywood</td></tr>
|
|
743
|
+
<tr>
|
|
744
|
+
<td class="title">Production Coordinator</td><td>Sam Kirkpatrick</td></tr>
|
|
745
|
+
<tr>
|
|
746
|
+
<td class="title">1st Assistant Director</td><td>Chad Witt</td></tr>
|
|
747
|
+
<tr>
|
|
748
|
+
<td class="title">Visual Effects</td><td><a href="http://www.gloostudios.com/">Gloo Studios</a>
|
|
749
|
+
</td>
|
|
750
|
+
</tr>
|
|
751
|
+
<tr>
|
|
752
|
+
<td class="title">Graphics</td><td>Paul Westover</td></tr>
|
|
753
|
+
<tr>
|
|
754
|
+
<td class="title">Choreography</td><td>Sara Von Gillern</td></tr>
|
|
755
|
+
<tr>
|
|
756
|
+
<td class="title">1st Assistant Camera</td><td>Charlie Panian</td></tr>
|
|
757
|
+
<tr>
|
|
758
|
+
<td class="title">2nd Assistant Camera</td><td>Drew Dawson</td></tr>
|
|
759
|
+
<tr>
|
|
760
|
+
<td class="title">
|
|
761
|
+
</td>
|
|
762
|
+
<td>Carissa Dorson</td></tr>
|
|
763
|
+
<tr>
|
|
764
|
+
<td class="title">Jib Operator</td><td>Ryan Elliott</td></tr>
|
|
765
|
+
<tr>
|
|
766
|
+
<td class="title">Playback Operator</td><td>Dru Korab</td></tr>
|
|
767
|
+
<tr>
|
|
768
|
+
<td class="title">
|
|
769
|
+
</td>
|
|
770
|
+
<td>Colin Mika</td></tr>
|
|
771
|
+
<tr>
|
|
772
|
+
<td class="title">Gaffer</td><td>Zack Savitz</td></tr>
|
|
773
|
+
<tr>
|
|
774
|
+
<td class="title">Key Grip</td><td><a href="/user/880322">Ranjeet Rajan</a>
|
|
775
|
+
</td>
|
|
776
|
+
</tr>
|
|
777
|
+
<tr>
|
|
778
|
+
<td class="title">Best Boy Electric</td><td>Terrell Butler</td></tr>
|
|
779
|
+
<tr>
|
|
780
|
+
<td class="title">Best Boy Grip</td><td>Mark Farney</td></tr>
|
|
781
|
+
<tr>
|
|
782
|
+
<td class="title">
|
|
783
|
+
</td>
|
|
784
|
+
<td>Avihal Yaffe</td></tr>
|
|
785
|
+
<tr>
|
|
786
|
+
<td class="title">Wardrobe</td><td>Alisha Silverstein</td></tr>
|
|
787
|
+
<tr>
|
|
788
|
+
<td class="title">Assistant Editor</td><td>Phil Fox</td></tr>
|
|
789
|
+
<tr>
|
|
790
|
+
<td class="title">Post Production Coordinator</td><td><a href="/user/2702413">Amanda Madden</a>
|
|
791
|
+
</td>
|
|
792
|
+
</tr>
|
|
793
|
+
<tr>
|
|
794
|
+
<td class="title">Music</td><td>Wellington Lora</td></tr>
|
|
795
|
+
<tr>
|
|
796
|
+
<td class="title">Production Accountant</td><td><a href="/user/2669776">Christine Rodriguez</a>
|
|
797
|
+
</td>
|
|
798
|
+
</tr>
|
|
799
|
+
<tr>
|
|
800
|
+
<td class="title">Assistant Production Accountant</td><td>Erin Marshall</td></tr>
|
|
801
|
+
<tr>
|
|
802
|
+
<td class="title">
|
|
803
|
+
</td>
|
|
804
|
+
<td>Eddie Kim</td></tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td class="title">Production Assistant</td><td>Shane Crown</td></tr>
|
|
807
|
+
<tr>
|
|
808
|
+
<td class="title">
|
|
809
|
+
</td>
|
|
810
|
+
<td>Jason Fassler</td></tr>
|
|
811
|
+
<tr>
|
|
812
|
+
<td class="title">
|
|
813
|
+
</td>
|
|
814
|
+
<td>Devin Hassan</td></tr>
|
|
815
|
+
<tr>
|
|
816
|
+
<td class="title">Intern</td><td>Stephanie Militello</td></tr>
|
|
817
|
+
<tr>
|
|
818
|
+
<td class="title">
|
|
819
|
+
</td>
|
|
820
|
+
<td>Frieda Beckerman</td></tr>
|
|
821
|
+
<tr>
|
|
822
|
+
<td class="title">
|
|
823
|
+
</td>
|
|
824
|
+
<td>Alyssa Thomas</td></tr>
|
|
825
|
+
</table>
|
|
826
|
+
</div>
|
|
827
|
+
</div>
|
|
828
|
+
</div>
|
|
829
|
+
<div id="comments-third-party">
|
|
830
|
+
<div class="heading">Comments (<fb:comments-count href="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody" class="fb-comments-count-update"></fb:comments-count>)</div>
|
|
831
|
+
<div class="well well-padded">
|
|
832
|
+
<div class="fb-comments fb-comments-update" data-href="http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody" data-width="582" data-colorscheme="light" data-num-posts="10" data-order-by="social" data-mobile="auto-detect"></div>
|
|
833
|
+
</div>
|
|
834
|
+
</div></div>
|
|
835
|
+
</div>
|
|
836
|
+
</article>
|
|
837
|
+
<div class="sidebar">
|
|
838
|
+
<div class="box"><div id="div-gpt-ad-35878945"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("div-gpt-ad-35878945"); }); }</script></div></div>
|
|
839
|
+
<div id="hotlinks" class="box ga_feature_usage" data-ga-feature="Sidebar - HotLinks Module">
|
|
840
|
+
<div class="heading">Best Around the Web</div>
|
|
841
|
+
<div class="alt-listing cfx" data-ga-feature="Listing">
|
|
842
|
+
<div class="media">
|
|
843
|
+
<a href="/o/6906246/url/silly-girls" rel="external" title="Silly girls..." data-tracking-label="/link/6906246" class="thumb">
|
|
844
|
+
<img src="http://0.media.collegehumor.cvcdn.com/82/77/8f7c96e9683fa0581575a784273039dd-silly-girls.jpg" width="100" height="56" alt="Silly girls...">
|
|
845
|
+
<span class="title">Silly girls...</span>
|
|
846
|
+
<span class="count">
|
|
847
|
+
<span class="num">1</span>
|
|
848
|
+
</span>
|
|
849
|
+
</a>
|
|
850
|
+
</div>
|
|
851
|
+
<div class="media">
|
|
852
|
+
<a href="/o/6906247/url/thats-just-wrong" rel="external" title="That's just wrong." data-tracking-label="/link/6906247" class="thumb">
|
|
853
|
+
<img src="http://2.media.collegehumor.cvcdn.com/41/30/4e3b81677dc70c810341a3193f474ddc-thats-just-wrong.jpg" width="100" height="56" alt="That's just wrong.">
|
|
854
|
+
<span class="title">That's just wrong.</span>
|
|
855
|
+
<span class="count">
|
|
856
|
+
<span class="num">2</span>
|
|
857
|
+
</span>
|
|
858
|
+
</a>
|
|
859
|
+
</div>
|
|
860
|
+
<div class="media">
|
|
861
|
+
<a href="/o/6906252/url/hottest-anastasia-gifs" rel="external" title="Hottest Anastasia GIFs" data-tracking-label="/link/6906252" class="thumb">
|
|
862
|
+
<img src="http://0.media.collegehumor.cvcdn.com/70/41/c962eb4fc6f5de8b695c61df8dd606a4-hottest-anastasia-gifs.jpg" width="100" height="56" alt="Hottest Anastasia GIFs">
|
|
863
|
+
<span class="title">Hottest Anastasia GIFs</span>
|
|
864
|
+
<span class="count">
|
|
865
|
+
<span class="num">3</span>
|
|
866
|
+
</span>
|
|
867
|
+
</a>
|
|
868
|
+
</div>
|
|
869
|
+
<div class="media">
|
|
870
|
+
<a href="/o/6906248/url/5-movies-better-than-the-book" rel="external" title="5 movies better than the book" data-tracking-label="/link/6906248" class="thumb">
|
|
871
|
+
<img src="http://0.media.collegehumor.cvcdn.com/82/97/631590ca382de1c3a06952c8d3402624-5-movies-better-than-the-book.jpg" width="100" height="56" alt="5 movies better than the book">
|
|
872
|
+
<span class="title">5 movies better than the book</span>
|
|
873
|
+
<span class="count">
|
|
874
|
+
<span class="num">4</span>
|
|
875
|
+
</span>
|
|
876
|
+
</a>
|
|
877
|
+
</div>
|
|
878
|
+
<div class="media">
|
|
879
|
+
<a href="/o/6906249/url/the-black-sheep-from-famous-families" rel="external" title="The black sheep from famous families" data-tracking-label="/link/6906249" class="thumb">
|
|
880
|
+
<img src="http://1.media.collegehumor.cvcdn.com/53/99/5ea12cce4779bed9405d20dc3c263805-the-black-sheep-from-famous-families.jpg" width="100" height="56" alt="The black sheep from famous families">
|
|
881
|
+
<span class="title">The black sheep from famous families</span>
|
|
882
|
+
<span class="count">
|
|
883
|
+
<span class="num">5</span>
|
|
884
|
+
</span>
|
|
885
|
+
</a>
|
|
886
|
+
</div>
|
|
887
|
+
<div class="media">
|
|
888
|
+
<a href="/o/6906251/url/drunk-ron-weasley" rel="external" title="Drunk Ron Weasley" data-tracking-label="/link/6906251" class="thumb">
|
|
889
|
+
<img src="http://0.media.collegehumor.cvcdn.com/15/92/ade8ef9e026428f17e0675c5851bc10b-drunk-ron-weasley.jpg" width="100" height="56" alt="Drunk Ron Weasley">
|
|
890
|
+
<span class="title">Drunk Ron Weasley</span>
|
|
891
|
+
<span class="count">
|
|
892
|
+
<span class="num">6</span>
|
|
893
|
+
</span>
|
|
894
|
+
</a>
|
|
895
|
+
</div>
|
|
896
|
+
<div class="media">
|
|
897
|
+
<a href="/o/6906244/url/mouth-watering-august" rel="external" title="Mouth-watering August" data-tracking-label="/link/6906244" class="thumb">
|
|
898
|
+
<img src="http://0.media.collegehumor.cvcdn.com/41/49/755d962d673667650e6c4889fc690462-mouth-watering-august.jpg" width="100" height="56" alt="Mouth-watering August">
|
|
899
|
+
<span class="title">Mouth-watering August</span>
|
|
900
|
+
<span class="count">
|
|
901
|
+
<span class="num">7</span>
|
|
902
|
+
</span>
|
|
903
|
+
</a>
|
|
904
|
+
</div>
|
|
905
|
+
<div class="media">
|
|
906
|
+
<a href="/o/6906245/url/17-sad-pugs" rel="external" title="17 sad pugs" data-tracking-label="/link/6906245" class="thumb">
|
|
907
|
+
<img src="http://2.media.collegehumor.cvcdn.com/12/52/ba1c66492afd1ffa54ba9f50a5cf9687-17-sad-pugs.jpg" width="100" height="56" alt="17 sad pugs">
|
|
908
|
+
<span class="title">17 sad pugs</span>
|
|
909
|
+
<span class="count">
|
|
910
|
+
<span class="num">8</span>
|
|
911
|
+
</span>
|
|
912
|
+
</a>
|
|
913
|
+
</div>
|
|
914
|
+
<div class="media">
|
|
915
|
+
<a href="/o/6906015/url/hottest-cosplays-of-comic-con" rel="external" title="Hottest cosplays of Comic-Con" data-tracking-label="/link/6906015" class="thumb">
|
|
916
|
+
<img src="http://0.media.collegehumor.cvcdn.com/82/69/94544e639b3baa3565270ea1195f41e1-hottest-cosplays-of-comic-con.jpg" width="100" height="56" alt="Hottest cosplays of Comic-Con">
|
|
917
|
+
<span class="title">Hottest cosplays of Comic-Con</span>
|
|
918
|
+
<span class="count">
|
|
919
|
+
<span class="num">9</span>
|
|
920
|
+
</span>
|
|
921
|
+
</a>
|
|
922
|
+
</div>
|
|
923
|
+
<div class="media">
|
|
924
|
+
<a href="/o/6906001/url/eyegasms" rel="external" title="Eyegasms" data-tracking-label="/link/6906001" class="thumb">
|
|
925
|
+
<img src="http://0.media.collegehumor.cvcdn.com/57/26/454f4ace86e877ea2a0b7a66029e4891-eyegasms.jpg" width="100" height="56" alt="Eyegasms">
|
|
926
|
+
<span class="title">Eyegasms</span>
|
|
927
|
+
<span class="count">
|
|
928
|
+
<span class="num">10</span>
|
|
929
|
+
</span>
|
|
930
|
+
</a>
|
|
931
|
+
</div>
|
|
932
|
+
<a href="/hotlinks" class="more-link pull-right">See All Best Around the Web <span>»</span></a>
|
|
933
|
+
</div>
|
|
934
|
+
</div>
|
|
935
|
+
<div id="hall-of-fame" class="box ga_feature_usage" data-ga-feature="Sidebar - Hall of Fame Module">
|
|
936
|
+
<div class="heading">Hall of Fame</div>
|
|
937
|
+
<div class="media-list">
|
|
938
|
+
<div class="media-list-entries cfx ga_feature_usage" data-ga-feature="Listing">
|
|
939
|
+
<div class="entry">
|
|
940
|
+
<div class="well">
|
|
941
|
+
<div class="info-bar info-bar-brand">
|
|
942
|
+
<a href="/videos" class="media-type">video</a>
|
|
943
|
+
<a href="/animation" class="din">Animation</a>
|
|
944
|
+
</div>
|
|
945
|
+
<a href="/video/5383697/mario-and-princess-sex-tape" class="thumb unstyled">
|
|
946
|
+
<img src="http://2.media.collegehumor.cvcdn.com/31/83/ec31bbf035d0ee8a7870740f1a563fc2.jpg" width="293" height="164" alt="Mario and Princess Sex Tape">
|
|
947
|
+
<i class="play-btn">▶</i>
|
|
948
|
+
</a>
|
|
949
|
+
</div>
|
|
950
|
+
<div class="entry-body">
|
|
951
|
+
<span class="top-viewed">+500,000 views</span> <h1 class="entry-header"><a href="/video/5383697/mario-and-princess-sex-tape">Mario and Princess Sex Tape</a></h1>
|
|
952
|
+
</div>
|
|
953
|
+
</div>
|
|
954
|
+
<div class="entry">
|
|
955
|
+
<div class="well">
|
|
956
|
+
<div class="info-bar info-bar-brand">
|
|
957
|
+
<a href="/videos" class="media-type">video</a>
|
|
958
|
+
<a href="/prankwar" class="din">Prank War</a>
|
|
959
|
+
</div>
|
|
960
|
+
<a href="/video/3922232/prank-war-7-the-half-million-dollar-shot" class="thumb unstyled">
|
|
961
|
+
<img src="http://2.media.collegehumor.cvcdn.com/43/68/a41a6194a1f2bcc7ab71190061482eb3-prank-war-7-the-half-million-dollar-shot.jpg" width="293" height="164" alt="Prank War 7: The Half Million Dollar Shot">
|
|
962
|
+
<i class="play-btn">▶</i>
|
|
963
|
+
</a>
|
|
964
|
+
</div>
|
|
965
|
+
<div class="entry-body">
|
|
966
|
+
<h1 class="entry-header"><a href="/video/3922232/prank-war-7-the-half-million-dollar-shot">Prank War 7: The Half Million Dollar Shot</a></h1>
|
|
967
|
+
</div>
|
|
968
|
+
</div>
|
|
969
|
+
<div class="entry">
|
|
970
|
+
<div class="well">
|
|
971
|
+
<div class="info-bar info-bar-brand">
|
|
972
|
+
<a href="/videos" class="media-type">video</a>
|
|
973
|
+
<a href="/sketch" class="din">Sketch</a>
|
|
974
|
+
</div>
|
|
975
|
+
<a href="/video/6897575/camp-first-day" class="thumb unstyled">
|
|
976
|
+
<img src="http://1.media.collegehumor.cvcdn.com/78/90/9fad263ddfd655af7ee21be5dc0cfb2d-camp-first-day.jpg" width="293" height="164" alt="CAMP: First Day">
|
|
977
|
+
<i class="play-btn">▶</i>
|
|
978
|
+
</a>
|
|
979
|
+
</div>
|
|
980
|
+
<div class="entry-body">
|
|
981
|
+
<h1 class="entry-header"><a href="/video/6897575/camp-first-day">CAMP: First Day</a></h1>
|
|
982
|
+
</div>
|
|
983
|
+
</div>
|
|
984
|
+
</div>
|
|
985
|
+
</div>
|
|
986
|
+
</div>
|
|
987
|
+
<div class="box"><div id="div-gpt-ad-85608265"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("div-gpt-ad-85608265"); }); }</script></div></div></div>
|
|
988
|
+
<script type="text/javascript">
|
|
989
|
+
jument.analytics.custom_variable.set('1', 'content-type', 'video');
|
|
990
|
+
jument.analytics.custom_variable.set('2', 'rating', 'nsfa');
|
|
991
|
+
jument.analytics.custom_variable.set('3', 'authors', 'CH Staff');
|
|
992
|
+
jument.analytics.custom_variable.set('4', 'tags', 'Politics,mitt romney,Music Videos,election2012,electoral collegehumor,shorts');
|
|
993
|
+
</script><div class="hide">
|
|
994
|
+
<div id="BF_WIDGET_1"> </div>
|
|
995
|
+
<script type="text/javascript">
|
|
996
|
+
(function( ){
|
|
997
|
+
BF_WIDGET_JS=document.createElement("script"); BF_WIDGET_JS.type="text/javascript";
|
|
998
|
+
BF_WIDGET_SRC="http://ct.buzzfeed.com/wd/UserWidget?u=collegehumor&to=1&or=vb&wid=1&cb=" + (new Date()).getTime();
|
|
999
|
+
setTimeout(function() {document.getElementById("BF_WIDGET_1").appendChild(BF_WIDGET_JS);BF_WIDGET_JS.src=BF_WIDGET_SRC},1);
|
|
1000
|
+
})();
|
|
1001
|
+
</script>
|
|
1002
|
+
</div>
|
|
1003
|
+
<div class="hide">
|
|
1004
|
+
<div id="BF_WIDGET_1"> </div>
|
|
1005
|
+
<script type="text/javascript">
|
|
1006
|
+
(function( ){
|
|
1007
|
+
BF_WIDGET_JS=document.createElement("script"); BF_WIDGET_JS.type="text/javascript";
|
|
1008
|
+
BF_WIDGET_SRC="http://ct.buzzfeed.com/wd/UserWidget?u=collegehumor&to=1&or=vb&wid=1&cb=" + (new Date()).getTime();
|
|
1009
|
+
setTimeout(function() {document.getElementById("BF_WIDGET_1").appendChild(BF_WIDGET_JS);BF_WIDGET_JS.src=BF_WIDGET_SRC},1);
|
|
1010
|
+
})();
|
|
1011
|
+
</script>
|
|
1012
|
+
</div>
|
|
1013
|
+
<!--VIEWDATA:6830834-->
|
|
1014
|
+
</section>
|
|
1015
|
+
<footer id="footer">
|
|
1016
|
+
<div id="footer-boxes" class="cfx">
|
|
1017
|
+
<div id="footer-newsletter" class="module span3 ga_feature_usage" data-ga-feature="Footer - Newsletter">
|
|
1018
|
+
<div class="heading">Newsletter</div>
|
|
1019
|
+
<p>Enter your email to receive a weekly newsletter of the best videos, girls, and more.</p>
|
|
1020
|
+
<form action="http://click.collegehumor.com/s" method="post" class="newsletter-form">
|
|
1021
|
+
<input type="hidden" name="redirect" value="http://www.collegehumor.com/newsletter-success">
|
|
1022
|
+
<input type="hidden" name="template" value="CollegeHumor Double Opt-in Template">
|
|
1023
|
+
<input type="hidden" name="vars[source]" value="Footer">
|
|
1024
|
+
<div class="controls">
|
|
1025
|
+
<input type="text" name="email" class="text">
|
|
1026
|
+
<button type="submit" class="submit">Submit</button>
|
|
1027
|
+
</div>
|
|
1028
|
+
<p class="messages" style="display:none;"></p>
|
|
1029
|
+
</form>
|
|
1030
|
+
</div>
|
|
1031
|
+
<div id="footer-stalk-us" class="module span3">
|
|
1032
|
+
<div class="heading">Stalk Us <small>(we don't think it's creepy)</small></div>
|
|
1033
|
+
<div class="stalkus-module services-4">
|
|
1034
|
+
<div class="services cfx">
|
|
1035
|
+
<a href="http://www.facebook.com/CollegeHumor" class="service facebook" data-button=".button-facebook"><strong>Facebook</strong></a>
|
|
1036
|
+
<a href="http://twitter.com/CollegeHumor" class="service twitter" data-button=".button-twitter"><strong>Twitter</strong></a>
|
|
1037
|
+
<a href="http://collegehumor.tumblr.com" class="service tumblr" data-button=".button-tumblr"><strong>Tumblr</strong></a>
|
|
1038
|
+
<a href="http://youtube.com/CollegeHumor" class="service youtube" data-button=".button-youtube"><strong>Youtube</strong></a>
|
|
1039
|
+
</div>
|
|
1040
|
+
<div class="popover-wrap button-facebook hide">
|
|
1041
|
+
<div class="popover top">
|
|
1042
|
+
<div class="popover-content">
|
|
1043
|
+
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FCollegeHumor&send=false&layout=button_count&width=0&show_faces=false&font=arial&colorscheme=light&action=like&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe>
|
|
1044
|
+
</div>
|
|
1045
|
+
<div class="arrow"></div>
|
|
1046
|
+
</div>
|
|
1047
|
+
</div>
|
|
1048
|
+
<div class="popover-wrap button-twitter hide">
|
|
1049
|
+
<div class="popover top">
|
|
1050
|
+
<div class="popover-content">
|
|
1051
|
+
<a href="http://twitter.com/CollegeHumor" class="twitter-follow-button" data-show-count="false" data-show-screen-name="true">Follow @CollegeHumor</a> </div>
|
|
1052
|
+
<div class="arrow"></div>
|
|
1053
|
+
</div>
|
|
1054
|
+
</div>
|
|
1055
|
+
<div class="popover-wrap button-tumblr hide">
|
|
1056
|
+
<div class="popover top">
|
|
1057
|
+
<div class="popover-content">
|
|
1058
|
+
<iframe height="25" width="115" src="http://platform.tumblr.com/v1/follow_button.html?button_type=2&tumblelog=collegehumor&color_scheme=dark" class="tumblr-follow-button" frameborder="0" border="0" scrolling="no" allowtransparency="true"></iframe>
|
|
1059
|
+
</div>
|
|
1060
|
+
<div class="arrow"></div>
|
|
1061
|
+
</div>
|
|
1062
|
+
</div>
|
|
1063
|
+
<div class="popover-wrap button-youtube hide">
|
|
1064
|
+
<div class="popover top">
|
|
1065
|
+
<div class="popover-content">
|
|
1066
|
+
<a class="youtube-follow-button" href="http://www.youtube.com/subscription_center?add_user=CollegeHumor">
|
|
1067
|
+
<img src="//s.ytimg.com/yt/img/creators_corner/Subscribe_to_my_videos/YT_Subscribe_61x23_red.png" width="61" height="23" alt="Subscribe to me on YouTube">
|
|
1068
|
+
</a>
|
|
1069
|
+
</div>
|
|
1070
|
+
<div class="arrow"></div>
|
|
1071
|
+
</div>
|
|
1072
|
+
</div>
|
|
1073
|
+
</div>
|
|
1074
|
+
</div>
|
|
1075
|
+
<div id="footer-subscribe" class="module span3 rightside">
|
|
1076
|
+
<div class="heading">Subscribe <small>and never miss original content!</small></div>
|
|
1077
|
+
<a href="/subscriptions" class="subscribe-now">Subscribe Now</a>
|
|
1078
|
+
</div>
|
|
1079
|
+
</div>
|
|
1080
|
+
<div id="footer-links" class="cfx">
|
|
1081
|
+
<div class="span5">
|
|
1082
|
+
<div class="heading">RSS</div>
|
|
1083
|
+
<ul class="unstyled">
|
|
1084
|
+
<li><a href="/videos/rss">Recent Videos</a></li>
|
|
1085
|
+
<li><a href="/pictures/rss">Recent Pictures</a></li>
|
|
1086
|
+
<li><a href="/articles/rss">Recent Articles</a></li>
|
|
1087
|
+
<li><a href="/originals/rss">CollegeHumor Originals</a></li>
|
|
1088
|
+
</ul>
|
|
1089
|
+
</div>
|
|
1090
|
+
<div class="span5">
|
|
1091
|
+
<div class="heading">Friends</div>
|
|
1092
|
+
<ul class="unstyled">
|
|
1093
|
+
<li><a href="http://failblog.org" rel="external nofollow">Failblog</a></li>
|
|
1094
|
+
<li><a href="http://adultswim.com" rel="external nofollow">AdultSwim</a></li>
|
|
1095
|
+
<li><a href="http://uproxx.com" rel="external nofollow">Uproxx</a></li>
|
|
1096
|
+
<li><a href="http://hercampus.com" rel="external nofollow">HerCampus</a></li>
|
|
1097
|
+
<li><a href="http://hollywoodtuna.com" rel="external nofollow">HollywoodTuna</a></li>
|
|
1098
|
+
<li><a href="http://popoholic.com" rel="external nofollow">Popoholic</a></li>
|
|
1099
|
+
<li><a href="http://brobible.com" rel="external nofollow">BroBible</a></li>
|
|
1100
|
+
<li><a href="http://gorillamask.net" rel="external nofollow">GorillaMask</a></li>
|
|
1101
|
+
<li><a href="http://i-am-bored.com" rel="external nofollow">I Am Bored</a></li>
|
|
1102
|
+
<li><a href="http://smosh.com" rel="external nofollow">Smosh</a></li>
|
|
1103
|
+
<li><a href="http://cavemancircus.com" rel="external nofollow">Caveman Circus</a></li>
|
|
1104
|
+
<li><a href="http://thesmokinggun.com" rel="external nofollow">The Smoking Gun</a></li>
|
|
1105
|
+
</ul>
|
|
1106
|
+
</div>
|
|
1107
|
+
<div class="span5">
|
|
1108
|
+
<div class="heading">The Stuff</div>
|
|
1109
|
+
<ul class="unstyled">
|
|
1110
|
+
<li><a href="/videos">Funny Videos</a></li>
|
|
1111
|
+
<li><a href="/pictures">Funny Pictures</a></li>
|
|
1112
|
+
<li><a href="/articles">Funny Articles</a></li>
|
|
1113
|
+
<li><a href="/newsletter">Newsletter</a></li>
|
|
1114
|
+
<li><a href="/book">Our Book</a></li>
|
|
1115
|
+
<li><a href="/mobile">Mobile</a></li>
|
|
1116
|
+
<li><a href="/faq">FAQ</a></li>
|
|
1117
|
+
</ul>
|
|
1118
|
+
</div>
|
|
1119
|
+
<div class="span5">
|
|
1120
|
+
<div class="heading">Seriously</div>
|
|
1121
|
+
<ul class="unstyled">
|
|
1122
|
+
<li><a href="/about">About</a></li>
|
|
1123
|
+
<li><a href="/sitemap">Site Map</a></li>
|
|
1124
|
+
<li><a href="/sitemap/index">Site Index</a></li>
|
|
1125
|
+
<li><a href="http://www.chmedia.com/advertise" rel="external">Advertise</a></li>
|
|
1126
|
+
<li><a href="http://www.chmedia.com/jobs" rel="external">Jobs</a></li>
|
|
1127
|
+
<li><a href="/contact">Contact</a></li>
|
|
1128
|
+
<li><a href="/privacy">Privacy Policy</a></li>
|
|
1129
|
+
<li><a href="/terms">Terms & Conditions</a></li>
|
|
1130
|
+
<li><a href="https://plus.google.com/108276197566770711709" rel="publisher">Find us on Google+</a></li>
|
|
1131
|
+
</ul>
|
|
1132
|
+
</div>
|
|
1133
|
+
<div class="span5 rightside">
|
|
1134
|
+
<div class="heading">CH Network</div>
|
|
1135
|
+
<ul class="unstyled">
|
|
1136
|
+
<li><a href="http://www.jest.com/" rel="external">Jest</a></li>
|
|
1137
|
+
<li><a href="http://www.sportspickle.com/" rel="external">SportsPickle</a></li>
|
|
1138
|
+
<li><a href="http://www.dorkly.com/" rel="external">Dorkly</a></li>
|
|
1139
|
+
<li><a href="http://hardlyworking.com/" rel="external">Hardly Working</a></li>
|
|
1140
|
+
<li><a href="http://bleepbloopshow.com/" rel="external">Bleep Bloop</a></li>
|
|
1141
|
+
<li><a href="http://www.jakeandamir.com/" rel="external">Jake and Amir</a></li>
|
|
1142
|
+
<li><a href="http://www.chmedia.com" rel="external">CH Media</a></li>
|
|
1143
|
+
</ul>
|
|
1144
|
+
</div>
|
|
1145
|
+
</div>
|
|
1146
|
+
<p id="copyright">© 2013 Connected Ventures, LLC. All rights reserved. Brought to you by CollegeHumor.</p>
|
|
1147
|
+
</footer> </div>
|
|
1148
|
+
<div id="banner-footer"><div class="ad_banner"><div id="div-gpt-ad-23021646"><script type="text/javascript">if(typeof(googletag) != "undefined") { googletag.cmd.push(function() { googletag.display("div-gpt-ad-23021646"); }); }</script></div></div></div>
|
|
1149
|
+
</div>
|
|
1150
|
+
</div>
|
|
1151
|
+
</div>
|
|
1152
|
+
</div>
|
|
1153
|
+
<script type="text/javascript" src="http://0.static.collegehumor.cvcdn.com/js/packages/69592a1d8162cba520f73662c1e85cb6.js"></script>
|
|
1154
|
+
<script type="text/javascript">
|
|
1155
|
+
var jument = window.jument || {};
|
|
1156
|
+
jument.ad_query = {"rating":"nsfa","zone":"videos\/content\/originals","node_id":"6830834","ctype":"video","tags":["politics","mitt-romney","music-videos","election2012","electoral-collegehumor","shorts"]};
|
|
1157
|
+
jument.ad_site = "collegehumor.com";
|
|
1158
|
+
jument.nielsen = 'us-collegehumor';
|
|
1159
|
+
jument.cookie.domain = ".collegehumor.com";
|
|
1160
|
+
jument.home_url = "http://www.collegehumor.com";
|
|
1161
|
+
jument.this_url = "http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody";
|
|
1162
|
+
jument.user_id = 0;
|
|
1163
|
+
jument.twitter_name = "CollegeHumor";
|
|
1164
|
+
jument.fb_app_id = '271750421132';
|
|
1165
|
+
jument.is_mobile = '';
|
|
1166
|
+
jument.referer = jument.analytics.referer();
|
|
1167
|
+
jument.context = "YTozOntpOjA7TzoyMjoibW9kZWxzXE9yaWdpbmFsX1NlcmllcyI6NDp7czo3OiJfb2JqX2lkIjtOO3M6MTA6IgAqAF92YWx1ZXMiO2E6MDp7fXM6MTM6IgAqAF9pc19sb2FkZWQiO2I6MDtzOjEzOiIAKgBfaXNfc3RhdGljIjtiOjA7fWk6MTtzOjE2OiJyZWNlbnRfb3JpZ2luYWxzIjtpOjI7YToyOntzOjU6InRpdGxlIjtzOjE2OiJSZWNlbnQgT3JpZ2luYWxzIjtzOjM6InVybCI7czoxMDoiL29yaWdpbmFscyI7fX0=";
|
|
1168
|
+
// CH8 STUFF
|
|
1169
|
+
var ch = window.ch || {};
|
|
1170
|
+
ch.logged_in = false;
|
|
1171
|
+
ch.this_url = 'http://www.collegehumor.com/video/6830834/mitt-romney-style-gangnam-style-parody';
|
|
1172
|
+
ch.this_url_64 = 'aHR0cDovL3d3dy5jb2xsZWdlaHVtb3IuY29tL3ZpZGVvLzY4MzA4MzQvbWl0dC1yb21uZXktc3R5bGUtZ2FuZ25hbS1zdHlsZS1wYXJvZHk=';
|
|
1173
|
+
ch.home_url = 'http://www.collegehumor.com';
|
|
1174
|
+
ch.user_id = 0;
|
|
1175
|
+
ch.user_ip = '204.110.10.118';
|
|
1176
|
+
ch.user_name = '';
|
|
1177
|
+
ch.user_email = '';
|
|
1178
|
+
ch.env = 'www';
|
|
1179
|
+
ch.is_ios = '';
|
|
1180
|
+
ch.facebook_id = false;
|
|
1181
|
+
var tracking = window.tracking || {};
|
|
1182
|
+
ch.on_sign_in_page = false;
|
|
1183
|
+
tracking.media_id = '1979303';
|
|
1184
|
+
tracking.media_type = 'video';
|
|
1185
|
+
tracking.rating = 'nsfa';
|
|
1186
|
+
tracking.video_continuous = true;
|
|
1187
|
+
tracking.video_producer = true;
|
|
1188
|
+
$('body').trigger('ch.loaded');
|
|
1189
|
+
</script>
|
|
1190
|
+
<div id="fb-root"></div>
|
|
1191
|
+
<script>
|
|
1192
|
+
window.fbAsyncInit = function() {
|
|
1193
|
+
FB.init({
|
|
1194
|
+
appId: 271750421132,
|
|
1195
|
+
status: true,
|
|
1196
|
+
cookie: true,
|
|
1197
|
+
oauth : true,
|
|
1198
|
+
xfbml: true
|
|
1199
|
+
});
|
|
1200
|
+
$('body').trigger('fbinit');
|
|
1201
|
+
};
|
|
1202
|
+
(function(d, s, id) {
|
|
1203
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
|
1204
|
+
if (d.getElementById(id)) return;
|
|
1205
|
+
js = d.createElement(s); js.id = id;
|
|
1206
|
+
js.src = "//connect.facebook.net/en_US/all.js";
|
|
1207
|
+
fjs.parentNode.insertBefore(js, fjs);
|
|
1208
|
+
}(document, 'script', 'facebook-jssdk'));
|
|
1209
|
+
</script>
|
|
1210
|
+
<script type="text/javascript">
|
|
1211
|
+
async('http://platform.twitter.com/widgets.js');
|
|
1212
|
+
// track twitter button shares
|
|
1213
|
+
if(typeof(twttr) == 'object') {
|
|
1214
|
+
twttr.events.bind('tweet', function(e) {
|
|
1215
|
+
if(e) {
|
|
1216
|
+
var url;
|
|
1217
|
+
if(e.target && e.target.nodeName == 'IFRAME') {
|
|
1218
|
+
url = extractParamFromUri(e.target.src, 'url');
|
|
1219
|
+
}
|
|
1220
|
+
_gaq.push(['_trackSocial', 'twitter', 'tweet', url]);
|
|
1221
|
+
}
|
|
1222
|
+
});
|
|
1223
|
+
}
|
|
1224
|
+
</script>
|
|
1225
|
+
<div class="hide">
|
|
1226
|
+
<script type="text/javascript">
|
|
1227
|
+
_gaq.push(['_trackPageview']);
|
|
1228
|
+
(function() {
|
|
1229
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
1230
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
1231
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
1232
|
+
})();
|
|
1233
|
+
</script>
|
|
1234
|
+
<!-- Begin comScore Tag -->
|
|
1235
|
+
<script type="text/javascript">document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));</script>
|
|
1236
|
+
<script type="text/javascript">
|
|
1237
|
+
COMSCORE.beacon({
|
|
1238
|
+
c1:2,
|
|
1239
|
+
c2:6511178,
|
|
1240
|
+
c3:"",
|
|
1241
|
+
c4:"",
|
|
1242
|
+
c5:"",
|
|
1243
|
+
c6:"",
|
|
1244
|
+
c15:""
|
|
1245
|
+
});
|
|
1246
|
+
</script>
|
|
1247
|
+
<noscript><img src="http://b.scorecardresearch.com/b?c1=2&c2=6511178&c3=&c4=&c5=&c6=&c15=&cv=1.3&cj=1" style="display:none" width="0" height="0" alt="" /></noscript>
|
|
1248
|
+
<!-- End comScore Tag -->
|
|
1249
|
+
<!-- START Nielsen Online SiteCensus V6.0 -->
|
|
1250
|
+
<!-- COPYRIGHT 2010 Nielsen Online -->
|
|
1251
|
+
<script type="text/javascript">jument.analytics.nielsen();</script>
|
|
1252
|
+
<noscript><div><img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-collegehumor&cg=0&cc=1&ts=noscript" width="1" height="1" alt="" /></div></noscript>
|
|
1253
|
+
<!-- END Nielsen Online SiteCensus V6.0 -->
|
|
1254
|
+
<!-- Start Quantcast tag -->
|
|
1255
|
+
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
|
|
1256
|
+
<script type="text/javascript">_qacct="p-95EV338Ps8Si6";quantserve();</script>
|
|
1257
|
+
<noscript>
|
|
1258
|
+
<a href="http://www.quantcast.com/p-95EV338Ps8Si6"><img src="http://pixel.quantserve.com/pixel/p-95EV338Ps8Si6.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
|
|
1259
|
+
</noscript>
|
|
1260
|
+
<!-- End Quantcast tag -->
|
|
1261
|
+
<!-- Compete XL Code for collegehumor.com -->
|
|
1262
|
+
<script type="text/javascript">
|
|
1263
|
+
__compete_code = 'c7fc4ffea17061ffb3e2c0bfb1424e48';
|
|
1264
|
+
/* Set control variables below this line. */
|
|
1265
|
+
</script>
|
|
1266
|
+
<script type="text/javascript" src="//c.compete.com/bootstrap/s/c7fc4ffea17061ffb3e2c0bfb1424e48/collegehumor-com/bootstrap.js"></script>
|
|
1267
|
+
<noscript><img width="1" height="1" src="https://ssl-collegehumor-com-c7fc4f.c-col.com" /></noscript>
|
|
1268
|
+
<!-- Exelator -->
|
|
1269
|
+
<script type="text/javascript" src="http://loadus.exelator.com/load/?p=424&g=001&c=285365&kw=&refkw="></script>
|
|
1270
|
+
</div>
|
|
1271
|
+
</body>
|
|
1272
|
+
</html>
|