opengraph 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/opengraph.rb +76 -0
- data/spec/examples/rottentomatoes.html +1798 -0
- data/spec/opengraph_spec.rb +53 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +14 -0
- metadata +139 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Michael Bleigh
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= OpenGraph
|
2
|
+
|
3
|
+
OpenGraph is a very simple library for parsing Open Graph information from web sites.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Michael Bleigh. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "opengraph"
|
8
|
+
gem.summary = %Q{A very simple Ruby library for parsing Open Graph prototocol information from websites.}
|
9
|
+
gem.description = %Q{A very simple Ruby library for parsing Open Graph prototocol information from websites. See http://opengraphprotocol.org for more information.}
|
10
|
+
gem.email = "michael@intridea.com"
|
11
|
+
gem.homepage = "http://github.com/intridea/opengraph"
|
12
|
+
gem.authors = ["Michael Bleigh"]
|
13
|
+
gem.add_dependency 'hashie'
|
14
|
+
gem.add_dependency 'nokogiri', '~> 1.4.0'
|
15
|
+
gem.add_dependency 'rest-client', '~> 1.4.0'
|
16
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
17
|
+
gem.add_development_dependency 'webmock'
|
18
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
19
|
+
end
|
20
|
+
Jeweler::GemcutterTasks.new
|
21
|
+
rescue LoadError
|
22
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
23
|
+
end
|
24
|
+
|
25
|
+
require 'spec/rake/spectask'
|
26
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
27
|
+
spec.libs << 'lib' << 'spec'
|
28
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
29
|
+
end
|
30
|
+
|
31
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
32
|
+
spec.libs << 'lib' << 'spec'
|
33
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
34
|
+
spec.rcov = true
|
35
|
+
end
|
36
|
+
|
37
|
+
task :spec => :check_dependencies
|
38
|
+
|
39
|
+
task :default => :spec
|
40
|
+
|
41
|
+
require 'rake/rdoctask'
|
42
|
+
Rake::RDocTask.new do |rdoc|
|
43
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
44
|
+
|
45
|
+
rdoc.rdoc_dir = 'rdoc'
|
46
|
+
rdoc.title = "opengraph #{version}"
|
47
|
+
rdoc.rdoc_files.include('README*')
|
48
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
49
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
data/lib/opengraph.rb
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
require 'hashie'
|
2
|
+
require 'nokogiri'
|
3
|
+
require 'restclient'
|
4
|
+
|
5
|
+
module OpenGraph
|
6
|
+
# Fetch Open Graph data from the specified URI. Makes an
|
7
|
+
# HTTP GET request and returns an OpenGraph::Object if there
|
8
|
+
# is data to be found or <tt>false</tt> if there isn't.
|
9
|
+
def self.fetch(uri)
|
10
|
+
parse(RestClient.get(uri).body)
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.parse(html)
|
14
|
+
doc = Nokogiri::HTML.parse(html)
|
15
|
+
page = OpenGraph::Object.new
|
16
|
+
doc.css('meta').each do |m|
|
17
|
+
if m.attribute('property') && m.attribute('property').to_s.match(/^og:(.+)$/i)
|
18
|
+
page[$1.gsub('-','_')] = m.attribute('content').to_s
|
19
|
+
end
|
20
|
+
end
|
21
|
+
return false unless page.valid?
|
22
|
+
page
|
23
|
+
rescue RestClient::Exception
|
24
|
+
false
|
25
|
+
end
|
26
|
+
|
27
|
+
TYPES = {
|
28
|
+
'activity' => %w(activity sport),
|
29
|
+
'business' => %w(bar company cafe hotel restaurant),
|
30
|
+
'group' => %w(cause sports_league sports_team),
|
31
|
+
'organization' => %w(band government non_profit school university),
|
32
|
+
'person' => %w(actor athlete author director musician politician public_figure),
|
33
|
+
'place' => %w(city country landmark state_province),
|
34
|
+
'product' => %w(album book drink food game movie product song tv_show),
|
35
|
+
'website' => %w(blog website)
|
36
|
+
}
|
37
|
+
|
38
|
+
# The OpenGraph::Object is a Hash with method accessors for
|
39
|
+
# all detected Open Graph attributes.
|
40
|
+
class Object < Hashie::Mash
|
41
|
+
MANDATORY_ATTRIBUTES = %w(title type image url)
|
42
|
+
|
43
|
+
# The object type.
|
44
|
+
def type
|
45
|
+
self['type']
|
46
|
+
end
|
47
|
+
|
48
|
+
# The schema under which this particular object lies. May be any of
|
49
|
+
# the keys of the TYPES constant.
|
50
|
+
def schema
|
51
|
+
OpenGraph::TYPES.each_pair do |schema, types|
|
52
|
+
return schema if types.include?(self.type)
|
53
|
+
end
|
54
|
+
nil
|
55
|
+
end
|
56
|
+
|
57
|
+
OpenGraph::TYPES.values.flatten.each do |type|
|
58
|
+
define_method "#{type}?" do
|
59
|
+
self.type == type
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
OpenGraph::TYPES.keys.each do |scheme|
|
64
|
+
define_method "#{scheme}?" do
|
65
|
+
self.type == scheme || OpenGraph::TYPES[scheme].include?(self.type)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
# If the Open Graph information for this object doesn't contain
|
70
|
+
# the mandatory attributes, this will be <tt>false</tt>.
|
71
|
+
def valid?
|
72
|
+
MANDATORY_ATTRIBUTES.each{|a| return false unless self[a]}
|
73
|
+
true
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,1798 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" lang="en" id="movie">
|
4
|
+
<head>
|
5
|
+
<title>Rotten Tomatoes: Kick-Ass Movie Reviews, Pictures</title>
|
6
|
+
<meta name="description" content="Kick-Ass movie reviews, trailers - Check out Rotten Tomatoes Kick-Ass clips, pictures, critic and user reviews, forums and the Tomatometer!" />
|
7
|
+
<meta name="keywords" content="Kick-Ass, Kick-Ass movie, Kick-Ass trailers, reviews, critic reviews, user reviews, previews, pictures, pics, cast, photos, video clips" />
|
8
|
+
<link href="http://www.rottentomatoes.com/m/1217700-kick_ass/" rel="canonical"> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/jquery.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.elementReady.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.hoverIntent.minified.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.scrollTo-min.js"></script>
|
9
|
+
<!--[if lte IE 6]>
|
10
|
+
<script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.pngFix.js"></script>
|
11
|
+
<![endif]-->
|
12
|
+
|
13
|
+
<!--[if IE]>
|
14
|
+
<script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.iefixbuttons-0.3.js"></script>
|
15
|
+
<script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.bgiframe.min.js"></script>
|
16
|
+
<![endif]-->
|
17
|
+
|
18
|
+
<script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/rt.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/rt_movie.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/rt_ratings_new.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/ui/ui.core.simple.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.rt_scrollMultimedia.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/js/jquery/plugins/jquery.tooltip.min.js"></script> <script type="text/javascript" src="http://images.rottentomatoes.com/files/inc_beta/rt_jquery.js"></script>
|
19
|
+
|
20
|
+
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js"></script>
|
21
|
+
<script language="JavaScript">
|
22
|
+
GS_googleAddAdSenseService("ca-pub-7518399278719852");
|
23
|
+
GS_googleEnableAllServices();
|
24
|
+
</script>
|
25
|
+
|
26
|
+
<script type="text/javascript">
|
27
|
+
/* <![CDATA[ */
|
28
|
+
|
29
|
+
var ref = (document.referrer)?'&r='+escape(document.referrer):'';
|
30
|
+
ref = ref.split('/').join('%2F');
|
31
|
+
ref = ref.split('.').join('%2E');
|
32
|
+
ref = ref.split('%').join('$');
|
33
|
+
|
34
|
+
/* ]]> */
|
35
|
+
</script>
|
36
|
+
<!--[if lte IE 6]>
|
37
|
+
<script type="text/javascript">
|
38
|
+
|
39
|
+
/* <![CDATA[ */
|
40
|
+
$(document).ready(function(){
|
41
|
+
$(document).pngFix();
|
42
|
+
});
|
43
|
+
|
44
|
+
/* ]]> */
|
45
|
+
</script>
|
46
|
+
<style type="text/css">#header_container #US { background-repeat: no-repeat; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='http://images.rottentomatoes.com/images/logos/rottentomatoes_logo.png'); }";</style>
|
47
|
+
<![endif]-->
|
48
|
+
|
49
|
+
|
50
|
+
<!--[if gte IE 7]>
|
51
|
+
<script type="text/javascript">
|
52
|
+
|
53
|
+
/* <![CDATA[ */
|
54
|
+
$(document).ready(function(){
|
55
|
+
$("hr").before("<div class='hr'>").after("</div>").attr("style","display: none");
|
56
|
+
});
|
57
|
+
|
58
|
+
/* <![CDATA[ */
|
59
|
+
</script>
|
60
|
+
<![endif]-->
|
61
|
+
|
62
|
+
<link type="text/css" rel="stylesheet" href="http://images.rottentomatoes.com/files/inc_beta/generated/css/mob.css" /><link rel="image_src" href="http://images.rottentomatoes.com/images/movie/custom/00/1217700.jpg" /><meta property="og:title" content="Kick-Ass" /><meta property="og:type" content="movie" /><meta property="og:image" content="http://images.rottentomatoes.com/images/movie/custom/00/1217700.jpg" /><meta property="og:url" content="http://www.rottentomatoes.com/m/1217700-kick_ass/" /><meta property="og:site_name" content="Rotten Tomatoes"><meta property="fb:admins" content="1106591" />
|
63
|
+
|
64
|
+
<!--[if IE 7]>
|
65
|
+
<style type="text/css">
|
66
|
+
@import url("http://images.rottentomatoes.com/files/inc_beta/ie_rt.css");
|
67
|
+
</style>
|
68
|
+
<![endif]-->
|
69
|
+
|
70
|
+
<!--[if lte IE 6]>
|
71
|
+
<link type="text/css" rel="stylesheet" href="http://images.rottentomatoes.com/files/inc_beta/ie6_rt.css" />
|
72
|
+
<![endif]-->
|
73
|
+
|
74
|
+
<link rel="apple-touch-icon" href="http://images.rottentomatoes.com/images/icons/apple-touch-icon.png" />
|
75
|
+
<link rel="shortcut icon" href="http://images.rottentomatoes.com/images/icons/favicon.ico" type="image/x-icon" /></head>
|
76
|
+
|
77
|
+
<body class="rt">
|
78
|
+
<div id="interstitial_ad"><script type="text/javascript">
|
79
|
+
|
80
|
+
/* <![CDATA[ */
|
81
|
+
document.write('<' + 'script type="text/javascript" src="http://ads.rottentomatoes.com/api/v1/rt/ads.json?network=rottentomatoes&site=rottentomatoes&size=prestitial&adchannel=rottentomatoes&subdomain=www.rottentomatoes.com&dechannel=rottentomatoesmovies&channel=movie&pagetype=rt_object&moviegenre=action_adventure&mpaa=r&object1=RTMOVIE1217700&object1_id=RTMOVIE1217700' + ref + '">');
|
82
|
+
document.write('<' + '/script>');
|
83
|
+
|
84
|
+
/* ]]> */
|
85
|
+
</script></div>
|
86
|
+
<div id="richmedia_ad"><script type="text/javascript">
|
87
|
+
|
88
|
+
/* <![CDATA[ */
|
89
|
+
document.write('<' + 'script type="text/javascript" src="http://ads.rottentomatoes.com/api/v1/rt/ads.json?network=rottentomatoes&site=rottentomatoes&size=richmedia&adchannel=rottentomatoes&subdomain=www.rottentomatoes.com&dechannel=rottentomatoesmovies&channel=movie&pagetype=rt_object&moviegenre=action_adventure&mpaa=r&object1=RTMOVIE1217700&object1_id=RTMOVIE1217700' + ref + '">');
|
90
|
+
document.write('<' + '/script>');
|
91
|
+
|
92
|
+
/* ]]> */
|
93
|
+
</script></div><script type="text/javascript">
|
94
|
+
if((getCookie('mobile_prompt') != "1") && ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/BlackBerry/i)))) {
|
95
|
+
// Read a page's GET URL variables and return them as an associative array.
|
96
|
+
function getUrlVars()
|
97
|
+
{
|
98
|
+
var vars = [], hash;
|
99
|
+
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
|
100
|
+
for(var i = 0; i < hashes.length; i++)
|
101
|
+
{
|
102
|
+
hash = hashes[i].split('=');
|
103
|
+
vars.push(hash[0]);
|
104
|
+
vars[hash[0]] = hash[1];
|
105
|
+
}
|
106
|
+
return vars;
|
107
|
+
}
|
108
|
+
var mobile_src = getUrlVars()["lsrc"];
|
109
|
+
if(mobile_src != "mobile") {
|
110
|
+
window.location = "/mobile/app.php?url=/m/1217700-kick_ass/";
|
111
|
+
} else {
|
112
|
+
// User is coming from mobile app, set cookie
|
113
|
+
setCookie("mobile_prompt", "1", 1825, "/");
|
114
|
+
}
|
115
|
+
}
|
116
|
+
</script>
|
117
|
+
<div id="header">
|
118
|
+
|
119
|
+
<div id="header_container">
|
120
|
+
|
121
|
+
<div id="header_container2">
|
122
|
+
|
123
|
+
<div id="US" class="rt_logo_image"><a href="/">RottenTomatoes.com</a></div>
|
124
|
+
<div id="user_navigation"> <a href="/login/?url=%2Fm%2F1217700-kick_ass%2F">Log In</a> |
|
125
|
+
<a href="/register/?url=%2Fm%2F1217700-kick_ass%2F">Register</a> |
|
126
|
+
<a href="/help_desk/learn_more.php">What is RT?</a> </div>
|
127
|
+
<div id="header_masthead_container"><a rel="nofollow" href="/mobile/"><img src="http://images.rottentomatoes.com/images/headers/mobile_mast.png" style="width: 213px; height: 60px" alt="Tomatometer In Your Pocket!" title="Tomatometer In Your Pocket!" /></a> </div> </div>
|
128
|
+
</div>
|
129
|
+
</div>
|
130
|
+
<div id="nav_bg">
|
131
|
+
|
132
|
+
<div id="nav">
|
133
|
+
|
134
|
+
<ul id="nav_primary">
|
135
|
+
<li><a id="nav_primary_home" href="/">Home</a></li><li><a id="nav_primary_movies" class="selected" href="/movies/">Movies</a></li><li><a id="nav_primary_dvd" href="/dvd/">DVD</a></li><li><a id="nav_primary_celebrities" href="/celebrity/">Celebrities</a></li><li><a id="nav_primary_news" href="/news/">News</a></li><li><a id="nav_primary_critics" href="/critics/">Critics</a></li><li><a id="nav_primary_trailers_pictures" href="/trailers_pictures/">Trailers & Pictures</a></li><li><a id="nav_primary_community" href="/community/">Community<img src="http://images.rottentomatoes.com/images/template/beta-bug.png" alt="Beta" /></a></li> </ul>
|
136
|
+
|
137
|
+
<ul id="nav_secondary"><li><a href="/movie/box_office.php">Box Office</a></li><li> | <a href="/movie/in_theaters.php">In Theaters</a></li><li> | <a href="/movie/opening.php">Opening</a></li><li> | <a href="/movie/upcoming.php">Upcoming</a></li><li> | <a href="/top">Best Of</a></li><li> | <a href="/movie/certified_fresh.php">Certified Fresh</a></li><li> | <a href="/movie/showtimes/">Showtimes</a></li></ul><div id="nav2_ad"><script type="text/javascript">
|
138
|
+
|
139
|
+
/* <![CDATA[ */
|
140
|
+
document.write('<' + 'script type="text/javascript" src="http://ads.rottentomatoes.com/api/v1/rt/ads.json?network=rottentomatoes&site=rottentomatoes&size=nav2&adchannel=rottentomatoes&subdomain=www.rottentomatoes.com&dechannel=rottentomatoesmovies&channel=movie&pagetype=rt_object&moviegenre=action_adventure&mpaa=r&object1=RTMOVIE1217700&object1_id=RTMOVIE1217700' + ref + '">');
|
141
|
+
document.write('<' + '/script>');
|
142
|
+
|
143
|
+
/* ]]> */
|
144
|
+
</script></div>
|
145
|
+
</div>
|
146
|
+
</div>
|
147
|
+
<div id="header_leaderboard_ad_container" class="clearfix">
|
148
|
+
<div id="header_leaderboard_ad"><div id="leaderboard_ad"> <script type="text/javascript">
|
149
|
+
/* <![CDATA[ */
|
150
|
+
GA_googleFillSlot("RT_Movies_728x90");
|
151
|
+
|
152
|
+
$(document).ready(function() {
|
153
|
+
$('#leaderboard_ad').rt_GAMCheck('RT_Movies_728x90');
|
154
|
+
});
|
155
|
+
/* ]]> */
|
156
|
+
</script></div></div>
|
157
|
+
</div> <div id="nav_shadow_bg">
|
158
|
+
<div id="main_body_shadow" class="clearfix">
|
159
|
+
<div id="main_body" class="clearfix" xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Movie">
|
160
|
+
|
161
|
+
<div id="searchBar">
|
162
|
+
|
163
|
+
<form action="/search/search.php" method="get" name="searchformnew" id="searchformnew">
|
164
|
+
|
165
|
+
<fieldset>
|
166
|
+
|
167
|
+
<legend>RT Search</legend>
|
168
|
+
|
169
|
+
<label title="Search" id="searchformnewSearchLbl" for="mini_searchbox" accesskey="C">Sear<em>c</em>h:</label>
|
170
|
+
|
171
|
+
<input type="radio" id="rt_newsearch" name="sitesearch" value="rt" checked="checked" onclick="document.getElementById('mini_searchbox').value = 'Find a movie or celeb or critic here!'" />
|
172
|
+
<label title="RT" for="rt_newsearch" accesskey="R"><em>R</em>T</label>
|
173
|
+
|
174
|
+
<input type="radio" name="sitesearch" value="showtimes" id="rt_newshowtimessearch" onclick="
|
175
|
+
document.getElementById('mini_searchbox').value = 'ZIP Code (or) City, State'
|
176
|
+
" /> <label title="Showtimes & Tickets" for="rt_newshowtimessearch" accesskey="I">Showt<em>i</em>mes & Tickets</label> <input type="radio" name="sitesearch" value="web" id="rt_newwebsearch" onclick="if(document.getElementById('mini_searchbox').value == 'ZIP Code (or) City, State' || document.getElementById('mini_searchbox').value == 'Find a movie or celeb or critic here!') { document.getElementById('mini_searchbox').value = ''; }" />
|
177
|
+
|
178
|
+
<label title="Web" for="rt_newwebsearch" accesskey="W"><em>W</em>eb</label>
|
179
|
+
<input type="text" name="search" value="Find a movie or celeb or critic here!" id="mini_searchbox" onfocus="this.className='selected'; if (value == 'ZIP Code (or) City, State' || value == 'Find a movie or celeb or critic here!') { value ='' }" onblur="this.className='';" />
|
180
|
+
|
181
|
+
<button type="submit" id="searchbar_searchBtn" class="submitBtn"><span>Search</span></button> <img id="searchBar_googleImg" src="http://images.rottentomatoes.com/images_REDESIGN/template/searchbar_poweredbygoogle.png" alt="Powered by Google" width="107" height="21" />
|
182
|
+
|
183
|
+
<div id="searchBar_google">
|
184
|
+
<a href="http://www.google.com/coop/profile?user=010498783820939269348" target="_blank" title="Enhanced RT searches on Google">
|
185
|
+
<img src="http://images.rottentomatoes.com/images/icons/helpRed_sm_whitebg.gif" alt="help icon" />
|
186
|
+
<span id="searchBar_google_content">Enhanced RT<br />searches on Google</span>
|
187
|
+
</a>
|
188
|
+
<div id="searchBar_google_tooltip"><div>Click here to turn on enhanced search results from RT on your Google searches.</div></div>
|
189
|
+
</div>
|
190
|
+
|
191
|
+
</fieldset>
|
192
|
+
|
193
|
+
</form>
|
194
|
+
|
195
|
+
<div id="searchBar_right"> </div>
|
196
|
+
|
197
|
+
</div>
|
198
|
+
|
199
|
+
<div id="breadcrumb">
|
200
|
+
<a class="topBreadCrumb" href="/movie/">Movies</a> <span class="topBreadCrumb">/</span> <a class="subLevelCrumb" href="/movie/in_theaters.php">In Theaters</a> <span class="subLevelCrumb">/</span> <span class="minLevelCrumb">Kick-Ass</span></div>
|
201
|
+
<div class="share_social_media clearfix" style="height: 28px;">
|
202
|
+
<div class="social_button_min first">
|
203
|
+
<fb:like href="http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2F1217700-kick_ass%2F" show_faces="false" debug="true"></fb:like>
|
204
|
+
<div id="fb-root"></div>
|
205
|
+
|
206
|
+
<script>
|
207
|
+
window.fbAsyncInit = function() {
|
208
|
+
FB.init({
|
209
|
+
appId: "326803741017",
|
210
|
+
cookie: true,
|
211
|
+
status: true,
|
212
|
+
xfbml: true
|
213
|
+
});
|
214
|
+
};
|
215
|
+
|
216
|
+
(function() {
|
217
|
+
var e = document.createElement('script'); e.async = true;
|
218
|
+
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
|
219
|
+
document.getElementById('fb-root').appendChild(e);
|
220
|
+
}());
|
221
|
+
</script>
|
222
|
+
</div>
|
223
|
+
<div class="fr" style="margin-top: 2px;">
|
224
|
+
|
225
|
+
<div class="social_button_min">
|
226
|
+
<fb:share-button class="url" href="http://www.rottentomatoes.com/m/1217700-kick_ass/" type="button_count" />
|
227
|
+
</div>
|
228
|
+
|
229
|
+
<div class="social_button_min">
|
230
|
+
<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2F1217700-kick_ass%2F&title=Kick-Ass+Movie+Reviews%2C+Pictures+-+Rotten+Tomatoes" rel="external" rev="news, movies" style="background-color: #EBE9B6;"></a>
|
231
|
+
<script src="http://widgets.digg.com/buttons.js" type="text/javascript"></script>
|
232
|
+
</div>
|
233
|
+
|
234
|
+
<div class="social_button_min">
|
235
|
+
<script type="text/javascript">
|
236
|
+
tweetmeme_style = 'compact';
|
237
|
+
tweetmeme_source = 'rottentomatoes';
|
238
|
+
tweetmeme_url = 'http://www.rottentomatoes.com/m/1217700-kick_ass/';
|
239
|
+
</script>
|
240
|
+
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
|
241
|
+
|
242
|
+
<!--[if IE]>
|
243
|
+
<script type="text/javascript">
|
244
|
+
$(document).ready(function() {
|
245
|
+
$(".share_social_media iframe").attr('allowTransparency', 'true');
|
246
|
+
});
|
247
|
+
</script>
|
248
|
+
<![endif]-->
|
249
|
+
</div>
|
250
|
+
|
251
|
+
<div class="social_button_min">
|
252
|
+
<a href="http://www.addthis.com/bookmark.php" class="addthis_button" addthis:url="http://www.rottentomatoes.com/m/1217700-kick_ass/" addthis:title="Kick-Ass Movie Reviews, Pictures - Rotten Tomatoes">
|
253
|
+
<img src="http://s7.addthis.com/static/btn/sm-share-en.gif" width="83" height="16" alt="Bookmark and Share" style="border:0"/>
|
254
|
+
</a>
|
255
|
+
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pub=rottentomatoes"></script>
|
256
|
+
</div>
|
257
|
+
|
258
|
+
</div>
|
259
|
+
</div>
|
260
|
+
<div class="template_wrapper">
|
261
|
+
<div class="col_679 col_left main"><div id="movie_info_main" class="content ">
|
262
|
+
|
263
|
+
<div class="content_body clearfix noHead">
|
264
|
+
<div class="movie_tools_area"><a href="/m/1217700-kick_ass/"><img src="http://images.rottentomatoes.com/images/movie/custom/00/1217700.jpg" width="144" height="213" alt="Kick-Ass" title="Kick-Ass" rel="v:image" /></a><p id="rater_mob" class="help" title="Drag the yellow slider to rate this movie.">Rate this Movie <img id="rater_mob_helpicon" src="http://images.rottentomatoes.com/images/icons/helpGreen_sm_whitebg.gif" alt="Help Icon" /></p>
|
265
|
+
<script type="text/javascript">
|
266
|
+
/* <![CDATA[ */
|
267
|
+
if(typeof rt_rater_exists == 'undefined' || !rt_rater_exists){
|
268
|
+
rt_rater_exists=true;
|
269
|
+
}
|
270
|
+
/* ]]> */
|
271
|
+
</script>
|
272
|
+
|
273
|
+
<div id="rater_mob" class="rater">
|
274
|
+
<object class='rt_object_flash_rater_class' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="117" height="39" id="flash_rater_1217700" align="middle">
|
275
|
+
<param name="allowScriptAccess" value="sameDomain" />
|
276
|
+
<param name="allowFullScreen" value="false" />
|
277
|
+
<param name="movie" value="/rater6.swf?update_field=rating&id_num=1217700&id_type=movie&user_id=&user_vote=0&rate_url=/m/1217700-kick_ass/&" />
|
278
|
+
<param name="quality" value="best" />
|
279
|
+
<param name="wmode" value="transparent" />
|
280
|
+
<param name="bgcolor" value="#ffffff" />
|
281
|
+
<embed class='rt_embed_flash_rater_class' src="/rater6.swf?update_field=rating&id_num=1217700&id_type=movie&user_id=&user_vote=0&rate_url=/m/1217700-kick_ass/&" quality="best" wmode="transparent" bgcolor="#ffffff" width="117" height="39" name="rater" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
|
282
|
+
</object>
|
283
|
+
</div><ul id="movie_tools_area_links" class="normalViewList"><li id="object_toolbar_showtimes"><a href="/m/1217700-kick_ass/showtimes.php">Showtimes & Tickets</a></li><li><a href="/login/?url=%2Fm%2F1217700-kick_ass%2F">Write a Review</a></li>
|
284
|
+
<li><a href="#contentReviews">Read Reviews</a></li>
|
285
|
+
<li><a href="/login/?url=%2Fm%2F1217700-kick_ass%2F%3FactivateFx%3Dmob_add_to_list%26targetID%3Daddtolist_href">Add to List</a></li>
|
286
|
+
<li><a href="#sell_thru_main">Get this Movie</a></li> <li><a href="http://affiliates.allposters.com/link/redirect.asp?aid=15282&c=z&categoryID=101&search=Kick-Ass" target="_blank">Buy Poster <img width="10" height="8" border="0" title="External Icon" alt="External Icon" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a></li>
|
287
|
+
</ul>
|
288
|
+
</div>
|
289
|
+
<div id="movie_info_area" class="movie_info_area">
|
290
|
+
|
291
|
+
<h1 class="movie_title clearfix"><span property="v:name">Kick-Ass</span> (2010)</h1><ul id="tomatometer_nav" class="ui-tabs-nav ui-tabs-nav-liquid"> <li class="ui-tabs-selected"><a title="77%" href="/m/1217700-kick_ass/?name_order=asc"><span>T-Meter Critics</span></a></li>
|
292
|
+
<li><a title="71%" href="/m/1217700-kick_ass/?critic=creamcrop"><span>Top Critics</span></a></li>
|
293
|
+
<li><a title="92%" href="reviews_users.php"><span>RT Community</span></a></li>
|
294
|
+
<li><a title="N/A" href="reviews_mycritics.php"><span>My Critics</span></a></li>
|
295
|
+
<li><a title="N/A" href="reviews_friends.php"><span>My Friends</span></a></li>
|
296
|
+
</ul><div id="tomatometer" class="dialog chromeGreenMain">
|
297
|
+
<div class="dialog_content clearfix" rel="v:rating">
|
298
|
+
<div class="t"></div><span typeof="v:Review-aggregate">
|
299
|
+
<div id="tomatometer_score" style="" rel="v:rating">
|
300
|
+
<span class="percent" property="v:average">77</span>
|
301
|
+
<span property="v:best" content="100"/>
|
302
|
+
<sup class="symbol ">%</sup>
|
303
|
+
</div>
|
304
|
+
|
305
|
+
<div id="tomatometer_bar">
|
306
|
+
<h6>Tomatometer</h6>
|
307
|
+
<div id="tomatometer_bar_container">
|
308
|
+
<img class="fl" src="http://images.rottentomatoes.com/images/tomatometer/tomatometer_bar_over_left.png" width="6" height="19" alt="Template Image" /><img class="fl" src="http://images.rottentomatoes.com/images/tomatometer/tomatometer_bar_over_middle.gif" width="168" height="19" alt="Template Image" /> </div>
|
309
|
+
<p id="tomatometer_bar_help" class="help" title="The Tomatometer measures the percentage of positive reviews from Approved Tomatometer Critics for a certain movie.">How does the Tomatometer work <img id="rater_mob_helpicon" src="http://images.rottentomatoes.com/images/icons/helpGreen_sm_whitebg.gif" alt="Help Icon" /></p>
|
310
|
+
</div>
|
311
|
+
|
312
|
+
<div id="tomatometer_certified_fresh" >
|
313
|
+
|
314
|
+
<span class="iconset iconset_rt_lg certifiedfresh_lg hide" title="Certified Fresh"></span>
|
315
|
+
</div>
|
316
|
+
|
317
|
+
<div id="tomatometer_data">
|
318
|
+
<p>Reviews Counted:<span property="v:count">203</span></p>
|
319
|
+
<p id="tomatometer_data_fresh">Fresh:<span>156</span></p>
|
320
|
+
<p id="tomatometer_data_rotten">Rotten:<span>47</span></p>
|
321
|
+
<p>Average Rating:<span>7.1/10</span></p>
|
322
|
+
</div><span property="v:summary"><p id="consensus"><span>Consensus:</span> Not for the faint of heart, <em>Kick-Ass</em> takes the comic adaptation genre to new levels of visual style, bloody violence, and gleeful profanity.</p></span></div>
|
323
|
+
<div class="b"><div></div></div>
|
324
|
+
</div>
|
325
|
+
<div id="movie_info_box">
|
326
|
+
|
327
|
+
<div id="movie_stats">
|
328
|
+
<div class="fl">
|
329
|
+
<p>
|
330
|
+
<span class="label">Rated:</span>
|
331
|
+
<span class="content" rel="v:movieRating"><span property="v:value">R</span><span property="v:ratingSystem" content="MPAA"></span> <a style="font-weight: normal;" class="movie_rating_reason" id="movie_rating_work" href="javascript:void(0);">[See Full Rating]</a>
|
332
|
+
<span class="movie_rating_reason" style="display: none"> for strong brutal violence throughout, pervasive language, sexual content, nudity and some drug use - some involving children.</span> </span>
|
333
|
+
</p><p><span class="label">Genre:</span> <span class="content"><a href="/movie/browser.php?genre=200001"><span property="v:genre">Action/Adventure</span></a></span></p> </div>
|
334
|
+
<div class="fl">
|
335
|
+
<p><span class="label">Theatrical Release:</span><span class="content"><span property="v:initialReleaseDate" content="2010-04-16">Apr 16, 2010 Wide</span></span></p><p><span class="label">Box Office:</span> <span class="content"><a href="/m/1217700-kick_ass/numbers.php">$19,828,687</a></span></p> </div>
|
336
|
+
</div>
|
337
|
+
|
338
|
+
<div id="movie_synopsis">
|
339
|
+
<p>
|
340
|
+
<span class="label">Synopsis:</span>
|
341
|
+
<span id="movie_synopsis_blurb" style="display: inline;" property="v:summary"> Mark Millar's violent comic tale of wannabe superheroes is adapted by writer-director Matthew Vaughn (LAYER CAKE) with this Marv Films production. Aaron Johnson stars as a teen who steps out of his...</span>
|
342
|
+
|
343
|
+
<span id="movie_synopsis_all" style="display: none;">Mark Millar's violent comic tale of wannabe superheroes is adapted by writer-director Matthew Vaughn (LAYER CAKE) with this Marv Films production. Aaron Johnson stars as a teen who steps out of his house one day with a mask and a painted baseball bat and starts to fight crime even though he has no superpowers. Lyndsy Fonseca co-stars as the character's object of desire, with Nicolas Cage also appearing as an ex-cop whose hatred of a drug lord forces him to train his daughter to be a lethal vigilante.</span>
|
344
|
+
<a href="#" id="movie_synopsis_link">[More]</a>
|
345
|
+
</p>
|
346
|
+
</div>
|
347
|
+
|
348
|
+
<div id="movie_castcrew">
|
349
|
+
<p class="movie_cast_shortened" style="display: block;"><span class="label">Starring:</span> <a href="/celebrity/aaron_johnson/">Aaron Johnson</a>, <a href="/celebrity/nicolas_cage/">Nicolas Cage</a>, <a href="/celebrity/chloe_grace_moretz/">Chloe Moretz</a>, <a href="/celebrity/1180679-christopher_mintz_plasse/">Christopher Mintz-Plasse</a></p><p class="movie_cast_all" style="display: none;"><span class="label">Starring:</span> <a href="/celebrity/aaron_johnson/" property="v:starring">Aaron Johnson</a>, <a href="/celebrity/nicolas_cage/" property="v:starring">Nicolas Cage</a>, <a href="/celebrity/chloe_grace_moretz/" property="v:starring">Chloe Moretz</a>, <a href="/celebrity/1180679-christopher_mintz_plasse/" property="v:starring">Christopher Mintz-Plasse</a>, <a href="/celebrity/mark_strong/" property="v:starring">Mark Strong</a></p><p class="movie_crew_shortened" style="display: block;"><span class="label">Director:</span> <a href="/celebrity/matthew_vaughn/" property="v:directedBy">Matthew Vaughn</a></p><p class="movie_crew_all" style="display: none;"><span class="label">Director:</span> <a href="/celebrity/matthew_vaughn/">Matthew Vaughn</a><br/><span class="label">Studio:</span> Lions Gate Films </p><p><a href="#" id="movie_castcrew_link">[See More Credits]</a></p> </div>
|
350
|
+
|
351
|
+
|
352
|
+
</div>
|
353
|
+
|
354
|
+
<script type="text/javascript">
|
355
|
+
function working_ajax(id, url) {
|
356
|
+
var target = '#' + id; if (id == 'div_trailers_row_ID_0') {
|
357
|
+
$('#div_pictures_row_ID_0').hide();
|
358
|
+
$('#div_trailers_row_ID_0').show();
|
359
|
+
} else {
|
360
|
+
$('#div_trailers_row_ID_0').hide();
|
361
|
+
$('#div_pictures_row_ID_0').show();
|
362
|
+
}
|
363
|
+
if (jQuery.trim($(target).html()) == '') {
|
364
|
+
$(target).html('<div class="loading strip_loading"></div>');
|
365
|
+
|
366
|
+
$.ajax({
|
367
|
+
type: "GET",
|
368
|
+
url: url,
|
369
|
+
success: function(text) {
|
370
|
+
$(target).html(text);
|
371
|
+
}
|
372
|
+
});
|
373
|
+
}
|
374
|
+
}
|
375
|
+
|
376
|
+
$(document).ready(function() {
|
377
|
+
$("th.toggle a").tooltip({
|
378
|
+
delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: " - ", extraClass: "bubbleFixedLeftXSmallTop", top: -75, left: -2
|
379
|
+
});
|
380
|
+
|
381
|
+
// Preload tooltip bgs
|
382
|
+
if ($.browser.msie && ($.browser.version == 6)) { var bubbleExt = "gif"; } else { var bubbleExt = "png"; }
|
383
|
+
var bubbleSmall = "http://images.rottentomatoes.com/images_REDESIGN/template/bubble_small." + bubbleExt;
|
384
|
+
var bubbleXSmall = "http://images.rottentomatoes.com/images_REDESIGN/template/bubble_xsmall." + bubbleExt;
|
385
|
+
var bubbleLeftXSmall = "http://images.rottentomatoes.com/images_REDESIGN/template/bubbleLeft_xsmall." + bubbleExt;
|
386
|
+
$.preloadImages(bubbleSmall, bubbleXSmall);
|
387
|
+
|
388
|
+
// toggles tooltip selected state
|
389
|
+
$('ul#trailers_pictures_nav li').click(function(){
|
390
|
+
$(this).addClass('ui-tabs-selected');
|
391
|
+
if ($(this).hasClass('ui-tabs-selected')) {
|
392
|
+
$('ul#trailers_pictures_nav li').removeAttr('class');
|
393
|
+
}
|
394
|
+
$(this).addClass('ui-tabs-selected');
|
395
|
+
// keep dupe addclasses to fix unknown UI-Tabs click conflict
|
396
|
+
});
|
397
|
+
});
|
398
|
+
</script><ul id="trailers_pictures_nav" class="ui-tabs-nav ui-tabs-nav-liquid"> <li class="ui-tabs-selected"><a title="" href="javascript:working_ajax('div_trailers_row_ID_0', '/trailers_pictures/photo_strip_ajax.php?media_type=trailers&skin=mob&type=2&id=1217700');"><span>Trailers</span></a></li>
|
399
|
+
<li><a title="" href="javascript:working_ajax('div_pictures_row_ID_0', '/trailers_pictures/photo_strip_ajax.php?media_type=pictures&skin=mob&type=2&id=1217700');"><span>Pictures</span></a></li>
|
400
|
+
</ul><div id="multimedia_thumbnails_empty" class="dialog chromeGreenMain">
|
401
|
+
<div class="dialog_content clearfix">
|
402
|
+
<div class="t"></div>
|
403
|
+
<div class="photostrip_container">
|
404
|
+
|
405
|
+
<div class="photostrip" id="row_ID_0">
|
406
|
+
|
407
|
+
<div class="photostrip_toggle">
|
408
|
+
|
409
|
+
<div id="div_trailers_row_ID_0" class="trailers"> <script type="text/javascript">
|
410
|
+
|
411
|
+
$(document).ready(function() { $("a#thumbnail_trailer_link_httpmediaigncomthumb3053054187kickasstrlr111209qthighwidethumbrtjpg13").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
412
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3053054187kickasstrlr111209qthighwidethumbrtjpg13").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
413
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3083088924kickasshitgirlredtrl122109qthighwidethumbrtjpg12").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
414
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3083088924kickasshitgirlredtrl122109qthighwidethumbrtjpg12").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
415
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3093090607kickass1122209qthighwidethumbrtjpg11").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
416
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3093090607kickass1122209qthighwidethumbrtjpg11").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
417
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3103101579kickasstrlr011210qthighwidethumbrtjpg10").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
418
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3103101579kickasstrlr011210qthighwidethumbrtjpg10").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
419
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3123125050kainttrlr020510qthighwidethumbrtjpg9").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
420
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3123125050kainttrlr020510qthighwidethumbrtjpg9").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
421
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3133139015kickasstrl3a022310qthighwidethumbrtjpg8").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
422
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3133139015kickasstrl3a022310qthighwidethumbrtjpg8").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
423
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3163169841kickass1032510qthighthumbrtjpg7").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
424
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3163169841kickass1032510qthighthumbrtjpg7").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
425
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3163169839kickass2032510qthighthumbrtjpg6").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
426
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3163169839kickass2032510qthighthumbrtjpg6").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
427
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3173175370kickassswitchblade040110qthighwidethumbrtjpg5").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
428
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3173175370kickassswitchblade040110qthighwidethumbrtjpg5").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
429
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3183181859kickasswarehouse040510qthighwidethumbrtjpg4").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
430
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181859kickasswarehouse040510qthighwidethumbrtjpg4").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
431
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3183181866kickass1040910qthighwidethumbrtjpg3").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
432
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181866kickass1040910qthighwidethumbrtjpg3").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
433
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3183181865kickasssensation040510qthighthumbrtjpg2").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
434
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181865kickasssensation040510qthighthumbrtjpg2").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
435
|
+
$("a#thumbnail_trailer_link_httpmediaigncomthumb3183181861kickass2040910qthighwidethumbrtjpg1").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
436
|
+
$("div#thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181861kickass2040910qthighwidethumbrtjpg1").tooltip({ delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: "", extraClass: "bubbleFixedSmallTop", top: -96, left: -60 });
|
437
|
+
$("#multimedia_partial_trailers_movie_1217700_thumbnail_group_pane").rt_scrollMultimedia( {
|
438
|
+
MAX_PHOTOS: 13,
|
439
|
+
id: "multimedia_partial_trailers_movie_1217700",
|
440
|
+
curThumbGroup: 1,
|
441
|
+
maxThumbGroup: 4,
|
442
|
+
numThumbs: 4,
|
443
|
+
thumbGroupContainerWidth: 490,
|
444
|
+
default_time: 800
|
445
|
+
}); if (!BROWSER_IE6) {
|
446
|
+
$('.videoImg').each(function() {
|
447
|
+
if ($(this).children('div.videoImgControl a')) {
|
448
|
+
$(this)
|
449
|
+
.mouseover(function() {
|
450
|
+
$(this).children('a.abstract').addClass("hover");
|
451
|
+
$(this).children('div.videoImgControl').children('a').addClass("hover");
|
452
|
+
})
|
453
|
+
.mouseout(function() {
|
454
|
+
$(this).children('a.abstract').removeClass("hover");
|
455
|
+
$(this).children('div.videoImgControl').children('a').removeClass("hover");
|
456
|
+
})
|
457
|
+
.mousedown(function() {
|
458
|
+
$(this).children('div.videoImgControl').children('a').toggleClass("active");
|
459
|
+
})
|
460
|
+
.mouseup(function() {
|
461
|
+
$(this).children('div.videoImgControl').children('a').removeClass("hover active");
|
462
|
+
});
|
463
|
+
}
|
464
|
+
});
|
465
|
+
} });
|
466
|
+
</script>
|
467
|
+
|
468
|
+
<div id="photostrip_thumbnails" class="thumbnails_module">
|
469
|
+
|
470
|
+
<div class="thumb_container">
|
471
|
+
|
472
|
+
<div id="multimedia_partial_trailers_movie_1217700_thumbnail_group_pane" class="thumbnail_trailer_group_pane fl">
|
473
|
+
<ul id="multimedia_partial_trailers_movie_1217700_thumbnail_group_container" class="thumbnail_trailer_group_container"> <li id="multimedia_partial_trailers_movie_1217700_thumbnail_group_id_1" class="thumbnail_group clearfix"> <div class="thumbnail_trailer_container fl first">
|
474
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3053054187kickasstrlr111209qthighwidethumbrtjpg13" title="Trailer" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_trlr_111209.html">
|
475
|
+
<img alt="Trailer" src="http://media.ign.com/thumb/305/3054187/kick_ass_trlr_111209_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3053054187kickasstrlr111209qthighwidethumbrtjpg13" title="Trailer" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_trlr_111209.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
476
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3083088924kickasshitgirlredtrl122109qthighwidethumbrtjpg12" title="Hit-Girl Teaser Trailer" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_hitgirl_redtrl_122109.html">
|
477
|
+
<img alt="Hit-Girl Teaser Trailer" src="http://media.ign.com/thumb/308/3088924/kickass_hitgirl_redtrl_122109_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3083088924kickasshitgirlredtrl122109qthighwidethumbrtjpg12" title="Hit-Girl Teaser Trailer" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_hitgirl_redtrl_122109.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
478
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3093090607kickass1122209qthighwidethumbrtjpg11" title="Baby Doll" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_1_122209.html">
|
479
|
+
<img alt="Baby Doll" src="http://media.ign.com/thumb/309/3090607/kick_ass_1_122209_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3093090607kickass1122209qthighwidethumbrtjpg11" title="Baby Doll" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_1_122209.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
480
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3103101579kickasstrlr011210qthighwidethumbrtjpg10" title="Trailer" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_trlr_011210.html">
|
481
|
+
<img alt="Trailer" src="http://media.ign.com/thumb/310/3101579/kick_ass_trlr_011210_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3103101579kickasstrlr011210qthighwidethumbrtjpg10" title="Trailer" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kick_ass_trlr_011210.html"><span>></span></a></div></div></div> </li> <li id="multimedia_partial_trailers_movie_1217700_thumbnail_group_id_2" class="thumbnail_group clearfix"> <div class="thumbnail_trailer_container fl first">
|
482
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3123125050kainttrlr020510qthighwidethumbrtjpg9" title="International Trailer" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/ka_inttrlr_020510.html">
|
483
|
+
<img alt="International Trailer" src="http://media.ign.com/thumb/312/3125050/ka_inttrlr_020510_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3123125050kainttrlr020510qthighwidethumbrtjpg9" title="International Trailer" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/ka_inttrlr_020510.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
484
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3133139015kickasstrl3a022310qthighwidethumbrtjpg8" title="Red Band Trailer" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_trl3a_022310.html">
|
485
|
+
<img alt="Red Band Trailer" src="http://media.ign.com/thumb/313/3139015/kickass_trl3a_022310_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3133139015kickasstrl3a022310qthighwidethumbrtjpg8" title="Red Band Trailer" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_trl3a_022310.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
486
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3163169841kickass1032510qthighthumbrtjpg7" title="Mist Mobile" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_1_032510.html">
|
487
|
+
<img alt="Mist Mobile" src="http://media.ign.com/thumb/316/3169841/kickass_1_032510_qthigh_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3163169841kickass1032510qthighthumbrtjpg7" title="Mist Mobile" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_1_032510.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
488
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3163169839kickass2032510qthighthumbrtjpg6" title="Suit Up" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_2_032510.html">
|
489
|
+
<img alt="Suit Up" src="http://media.ign.com/thumb/316/3169839/kickass_2_032510_qthigh_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3163169839kickass2032510qthighthumbrtjpg6" title="Suit Up" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_2_032510.html"><span>></span></a></div></div></div> </li> <li id="multimedia_partial_trailers_movie_1217700_thumbnail_group_id_3" class="thumbnail_group clearfix"> <div class="thumbnail_trailer_container fl first">
|
490
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3173175370kickassswitchblade040110qthighwidethumbrtjpg5" title="Birthday Present" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_switchblade_040110.html">
|
491
|
+
<img alt="Birthday Present" src="http://media.ign.com/thumb/317/3175370/kickass_switchblade_040110_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3173175370kickassswitchblade040110qthighwidethumbrtjpg5" title="Birthday Present" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_switchblade_040110.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
492
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3183181859kickasswarehouse040510qthighwidethumbrtjpg4" title="Warehouse Murder Rampage" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_warehouse_040510.html">
|
493
|
+
<img alt="Warehouse Murder Rampage" src="http://media.ign.com/thumb/318/3181859/kickass_warehouse_040510_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181859kickasswarehouse040510qthighwidethumbrtjpg4" title="Warehouse Murder Rampage" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_warehouse_040510.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
494
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3183181866kickass1040910qthighwidethumbrtjpg3" title="Parking Lot Fight" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_1_040910.html">
|
495
|
+
<img alt="Parking Lot Fight" src="http://media.ign.com/thumb/318/3181866/kickass_1_040910_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181866kickass1040910qthighwidethumbrtjpg3" title="Parking Lot Fight" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_1_040910.html"><span>></span></a></div></div></div> <div class="thumbnail_trailer_container fl">
|
496
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3183181865kickasssensation040510qthighthumbrtjpg2" title="Sensation" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_sensation_040510.html">
|
497
|
+
<img alt="Sensation" src="http://media.ign.com/thumb/318/3181865/kickass_sensation_040510_qthigh_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181865kickasssensation040510qthighthumbrtjpg2" title="Sensation" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_sensation_040510.html"><span>></span></a></div></div></div> </li> <li id="multimedia_partial_trailers_movie_1217700_thumbnail_group_id_4" class="thumbnail_group clearfix"> <div class="thumbnail_trailer_container fl first ">
|
498
|
+
<div class="thumbnail videoImg"><a id="thumbnail_trailer_link_httpmediaigncomthumb3183181861kickass2040910qthighwidethumbrtjpg1" title="Not Gay" class="thumbnail_container_img_abstract" rel="v:trailerUrl"href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_2_040910.html">
|
499
|
+
<img alt="Not Gay" src="http://media.ign.com/thumb/318/3181861/kickass_2_040910_qthighwide_thumb_rt.jpg" width="106" height="80" /></a><div id="thumbnail_trailer_link_videobutton_httpmediaigncomthumb3183181861kickass2040910qthighwidethumbrtjpg1" title="Not Gay" class="videoImgControl"><a class="medium " href="/dor/objects/14276014/1217700-kick_ass/videos/kickass_2_040910.html"><span>></span></a></div></div></div> </li> </ul>
|
500
|
+
</div>
|
501
|
+
</div>
|
502
|
+
|
503
|
+
<div class="thumb_nav_container clearfix">
|
504
|
+
|
505
|
+
<div class="thumb_nav_btn_container first"><button type="submit" id="multimedia_partial_trailers_movie_1217700_thumb_nav_first" name="thumb_nav_submit" class="submitBtn_disabled thumb_nav_btn" value="first"><span>|<</span></button></div>
|
506
|
+
|
507
|
+
<div class="thumb_nav_btn_container"><button type="submit" id="multimedia_partial_trailers_movie_1217700_thumb_nav_prev" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="prev"><span><<</span></button></div>
|
508
|
+
|
509
|
+
<div class="thumb_nav_descriptor_container">
|
510
|
+
<div id="multimedia_partial_trailers_movie_1217700_thumb_nav_descriptor" class="thumb_nav_descriptor">
|
511
|
+
1 - 4 of 13 </div>
|
512
|
+
</div>
|
513
|
+
|
514
|
+
<div class="thumb_nav_btn_container"><button type="submit" id="multimedia_partial_trailers_movie_1217700_thumb_nav_next" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="next"><span>>></span></button></div>
|
515
|
+
|
516
|
+
<div class="thumb_nav_btn_container clearfix"><button type="submit" id="multimedia_partial_trailers_movie_1217700_thumb_nav_last" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="last"><span>>|</span></button></div>
|
517
|
+
|
518
|
+
</div>
|
519
|
+
|
520
|
+
</div>
|
521
|
+
</div>
|
522
|
+
|
523
|
+
<div id="div_pictures_row_ID_0" class="pictures" style="display:none;"> </div>
|
524
|
+
|
525
|
+
</div>
|
526
|
+
|
527
|
+
</div>
|
528
|
+
</div>
|
529
|
+
<p id="seemore" class="clearfix"><a href="/trailers_pictures/">See More Movie Trailers & Pictures</a></p></div>
|
530
|
+
<div class="b"><div></div></div>
|
531
|
+
</div>
|
532
|
+
</div>
|
533
|
+
</div>
|
534
|
+
</div>
|
535
|
+
<script type="text/javascript">
|
536
|
+
/* <![CDATA[ */
|
537
|
+
var addtolist_event = function(el, el_content) {
|
538
|
+
|
539
|
+
el.click(function(e){
|
540
|
+
el_content.find("p.messages").remove();
|
541
|
+
el_content.find("#add_to_list_frm")[0].reset();
|
542
|
+
el_content.dialog({ dialogClass: 'dialog-rt', width: 460, height: 330 }, 'open');
|
543
|
+
e.preventDefault();
|
544
|
+
})
|
545
|
+
.hover(function(){
|
546
|
+
window.status = "";
|
547
|
+
});
|
548
|
+
};
|
549
|
+
var $addtolist_content = $('#addtolist_list_add_2_1217700');
|
550
|
+
var $addtolist_href = $('#addtolist_href');
|
551
|
+
addtolist_event ($addtolist_href, $addtolist_content);
|
552
|
+
/* ]]> */
|
553
|
+
</script><div id="sell_thru_main" class="content ">
|
554
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>Get This Movie</h3></div></div></div>
|
555
|
+
<div class="content_body clearfix">
|
556
|
+
|
557
|
+
<h6>Rent DVD</h6>
|
558
|
+
<div id="netflix" class="content_abstract">
|
559
|
+
<div class="white"><div class="content_abstract_cornerContainer"><div class="content_abstract_corner1"> </div><div class="content_abstract_corner2"> </div></div><div class="content_abstract_content"><div class="content_abstract_content2"><div id="rentdvd"><script type="text/javascript" src="http://jsapi.netflix.com/us/api/js/api.js">
|
560
|
+
{
|
561
|
+
"button_type" : ["SAVE_BUTTON"],
|
562
|
+
"title_id" : "http://api.netflix.com/catalog/titles/movies/70117290",
|
563
|
+
"show_logo" : "true",
|
564
|
+
"x" : "50",
|
565
|
+
"y" : "-50",
|
566
|
+
"dom_id" : "netflix_content",
|
567
|
+
"application_id" : "5cw86twej4ss35upf27wwn37" }
|
568
|
+
</script><div id="netflix_content" class="valign_container_outer"><div class="valign_container_middle"><p class="valign_container_inner">Click on the "SAVE" button to put this movie into your Netflix queue.</p></div></div></div>
|
569
|
+
</div></div><div class="content_abstract_cornerContainer"><div class="content_abstract_corner3"> </div><div class="content_abstract_corner4"> </div></div></div></div> </div>
|
570
|
+
</div><script type="text/javascript">
|
571
|
+
/* <![CDATA[ */
|
572
|
+
|
573
|
+
function onSelectChange() {
|
574
|
+
var selected = $("#dvd_ver option:selected");
|
575
|
+
var val = $(this).attr('value');
|
576
|
+
var output = "";
|
577
|
+
if(selected.val() != 0){
|
578
|
+
output = '/m/1217700-kick_ass/?dvd_ver=' + val + '\#sell_thru_main';
|
579
|
+
}
|
580
|
+
window.location = output;
|
581
|
+
}
|
582
|
+
|
583
|
+
$.elementReady('sell_thru_main', function(){
|
584
|
+
|
585
|
+
$("#DVDEditionDDL").change(onSelectChange);
|
586
|
+
|
587
|
+
// DVD Info - More
|
588
|
+
$("#DVDDetailButtonItem").toggle(function(){
|
589
|
+
$("#DVDInfoBlock").animate({ height: 'show', opacity: 'show' }, 'fast');
|
590
|
+
$("#DVDDetailButton a").html('[Hide DVD Details]');
|
591
|
+
},function(){
|
592
|
+
$("#DVDInfoBlock").animate({ height: 'hide', opacity: 'hide' }, 'fast');
|
593
|
+
$("#DVDDetailButton a").html('[DVD Details]');
|
594
|
+
});
|
595
|
+
|
596
|
+
});
|
597
|
+
|
598
|
+
/* ]]> */
|
599
|
+
</script>
|
600
|
+
<div id="contentReviews" class="content ">
|
601
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>Reviews for Kick-Ass</h3></div></div></div>
|
602
|
+
<div class="content_body clearfix">
|
603
|
+
<ul class="ui-tabs-nav"> <li class="ui-tabs-selected"><a title="" href="/m/1217700-kick_ass/?name_order=asc#contentReviews"><span>T-Meter Critics</span></a></li>
|
604
|
+
<li><a title="" href="/m/1217700-kick_ass/?critic=creamcrop#contentReviews"><span>Top Critics</span></a></li>
|
605
|
+
<li><a title="" href="reviews_users.php#contentReviews"><span>RT Community</span></a></li>
|
606
|
+
<li><a title="" href="reviews_mycritics.php#contentReviews"><span>My Critics</span></a></li>
|
607
|
+
<li><a title="" href="reviews_friends.php#contentReviews"><span>My Friends</span></a></li>
|
608
|
+
</ul> <div id="movieobjectnav" class="tertiarynav">
|
609
|
+
<div id="ReviewsBlock" class="content_abstract_tertiarynav">
|
610
|
+
<div class="content_abstract_tertiarynav_cornerContainer">
|
611
|
+
<div class="content_abstract_tertiarynav_corner1"> </div>
|
612
|
+
<div class="content_abstract_tertiarynav_corner2"> </div>
|
613
|
+
</div> <div id="Reviews_Container_Content" class="content_abstract_tertiarynav_content clearfix"><div class="main_reviews_column_nav"><div class="fl">1 - 20 <span style="font-weight:normal;">(sorted by date)</span></div>
|
614
|
+
|
615
|
+
<div class="fr blue_link_sm" style="width:300px; text-align:right;"><a href="?page=1&critic=columns&sortby=date&name_order=asc&view=text#contentReviews">Text View</a> | 1 <a href="?page=2&critic=columns&sortby=date&name_order=asc&view=#contentReviews">2</a> <a href="?page=3&critic=columns&sortby=date&name_order=asc&view=#contentReviews">3</a> <a href="?page=4&critic=columns&sortby=date&name_order=asc&view=#contentReviews">4</a> <a href="?page=5&critic=columns&sortby=date&name_order=asc&view=#contentReviews">5</a> <a href="?page=6&critic=columns&sortby=date&name_order=asc&view=#contentReviews">6</a> <a href="?page=7&critic=columns&sortby=date&name_order=asc&view=#contentReviews">7</a> <a href="?page=8&critic=columns&sortby=date&name_order=asc&view=#contentReviews">8</a> <a href="?page=9&critic=columns&sortby=date&name_order=asc&view=#contentReviews">9</a> <a href="?page=10&critic=columns&sortby=date&name_order=asc&view=#contentReviews">10</a> <a href="?page=11&critic=columns&sortby=date&name_order=asc&view=#contentReviews">11</a> <a href="?page=2&critic=columns&sortby=date&name_order=asc&view=#contentReviews">>></a> <a href="?page=11&critic=columns&sortby=date&name_order=asc&view=#contentReviews">>|</a> </div><!-- // fr blue_link_sm --></div>
|
616
|
+
<div class="content_abstract green">
|
617
|
+
<div class="main_reviews_column_sort"><span id="main_reviews_column_sort_label">Arrange By:</span><a href="?critic=columns&sortby=fresh&name_order=asc&view=#contentReviews">Fresh</a> | <a href="?critic=columns&sortby=rotten&name_order=asc&view=#contentReviews">Rotten</a> | <a href="?critic=columns&sortby=comments&name_order=asc&view=#contentReviews">Comments</a> | <a href="?critic=columns&sortby=name&name_order=asc&view=#contentReviews">Name</a> | <a href="?critic=columns&sortby=source&name_order=asc&view=#contentReviews">Source</a> | <span class="selected">Date</span></div><!-- // .main_reviews_column_sort -->
|
618
|
+
</div><!-- // .content_abstract green --><div id="Content_Reviews" class="content_abstract">
|
619
|
+
<div class="lightblue"><div class="content_abstract_cornerContainer"><div class="content_abstract_corner1"> </div><div class="content_abstract_corner2"> </div></div><div class="content_abstract_content"><div class="content_abstract_content2"><div class="movie_reviews_column"> <div class="quoteBubble">
|
620
|
+
<div class="top"></div>
|
621
|
+
<div class="container">
|
622
|
+
<div class="middle">
|
623
|
+
<div class="content">
|
624
|
+
<div class="rating">
|
625
|
+
<a title="2.0/4.0" href="/m/1217700-kick_ass/articles/1880863/kick_ass_is_only_half_right" rel="nofollow" target="_blank">
|
626
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
627
|
+
</a>
|
628
|
+
</div>
|
629
|
+
<p>Kick-Ass is only half right. </p>
|
630
|
+
|
631
|
+
<div class="toolsContainer">
|
632
|
+
<div class="tools">
|
633
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880863/kick_ass_is_only_half_right" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Illinois Times" title="Source: Illinois Times" width="10" height="8" border="0" />
|
634
|
+
</a> |
|
635
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880863"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
636
|
+
</div> <div class="date">
|
637
|
+
04/22/10 </div> </div> </div> </div> <div class="bottom">
|
638
|
+
<div class="criticImage">
|
639
|
+
<a rel="nofollow" href="/author/author-13045/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Charles Koplinski" /></a>
|
640
|
+
</div>
|
641
|
+
<div class="criticContent">
|
642
|
+
<div class="author">
|
643
|
+
<a rel="nofollow" href="/author/author-13045/">Charles Koplinski</a>
|
644
|
+
</div>
|
645
|
+
<div class="source">
|
646
|
+
<a href="/source-2026/">Illinois Times</a>
|
647
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
648
|
+
<div class="top"></div>
|
649
|
+
<div class="container">
|
650
|
+
<div class="middle">
|
651
|
+
<div class="content">
|
652
|
+
<div class="rating">
|
653
|
+
<a title="7/10" href="/m/1217700-kick_ass/articles/1880686/the_movie_gives_us_good_reason_to_ask_why_weve_become_so_accustomed_to_adults_behaving_like_invulnerable_comic_book_characters_in_pretty_much_every_action_movie_even_those_with_serious_pretensions" rel="nofollow" target="_blank">
|
654
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
655
|
+
</a>
|
656
|
+
</div>
|
657
|
+
<p>The movie gives us good reason to ask why we've become so accustomed to adults behaving like invulnerable comic-book characters in pretty much every action movie, even those with serious pretensions. </p>
|
658
|
+
|
659
|
+
<div class="toolsContainer">
|
660
|
+
<div class="tools">
|
661
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880686/the_movie_gives_us_good_reason_to_ask_why_weve_become_so_accustomed_to_adults_behaving_like_invulnerable_comic_book_characters_in_pretty_much_every_action_movie_even_those_with_serious_pretensions" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Seven Days" title="Source: Seven Days" width="10" height="8" border="0" />
|
662
|
+
</a> |
|
663
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880686"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
664
|
+
</div> <div class="date">
|
665
|
+
04/21/10 </div> </div> </div> </div> <div class="bottom">
|
666
|
+
<div class="criticImage">
|
667
|
+
<a rel="nofollow" href="/author/author-13426/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Margot Harrison" /></a>
|
668
|
+
</div>
|
669
|
+
<div class="criticContent">
|
670
|
+
<div class="author">
|
671
|
+
<a rel="nofollow" href="/author/author-13426/">Margot Harrison</a>
|
672
|
+
</div>
|
673
|
+
<div class="source">
|
674
|
+
<a href="/source-2240/">Seven Days</a>
|
675
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
676
|
+
<div class="top"></div>
|
677
|
+
<div class="container">
|
678
|
+
<div class="middle">
|
679
|
+
<div class="content">
|
680
|
+
<div class="rating">
|
681
|
+
<a title="B+" href="/m/1217700-kick_ass/articles/1880594/matthew_vaughn_and_company_turn_the_super_hero_image_on_its_ear_reinventing_the_genre" rel="nofollow" target="_blank">
|
682
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
683
|
+
</a>
|
684
|
+
</div>
|
685
|
+
<p>Matthew Vaughn and company turn the super hero image on its ear, reinventing the genre. </p>
|
686
|
+
|
687
|
+
<div class="toolsContainer">
|
688
|
+
<div class="tools">
|
689
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880594/matthew_vaughn_and_company_turn_the_super_hero_image_on_its_ear_reinventing_the_genre" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Reeling Reviews" title="Source: Reeling Reviews" width="10" height="8" border="0" />
|
690
|
+
</a> |
|
691
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880594"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 4 Comments</a>
|
692
|
+
</div> <div class="date">
|
693
|
+
04/20/10 </div> </div> </div> </div> <div class="bottom">
|
694
|
+
<div class="criticImage">
|
695
|
+
<a rel="nofollow" href="/author/author-1488/"><img src="http://images.rottentomatoes.com/images/author/photo/1488_icon.gif" border="0" alt="Robin Clifford" /></a>
|
696
|
+
</div>
|
697
|
+
<div class="criticContent">
|
698
|
+
<div class="author">
|
699
|
+
<a rel="nofollow" href="/author/author-1488/">Robin Clifford</a>
|
700
|
+
</div>
|
701
|
+
<div class="source">
|
702
|
+
<a href="/source-386/">Reeling Reviews</a>
|
703
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
704
|
+
<div class="top"></div>
|
705
|
+
<div class="container">
|
706
|
+
<div class="middle">
|
707
|
+
<div class="content">
|
708
|
+
<div class="rating">
|
709
|
+
<a title="4/10" href="/m/1217700-kick_ass/articles/1880592/the_select_audience_it_is_aimed_for_will_thoroughly_enjoy_it_while_the_rest_of_us_will_suffer_through_it" rel="nofollow" target="_blank">
|
710
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
711
|
+
</a>
|
712
|
+
</div>
|
713
|
+
<p>The select audience it is aimed for will thoroughly enjoy it while the rest of us will suffer through it. </p>
|
714
|
+
|
715
|
+
<div class="toolsContainer">
|
716
|
+
<div class="tools">
|
717
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880592/the_select_audience_it_is_aimed_for_will_thoroughly_enjoy_it_while_the_rest_of_us_will_suffer_through_it" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: jackiekcooper.com" title="Source: jackiekcooper.com" width="10" height="8" border="0" />
|
718
|
+
</a> |
|
719
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880592"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 7 Comments</a>
|
720
|
+
</div> <div class="date">
|
721
|
+
04/20/10 </div> </div> </div> </div> <div class="bottom">
|
722
|
+
<div class="criticImage">
|
723
|
+
<a rel="nofollow" href="/author/author-10513/"><img src="http://images.rottentomatoes.com/images/author/photo/10513_icon.gif" border="0" alt="Jackie K. Cooper" /></a>
|
724
|
+
</div>
|
725
|
+
<div class="criticContent">
|
726
|
+
<div class="author">
|
727
|
+
<a rel="nofollow" href="/author/author-10513/">Jackie K. Cooper</a>
|
728
|
+
</div>
|
729
|
+
<div class="source">
|
730
|
+
<a href="/source-1557/">jackiekcooper.com</a>
|
731
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
732
|
+
<div class="top"></div>
|
733
|
+
<div class="container">
|
734
|
+
<div class="middle">
|
735
|
+
<div class="content">
|
736
|
+
<div class="rating">
|
737
|
+
<a title="4/4" href="/m/1217700-kick_ass/articles/1880584/the_best_comic_book_screen_adaptation_since_the_dark_knight" rel="nofollow" target="_blank">
|
738
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
739
|
+
</a>
|
740
|
+
</div>
|
741
|
+
<p>The best comic book screen adaptation since The Dark Knight! </p>
|
742
|
+
|
743
|
+
<div class="toolsContainer">
|
744
|
+
<div class="tools">
|
745
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880584/the_best_comic_book_screen_adaptation_since_the_dark_knight" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: NewsBlaze" title="Source: NewsBlaze" width="10" height="8" border="0" />
|
746
|
+
</a> |
|
747
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880584"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 6 Comments</a>
|
748
|
+
</div> <div class="date">
|
749
|
+
04/20/10 </div> </div> </div> </div> <div class="bottom">
|
750
|
+
<div class="criticImage">
|
751
|
+
<a rel="nofollow" href="/author/author-12230/"><img src="http://images.rottentomatoes.com/images/author/photo/12230_icon.gif" border="0" alt="Kam Williams" /></a>
|
752
|
+
</div>
|
753
|
+
<div class="criticContent">
|
754
|
+
<div class="author">
|
755
|
+
<a rel="nofollow" href="/author/author-12230/">Kam Williams</a>
|
756
|
+
</div>
|
757
|
+
<div class="source">
|
758
|
+
<a href="/source-1794/">NewsBlaze</a>
|
759
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
760
|
+
<div class="top"></div>
|
761
|
+
<div class="container">
|
762
|
+
<div class="middle">
|
763
|
+
<div class="content">
|
764
|
+
<div class="rating">
|
765
|
+
<a title="5/10" href="/m/1217700-kick_ass/articles/1880571/it_isnt_terribly_good_nor_terribly_fun_nor_terribly_anything_not_even_terribly_violent_though_youve_probably_heard_otherwise_from_an_assortment_of_moral_scolds" rel="nofollow" target="_blank">
|
766
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
767
|
+
</a>
|
768
|
+
</div>
|
769
|
+
<p>It isn't terribly good, nor terribly fun, nor terribly anything - not even terribly violent, though you've probably heard otherwise from an assortment of moral scolds. </p>
|
770
|
+
|
771
|
+
<div class="toolsContainer">
|
772
|
+
<div class="tools">
|
773
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880571/it_isnt_terribly_good_nor_terribly_fun_nor_terribly_anything_not_even_terribly_violent_though_youve_probably_heard_otherwise_from_an_assortment_of_moral_scolds" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Antagony & Ecstasy" title="Source: Antagony & Ecstasy" width="10" height="8" border="0" />
|
774
|
+
</a> |
|
775
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880571"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 8 Comments</a>
|
776
|
+
</div> <div class="date">
|
777
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
778
|
+
<div class="criticImage">
|
779
|
+
<a rel="nofollow" href="/author/author-12682/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Tim Brayton" /></a>
|
780
|
+
</div>
|
781
|
+
<div class="criticContent">
|
782
|
+
<div class="author">
|
783
|
+
<a rel="nofollow" href="/author/author-12682/">Tim Brayton</a>
|
784
|
+
</div>
|
785
|
+
<div class="source">
|
786
|
+
<a href="/source-1900/">Antagony & Ecstasy</a>
|
787
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
788
|
+
<div class="top"></div>
|
789
|
+
<div class="container">
|
790
|
+
<div class="middle">
|
791
|
+
<div class="content">
|
792
|
+
<div class="rating">
|
793
|
+
<a title="B" href="/m/1217700-kick_ass/articles/1880560/certainly_entertaining_enough_as_an_action_film_and_it_works_well_enough_as_a_love_story_but_there_are_some_serious_problems_with_the_dramatic_portions_of_the_film_and_its_warped_moral_message" rel="nofollow" target="_blank">
|
794
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
795
|
+
</a>
|
796
|
+
</div>
|
797
|
+
<p>Certainly entertaining enough as an action film and it works well enough as a love story, but there are some serious problems with the dramatic portions of the film and its warped moral message. </p>
|
798
|
+
|
799
|
+
<div class="toolsContainer">
|
800
|
+
<div class="tools">
|
801
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880560/certainly_entertaining_enough_as_an_action_film_and_it_works_well_enough_as_a_love_story_but_there_are_some_serious_problems_with_the_dramatic_portions_of_the_film_and_its_warped_moral_message" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Laramie Movie Scope" title="Source: Laramie Movie Scope" width="10" height="8" border="0" />
|
802
|
+
</a> |
|
803
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880560"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
804
|
+
</div> <div class="date">
|
805
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
806
|
+
<div class="criticImage">
|
807
|
+
<a rel="nofollow" href="/author/author-143/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Robert Roten" /></a>
|
808
|
+
</div>
|
809
|
+
<div class="criticContent">
|
810
|
+
<div class="author">
|
811
|
+
<a rel="nofollow" href="/author/author-143/">Robert Roten</a>
|
812
|
+
</div>
|
813
|
+
<div class="source">
|
814
|
+
<a href="/source-254/">Laramie Movie Scope</a>
|
815
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
816
|
+
<div class="top"></div>
|
817
|
+
<div class="container">
|
818
|
+
<div class="middle">
|
819
|
+
<div class="content">
|
820
|
+
<div class="rating">
|
821
|
+
<a title="3/5" href="/m/1217700-kick_ass/articles/1880552/however_the_film_also_has_major_pacing_issues_is_pretty_damned_boring_and_saddles_the_audience_with_the_least_interesting_character_in_the_entire_film_kick_ass_as_a_result_i_felt_the_film_was_simply_ok_when_it_could_have_been_much_much_better" rel="nofollow" target="_blank">
|
822
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
823
|
+
</a>
|
824
|
+
</div>
|
825
|
+
<p>However the film also has major pacing issues, is pretty damned boring and saddles the audience with the least interesting character in the entire film, Kick-Ass. As a result I felt the film was simply o.k. when it could have been much, much better. </p>
|
826
|
+
|
827
|
+
<div class="toolsContainer">
|
828
|
+
<div class="tools">
|
829
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880552/however_the_film_also_has_major_pacing_issues_is_pretty_damned_boring_and_saddles_the_audience_with_the_least_interesting_character_in_the_entire_film_kick_ass_as_a_result_i_felt_the_film_was_simply_ok_when_it_could_have_been_much_much_better" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Film Threat" title="Source: Film Threat" width="10" height="8" border="0" />
|
830
|
+
</a> |
|
831
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880552"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 2 Comments</a>
|
832
|
+
</div> <div class="date">
|
833
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
834
|
+
<div class="criticImage">
|
835
|
+
<a rel="nofollow" href="/author/author-5887/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Don R. Lewis" /></a>
|
836
|
+
</div>
|
837
|
+
<div class="criticContent">
|
838
|
+
<div class="author">
|
839
|
+
<a rel="nofollow" href="/author/author-5887/">Don R. Lewis</a>
|
840
|
+
</div>
|
841
|
+
<div class="source">
|
842
|
+
<a href="/source-174/">Film Threat</a>
|
843
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
844
|
+
<div class="top"></div>
|
845
|
+
<div class="container">
|
846
|
+
<div class="middle">
|
847
|
+
<div class="content">
|
848
|
+
<div class="rating">
|
849
|
+
<a title="84/100" href="/m/1217700-kick_ass/articles/1880551/comic_scribe_mark_millar_and_director_matthew_vaughns_pitch_black_love_letter_to_the_genre_werthams_greatest_fear_is_fully_realized_in_an_irresponsible_blitzkrieg_of_irony_tinged_fun" rel="nofollow" target="_blank">
|
850
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
851
|
+
</a>
|
852
|
+
</div>
|
853
|
+
<p>Comic scribe Mark Millar and director Matthew Vaughn�s pitch-black love letter to the genre, Wertham�s greatest fear is fully realized in an irresponsible blitzkrieg of irony-tinged fun. </p>
|
854
|
+
|
855
|
+
<div class="toolsContainer">
|
856
|
+
<div class="tools">
|
857
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880551/comic_scribe_mark_millar_and_director_matthew_vaughns_pitch_black_love_letter_to_the_genre_werthams_greatest_fear_is_fully_realized_in_an_irresponsible_blitzkrieg_of_irony_tinged_fun" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Paste Magazine" title="Source: Paste Magazine" width="10" height="8" border="0" />
|
858
|
+
</a> |
|
859
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880551"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
860
|
+
</div> <div class="date">
|
861
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
862
|
+
<div class="criticImage">
|
863
|
+
<a rel="nofollow" href="/author/author-13741/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Sean Edgar" /></a>
|
864
|
+
</div>
|
865
|
+
<div class="criticContent">
|
866
|
+
<div class="author">
|
867
|
+
<a rel="nofollow" href="/author/author-13741/">Sean Edgar</a>
|
868
|
+
</div>
|
869
|
+
<div class="source">
|
870
|
+
<a href="/source-2039/">Paste Magazine</a>
|
871
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
872
|
+
<div class="top"></div>
|
873
|
+
<div class="container">
|
874
|
+
<div class="middle">
|
875
|
+
<div class="content">
|
876
|
+
<div class="rating">
|
877
|
+
<a title="3.5/4" href="/m/1217700-kick_ass/articles/1880550/this_film_delivers_on_that_fantasy_with_a_world_where_bad_guys_are_real_and_superheroes_are_geeky_high_school_comic_book_fans" rel="nofollow" target="_blank">
|
878
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
879
|
+
</a>
|
880
|
+
</div>
|
881
|
+
<p>This film delivers on that fantasy with a world where bad guys are real and superheroes are geeky high school comic-book fans. </p>
|
882
|
+
|
883
|
+
<div class="toolsContainer">
|
884
|
+
<div class="tools">
|
885
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880550/this_film_delivers_on_that_fantasy_with_a_world_where_bad_guys_are_real_and_superheroes_are_geeky_high_school_comic_book_fans" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: TV Guide's Movie Guide" title="Source: TV Guide's Movie Guide" width="10" height="8" border="0" />
|
886
|
+
</a> |
|
887
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880550"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
888
|
+
</div> <div class="date">
|
889
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
890
|
+
<div class="criticImage">
|
891
|
+
<a rel="nofollow" href="/author/author-13740/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Alaina O�Connor" /></a>
|
892
|
+
</div>
|
893
|
+
<div class="criticContent">
|
894
|
+
<div class="author">
|
895
|
+
<a rel="nofollow" href="/author/author-13740/">Alaina O�Connor</a>
|
896
|
+
</div>
|
897
|
+
<div class="source">
|
898
|
+
<a href="/source-456/">TV Guide's Movie Guide</a>
|
899
|
+
</div> </div> </div> </div> </div> </div> <div class="movie_reviews_column movie_reviews_column_right">
|
900
|
+
<div class="quoteBubble">
|
901
|
+
<div class="top"></div>
|
902
|
+
<div class="container">
|
903
|
+
<div class="middle">
|
904
|
+
<div class="content">
|
905
|
+
<div class="rating">
|
906
|
+
<a title="4/4" href="/m/1217700-kick_ass/articles/1880549/the_funniest_tongue_in_cheekiest_most_outrageous_version_of_a_superhero_ever" rel="nofollow" target="_blank">
|
907
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
908
|
+
</a>
|
909
|
+
</div>
|
910
|
+
<p>The funniest, tongue-in-cheekiest, most outrageous version of a superhero ever. </p>
|
911
|
+
|
912
|
+
<div class="toolsContainer">
|
913
|
+
<div class="tools">
|
914
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880549/the_funniest_tongue_in_cheekiest_most_outrageous_version_of_a_superhero_ever" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: ReviewExpress.com" title="Source: ReviewExpress.com" width="10" height="8" border="0" />
|
915
|
+
</a> |
|
916
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880549"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
917
|
+
</div> <div class="date">
|
918
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
919
|
+
<div class="criticImage">
|
920
|
+
<a rel="nofollow" href="/author/author-6354/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Jean Lowerison" /></a>
|
921
|
+
</div>
|
922
|
+
<div class="criticContent">
|
923
|
+
<div class="author">
|
924
|
+
<a rel="nofollow" href="/author/author-6354/">Jean Lowerison</a>
|
925
|
+
</div>
|
926
|
+
<div class="source">
|
927
|
+
<a href="/source-1718/">ReviewExpress.com</a>
|
928
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble topcritic">
|
929
|
+
<div class="top"></div>
|
930
|
+
<div class="container">
|
931
|
+
<div class="middle">
|
932
|
+
<div class="content">
|
933
|
+
<div class="rating">
|
934
|
+
<a title="N/A" href="/m/1217700-kick_ass/articles/1880531/i_know_its_all_supposed_to_be_tongue_in_cheek_and_lots_of_fun_but_frankly_this_turned_my_stomach" rel="nofollow" target="_blank">
|
935
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
936
|
+
</a>
|
937
|
+
</div>
|
938
|
+
<p>I know it�s all supposed to be tongue in cheek and lots of fun, but frankly this turned my stomach. </p>
|
939
|
+
|
940
|
+
<div class="toolsContainer">
|
941
|
+
<div class="tools">
|
942
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880531/i_know_its_all_supposed_to_be_tongue_in_cheek_and_lots_of_fun_but_frankly_this_turned_my_stomach" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: At the Movies" title="Source: At the Movies" width="10" height="8" border="0" />
|
943
|
+
</a> |
|
944
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880531"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 72 Comments</a>
|
945
|
+
</div> <div class="date">
|
946
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
947
|
+
<div class="criticImage">
|
948
|
+
<a rel="nofollow" href="/author/author-988/"><img src="http://images.rottentomatoes.com/images/author/photo/988_icon.gif" border="0" alt="A.O. Scott" /></a>
|
949
|
+
</div>
|
950
|
+
<div class="criticContent">
|
951
|
+
<div class="author">
|
952
|
+
<a rel="nofollow" href="/author/author-988/">A.O. Scott</a>
|
953
|
+
</div>
|
954
|
+
<div class="source">
|
955
|
+
<a href="/source-2105/">At the Movies</a>
|
956
|
+
</div> <div class="topcritic"><img src="http://images.rottentomatoes.com/images/tomato/ico_topcritic_star.png" border="0" alt="Top Critic Icon" /> Top Critic</div>
|
957
|
+
</div> </div> </div> </div> <div class="quoteBubble topcritic">
|
958
|
+
<div class="top"></div>
|
959
|
+
<div class="container">
|
960
|
+
<div class="middle">
|
961
|
+
<div class="content">
|
962
|
+
<div class="rating">
|
963
|
+
<a title="N/A" href="/m/1217700-kick_ass/articles/1880498/when_filmmakers_nudge_a_child_into_viewing_savagery_as_slapstick_are_we_not_allowing_them_to_do_what_we_condemn_in_the_pornographer_that_is_to_coarsen_and_inflame" rel="nofollow" target="_blank">
|
964
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
965
|
+
</a>
|
966
|
+
</div>
|
967
|
+
<p>When filmmakers nudge a child into viewing savagery as slapstick, are we not allowing them to do what we condemn in the pornographer -- that is, to coarsen and inflame? </p>
|
968
|
+
|
969
|
+
<div class="toolsContainer">
|
970
|
+
<div class="tools">
|
971
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880498/when_filmmakers_nudge_a_child_into_viewing_savagery_as_slapstick_are_we_not_allowing_them_to_do_what_we_condemn_in_the_pornographer_that_is_to_coarsen_and_inflame" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: New Yorker" title="Source: New Yorker" width="10" height="8" border="0" />
|
972
|
+
</a> |
|
973
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880498"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 61 Comments</a>
|
974
|
+
</div> <div class="date">
|
975
|
+
04/19/10 </div> </div> </div> </div> <div class="bottom">
|
976
|
+
<div class="criticImage">
|
977
|
+
<a rel="nofollow" href="/author/author-4597/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Anthony Lane" /></a>
|
978
|
+
</div>
|
979
|
+
<div class="criticContent">
|
980
|
+
<div class="author">
|
981
|
+
<a rel="nofollow" href="/author/author-4597/">Anthony Lane</a>
|
982
|
+
</div>
|
983
|
+
<div class="source">
|
984
|
+
<a href="/source-924/">New Yorker</a>
|
985
|
+
</div> <div class="topcritic"><img src="http://images.rottentomatoes.com/images/tomato/ico_topcritic_star.png" border="0" alt="Top Critic Icon" /> Top Critic</div>
|
986
|
+
</div> </div> </div> </div> <div class="quoteBubble">
|
987
|
+
<div class="top"></div>
|
988
|
+
<div class="container">
|
989
|
+
<div class="middle">
|
990
|
+
<div class="content">
|
991
|
+
<div class="rating">
|
992
|
+
<a title="5/5" href="/m/1217700-kick_ass/articles/1880477/kick_ass_is_ultra_funny_ultra_silly_and_ultra_geeky_but_what_kick_ass_mostly_is_is_monumentally_cool_this_is_the_film_the_kids_will_be_swearing_about" rel="nofollow" target="_blank">
|
993
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
994
|
+
</a>
|
995
|
+
</div>
|
996
|
+
<p>Kick-Ass is ultra-funny, ultra-silly and ultra-geeky, but what Kick-Ass mostly is, is monumentally cool - this is the film the kids will be swearing about. </p>
|
997
|
+
|
998
|
+
<div class="toolsContainer">
|
999
|
+
<div class="tools">
|
1000
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880477/kick_ass_is_ultra_funny_ultra_silly_and_ultra_geeky_but_what_kick_ass_mostly_is_is_monumentally_cool_this_is_the_film_the_kids_will_be_swearing_about" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Sydney Morning Herald" title="Source: Sydney Morning Herald" width="10" height="8" border="0" />
|
1001
|
+
</a> |
|
1002
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880477"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 4 Comments</a>
|
1003
|
+
</div> <div class="date">
|
1004
|
+
04/18/10 </div> </div> </div> </div> <div class="bottom">
|
1005
|
+
<div class="criticImage">
|
1006
|
+
<a rel="nofollow" href="/author/author-13438/"><img src="http://images.rottentomatoes.com/images/author/photo/13438_icon.gif" border="0" alt="Giles Hardie" /></a>
|
1007
|
+
</div>
|
1008
|
+
<div class="criticContent">
|
1009
|
+
<div class="author">
|
1010
|
+
<a rel="nofollow" href="/author/author-13438/">Giles Hardie</a>
|
1011
|
+
</div>
|
1012
|
+
<div class="source">
|
1013
|
+
<a href="/source-1354/">Sydney Morning Herald</a>
|
1014
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1015
|
+
<div class="top"></div>
|
1016
|
+
<div class="container">
|
1017
|
+
<div class="middle">
|
1018
|
+
<div class="content">
|
1019
|
+
<div class="rating">
|
1020
|
+
<a title="4/5" href="/m/1217700-kick_ass/articles/1880464/smart_fast_moving_and_deadly_this_flick_makes_all_the_right_moves_as_an_adult_tale_of_revenge_sparked_with_black_humor_that_is_a_hair_trigger_removed_from_tragedy" rel="nofollow" target="_blank">
|
1021
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
1022
|
+
</a>
|
1023
|
+
</div>
|
1024
|
+
<p>Smart, fast-moving, and deadly, this flick makes all the right moves as an adult tale of revenge sparked with black humor that is a hair-trigger removed from tragedy </p>
|
1025
|
+
|
1026
|
+
<div class="toolsContainer">
|
1027
|
+
<div class="tools">
|
1028
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880464/smart_fast_moving_and_deadly_this_flick_makes_all_the_right_moves_as_an_adult_tale_of_revenge_sparked_with_black_humor_that_is_a_hair_trigger_removed_from_tragedy" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Killer Movie Reviews" title="Source: Killer Movie Reviews" width="10" height="8" border="0" />
|
1029
|
+
</a> |
|
1030
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880464"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> Comment</a>
|
1031
|
+
</div> <div class="date">
|
1032
|
+
04/18/10 </div> </div> </div> </div> <div class="bottom">
|
1033
|
+
<div class="criticImage">
|
1034
|
+
<a rel="nofollow" href="/author/author-7997/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Andrea Chase" /></a>
|
1035
|
+
</div>
|
1036
|
+
<div class="criticContent">
|
1037
|
+
<div class="author">
|
1038
|
+
<a rel="nofollow" href="/author/author-7997/">Andrea Chase</a>
|
1039
|
+
</div>
|
1040
|
+
<div class="source">
|
1041
|
+
<a href="/source-1370/">Killer Movie Reviews</a>
|
1042
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1043
|
+
<div class="top"></div>
|
1044
|
+
<div class="container">
|
1045
|
+
<div class="middle">
|
1046
|
+
<div class="content">
|
1047
|
+
<div class="rating">
|
1048
|
+
<a title="4/4" href="/m/1217700-kick_ass/articles/1880462/kick_ass_owns" rel="nofollow" target="_blank">
|
1049
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
1050
|
+
</a>
|
1051
|
+
</div>
|
1052
|
+
<p>'Kick-Ass' OWNS. </p>
|
1053
|
+
|
1054
|
+
<div class="toolsContainer">
|
1055
|
+
<div class="tools">
|
1056
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880462/kick_ass_owns" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Quad City Times (Davenport, IA)" title="Source: Quad City Times (Davenport, IA)" width="10" height="8" border="0" />
|
1057
|
+
</a> |
|
1058
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880462"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 2 Comments</a>
|
1059
|
+
</div> <div class="date">
|
1060
|
+
04/18/10 </div> </div> </div> </div> <div class="bottom">
|
1061
|
+
<div class="criticImage">
|
1062
|
+
<a rel="nofollow" href="/author/author-3663/"><img src="http://images.rottentomatoes.com/images/author/photo/3663_icon.gif" border="0" alt="Linda Cook" /></a>
|
1063
|
+
</div>
|
1064
|
+
<div class="criticContent">
|
1065
|
+
<div class="author">
|
1066
|
+
<a rel="nofollow" href="/author/author-3663/">Linda Cook</a>
|
1067
|
+
</div>
|
1068
|
+
<div class="source">
|
1069
|
+
<a href="/source-1057/">Quad City Times (Davenport, IA)</a>
|
1070
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1071
|
+
<div class="top"></div>
|
1072
|
+
<div class="container">
|
1073
|
+
<div class="middle">
|
1074
|
+
<div class="content">
|
1075
|
+
<div class="rating">
|
1076
|
+
<a title="2/4" href="/m/1217700-kick_ass/articles/1880461/with_an_overload_of_characters_and_contrasts_and_disconnects_kick_ass_tears_itself_apart_and_that_leaves_its_ultra_violence_untenable" rel="nofollow" target="_blank">
|
1077
|
+
<span class="iconset iconset_rt_smd splat_smd hide"></span>
|
1078
|
+
</a>
|
1079
|
+
</div>
|
1080
|
+
<p>With an overload of characters and contrasts and disconnects, Kick-Ass tears itself apart. And that leaves its ultra violence untenable. </p>
|
1081
|
+
|
1082
|
+
<div class="toolsContainer">
|
1083
|
+
<div class="tools">
|
1084
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880461/with_an_overload_of_characters_and_contrasts_and_disconnects_kick_ass_tears_itself_apart_and_that_leaves_its_ultra_violence_untenable" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Northwest Herald (Crystal Lake, IL)" title="Source: Northwest Herald (Crystal Lake, IL)" width="10" height="8" border="0" />
|
1085
|
+
</a> |
|
1086
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880461"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 9 Comments</a>
|
1087
|
+
</div> <div class="date">
|
1088
|
+
04/18/10 </div> </div> </div> </div> <div class="bottom">
|
1089
|
+
<div class="criticImage">
|
1090
|
+
<a rel="nofollow" href="/author/author-5800/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Jeffrey Westhoff" /></a>
|
1091
|
+
</div>
|
1092
|
+
<div class="criticContent">
|
1093
|
+
<div class="author">
|
1094
|
+
<a rel="nofollow" href="/author/author-5800/">Jeffrey Westhoff</a>
|
1095
|
+
</div>
|
1096
|
+
<div class="source">
|
1097
|
+
<a href="/source-1028/">Northwest Herald (Crystal Lake, IL)</a>
|
1098
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1099
|
+
<div class="top"></div>
|
1100
|
+
<div class="container">
|
1101
|
+
<div class="middle">
|
1102
|
+
<div class="content">
|
1103
|
+
<div class="rating">
|
1104
|
+
<a title="3/4" href="/m/1217700-kick_ass/articles/1880454/theres_little_doubt_that_moretz_ultimately_stands_as_the_films_most_valuable_asset" rel="nofollow" target="_blank">
|
1105
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
1106
|
+
</a>
|
1107
|
+
</div>
|
1108
|
+
<p>...there's little doubt that Moretz ultimately stands as the film's most valuable asset... </p>
|
1109
|
+
|
1110
|
+
<div class="toolsContainer">
|
1111
|
+
<div class="tools">
|
1112
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880454/theres_little_doubt_that_moretz_ultimately_stands_as_the_films_most_valuable_asset" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Reel Film Reviews" title="Source: Reel Film Reviews" width="10" height="8" border="0" />
|
1113
|
+
</a> |
|
1114
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880454"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 3 Comments</a>
|
1115
|
+
</div> <div class="date">
|
1116
|
+
04/18/10 </div> </div> </div> </div> <div class="bottom">
|
1117
|
+
<div class="criticImage">
|
1118
|
+
<a rel="nofollow" href="/author/author-1339/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="David Nusair" /></a>
|
1119
|
+
</div>
|
1120
|
+
<div class="criticContent">
|
1121
|
+
<div class="author">
|
1122
|
+
<a rel="nofollow" href="/author/author-1339/">David Nusair</a>
|
1123
|
+
</div>
|
1124
|
+
<div class="source">
|
1125
|
+
<a href="/source-1140/">Reel Film Reviews</a>
|
1126
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1127
|
+
<div class="top"></div>
|
1128
|
+
<div class="container">
|
1129
|
+
<div class="middle">
|
1130
|
+
<div class="content">
|
1131
|
+
<div class="rating">
|
1132
|
+
<a title="8/10" href="/m/1217700-kick_ass/articles/1880437/should_i_be_having_this_much_fun_watching_an_11_year_old_destroy_her_competition_you_know_what_i_think_the_answer_is_yes" rel="nofollow" target="_blank">
|
1133
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
1134
|
+
</a>
|
1135
|
+
</div>
|
1136
|
+
<p>Should I be having this much fun watching an 11-year-old destroy her competition? You know what, I think the answer is yes. </p>
|
1137
|
+
|
1138
|
+
<div class="toolsContainer">
|
1139
|
+
<div class="tools">
|
1140
|
+
<a rel="nofollow" href="/m/1217700-kick_ass/articles/1880437/should_i_be_having_this_much_fun_watching_an_11_year_old_destroy_her_competition_you_know_what_i_think_the_answer_is_yes" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: The Scorecard Review" title="Source: The Scorecard Review" width="10" height="8" border="0" />
|
1141
|
+
</a> |
|
1142
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880437"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 1 Comment</a>
|
1143
|
+
</div> <div class="date">
|
1144
|
+
04/17/10 </div> </div> </div> </div> <div class="bottom">
|
1145
|
+
<div class="criticImage">
|
1146
|
+
<a rel="nofollow" href="/author/author-12943/"><img src="http://images.rottentomatoes.com/images/author/photo/12943_icon.gif" border="0" alt="Jeff Bayer" /></a>
|
1147
|
+
</div>
|
1148
|
+
<div class="criticContent">
|
1149
|
+
<div class="author">
|
1150
|
+
<a rel="nofollow" href="/author/author-12943/">Jeff Bayer</a>
|
1151
|
+
</div>
|
1152
|
+
<div class="source">
|
1153
|
+
<a href="/source-2056/">The Scorecard Review</a>
|
1154
|
+
</div> </div> </div> </div> </div> <div class="quoteBubble">
|
1155
|
+
<div class="top"></div>
|
1156
|
+
<div class="container">
|
1157
|
+
<div class="middle">
|
1158
|
+
<div class="content">
|
1159
|
+
<div class="rating">
|
1160
|
+
<a title="3.0/4.0" href="/articles/1880428/" rel="nofollow" target="_blank">
|
1161
|
+
<span class="iconset iconset_rt_smd fresh_smd hide"></span>
|
1162
|
+
</a>
|
1163
|
+
</div>
|
1164
|
+
<p>Orgazmo (minus the Mormons and pornography) meets Shoot 'Em Up. Fun, not as plausible as you might like, and very, very dark. </p>
|
1165
|
+
|
1166
|
+
<div class="toolsContainer">
|
1167
|
+
<div class="tools">
|
1168
|
+
<a rel="nofollow" href="/articles/1880428/" target="_blank">Full Review <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: MovieCrypt.com" title="Source: MovieCrypt.com" width="10" height="8" border="0" />
|
1169
|
+
</a> |
|
1170
|
+
<a href="/m/1217700-kick_ass/comments.php?reviewid=1880428"><img src="http://images.rottentomatoes.com/images/icons/ico_commentBubble_sm.png" class="icon" alt="comment" border="0" /> 3 Comments</a>
|
1171
|
+
</div> <div class="date">
|
1172
|
+
04/17/10 </div> </div> </div> </div> <div class="bottom">
|
1173
|
+
<div class="criticImage">
|
1174
|
+
<a rel="nofollow" href="/author/author-5529/"><img src="http://images.rottentomatoes.com/images/author/critic_default_icon.gif" border="0" alt="Kevin A. Ranson" /></a>
|
1175
|
+
</div>
|
1176
|
+
<div class="criticContent">
|
1177
|
+
<div class="author">
|
1178
|
+
<a rel="nofollow" href="/author/author-5529/">Kevin A. Ranson</a>
|
1179
|
+
</div>
|
1180
|
+
<div class="source">
|
1181
|
+
<a href="/source-983/">MovieCrypt.com</a>
|
1182
|
+
</div> </div> </div> </div> </div>
|
1183
|
+
|
1184
|
+
|
1185
|
+
</div> </div></div><div class="content_abstract_cornerContainer"><div class="content_abstract_corner3"> </div><div class="content_abstract_corner4"> </div></div></div></div><div class="main_reviews_column_nav"><div class="fl">1 - 20 <span style="font-weight:normal;">(sorted by date)</span></div>
|
1186
|
+
|
1187
|
+
<div class="fr blue_link_sm" style="width:300px; text-align:right;"><a href="?page=1&critic=columns&sortby=date&name_order=asc&view=text#contentReviews">Text View</a> | 1 <a href="?page=2&critic=columns&sortby=date&name_order=asc&view=#contentReviews">2</a> <a href="?page=3&critic=columns&sortby=date&name_order=asc&view=#contentReviews">3</a> <a href="?page=4&critic=columns&sortby=date&name_order=asc&view=#contentReviews">4</a> <a href="?page=5&critic=columns&sortby=date&name_order=asc&view=#contentReviews">5</a> <a href="?page=6&critic=columns&sortby=date&name_order=asc&view=#contentReviews">6</a> <a href="?page=7&critic=columns&sortby=date&name_order=asc&view=#contentReviews">7</a> <a href="?page=8&critic=columns&sortby=date&name_order=asc&view=#contentReviews">8</a> <a href="?page=9&critic=columns&sortby=date&name_order=asc&view=#contentReviews">9</a> <a href="?page=10&critic=columns&sortby=date&name_order=asc&view=#contentReviews">10</a> <a href="?page=11&critic=columns&sortby=date&name_order=asc&view=#contentReviews">11</a> <a href="?page=2&critic=columns&sortby=date&name_order=asc&view=#contentReviews">>></a> <a href="?page=11&critic=columns&sortby=date&name_order=asc&view=#contentReviews">>|</a> </div><!-- // fr blue_link_sm --></div></div><!-- // #Reviews_Container_Content .content_abstract_tertiarynav_content -->
|
1188
|
+
</div><!-- // #ReviewsBlock -->
|
1189
|
+
</div><!-- // #movieobjectnav -->
|
1190
|
+
|
1191
|
+
</div>
|
1192
|
+
</div><div id="contentNews" class="content ">
|
1193
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"><div class="header_text"><a href="/m/1217700-kick_ass/news.php">all</a></div> <h3>Latest News for Kick-Ass</h3></div></div></div>
|
1194
|
+
<div class="content_body clearfix">
|
1195
|
+
<p class="clearfix">
|
1196
|
+
<strong>April 16, 2010:</strong>
|
1197
|
+
<a href="/m/1217700-kick_ass/news/1880297/friday_harvest_kick_ass_clips_and_pics_shrek_4_pics_and_more">Friday Harvest: <em>Kick-Ass</em> clips and pics, <em>Shrek 4</em> pics and more!</a><br />
|
1198
|
+
Happy Friday Harvest, a weekly round-up of the best pictures, posters, and videos that have become available for viewing/download on Rotten Tomatoes. Each section features the... <a href="/m/1217700-kick_ass/news/1880297/friday_harvest_kick_ass_clips_and_pics_shrek_4_pics_and_more">More...</a><br />
|
1199
|
+
</p> <p class="clearfix">
|
1200
|
+
<strong>April 16, 2010:</strong>
|
1201
|
+
<a href="/m/1217700-kick_ass/news/1880024/critics_consensus_kick_ass_is_certified_fresh">Critics Consensus: <em>Kick-Ass</em> Is Certified Fresh</a><br />
|
1202
|
+
This week at the movies, we've got hapless heroes (em>Kick-Ass, starring Aaron Johnson and Nicolas Cage), and madcap mourners (Death at a Funeral, starring Chris Rock and Tracy... <a href="/m/1217700-kick_ass/news/1880024/critics_consensus_kick_ass_is_certified_fresh">More...</a><br />
|
1203
|
+
</p> <p class="clearfix">
|
1204
|
+
<strong>April 14, 2010:</strong>
|
1205
|
+
<a href="/m/1217700-kick_ass/news/1879513/twelve_tough_big_screen_little_girls" rel="nofollow" target="_blank">Twelve Tough Big Screen Little Girls</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Opens in new window" width="10" height="8" border="0" /><br />
|
1206
|
+
With all the controversy surrounding Chlo� Moretz's violent, foul-mouthed turn as Hit Girl in "Kick-Ass," maybe now is a good time to look back at some of the pint-sized female... <a href="/m/1217700-kick_ass/news/1879513/twelve_tough_big_screen_little_girls" rel="nofollow" target="_blank">More...</a><br />
|
1207
|
+
</p> <p class="clearfix">
|
1208
|
+
<strong>April 12, 2010:</strong>
|
1209
|
+
<a href="/m/1217700-kick_ass/news/1879373/the_coolest_and_most_controversial_superhero_of_the_year" rel="nofollow" target="_blank">The Coolest (And Most Controversial) Superhero of the Year</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Opens in new window" width="10" height="8" border="0" /><br />
|
1210
|
+
The big screen will remain cluttered with superheroes in 2010 -- but none of them are likely to have the same impact as Hit Girl, the character played by Chloe Moretz in... <a href="/m/1217700-kick_ass/news/1879373/the_coolest_and_most_controversial_superhero_of_the_year" rel="nofollow" target="_blank">More...</a><br />
|
1211
|
+
</p> </div>
|
1212
|
+
</div> </div>
|
1213
|
+
|
1214
|
+
<div class="col_300 col_right sidebar"><div id="billboard_ad"> <script type="text/javascript">
|
1215
|
+
/* <![CDATA[ */
|
1216
|
+
GA_googleFillSlot("RT_Movies_300x250");
|
1217
|
+
|
1218
|
+
$(document).ready(function() {
|
1219
|
+
$('#billboard_ad').rt_GAMCheck('RT_Movies_300x250');
|
1220
|
+
});
|
1221
|
+
/* ]]> */
|
1222
|
+
</script></div><script type="text/javascript">
|
1223
|
+
/* <![CDATA[ */
|
1224
|
+
$(document).ready(function(){
|
1225
|
+
// Movie sidebar tooltip
|
1226
|
+
$("#homepage_movies_sidebar div.content_body a").tooltip({
|
1227
|
+
delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: " - ", extraClass: "bubbleFixedTop", top: -126, left: -60
|
1228
|
+
});
|
1229
|
+
});
|
1230
|
+
$.elementReady('boxofficeTbl', function(){
|
1231
|
+
var $this = $(this);
|
1232
|
+
$("a#homepage_movies_sidebar_boxofficeToggle").toggle(function() {
|
1233
|
+
$this.find(".box_office_collapsable").toggle();
|
1234
|
+
setCookie("bo_expand","true",90,"/");
|
1235
|
+
},function() {
|
1236
|
+
$this.find(".box_office_collapsable").toggle();
|
1237
|
+
setCookie("bo_expand","false",90,"/");
|
1238
|
+
});
|
1239
|
+
});
|
1240
|
+
|
1241
|
+
$.elementReady('openingTbl', function(){
|
1242
|
+
$("a#homepage_movies_sidebar_openingToggle").toggle(function() {
|
1243
|
+
$(".homepage_movies_sidebar_opening_collapsable").toggle();
|
1244
|
+
setCookie("op_expand","true",90,"/");
|
1245
|
+
},function() {
|
1246
|
+
$(".homepage_movies_sidebar_opening_collapsable").toggle();
|
1247
|
+
setCookie("op_expand","false",90,"/");
|
1248
|
+
});
|
1249
|
+
});
|
1250
|
+
$.elementReady('comingsoonTbl', function(){
|
1251
|
+
$("a#homepage_movies_sidebar_comingsoonToggle").toggle(function() {
|
1252
|
+
$(".homepage_movies_sidebar_comingsoon_collapsable").toggle();
|
1253
|
+
setCookie("cs_expand","true",90,"/");
|
1254
|
+
},function() {
|
1255
|
+
$(".homepage_movies_sidebar_comingsoon_collapsable").toggle();
|
1256
|
+
setCookie("cs_expand","false",90,"/");
|
1257
|
+
});
|
1258
|
+
});
|
1259
|
+
$.elementReady('mostanticipatedDiv', function(){
|
1260
|
+
$("a#homepage_movies_sidebar_mostanticipatedToggle").toggle(function() {
|
1261
|
+
$(".homepage_movies_sidebar_mostanticipated").toggle();
|
1262
|
+
setCookie("ma_expand","true",90,"/");
|
1263
|
+
}, function(){
|
1264
|
+
$(".homepage_movies_sidebar_mostanticipated").toggle();
|
1265
|
+
setCookie("ma_expand","false",90,"/");
|
1266
|
+
});
|
1267
|
+
});
|
1268
|
+
|
1269
|
+
/* ]]> */
|
1270
|
+
</script>
|
1271
|
+
<div id="homepage_movies_sidebar" class="content ">
|
1272
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"><div class="header_text"><a href="/movie/">See All</a></div> <h3>More Movies</h3><a class="widget_access_icon" href="/help_desk/syndication_rss.php" title="Get RT RSS Feeds for Movies." ><span class="iconset iconset_rt_sm rss_sm hide"><span>Close</span></span></a></div></div></div>
|
1273
|
+
<div class="content_body clearfix">
|
1274
|
+
<table id="boxofficeTbl" class="abstractViewTbl noHead">
|
1275
|
+
<caption><a href="/movies/box_office.php">Top Box Office</a></caption>
|
1276
|
+
<thead><tr>
|
1277
|
+
<th class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink"><span>Tomatometer Percentage</span></th>
|
1278
|
+
<th class="boxofficeTbl_movieCol"><span>Movie</span></th>
|
1279
|
+
<th class="boxofficeTbl_grossCol lastCol noLink currency"><span>Gross</span></th>
|
1280
|
+
</tr></thead>
|
1281
|
+
<tfoot><tr>
|
1282
|
+
<td colspan="3"><p class="more"><a href="/movies/in_theaters.php">In Theaters</a> | <a href="/movies/box_office.php">More Box Office…</a></p></td>
|
1283
|
+
</tr></tfoot><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1284
|
+
<a href="/m/1217700-kick_ass/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1285
|
+
<span class="iconset iconset_rt_sm fresh_sm hide" title="fresh"><span>77%</span></span>
|
1286
|
+
<span class="label">77%</span></span></a>
|
1287
|
+
</td>
|
1288
|
+
<td class="boxofficeTbl_movieCol">
|
1289
|
+
<a href="/m/1217700-kick_ass/">Kick-Ass</a>
|
1290
|
+
</td>
|
1291
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1292
|
+
<a href="/m/1217700-kick_ass/">$19.8M</a>
|
1293
|
+
</td>
|
1294
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1295
|
+
<a href="/m/1194522-how_to_train_your_dragon/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1296
|
+
<span class="iconset iconset_rt_sm fresh_sm hide" title="fresh"><span>98%</span></span>
|
1297
|
+
<span class="label">98%</span></span></a>
|
1298
|
+
</td>
|
1299
|
+
<td class="boxofficeTbl_movieCol">
|
1300
|
+
<a href="/m/1194522-how_to_train_your_dragon/">How to Train Your Dragon</a>
|
1301
|
+
</td>
|
1302
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1303
|
+
<a href="/m/1194522-how_to_train_your_dragon/">$19.6M</a>
|
1304
|
+
</td>
|
1305
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1306
|
+
<a href="/m/date_night/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1307
|
+
<span class="iconset iconset_rt_sm fresh_sm hide" title="fresh"><span>67%</span></span>
|
1308
|
+
<span class="label">67%</span></span></a>
|
1309
|
+
</td>
|
1310
|
+
<td class="boxofficeTbl_movieCol">
|
1311
|
+
<a href="/m/date_night/">Date Night</a>
|
1312
|
+
</td>
|
1313
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1314
|
+
<a href="/m/date_night/">$16.7M</a>
|
1315
|
+
</td>
|
1316
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1317
|
+
<a href="/m/death_at_a_funeral_2010/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1318
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>37%</span></span>
|
1319
|
+
<span class="label">37%</span></span></a>
|
1320
|
+
</td>
|
1321
|
+
<td class="boxofficeTbl_movieCol">
|
1322
|
+
<a href="/m/death_at_a_funeral_2010/">Death at a Funeral</a>
|
1323
|
+
</td>
|
1324
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1325
|
+
<a href="/m/death_at_a_funeral_2010/">$16.2M</a>
|
1326
|
+
</td>
|
1327
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1328
|
+
<a href="/m/clash_of_the_titans_2010/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1329
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>30%</span></span>
|
1330
|
+
<span class="label">30%</span></span></a>
|
1331
|
+
</td>
|
1332
|
+
<td class="boxofficeTbl_movieCol">
|
1333
|
+
<a href="/m/clash_of_the_titans_2010/">Clash of the Titans</a>
|
1334
|
+
</td>
|
1335
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1336
|
+
<a href="/m/clash_of_the_titans_2010/">$15.4M</a>
|
1337
|
+
</td>
|
1338
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1339
|
+
<a href="/m/10011984-last_song/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1340
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>16%</span></span>
|
1341
|
+
<span class="label">16%</span></span></a>
|
1342
|
+
</td>
|
1343
|
+
<td class="boxofficeTbl_movieCol">
|
1344
|
+
<a href="/m/10011984-last_song/">The Last Song</a>
|
1345
|
+
</td>
|
1346
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1347
|
+
<a href="/m/10011984-last_song/">$6.0M</a>
|
1348
|
+
</td>
|
1349
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1350
|
+
<a href="/m/10008604-why_did_i_get_married/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1351
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>46%</span></span>
|
1352
|
+
<span class="label">46%</span></span></a>
|
1353
|
+
</td>
|
1354
|
+
<td class="boxofficeTbl_movieCol">
|
1355
|
+
<a href="/m/10008604-why_did_i_get_married/">Tyler Perry's Why Did …</a>
|
1356
|
+
</td>
|
1357
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1358
|
+
<a href="/m/10008604-why_did_i_get_married/">$4.1M</a>
|
1359
|
+
</td>
|
1360
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1361
|
+
<a href="/m/10009599-alice_in_wonderland/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1362
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>52%</span></span>
|
1363
|
+
<span class="label">52%</span></span></a>
|
1364
|
+
</td>
|
1365
|
+
<td class="boxofficeTbl_movieCol">
|
1366
|
+
<a href="/m/10009599-alice_in_wonderland/">Alice in Wonderland</a>
|
1367
|
+
</td>
|
1368
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1369
|
+
<a href="/m/10009599-alice_in_wonderland/">$3.7M</a>
|
1370
|
+
</td>
|
1371
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1372
|
+
<a href="/m/hot_tub_time_machine/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1373
|
+
<span class="iconset iconset_rt_sm fresh_sm hide" title="fresh"><span>63%</span></span>
|
1374
|
+
<span class="label">63%</span></span></a>
|
1375
|
+
</td>
|
1376
|
+
<td class="boxofficeTbl_movieCol">
|
1377
|
+
<a href="/m/hot_tub_time_machine/">Hot Tub Time Machine</a>
|
1378
|
+
</td>
|
1379
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1380
|
+
<a href="/m/hot_tub_time_machine/">$3.5M</a>
|
1381
|
+
</td>
|
1382
|
+
</tr><tr><td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
|
1383
|
+
<a href="/m/10012049-bounty_hunter/" class="icon"><span class="tmeter_display tmeter_display_sm">
|
1384
|
+
<span class="iconset iconset_rt_sm splat_sm hide" title="splat"><span>08%</span></span>
|
1385
|
+
<span class="label">08%</span></span></a>
|
1386
|
+
</td>
|
1387
|
+
<td class="boxofficeTbl_movieCol">
|
1388
|
+
<a href="/m/10012049-bounty_hunter/">Bounty Hunter</a>
|
1389
|
+
</td>
|
1390
|
+
<td class="boxofficeTbl_grossCol lastCol noLink currency">
|
1391
|
+
<a href="/m/10012049-bounty_hunter/">$3.1M</a>
|
1392
|
+
</td>
|
1393
|
+
</tr></table>
|
1394
|
+
|
1395
|
+
</div>
|
1396
|
+
</div><div id="current_sidebar" class="content ">
|
1397
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"><div class="header_text"><a href="http://current.com/the-rotten-tomatoes-show/" target="_blank">See All</a></div> <h3>RT On Current TV</h3></div></div></div>
|
1398
|
+
<div class="content_body clearfix">
|
1399
|
+
<!-- CTV widget start -->
|
1400
|
+
<p><a href="http://current.com/the-rotten-tomatoes-show/?xid=370" target="_new" class="abstract"><img border="0" alt="The Rotten Tomatoes Show on Current TV" src="http://i.current.com/images/skins/rotten_tomatoes/widgets/rt-promo-278x105.jpg" /></a></p>
|
1401
|
+
<p id="ctvChannels">DIRECTV 358 | Comcast 107 | DISH Network 196 | <a target="_new" href="http://current.viewerlink.tv/">More...</a></p>
|
1402
|
+
<p id="ctvParticipate"><a target="_new" href="http://current.com/the-rotten-tomatoes-show/?xid=370">Learn how you can be part of the show</a></p>
|
1403
|
+
|
1404
|
+
<div id="ctvWidget"></div>
|
1405
|
+
<script type="text/javascript">
|
1406
|
+
var ctvWidgetTitle = 'rotten tomatoes';
|
1407
|
+
var ctvWidgetWidth = 295;
|
1408
|
+
var ctvWidgetBgColor = 'E8EDF5';
|
1409
|
+
var ctvWidgetLinkColor = '285CAB';
|
1410
|
+
var ctvWidgetLinkFontSize = 11;
|
1411
|
+
var ctvWidgetLinkFontWeight = 'normal';
|
1412
|
+
var ctvWidgetLineColor = 'C8CECD';
|
1413
|
+
var ctvWidgetLineStyle = 'solid';
|
1414
|
+
var ctvWidgetTextColor = '000000';
|
1415
|
+
var ctvWidgetHeaderBgColor = 'E8EDF5';
|
1416
|
+
var ctvWidgetHeaderColor = '285CAB';
|
1417
|
+
var ctvWidgetPlayIconTop = 32;
|
1418
|
+
var ctvWidgetPlayIconLeft = 47;
|
1419
|
+
var ctvWidgetItemMinHeight = 50;
|
1420
|
+
var ctvWidgetItemMarginTop = 5;
|
1421
|
+
var ctvWidgetItemMarginLeft = 5;
|
1422
|
+
var ctvWidgetGroup = 'rt-rt';
|
1423
|
+
var ctvWidgetType = 'video';
|
1424
|
+
</script>
|
1425
|
+
<script type="text/javascript" src="http://widgets.current.com/widgets/v1/widgets.js"></script>
|
1426
|
+
<noscript><a href="http://current.com/the-rotten-tomatoes-show">The Rotten Tomatoes Show on Current TV</a></noscript>
|
1427
|
+
<style type="text/css">
|
1428
|
+
.ctvBold {font-weight: bold;}
|
1429
|
+
p#ctvMore {text-align:right; padding-top:5px;}
|
1430
|
+
p#ctvChannels {padding-top: 6px;}
|
1431
|
+
p#ctvParticipate {border-bottom: 1px solid #C8CECD; padding-bottom: 6px;}
|
1432
|
+
#ctvWidget #ctvHeader {display: none;}
|
1433
|
+
#ctvWidget .ctvMore {display: none;}
|
1434
|
+
#ctvWidget img { background-color: #FFFFFF; border: 1px solid #B7BABB; padding: 4px; }
|
1435
|
+
</style>
|
1436
|
+
<p id="ctvMore"><a href="http://current.com/rottentomatoes" class="ctvBold" target="_new">More...</a></p>
|
1437
|
+
<!-- CTV widget end -->
|
1438
|
+
</div>
|
1439
|
+
</div><div id="features_sidebar" class="content ">
|
1440
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>What’s Hot On RT</h3></div></div></div>
|
1441
|
+
<div class="content_body clearfix">
|
1442
|
+
<div class="clearfix"> <div id="feature_1" class="feature"> <p><a href="/articles/1879113/a_nightmare_on_tims_street_day_1"><img src="http://images.rottentomatoes.com/images/spotlights/2010/115Nightmare1.jpg" width="115" height="115" alt="Nightmare on Elm St." /></a></p> <h6><a href="/articles/1879113/a_nightmare_on_tims_street_day_1"><em>Nightmare on Elm St.</em></a></h6>
|
1443
|
+
<p>RT's Tim watches all the <em>Nightmare</em> movies!</p>
|
1444
|
+
</div> <div id="feature_2" class="feature"> <p><a href="/dor/objects/3719/beastly/videos/beastly_trlr_042110.html"><img src="http://images.rottentomatoes.com/images/spotlights/2010/115Beastly.jpg" width="115" height="115" alt="Beastly Trailer" /></a></p> <h6><a href="/dor/objects/3719/beastly/videos/beastly_trlr_042110.html"><em>Beastly</em> Trailer</a></h6>
|
1445
|
+
<p>Beauty? Beast? This trailer has both!</p>
|
1446
|
+
</div></div><div class="clearfix"> <div id="feature_3" class="feature"> <p><a href="/dor/objects/150898/toy_story_3/videos/toystory3_1_041610.html"><img src="http://images.rottentomatoes.com/images/spotlights/2010/115ToyStory3Clips.jpg" width="115" height="115" alt="Toy Story 3" /></a></p> <h6><a href="/dor/objects/150898/toy_story_3/videos/toystory3_1_041610.html"><em>Toy Story 3</em></a></h6>
|
1447
|
+
<p>Check out a new clip of the gang!</p>
|
1448
|
+
</div> <div id="feature_4" class="feature"> <p><a href="/m/iron_man_2/pictures/"><img src="http://images.rottentomatoes.com/images/spotlights/2010/115IronMan2Pictures.jpg" width="115" height="115" alt="Iron Man Pictures" /></a></p> <h6><a href="/m/iron_man_2/pictures/"><em>Iron Man</em> Pictures</a></h6>
|
1449
|
+
<p>Prepare for battle with our gallery!</p>
|
1450
|
+
</div></div> </div>
|
1451
|
+
</div><div id="morenews_sidebar" class="content ">
|
1452
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>Other News</h3><a class="widget_access_icon" href="/help_desk/syndication_rss.php" title="Get RT RSS Feeds for News." ><span class="iconset iconset_rt_sm rss_sm hide"><span>Close</span></span></a></div></div></div>
|
1453
|
+
<div class="content_body clearfix">
|
1454
|
+
<div id="newsnav">
|
1455
|
+
<ul class="ui-tabs-nav">
|
1456
|
+
<li class="ui-tabs-selected"><a href="#topstories"><span>Top Stories</span></a></li>
|
1457
|
+
<li><a href="#mostdiscussed"><span>Popular</span></a></li>
|
1458
|
+
<li><a href="#interviews"><span>Interviews</span></a></li>
|
1459
|
+
</ul>
|
1460
|
+
|
1461
|
+
<div id="movieobjectnav" class="tertiarynav">
|
1462
|
+
<div class="content_abstract_tertiarynav">
|
1463
|
+
<div class="content_abstract_tertiarynav_cornerContainer">
|
1464
|
+
<div class="content_abstract_tertiarynav_corner1"> </div>
|
1465
|
+
<div class="content_abstract_tertiarynav_corner2"> </div>
|
1466
|
+
</div> <div class="content_abstract_tertiarynav_content clearfix">
|
1467
|
+
|
1468
|
+
<p id="comments" align="right">Comments</p>
|
1469
|
+
|
1470
|
+
<div class="content_abstract">
|
1471
|
+
<div class="lightblue">
|
1472
|
+
<div class="content_abstract_cornerContainer">
|
1473
|
+
<div class="content_abstract_corner1"> </div>
|
1474
|
+
<div class="content_abstract_corner2"> </div>
|
1475
|
+
</div>
|
1476
|
+
<div id="news_content_allNews" class="content_abstract_content clearfix">
|
1477
|
+
|
1478
|
+
|
1479
|
+
<div id="topstories">
|
1480
|
+
|
1481
|
+
<table id="topstories_news_content_allNewsTbl" class="abstractViewTbl noHead noFoot noCaption">
|
1482
|
+
<caption>Top Stories</caption>
|
1483
|
+
<colgroup>
|
1484
|
+
<col class="otherHeadlinesCol" />
|
1485
|
+
<col class="commentsCol" />
|
1486
|
+
</colgroup>
|
1487
|
+
<thead><tr>
|
1488
|
+
<th class="firstCol">Headlines</th>
|
1489
|
+
<th class="lastCol data">Comments</th>
|
1490
|
+
</tr></thead>
|
1491
|
+
<tfoot><tr><th class="firstCol"> </th><th class="lastCol"> </th></tr></tfoot>
|
1492
|
+
<tbody>
|
1493
|
+
<tr>
|
1494
|
+
<td class="firstCol"><ul><li><a title="Source: Showbiz 411" href="http://www.showbiz411.com/wp/2010/04/21/men-in-black-3-d-set-to-roll-with-will-smith" target="_blank"><i>Men in Black</i> Returning in 3-D</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Showbiz 411" title="Source: Showbiz 411" width="10" height="8" border="0" /></li></ul></td>
|
1495
|
+
<td class="lastCol data"><a title="20 Comments" href="/m/men_in_black/news/1880817/comments/men_in_black_returning_in_3_d#comments" class="comment_link">20</a></td>
|
1496
|
+
</tr>
|
1497
|
+
<tr>
|
1498
|
+
<td class="firstCol"><ul><li><a title="Source: ComingSoon.net" href="http://www.comingsoon.net/news/movienews.php?id=65332" target="_blank"><i>Bond 23</i> Delayed Indefinitely</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: ComingSoon.net" title="Source: ComingSoon.net" width="10" height="8" border="0" /></li></ul></td>
|
1499
|
+
<td class="lastCol data"><a title="78 Comments" href="/news/1880579/comments/bond_23_delayed_indefinitely#comments" class="comment_link">78</a></td>
|
1500
|
+
</tr>
|
1501
|
+
<tr>
|
1502
|
+
<td class="firstCol"><ul><li><a title="Source: Moviefone" href="http://insidemovies.moviefone.com/2010/04/16/peter-jackson-the-hobbit-rumors-screenplay/" target="_blank">Peter Jackson Talks <i>The Hobbit</i></a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Moviefone" title="Source: Moviefone" width="10" height="8" border="0" /></li></ul></td>
|
1503
|
+
<td class="lastCol data"><a title="9 Comments" href="/m/10007663-hobbit/news/1880496/comments/peter_jackson_talks_the_hobbit#comments" class="comment_link">9</a></td>
|
1504
|
+
</tr>
|
1505
|
+
<tr>
|
1506
|
+
<td class="firstCol"><ul><li><a title="Source: Deadline Hollywood Daily" href="http://www.deadline.com/2010/04/marvel-close-to-whedon-hire-on-the-avengers/" target="_blank">Joss Whedon Will Assemble <i>The Avengers</i></a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Deadline Hollywood Daily" title="Source: Deadline Hollywood Daily" width="10" height="8" border="0" /></li></ul></td>
|
1507
|
+
<td class="lastCol data"><a title="102 Comments" href="/m/avengers/news/1879478/comments/joss_whedon_will_assemble_the_avengers#comments" class="comment_link">102</a></td>
|
1508
|
+
</tr>
|
1509
|
+
<tr>
|
1510
|
+
<td class="firstCol"><ul><li><a title="Source: Slashfilm" href="http://www.slashfilm.com/2010/04/11/exclusive-green-lanterns-suit-will-be-almost-entirely-cg/" target="_blank"><i>Green Lantern</i>'s Suit Will Be CG?</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Slashfilm" title="Source: Slashfilm" width="10" height="8" border="0" /></li></ul></td>
|
1511
|
+
<td class="lastCol data"><a title="32 Comments" href="/news/1879378/comments/green_lanterns_suit_will_be_cg#comments" class="comment_link">32</a></td>
|
1512
|
+
</tr>
|
1513
|
+
<tr>
|
1514
|
+
<td class="firstCol"><ul><li><a title="Source: Entertainment Weekly" href="http://hollywoodinsider.ew.com/2010/04/07/breaking-dawn-director-bill-condon/" target="_blank">Bill Condon to Direct <i>Breaking Dawn</i>?</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Entertainment Weekly" title="Source: Entertainment Weekly" width="10" height="8" border="0" /></li></ul></td>
|
1515
|
+
<td class="lastCol data"><a title="51 Comments" href="/m/twilight/news/1878848/comments/bill_condon_to_direct_breaking_dawn#comments" class="comment_link">51</a></td>
|
1516
|
+
</tr>
|
1517
|
+
<tr>
|
1518
|
+
<td class="firstCol"><ul><li><a title="Source: Hollywood Reporter" href="http://www.heatvisionblog.com/2010/04/tron-legacy-sequel-in-the-works.html" target="_blank">Disney Plans <i>Tron Legacy</i> Sequel</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Hollywood Reporter" title="Source: Hollywood Reporter" width="10" height="8" border="0" /></li></ul></td>
|
1519
|
+
<td class="lastCol data"><a title="16 Comments" href="/m/10011582-TRON_legacy/news/1878717/comments/disney_plans_tron_legacy_sequel#comments" class="comment_link">16</a></td>
|
1520
|
+
</tr>
|
1521
|
+
<tr>
|
1522
|
+
<td class="firstCol"><ul><li><a title="Source: Hollywood Reporter" href="http://www.heatvisionblog.com/2010/04/captain-america-sidekick-sebastian-stan-exclusive.html" target="_blank">Sebastian Stan Is <i>Captain America</i>'s Bucky</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Hollywood Reporter" title="Source: Hollywood Reporter" width="10" height="8" border="0" /></li></ul></td>
|
1523
|
+
<td class="lastCol data"><a title="28 Comments" href="/m/first_avenger_captain_america/news/1878053/comments/sebastian_stan_is_captain_americas_bucky#comments" class="comment_link">28</a></td>
|
1524
|
+
</tr>
|
1525
|
+
<tr>
|
1526
|
+
<td class="firstCol"><ul><li><a title="Source: Deadline Hollywood Daily" href="http://www.deadline.com/2010/03/singer-to-producex-men-first-class/" target="_blank">Bryan Singer Won't Direct <i>X-Men: First Class</i></a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: Deadline Hollywood Daily" title="Source: Deadline Hollywood Daily" width="10" height="8" border="0" /></li></ul></td>
|
1527
|
+
<td class="lastCol data"><a title="44 Comments" href="/m/xmen/news/1877310/comments/bryan_singer_wont_direct_x_men_first_class#comments" class="comment_link">44</a></td>
|
1528
|
+
</tr>
|
1529
|
+
<tr>
|
1530
|
+
<td class="firstCol"><ul><li><a title="Source: New York Post" href="http://www.nypost.com/p/entertainment/movies/penned_the_suckiest_movie_ever_sorry_MdXedZpTMWJmfpw80Xc7aO/0" target="_blank"><i>Battlefield Earth</i> Screenwriter Apologizes</a> <img src="http://images.rottentomatoes.com/images/icons/offsite.gif" alt="Source: New York Post" title="Source: New York Post" width="10" height="8" border="0" /></li></ul></td>
|
1531
|
+
<td class="lastCol data"><a title="22 Comments" href="/m/battlefield_earth/news/1877307/comments/battlefield_earth_screenwriter_apologizes#comments" class="comment_link">22</a></td>
|
1532
|
+
</tr>
|
1533
|
+
</tbody>
|
1534
|
+
</table>
|
1535
|
+
|
1536
|
+
|
1537
|
+
</div>
|
1538
|
+
<div id="mostdiscussed" class="ui-tabs-hide">
|
1539
|
+
|
1540
|
+
<table id="mostdiscussed_news_content_allNewsTbl" class="abstractViewTbl noHead noFoot noCaption">
|
1541
|
+
<caption>Popular</caption>
|
1542
|
+
<colgroup>
|
1543
|
+
<col class="otherHeadlinesCol" />
|
1544
|
+
<col class="commentsCol" />
|
1545
|
+
</colgroup>
|
1546
|
+
<thead><tr>
|
1547
|
+
<th class="firstCol">Headlines</th>
|
1548
|
+
<th class="lastCol data">Comments</th>
|
1549
|
+
</tr></thead>
|
1550
|
+
<tfoot><tr><th class="firstCol"> </th><th class="lastCol"> </th></tr></tfoot>
|
1551
|
+
<tbody>
|
1552
|
+
<tr>
|
1553
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1217700-kick_ass/news/1880024/critics_consensus_kick_ass_is_certified_fresh">Critics Consensus: <em>Kick-Ass</em> Is Certified Fresh</a></li></ul></td>
|
1554
|
+
<td class="lastCol data"><a title="130 Comments" href="/m/1217700-kick_ass/news/1880024/critics_consensus_kick_ass_is_certified_fresh#comments" class="comment_link">130</a></td>
|
1555
|
+
</tr>
|
1556
|
+
<tr>
|
1557
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1194522-how_to_train_your_dragon/news/1880474/box_office_guru_wrapup_dragon_soars_back_to_the_top">Box Office Guru Wrapup: <em>Dragon</em> Soars Back To The Top</a></li></ul></td>
|
1558
|
+
<td class="lastCol data"><a title="106 Comments" href="/m/1194522-how_to_train_your_dragon/news/1880474/box_office_guru_wrapup_dragon_soars_back_to_the_top#comments" class="comment_link">106</a></td>
|
1559
|
+
</tr>
|
1560
|
+
<tr>
|
1561
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/back_up_plan/news/1880557/total_recall_jennifer_lopezs_best_movies">Total Recall: Jennifer Lopez's Best Movies</a></li></ul></td>
|
1562
|
+
<td class="lastCol data"><a title="56 Comments" href="/m/back_up_plan/news/1880557/total_recall_jennifer_lopezs_best_movies#comments" class="comment_link">56</a></td>
|
1563
|
+
</tr>
|
1564
|
+
<tr>
|
1565
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/nightmare_on_elm_street/news/1879113/a_nightmare_on_tims_street_day_1">A Nightmare on Tim's Street: Day 1</a></li></ul></td>
|
1566
|
+
<td class="lastCol data"><a title="49 Comments" href="/m/nightmare_on_elm_street/news/1879113/a_nightmare_on_tims_street_day_1#comments" class="comment_link">49</a></td>
|
1567
|
+
</tr>
|
1568
|
+
<tr>
|
1569
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/avatar/news/1880558/rt_on_dvd_and_blu_ray_avatar_and_crazy_heart">RT on DVD & Blu-Ray: <em>Avatar</em> and <em>Crazy Heart</em></a></li></ul></td>
|
1570
|
+
<td class="lastCol data"><a title="46 Comments" href="/m/avatar/news/1880558/rt_on_dvd_and_blu_ray_avatar_and_crazy_heart#comments" class="comment_link">46</a></td>
|
1571
|
+
</tr>
|
1572
|
+
<tr>
|
1573
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/death_at_a_funeral_2010/news/1879626/total_recall_chris_rocks_best_movies">Total Recall: Chris Rock's Best Movies</a></li></ul></td>
|
1574
|
+
<td class="lastCol data"><a title="44 Comments" href="/m/death_at_a_funeral_2010/news/1879626/total_recall_chris_rocks_best_movies#comments" class="comment_link">44</a></td>
|
1575
|
+
</tr>
|
1576
|
+
<tr>
|
1577
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/avengers/news/1880364/weekly_ketchup_joss_whedon_to_direct_the_avengers">Weekly Ketchup: Joss Whedon to direct <em>The Avengers</em></a></li></ul></td>
|
1578
|
+
<td class="lastCol data"><a title="42 Comments" href="/m/avengers/news/1880364/weekly_ketchup_joss_whedon_to_direct_the_avengers#comments" class="comment_link">42</a></td>
|
1579
|
+
</tr>
|
1580
|
+
<tr>
|
1581
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/cheech_and_chongs_hey_watch_this/news/1880588/five_favorite_films_with_cheech_and_chong">Five Favorite Films With Cheech & Chong</a></li></ul></td>
|
1582
|
+
<td class="lastCol data"><a title="29 Comments" href="/m/cheech_and_chongs_hey_watch_this/news/1880588/five_favorite_films_with_cheech_and_chong#comments" class="comment_link">29</a></td>
|
1583
|
+
</tr>
|
1584
|
+
<tr>
|
1585
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1217700-kick_ass/news/1880297/friday_harvest_kick_ass_clips_and_pics_shrek_4_pics_and_more">Friday Harvest: <em>Kick-Ass</em> clips and pics, <em>Shrek 4</em> pics and more!</a></li></ul></td>
|
1586
|
+
<td class="lastCol data"><a title="13 Comments" href="/m/1217700-kick_ass/news/1880297/friday_harvest_kick_ass_clips_and_pics_shrek_4_pics_and_more#comments" class="comment_link">13</a></td>
|
1587
|
+
</tr>
|
1588
|
+
</tbody>
|
1589
|
+
</table>
|
1590
|
+
|
1591
|
+
|
1592
|
+
</div>
|
1593
|
+
<div id="interviews" class="ui-tabs-hide">
|
1594
|
+
|
1595
|
+
<table id="interviews_news_content_allNewsTbl" class="abstractViewTbl noHead noFoot noCaption">
|
1596
|
+
<caption>Interviews</caption>
|
1597
|
+
<colgroup>
|
1598
|
+
<col class="otherHeadlinesCol" />
|
1599
|
+
<col class="commentsCol" />
|
1600
|
+
</colgroup>
|
1601
|
+
<thead><tr>
|
1602
|
+
<th class="firstCol">Headlines</th>
|
1603
|
+
<th class="lastCol data">Comments</th>
|
1604
|
+
</tr></thead>
|
1605
|
+
<tfoot><tr><th class="firstCol"> </th><th class="lastCol"> </th></tr></tfoot>
|
1606
|
+
<tbody>
|
1607
|
+
<tr>
|
1608
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/crazy_heart/news/1871175/exclusive_oscar_nominee_jeff_bridges_on_crazy_heart_the_rt_interview">Exclusive: Oscar Nominee Jeff Bridges on <i>Crazy Heart</i> - The RT Interview</a></li></ul></td>
|
1609
|
+
<td class="lastCol data"><a title="7 Comments" href="/m/crazy_heart/news/1871175/exclusive_oscar_nominee_jeff_bridges_on_crazy_heart_the_rt_interview#comments" class="comment_link">7</a></td>
|
1610
|
+
</tr>
|
1611
|
+
<tr>
|
1612
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1218217-single_man/news/1870966/exclusive_oscar_nominee_colin_firth_on_a_single_man">Exclusive: Oscar Nominee Colin Firth on <i>A Single Man</i></a></li></ul></td>
|
1613
|
+
<td class="lastCol data"><a title="14 Comments" href="/m/1218217-single_man/news/1870966/exclusive_oscar_nominee_colin_firth_on_a_single_man#comments" class="comment_link">14</a></td>
|
1614
|
+
</tr>
|
1615
|
+
<tr>
|
1616
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/precious/news/1869170/oscar_nominee_gabby_sidibe_talks_precious">Oscar Nominee Gabby Sidibe Talks <em>Precious</em></a></li></ul></td>
|
1617
|
+
<td class="lastCol data"><a title="24 Comments" href="/m/precious/news/1869170/oscar_nominee_gabby_sidibe_talks_precious#comments" class="comment_link">24</a></td>
|
1618
|
+
</tr>
|
1619
|
+
<tr>
|
1620
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/showgirls/news/1868669/one_mans_quest_to_find_the_worst_movie_ever">One Man's Quest To Find The Worst Movie Ever</a></li></ul></td>
|
1621
|
+
<td class="lastCol data"><a title="14 Comments" href="/m/showgirls/news/1868669/one_mans_quest_to_find_the_worst_movie_ever#comments" class="comment_link">14</a></td>
|
1622
|
+
</tr>
|
1623
|
+
<tr>
|
1624
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1189344-lovely_bones/news/1861930/five_favorite_films_with_peter_jackson">Five Favorite Films With Peter Jackson</a></li></ul></td>
|
1625
|
+
<td class="lastCol data"><a title="78 Comments" href="/m/1189344-lovely_bones/news/1861930/five_favorite_films_with_peter_jackson#comments" class="comment_link">78</a></td>
|
1626
|
+
</tr>
|
1627
|
+
<tr>
|
1628
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/sherlock_holmes_2009/news/1859602/robert_downey_jr_talks_sherlock_holmes_and_iron_man_2_rt_interview">Robert Downey Jr. talks <i>Sherlock Holmes</i> & <i>Iron Man 2</i> - RT Interview</a></li></ul></td>
|
1629
|
+
<td class="lastCol data"><a title="23 Comments" href="/m/sherlock_holmes_2009/news/1859602/robert_downey_jr_talks_sherlock_holmes_and_iron_man_2_rt_interview#comments" class="comment_link">23</a></td>
|
1630
|
+
</tr>
|
1631
|
+
<tr>
|
1632
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/zombieland/news/1858090/director_ruben_fleischer_talks_zombieland">Director Ruben Fleischer Talks <em>Zombieland</em></a></li></ul></td>
|
1633
|
+
<td class="lastCol data"><a title="4 Comments" href="/m/zombieland/news/1858090/director_ruben_fleischer_talks_zombieland#comments" class="comment_link">4</a></td>
|
1634
|
+
</tr>
|
1635
|
+
<tr>
|
1636
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/1210830-antichrist/news/1856901/i_dont_hate_women_lars_von_trier_on_antichrist">"I Don't Hate Women": Lars von Trier on <em>Antichrist</em></a></li></ul></td>
|
1637
|
+
<td class="lastCol data"><a title="19 Comments" href="/m/1210830-antichrist/news/1856901/i_dont_hate_women_lars_von_trier_on_antichrist#comments" class="comment_link">19</a></td>
|
1638
|
+
</tr>
|
1639
|
+
<tr>
|
1640
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/love_the_beast/news/1855724/eric_bana_talks_love_the_beast_rt_interview">Eric Bana talks <i>Love the Beast</i> - RT Interview</a></li></ul></td>
|
1641
|
+
<td class="lastCol data"><a title="15 Comments" href="/m/love_the_beast/news/1855724/eric_bana_talks_love_the_beast_rt_interview#comments" class="comment_link">15</a></td>
|
1642
|
+
</tr>
|
1643
|
+
<tr>
|
1644
|
+
<td class="firstCol"><ul><li><a title="Source: Rotten Tomatoes" href="/m/fight_club/news/1855600/fight_club_sound_designer_reflects_on_films_10th_anniversary"><i>Fight Club</i> Sound Designer Reflects on Film's 10th Anniversary</a></li></ul></td>
|
1645
|
+
<td class="lastCol data"><a title="25 Comments" href="/m/fight_club/news/1855600/fight_club_sound_designer_reflects_on_films_10th_anniversary#comments" class="comment_link">25</a></td>
|
1646
|
+
</tr>
|
1647
|
+
</tbody>
|
1648
|
+
</table>
|
1649
|
+
|
1650
|
+
|
1651
|
+
</div>
|
1652
|
+
|
1653
|
+
|
1654
|
+
</div>
|
1655
|
+
<div class="content_abstract_cornerContainer">
|
1656
|
+
<div class="content_abstract_corner3"> </div>
|
1657
|
+
<div class="content_abstract_corner4"> </div>
|
1658
|
+
</div> </div>
|
1659
|
+
</div>
|
1660
|
+
|
1661
|
+
</div> </div> </div></div>
|
1662
|
+
|
1663
|
+
<script type="text/javascript">
|
1664
|
+
$(function() {
|
1665
|
+
$("#newsnav").tabs();
|
1666
|
+
$("#newsnav a").tooltip({showURL: false, showBody: " - ", extraClass: "tooltipDefault"});
|
1667
|
+
if ($.browser.msie) {
|
1668
|
+
$("#newsnav a img").removeAttr("alt");
|
1669
|
+
}
|
1670
|
+
});
|
1671
|
+
</script> </div>
|
1672
|
+
</div><div id="sbillboard_ad"> <script type="text/javascript">
|
1673
|
+
/* <![CDATA[ */
|
1674
|
+
GA_googleFillSlot("RT_Movies_300x250_2");
|
1675
|
+
|
1676
|
+
$(document).ready(function() {
|
1677
|
+
$('#sbillboard_ad').rt_GAMCheck('RT_Movies_300x250_2');
|
1678
|
+
});
|
1679
|
+
/* ]]> */
|
1680
|
+
</script></div><div id="aroundthenetwork_sidebar" class="content ">
|
1681
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>Around The Network</h3></div></div></div>
|
1682
|
+
<div class="content_body clearfix">
|
1683
|
+
<ul class="normalViewList">
|
1684
|
+
|
1685
|
+
<li><a href="/m/1217700-kick_ass/">Kick-Ass</a> at Rotten Tomatoes</li>
|
1686
|
+
|
1687
|
+
<li><a href="http://movies.ign.com/objects/142/14276014.html" target="_blank">Kick-Ass</a> at IGN</li>
|
1688
|
+
</ul> </div>
|
1689
|
+
</div><div id="freshlinks_sidebar" class="content ">
|
1690
|
+
<div class="content_header_wrapper"><div class="content_header"><div class="content_inner"> <h3>Fresh Links</h3></div></div></div>
|
1691
|
+
<div class="content_body clearfix">
|
1692
|
+
<h5>Featured</h5><div class="sweeps_container sweeps_container_first"><a class="abstract" target="_blank" href="http://www.popeater.com/2010/04/14/whitney-houston-bad-reviews/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.popeater.com/2010/04/14/whitney-houston-bad-reviews/');"><img alt="Whitney Houston's Live Flop" src="http://images.rottentomatoes.com/images/fresh_links/Popeater-WhitneyHoustonComeback.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://www.popeater.com/2010/04/14/whitney-houston-bad-reviews/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.popeater.com/2010/04/14/whitney-houston-bad-reviews/');"><span>Whitney Houston's Live Flop</span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>PopEater reports on Whitney's ill-fated comeback performance in the UK. Maybe a certain Asian boy should take her place...</p></div></div>
|
1693
|
+
<div class="sweeps_container"><a class="abstract" target="_blank" href="http://www.time.com/time/video/player/0,32068,76237294001_1981065,00.html" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.time.com/time/video/player/0,32068,76237294001_1981065,00.html');"><img alt="10 Questions for America Ferrera" src="http://images.rottentomatoes.com/images/fresh_links/TIME-10QsforAmericaFerrara.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://www.time.com/time/video/player/0,32068,76237294001_1981065,00.html" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.time.com/time/video/player/0,32068,76237294001_1981065,00.html');"><span>10 Questions for America Ferrera</span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>The <em>Ugly Betty</em> star answers reader-submitted questions for TIME.</p></div></div>
|
1694
|
+
<div class="sweeps_container"><a class="abstract" target="_blank" href="http://techland.com/2010/04/15/12-disaster-movies-better-than-titanic/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://techland.com/2010/04/15/12-disaster-movies-better-than-titanic/');"><img alt="Disaster Films Better than Titanic" src="http://images.rottentomatoes.com/images/fresh_links/Techland-GoodDisasterMovies.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://techland.com/2010/04/15/12-disaster-movies-better-than-titanic/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://techland.com/2010/04/15/12-disaster-movies-better-than-titanic/');"><span>Disaster Films Better than <em>Titanic</em></span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>Techland brings us a list of 12 disaster-themed movies that they would rank above Titanic.</p></div></div>
|
1695
|
+
<div class="sweeps_container"><a class="abstract" target="_blank" href="http://www.life.com/image/first/in-gallery/23058/drastic-celebrity-transformations" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.life.com/image/first/in-gallery/23058/drastic-celebrity-transformations');"><img alt="Drastic Celeb Transformations" src="http://images.rottentomatoes.com/images/fresh_links/LIFE-DrasticCelebTransformations.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://www.life.com/image/first/in-gallery/23058/drastic-celebrity-transformations" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.life.com/image/first/in-gallery/23058/drastic-celebrity-transformations');"><span>Drastic Celeb Transformations</span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>LIFE takes a look at how several celebs have "evolved" over the years from age and makeovers.</p></div></div>
|
1696
|
+
<div class="sweeps_container"><a class="abstract" target="_blank" href="http://insidemovies.moviefone.com/2010/03/23/movie-stars-who-get-naked/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://insidemovies.moviefone.com/2010/03/23/movie-stars-who-get-naked/');"><img alt="Most Likely to Bare All" src="http://images.rottentomatoes.com/images/fresh_links/Moviefone-StarsLikelyNude.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://insidemovies.moviefone.com/2010/03/23/movie-stars-who-get-naked/" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://insidemovies.moviefone.com/2010/03/23/movie-stars-who-get-naked/');"><span>Most Likely to Bare All</span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>Moviefone brings us a saucy list of the stars most likely to go nude on the big screen.</p></div></div>
|
1697
|
+
<h5>Promos</h5><div class="sweeps_container sweeps_container_first"><a class="abstract" target="_blank" href="http://www.facebook.com/rottentomatoes" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.facebook.com/rottentomatoes');"><img alt="Fan RT on Facebook!" src="http://images.rottentomatoes.com/images/fresh_links/facebookpromo.jpg" border="0" /></a><div class="sweeps_text"><a class="icon" target="_blank" href="http://www.facebook.com/rottentomatoes" onclick="pageTracker._trackEvent('Exit Links', 'Click', 'http://www.facebook.com/rottentomatoes');"><span>Fan RT on Facebook!</span> <img height="8" border="0" width="10" title="External Link" alt="External Link" src="http://images.rottentomatoes.com/images/icons/offsite.gif" /></a><p>You're on Facebook? We're on Facebook! Get all the latest from RT in your news feed!</p></div></div>
|
1698
|
+
</div>
|
1699
|
+
</div></div>
|
1700
|
+
|
1701
|
+
</div>
|
1702
|
+
<div id="mdf_ad"><script type="text/javascript">
|
1703
|
+
|
1704
|
+
/* <![CDATA[ */
|
1705
|
+
document.write('<' + 'script type="text/javascript" src="http://ads.rottentomatoes.com/api/v1/rt/ads.json?network=rottentomatoes&site=rottentomatoes&size=listbottom&adchannel=rottentomatoes&subdomain=www.rottentomatoes.com&dechannel=rottentomatoesmovies&channel=movie&pagetype=rt_object&moviegenre=action_adventure&mpaa=r&object1=RTMOVIE1217700&object1_id=RTMOVIE1217700' + ref + '">');
|
1706
|
+
document.write('<' + '/script>');
|
1707
|
+
|
1708
|
+
/* ]]> */
|
1709
|
+
</script></div> </div>
|
1710
|
+
</div>
|
1711
|
+
</div>
|
1712
|
+
|
1713
|
+
<div id="main_body_footer"></div>
|
1714
|
+
<div id="sleaderboard_ad"> <script type="text/javascript">
|
1715
|
+
/* <![CDATA[ */
|
1716
|
+
GA_googleFillSlot("RT_Movies_728x90_2");
|
1717
|
+
|
1718
|
+
$(document).ready(function() {
|
1719
|
+
$('#sleaderboard_ad').rt_GAMCheck('RT_Movies_728x90_2');
|
1720
|
+
});
|
1721
|
+
/* ]]> */
|
1722
|
+
</script></div><div id="footer_nav_container2">
|
1723
|
+
<div id="footer_nav_container">
|
1724
|
+
<div id="footer_left"> </div>
|
1725
|
+
<div id="footer_right"> </div>
|
1726
|
+
<div id="footer_nav">
|
1727
|
+
<a href="/help_desk/learn_more.php">About</a>|
|
1728
|
+
<a href="/help_desk/sitemap.php">Site Map</a>|
|
1729
|
+
<a href="/help_desk/">Help</a>|
|
1730
|
+
<a href="/help_desk/syndication.php">RT To Go</a>|
|
1731
|
+
<a href="/help_desk/contact.php">Contact Us</a>|
|
1732
|
+
<a href="/help_desk/press.php">Press</a>|
|
1733
|
+
<a href="/help_desk/critics.php">Critics Submission</a>|
|
1734
|
+
<a href="/help_desk/webmaster.php">Linking to RT</a>|
|
1735
|
+
<a href="/help_desk/licensing.php">Licensing</a>|
|
1736
|
+
<a href="/features/stats/index.php">Movie List</a>|
|
1737
|
+
<a href="/features/stats/index-celebs.php">Celebs List</a>|
|
1738
|
+
<a href="/features/newsletter">Newsletter</a>|
|
1739
|
+
<a href="/mobile/">Mobile</a>
|
1740
|
+
</div>
|
1741
|
+
</div></div>
|
1742
|
+
<div id="footer_container">
|
1743
|
+
|
1744
|
+
<div class="footer_ign">
|
1745
|
+
<div class="footer_ign_text">
|
1746
|
+
<div class="footer_ign_break clearfix">
|
1747
|
+
<a href="http://flixster.com/misc/copyrightprivacyterms?tab=copyright" target="_blank" style="margin-right: 0;">Copyright</a> © 2010 Flixster, Inc. All rights reserved. | <a title="Terms of Service" href="http://flixster.com/misc/copyrightprivacyterms?tab=terms" target="_blank">Terms of Service</a> | <a title="Privacy Policy" href="http://flixster.com/misc/copyrightprivacyterms?tab=privacy" target="_blank">Privacy Policy</a><br />
|
1748
|
+
</div>
|
1749
|
+
|
1750
|
+
<div class="footer_ign_break">
|
1751
|
+
Certain product data © 1995-present Muze, Inc. For personal use only. All rights reserved.
|
1752
|
+
</div>
|
1753
|
+
|
1754
|
+
|
1755
|
+
</div> </div>
|
1756
|
+
</div>
|
1757
|
+
<div id="itrack" style="position: absolute; left: 0px; top: 0px; visibility: hidden;">
|
1758
|
+
<img src="http://i.rottentomatoes.com/i.gif?u=%2Fm%2F1217700-kick_ass%2F&r=http%3A%2F%2Fwww.google.com%2Fsearch%3Fq%3Dkickass%2Breviews%26sourceid%3Die7%26rls%3Dcom.microsoft%3Aen-us%3AIE-SearchBox%26ie%3D%26oe%3D%26rlz%3D1I7ADFA_en" width="0" height="0" style="width: 0px; height: 0px;" />
|
1759
|
+
</div><script type="text/javascript">
|
1760
|
+
//<![CDATA[
|
1761
|
+
<!-- Begin comScore Tag -->
|
1762
|
+
if (typeof COMSCORE == "undefined") {
|
1763
|
+
var COMSCORE={}}COMSCORE.beacon=function(d){if(!d){return}var a=1.6,e=document,g=e.location,c=function(h){if(h==null){return""}return(encodeURIComponent||escape)(h)},f=[(g.protocol=="https:"?"https://sb":"http://b"),".scorecardresearch.com/b?","c1=",c(d.c1),"&c2=",c(d.c2),"&rn=",Math.random(),"&c7=",c(g.href),"&c3=",c(d.c3),"&c4=",c(d.c4),"&c5=",c(d.c5),"&c6=",c(d.c6),"&c15=",c(d.c15),"&c16=",c(d.c16),"&c8=",c(e.title),"&c9=",c(e.referrer),"&cv=",a].join("");f=f.length>1500?f.substr(0,1495)+"&ct=1":f;var b=new Image();b.onload=function(){};b.src=f;return f
|
1764
|
+
};
|
1765
|
+
|
1766
|
+
COMSCORE.beacon({
|
1767
|
+
c1:2,
|
1768
|
+
c2:"3000068",
|
1769
|
+
c3:"",
|
1770
|
+
c4:"http://www.rottentomatoes.com",
|
1771
|
+
c5:"",
|
1772
|
+
c6:"",
|
1773
|
+
c15:"" });
|
1774
|
+
<!-- End comScore Tag -->
|
1775
|
+
//]]-->
|
1776
|
+
</script>
|
1777
|
+
|
1778
|
+
<script type="text/javascript">
|
1779
|
+
//<![CDATA[
|
1780
|
+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
1781
|
+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
1782
|
+
//]]>
|
1783
|
+
</script>
|
1784
|
+
<script type="text/javascript">
|
1785
|
+
//<!--[CDATA[
|
1786
|
+
try {
|
1787
|
+
var pageTracker = _gat._getTracker("UA-2265251-1");
|
1788
|
+
pageTracker._setDomainName('.rottentomatoes.com');
|
1789
|
+
pageTracker._setAllowHash(false);
|
1790
|
+
pageTracker._trackPageview('http://www.rottentomatoes.com/m/1217700-kick_ass/?seo=5');
|
1791
|
+
} catch(err) {}
|
1792
|
+
//]]-->
|
1793
|
+
</script><script type="text/javascript">_qoptions={ qacct:"p-0fuRlG_jy3lfA" };</script>
|
1794
|
+
<script type="text/javascript" src=http://edge.quantserve.com/quant.js> </script>
|
1795
|
+
<noscript><a href="http://www.quantcast.com/p-0fuRlG_jy3lfA" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-0fuRlG_jy3lfA.gif" style="display: none" border="0" height="1" width="1" alt="Quantcast"/></a></noscript>
|
1796
|
+
<script type="text/javascript" src="http://tags.crwdcntrl.net/c/229/cc.js"></script>
|
1797
|
+
<script type="text/javascript">LOTCC.bcp();</script></body>
|
1798
|
+
</html>
|