can-has-lolcat 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 96fe35e96bd47a5270d786f732eaebc8e1d13278
4
+ data.tar.gz: 3b67d3b6aa95bcfff8ef079e306f10ce90caa979
5
+ SHA512:
6
+ metadata.gz: e9b52fb48afff2fc7c63f8f1efcfe63fd1b553a8b166b7e8b21c62a0c03fdf12e11eb9809ac2f853bdd5462b6ea89a23111dbde30b68cc49bca86fd537d73b5c
7
+ data.tar.gz: b8260514cb13477da0b6e102a74859f67fe843ca27069abc5cc6b1b5bddddb1fbfa4db5cfea9b10e3b793123cf6bff6859b0fc74303d1884d66a235c87af3dfd
data/README.md CHANGED
@@ -24,6 +24,8 @@ Made for [Whyday 2010](http://whyday.org/). Because it's craaazy. I've implement
24
24
 
25
25
  [sudo] gem install can-has-lolcat
26
26
 
27
+ It has no capendencies.
28
+
27
29
  ## Note on Patches/Pull Requests
28
30
 
29
31
  * Fork the project.
data/Rakefile CHANGED
@@ -42,7 +42,7 @@ task :test => :check_dependencies
42
42
 
43
43
  task :default => :test
44
44
 
45
- require 'rake/rdoctask'
45
+ require 'rdoc/task'
46
46
  Rake::RDocTask.new do |rdoc|
47
47
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
48
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.1.1
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "can-has-lolcat"
8
+ s.version = "1.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Sirupsen"]
12
+ s.date = "2013-09-14"
13
+ s.description = "Fetches a random lolcat, and returns the appropriate output format."
14
+ s.email = "sirup@sirupsen.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "LICENSE",
22
+ "README.md",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "can-has-lolcat.gemspec",
26
+ "lib/can-has-lolcat.rb",
27
+ "test/fixtures/lolcat.html",
28
+ "test/fixtures/loldog.html",
29
+ "test/fixtures/lolvideo.html",
30
+ "test/helper.rb",
31
+ "test/test_can-has-lolcat.rb"
32
+ ]
33
+ s.homepage = "http://github.com/Sirupsen/can-has-lolcat"
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = "2.0.3"
36
+ s.summary = "can haz random lolcat?"
37
+
38
+ if s.respond_to? :specification_version then
39
+ s.specification_version = 4
40
+
41
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
42
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
43
+ else
44
+ s.add_dependency(%q<shoulda>, [">= 0"])
45
+ end
46
+ else
47
+ s.add_dependency(%q<shoulda>, [">= 0"])
48
+ end
49
+ end
50
+
@@ -1,33 +1,68 @@
1
1
  require 'open-uri'
2
2
 
3
3
  module Lolcat
4
- RANDOM = "http://icanhascheezburger.com/?random"
5
- LOLCAT = /"http:\/\/icanhascheezburger\.files\.wordpress\.com\/[^"]+/
4
+ PROTOCOL = "http://"
5
+ RANDOM = "icanhascheezburger.com/?random"
6
6
 
7
7
  class << self
8
- def can_has(format=nil)
9
- kitty = Lolcat.get_direct_url_of(random_from_internetz)
8
+ def can_has(format=:url, animal=:cat)
9
+
10
+ lol = Lolcat.random_from_internetz(animal)
10
11
 
11
12
  case format
12
13
  when :html
13
- "<img src='#{kitty}' alt='' />"
14
+ "<img src='#{lol}' alt='' />"
14
15
  when :bbcode
15
- "[img]#{kitty}[/img]"
16
- when :url
17
- kitty
16
+ "[img]#{lol}[/img]"
18
17
  else
19
- kitty
18
+ lol
20
19
  end
21
20
  end
22
21
 
23
22
  alias_method :can_haz, :can_has
24
23
 
25
- def get_direct_url_of(html)
26
- html.match(LOLCAT)[0][1..-1]
24
+ # Isolated for easy stubbing during testing
25
+ def get_html(url)
26
+ open(url).read
27
+ end
28
+
29
+ def random_html(animal)
30
+ # do they want a kitteh or a puppeh?
31
+ domain = (animal == :dog) ? "dogs." : ""
32
+
33
+ # The site randomly returns a video based page at a
34
+ # rate that anecdotally appears to be 15-20% of the
35
+ # time. Detect those links from the title and go
36
+ # back until we get a normal image page.
37
+ html = ""
38
+ begin
39
+ html = get_html(PROTOCOL + domain + RANDOM)
40
+ end while(html.match(/<title>\s+(Video|VIDEO):/))
41
+
42
+ html
27
43
  end
28
44
 
29
- def random_from_internetz
30
- open(RANDOM).read
45
+ def extract_image_url(animal, html)
46
+ # is this a kitteh or a puppeh?
47
+ domain = (animal == :dog) ? "ihasahotdog" : "icanhascheezburger"
48
+
49
+ # Find the image URL in the html
50
+ m = html.match(/"http:\/\/#{domain}\.files\.wordpress\.com\/[^"]+/)
51
+
52
+ m ? m[0][1..-1] : nil
53
+ end
54
+
55
+ def random_from_internetz(animal)
56
+ url = nil
57
+
58
+ # We shouldn't ever get nil back from random_html with the
59
+ # check for videos in place, but the check is kind of hacky
60
+ # so as a extra precaution we'll check for nil here.
61
+ begin
62
+ url = extract_image_url(animal, random_html(animal))
63
+ end while url.nil?
64
+
65
+ url
31
66
  end
32
67
  end
33
68
  end
@@ -0,0 +1,1067 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml">
3
+ <!-- PHI Consolidated Theme: 2011.10.28.2 -->
4
+ <!--
5
+ generated in 0.556 seconds
6
+ 100270 bytes batcached for 300 seconds
7
+ -->
8
+ <head profile="http://gmpg.org/xfn/11">
9
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10
+ <meta name="medium" content="blog" />
11
+ <meta name="viewport" content="width=1000" />
12
+ <meta property="fb:admins" content="647178770" />
13
+ <title> CUPCAKES - Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog!</title>
14
+ <meta name="medium" content="blog" /><meta property="og:site_name" content="Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog!" /><meta property="og:title" content="CUPCAKES" /><meta property="og:type" content="article" /><meta property="og:description" content="CUPCAKES" /><meta property="og:image" content="" /><meta property="og:url" content="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/" /><link rel="icon" href="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/wp-verticals/ihasahotdog/favicon.ico?m=1317676916g" type="image/x-icon" />
15
+ <link rel="shortcut icon" href="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/wp-verticals/ihasahotdog/favicon.ico?m=1317676916g" type="image/x-icon" />
16
+ <link rel="apple-touch-icon" href="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/wp-verticals/ihasahotdog/apple-touch-icon.png?m=1317676916g" />
17
+ <link rel="alternate" type="application/rss+xml" title="Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures &#8211; I Has A Hotdog! RSS Feed" href="http://feeds.feedburner.com/IHasAHotdog" />
18
+ <link rel="pingback" href="http://dogs.icanhascheezburger.com/xmlrpc.php" />
19
+ <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/ui-lightness/jquery-ui.css" type="text/css" />
20
+ <link rel="stylesheet" href="http://static.cheezburger.com/style/shared.css?v=2011.10.28.2" type="text/css" /><meta name="google-site-verification" content="f5hxJeKN7UCizGDI9TJTAFC2W9lHA9bBCZAQuAAGstk" />
21
+ <script src='http://wordpress.com/remote-login.php?action=js&amp;host=dogs.icanhascheezburger.com&amp;id=2069225&amp;t=1319932560&amp;back=dogs.icanhascheezburger.com%2F2009%2F02%2F13%2Ffunny-dog-pictures-cupcakes%2F' type="text/javascript"></script>
22
+ <script type="text/javascript">
23
+ /* <![CDATA[ */
24
+ if ( 'function' === typeof WPRemoteLogin ) {
25
+ document.cookie = "wordpress_test_cookie=test; path=/";
26
+ if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
27
+ WPRemoteLogin();
28
+ }
29
+ }
30
+ /* ]]> */
31
+ </script>
32
+ <link rel="alternate" type="application/rss+xml" title="Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog! &raquo; CUPCAKES Comments Feed" href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/feed/" />
33
+ <script type="text/javascript">
34
+ /* <![CDATA[ */
35
+ function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
36
+ /* ]]> */
37
+ </script>
38
+ <link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/h4/global.css?m=1317676840g" type="text/css" />
39
+ <link rel='stylesheet' id='chz_cheezbar_style-css' href='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/css/admin/cheezbar.css?m=1317676919g&#038;ver=MU' type='text/css' media='all' />
40
+ <link rel='stylesheet' id='post-reactions-css' href='http://s2.wp.com/wp-content/mu-plugins/post-flair/style.css?m=1318977320g&#038;ver=3' type='text/css' media='all' />
41
+ <link rel='stylesheet' id='chz_main-css' href='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/style.css?m=1319836877g&#038;ver=2011.10.28.2' type='text/css' media='all' />
42
+ <link rel='stylesheet' id='chz_override-css' href='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/wp-verticals/ihasahotdog/override.css?m=1317676916g&#038;ver=2011.10.28.2' type='text/css' media='all' />
43
+ <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js?ver=MU'></script>
44
+ <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js?ver=MU'></script>
45
+ <script type='text/javascript' src='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/js/wp/cheezbar.js?m=1317676915g&amp;ver=MU'></script>
46
+ <script type='text/javascript' src='http://s1.wp.com/wp-includes/js/comment-reply.js?m=1317676835g&amp;ver=20090102'></script>
47
+ <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://ihasahotdog.wordpress.com/xmlrpc.php?rsd" />
48
+ <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://ihasahotdog.wordpress.com/wp-includes/wlwmanifest.xml" />
49
+ <link rel='prev' title='dude what the&nbsp;hell' href='http://dogs.icanhascheezburger.com/2009/02/12/funny-dog-pictures-dude-what-the-hell/' />
50
+ <link rel='next' title='lub&#8230;.' href='http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-lub/' />
51
+ <meta name="generator" content="WordPress.com" />
52
+ <link rel='canonical' href='http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/' />
53
+ <link rel='shortlink' href='http://wp.me/p8GiB-4Qf' />
54
+ <link rel="alternate" type="application/json+oembed" href="http://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2Fdogs.icanhascheezburger.com%2F2009%2F02%2F13%2Ffunny-dog-pictures-cupcakes%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="http://public-api.wordpress.com/oembed/1.0/?format=xml&url=http%3A%2F%2Fdogs.icanhascheezburger.com%2F2009%2F02%2F13%2Ffunny-dog-pictures-cupcakes%2F&for=wpcom-auto-discovery" /><link rel='openid.server' href='http://ihasahotdog.wordpress.com/?openidserver=1' />
55
+ <link rel='openid.delegate' href='http://ihasahotdog.wordpress.com/' />
56
+ <link rel="search" type="application/opensearchdescription+xml" href="http://dogs.icanhascheezburger.com/osd.xml" title="Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog!" />
57
+ <link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
58
+ <style type="text/css">
59
+ /* <![CDATA[ */
60
+ /* ]]> */
61
+ </style>
62
+ <meta name="description" content="Funny dog pictures - CUPCAKES They give me nightmares " />
63
+ <style type="text/css">.recentcomments a{display:inline !important;padding: 0 !important;margin: 0 !important;}</style>
64
+ <meta name="application-name" content="Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog!" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Cute puppy pictures, cute dogs, loldogs (lol dogs) updated daily from your submissions" /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://dogs.icanhascheezburger.com/feed/;icon-uri=http://1.gravatar.com/blavatar/39543117c331f61229f36ac7e643de45?s=16" />
65
+ <style type='text/css'>
66
+ table.recentcommentsavatar img.avatar {border: 0px; margin:0;}
67
+ table.recentcommentsavatar a {border: 0px !important;background-color: transparent !important}
68
+ td.recentcommentsavatartop {padding:0px 0px 1px 0px;margin:0px; }
69
+ td.recentcommentsavatarend {padding:0px 0px 1px 0px;margin:0px; }
70
+ td.recentcommentstexttop { border: none !important;padding:0px 0px 0px 10px;}
71
+ td.recentcommentstextend { border: none !important;padding:0px 0px 2px 10px;}
72
+ </style><script type="text/javascript"> var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; (function() {var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; gads.src = "http://www.googletagservices.com/tag/js/gpt.js"; var node = document.getElementsByTagName('script')[0];node.parentNode.insertBefore(gads, node); })();</script><script type='text/javascript'>googletag.cmd.push(function(){googletag.pubads().setTargeting('site', 'ihasahotdo'); googletag.pubads().setTargeting('page', '_2009_02_13_funny-dog-pictures-cupcakes_');})</script> <script type="text/javascript">var isWP=true;var _wpAddedCss=true;</script>
73
+
74
+ <script type="text/javascript">
75
+ var useg = "";
76
+ jQuery.ajaxSetup({ headers: { "X-Requested-With": "XMLHttpRequest" }});
77
+ $.getScript("http://cheezburger.com/" + "UserSegment/ut-useg/SetUserSegmentVar");
78
+ function SetUserSegmentVar( num ) { useg = num; };
79
+ </script>
80
+ <style type="text/css">
81
+ .header_logo_1000_174 {background-position: 0px 0px;
82
+ background-image: url('http://s0.wp.com/wp-content/themes/vip/cheezcommon2/wp-verticals/ihasahotdog/header.jpg?m=1317676916g');
83
+ }
84
+ #btf160 {position: absolute; bottom: 150px;}
85
+
86
+ .tab_upcoming {display: none;}
87
+
88
+ .post h2 {
89
+ border: none;
90
+ background: none;
91
+ font-family: Georgia;
92
+ font-size: 22px;
93
+ font-weight: normal;
94
+ }
95
+ h2 {
96
+ border: none;
97
+ background: none;
98
+ } </style>
99
+ <link rel="canonical" href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/" />
100
+ </head>
101
+ <body class="ICHC">
102
+ <div id="floattop">Pictures of Cute Dogs and Puppies to Help You Through the Day</div>
103
+ <div id="leader_container"><div id="leaderboard"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_728_ATF_ROS_SNG', [728, 90], 'leaderboard');});</script></div></div> <div class="globalNavTop">
104
+ <div class="blueBar">
105
+ <ul id='main_navigation'><li id='bb_logo_holder' class='bb_item'><a href='http://cheezburger.com/' title='Cheezburger Network Sites'><img src='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/images/CheezburgerBadge.png?m=1317676915g' /></a></li><li class='bb_item nav ICHC' id='ICHC'><a href='http://icanhascheezburger.com'>I Can Has Cheezburger?</a></li><li class='bb_item nav ICHC' id='FAIL'><a href='http://failblog.org'>FAIL Blog</a></li><li class='bb_item nav ICHC' id='MEME'><a href='http://memebase.com'>Memebase</a></li><li class='bb_item nav ICHC' id='TDW'><a href='http://thedailywh.at'>The Daily What</a></li><li class='bb_item nav' id='knowyourmeme'><a href='http://knowyourmeme.com/?utm_source=blue&utm_medium=web&utm_campaign=blue'>Know Your Meme</a></li><li class='bb_item nav' id='lolmart'><a href='http://lolmart.com'>LOLmart</a></li><li class='bb_item' id='allSites'><a href='http://cheezburger.com/'>All Sites &raquo;</a></li></ul> </div>
106
+ <div id="subnav_wrapper" class="ICHC">
107
+ <ul id="superSiteNav" class="ICHC">
108
+ <li class=''><a href='http://icanhascheezburger.com' class=''>Lolcats</a></li><li class='selected'><a href='http://dogs.icanhascheezburger.com' class='selected'>Loldogs</a></li><li class=''><a href='http://justcapshunz.icanhascheezburger.com' class=''>Capshunz</a></li><li class=''><a href='http://squee.icanhascheezburger.com' class=''>Squee!</a></li><li class=''><a href='http://history.icanhascheezburger.com' class=''>History</a></li><li class=''><a href='http://noms.icanhascheezburger.com' class=''>Noms</a></li><li class=''><a href='http://puns.icanhascheezburger.com' class=''>Puns</a></li><li class=''><a href='http://scifi.icanhascheezburger.com' class=''>Sci-Fi</a></li><li class=''><a href='http://celebs.icanhascheezburger.com' class=''>Celebs</a></li><li class=''><a href='http://style.icanhascheezburger.com' class=''>Style</a></li><li class=''><a href='http://totallylookslike.icanhascheezburger.com' class=''>Look-Alikes</a></li><li class=''><a href='http://stuff.icanhascheezburger.com' class=''>Stuff</a></li><li class=''><a href='http://fiveminutegetaway.icanhascheezburger.com' class=''>Travel</a></li><li class=''><a href='http://news.icanhascheezburger.com' class=''>News</a></li><li class=''><a href='http://lovelylisting.icanhascheezburger.com' class=''>Homes</a></li><li class=''><a href='http://wedinator.icanhascheezburger.com' class=''>Weddings</a></li><li class=''><a href='http://sims3pets.icanhascheezburger.com' class=''>Sims 3 Pets</a></li> </ul>
109
+ </div>
110
+ <div id="header_wrapper" class="ICHC">
111
+ <div id="bannerlogo">
112
+ <div class="s_sprite header_logo_1000_148" title="I Has A Hotdog! Dog and puppy pictures">
113
+ <a href="http://icanhascheezburger.com" title="I Can Has Cheezburger?"><div style="width:120px;height:140px;float:left;"></div></a>
114
+ <a href="/"><div style="width:680px;height:140px;float:left;"></div></a>
115
+ <div id="embedProfileBox" title="Cheezburger Profile">
116
+ <span id="cheezLoginHeader" class="cheez_login_header"></span>&nbsp;<br />
117
+ <img src="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/images/ajax-loader.gif?m=1317676915g" class="centered orange_throbber" />
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ <div class="tabSet">
123
+ <div class="tab_home_ICHC" onmouseover="this.className='tab_home_ICHC_over'" onmouseout="this.className='tab_home_ICHC'"><a href="/" title="Home">&nbsp;</a></div>
124
+ <div class="tab_vote_ICHC" onmouseover="this.className='tab_vote_ICHC_over'" onmouseout="this.className='tab_vote_ICHC'"><a href="/vote" title="Vote">&nbsp;</a></div>
125
+ <div class="tab_builder_ICHC" onmouseover="this.className='tab_builder_ICHC_over'" onmouseout="this.className='tab_builder_ICHC'"><a href="http://cheezburger.com/Builder#Dogs" title="Builder">&nbsp;</a></div>
126
+ <div class="tab_upload_ICHC" onmouseover="this.className='tab_upload_ICHC_over'" onmouseout="this.className='tab_upload_ICHC'"><a href="/submit" title="Upload">&nbsp;</a></div>
127
+ </div>
128
+ </div>
129
+ <div id="body_wrapper">
130
+ <div id="mainbody" class="">
131
+ <div id="scripts"></div><script type="text/javascript" src="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/js/embed-client.js?m=1319588013g&amp;v=2011.10.28.2"></script><script type="text/javascript">mineEmbedClient.embedServiceEndpoint = "http:__cheezburger.com_services_EmbedService.aspx?v=2011.10.28.2&vsid=2".replace(/_/g, "/"); mineEmbedClient.siteUrl = "http://cheezburger.com/"; </script><script type="text/javascript" src="http://cheezburger.com/services/EmbedService.aspx?v=2011.10.28.2&vsid=2&strMethod=DisqusSSOScript"></script><form style="width: 500px; display: none;" id="embedLogin" action="post">
132
+ <input type="hidden" id="embedImageId" name="embedImageId" value="" />
133
+ <input type="hidden" id="embedAssetId" name="embedAssetId" value="" />
134
+ <strong>You must be logged in to add favorites | <a
135
+ href="http://cheezburger.com//"> Register for a
136
+ new account</a></strong><br />
137
+ <div style="margin-top: 2px; float: left;">Email: <input name="txtEmail"
138
+ type="text" id="txtEmail" style="font-size: Small; width: 70px;" />
139
+ Password: <input name="txtPassword" type="password" id="txtPassword"
140
+ style="width: 70px;" /> &nbsp;&nbsp; <a class="orange-button" href="#"
141
+ onclick="mineEmbedClient.doLogin(); return false;"
142
+ style="width: 60px; display: inline;">Login</a> <a class="orange-button"
143
+ href="#" onclick="mineEmbedClient.hideLogin(); return false;"
144
+ style="width: 60px; display: inline;">Cancel</a></div>
145
+ <div id="embedError" class="bad"
146
+ style="float: left; text-align: center; align: center; width: 100px; top: -5px; position: relative; padding: 1px 4px 2px; color: #f80000; font-weight: normal;"></div>
147
+ <br class="clearboth" />
148
+ <script type='text/javascript'>
149
+ $(document).ready(function() {
150
+ $('#txtPassword').keypress(function(e) {
151
+ var code = e.keyCode || e.which;
152
+ if (code == 13) {
153
+ mineEmbedClient.doLogin();
154
+ return false;
155
+ }
156
+ });
157
+ });
158
+ </script>
159
+ </form>
160
+ <script type="text/javascript">var dailyShowUpPageDepth=2; var dailyShowUpGrantUrl="http://cheezburger.com/Collectables/DailyRandom"; var dailyShowUpSSID=1</script><div id="pane2">
161
+ <div id="footerad"><p><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_728_BTF_ROS_SNG', [728, 90], 'footerad');});</script></p></div><div id="ad468"></div>
162
+ <div id='sidebar_scraper'></div>
163
+ <a name="top">&nbsp;</a>
164
+ <p class="prevnext">
165
+ &laquo; Previous <a href="http://dogs.icanhascheezburger.com/2009/02/12/funny-dog-pictures-dude-what-the-hell/" rel="prev">dude what the&nbsp;hell</a> | <a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-lub/" rel="next">lub&#8230;.</a> Next &raquo;</p><br />
166
+ <div class="post cf" id="post-18615"><h1><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/" rel="nofollow" title="Permanent Link to CUPCAKES">CUPCAKES</a></h1><div class="postsubtitle"><div id="ichc_rating_holder_s2_p18615"></div><script language="javascript">ICHCRTJS_settings_s2_p18615 = {'vsid' : '2','section' : '0','title' : 'CUPCAKES','permalink' : 'http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/'};</script><script language="javascript" src="http://cheezburger.com/rating/script"></script></div><br class="clearboth" /><div class="entry"><div id="embedFavorite3264663" class="embed_holder"></div><div id="embedAddToSite3264663" class="embed_holder"></div><div class="md"><p class="mine_image imageid_3264663 tid_1011271"><!-- http://images.icanhascheezburger.com/imagestore/2009/1/29/ce9da7b6-dc26-46aa-acc6-476326058e6a.jpg --><br />
167
+ <img class="mine_3264663" title="funny-dog-pictures-cupcakes" src="http://ihasahotdog.files.wordpress.com/2009/01/funny-dog-pictures-cupcakes.jpg" alt="funny pictures of dogs with captions" /></p>
168
+ <p>CUPCAKES They give me nightmares</p>
169
+ <p><a href="ihasahotdog.com/2008/07/09/funny-dog-pictures-omgomgomg-tiz-cake/">i thot u lurvd caek.</a></p>
170
+ <p>picture: dunno source, via our <a rel="nofollow" href="http://mine.icanhascheezburger.com">loldog builder</a>. lol caption: <a href="http://mine.icanhascheezburger.com/pictures-by-SniperJoe101/">SniperJoe101</a></p>
171
+ <p class="commentnow"><a href="http://mine.icanhascheezburger.com/default.aspx?tiid=1011271&amp;recap=1#step2"> » Recaption This</a></p>
172
+ <p class="commentnow"><a id="templateViewLink3264663" href="http://mine.icanhascheezburger.com/TemplateView.aspx?tiid=1011271"> » See All Captions</a></p>
173
+ <div class="sharedaddy"></div></div><a href="mailto:icanhascheezburger%2Bcopyright%2Bihasahotdog%40gmail.com?subject=Correction regarding ihasahotdog Post ID:18615&amp;body=http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/" class="small copyright">Incorrect source or offensive?</a><div class='tags'><a href="http://dogs.icanhascheezburger.com/tag/australian-shepherd/" rel="tag">australian shepherd</a><a href="http://dogs.icanhascheezburger.com/tag/cupcake/" rel="tag">cupcake</a><a href="http://dogs.icanhascheezburger.com/tag/kitchen/" rel="tag">kitchen</a></div>
174
+ <ul class="socmark_container cf">
175
+ <!-- start: facebook button -->
176
+ <li>
177
+ <a class="soc_fb_share fb_share_btn_lrg" href="http://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdogs.icanhascheezburger.com%2F2009%2F02%2F13%2Ffunny-dog-pictures-cupcakes%2F&t=CUPCAKES">Share on Facebook</a>
178
+ </li>
179
+ <li class="fb_share facebookshare soc soc_fb" data-socialsharetype="facebook" data-socialshareurl="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/">
180
+ <fb:like href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/" send="false" layout="box_count" width="50" show_faces="false" ref="like"></fb:like>
181
+ </li>
182
+ <!-- end: facebook button -->
183
+
184
+ <!-- Twitter Button -->
185
+ <li class="twittershare soc soc_twtr" data-socialsharetype="twitter" data-socialshareurl="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/">
186
+ <iframe
187
+ allowtransparency="true"
188
+ frameborder="0"
189
+ scrolling="no"
190
+ src="http://platform.twitter.com/widgets/tweet_button.html?text=%22CUPCAKES%22&amp;url=http%3A%2F%2Fdogs.icanhascheezburger.com%2F2009%2F02%2F13%2Ffunny-dog-pictures-cupcakes%2F&amp;count=vertical&amp;lang=en&amp;related=ICHCheezburger&amp;via=IHAH"
191
+ style="width:55px; height: 62px">
192
+ </iframe>
193
+ </li>
194
+ <!-- End Twitter -->
195
+
196
+
197
+
198
+
199
+
200
+ <li class="email_share soc soc_em" title="Share this via Email!">
201
+ <input type='hidden' name='assetId' value='0' />
202
+ <input type='hidden' name='siteName' value='Loldogs, Dogs &#039;n&#039; Puppy Dog Pictures - I Has A Hotdog!' />
203
+ <input type='hidden' name='siteUrl' value='http://dogs.icanhascheezburger.com' />
204
+ <input type='hidden' name='postUrl' value='http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/' />
205
+ <div class="share_icon">Email</div>
206
+ </li>
207
+ <!-- End Email -->
208
+ <li class="socmarklast">
209
+ <small>Copy &amp; paste this:</small><br />
210
+ <textarea name="easyshare2" onClick="_gaq.push(['_trackEvent', 'Socmarks', 'Click', 'embed_beta_copy']);this.focus();this.select();" >&lt;a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/?utm_source=embed&utm_medium=web&utm_campaign=sharewidget"&gt;&lt;img class=&quot;mine_3264663&quot; title=&quot;funny-dog-pictures-cupcakes&quot; src=&quot;http://ihasahotdog.wordpress.com/files/2009/01/funny-dog-pictures-cupcakes.jpg&quot; alt=&quot;funny pictures of dogs with captions&quot; /&gt;&lt;/a&gt;&lt;br /&gt;see more &lt;a href="http://dogs.icanhascheezburger.com?utm_source=embed&utm_medium=web&utm_campaign=sharewidget"&gt;dog and puppy pictures&lt;/a&gt;</textarea>
211
+ </li>
212
+ <!-- End Copy & Embed Code -->
213
+ </ul>
214
+ <!-- end socmarks -->
215
+ <p class="postmetadata">
216
+ <small>
217
+ This loldog or funny picture was posted on Friday, February 13th, 2009 at 12:00 am. </small>
218
+ </p>
219
+ </div></div>
220
+ <!-- You can start editing here. -->
221
+ <h2 id="comments">
222
+ <a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/#comments" rel="nofollow">&raquo; See all 25 comments</a> </h2>
223
+ <div class="commentnavigation">
224
+ <table class="tblcommentnav">
225
+ <tr>
226
+ <td width="25%" align="left"></td>
227
+ <td width="50%" align="center"><a href="#postcomment" title="Leave a Comment"><b>Leave a Comment</b></a></td>
228
+ <td width="25%" align="right"></td>
229
+ </tr>
230
+ </table>
231
+ </div>
232
+ <ol class="commentlist">
233
+ <li class="comment even thread-even depth-1" id="comment-31358">
234
+ <div id="div-comment-31358" class="comment-body">
235
+ <div class="comment-author vcard">
236
+ <img alt='' src='http://0.gravatar.com/avatar/ade6654b69f14fdbf9a8691dc01f10e9?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">w00t</cite> <span class="says">says:</span> </div>
237
+
238
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31358">
239
+ February 13, 2009 at 12:10 am</a> </div>
240
+
241
+ <p>nightmare cookies of elm street</p>
242
+
243
+ <div class="reply">
244
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31358#respond' onclick='return addComment.moveForm("div-comment-31358", "31358", "respond", "18615")'>Reply</a> </div>
245
+ </div>
246
+ </li>
247
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31360">
248
+ <div id="div-comment-31360" class="comment-body">
249
+ <div class="comment-author vcard">
250
+ <img alt='' src='http://0.gravatar.com/avatar/6355531f72fa3754c7a2a34724ca5a1f?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Bonniespots</cite> <span class="says">says:</span> </div>
251
+
252
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31360">
253
+ February 13, 2009 at 12:31 am</a> </div>
254
+
255
+ <p>Ai lubs da luk on dis goggies face!!!</p>
256
+
257
+ <div class="reply">
258
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31360#respond' onclick='return addComment.moveForm("div-comment-31360", "31360", "respond", "18615")'>Reply</a> </div>
259
+ </div>
260
+ </li>
261
+ <li class="comment even thread-even depth-1" id="comment-31362">
262
+ <div id="div-comment-31362" class="comment-body">
263
+ <div class="comment-author vcard">
264
+ <img alt='' src='http://1.gravatar.com/avatar/fad0671967ec130eb4dc19dfdb5f42bd?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Vanvidum</cite> <span class="says">says:</span> </div>
265
+
266
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31362">
267
+ February 13, 2009 at 1:12 am</a> </div>
268
+
269
+ <p>First you will be baked, and then there will be cake. In a cup!</p>
270
+
271
+ <div class="reply">
272
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31362#respond' onclick='return addComment.moveForm("div-comment-31362", "31362", "respond", "18615")'>Reply</a> </div>
273
+ </div>
274
+ </li>
275
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31363">
276
+ <div id="div-comment-31363" class="comment-body">
277
+ <div class="comment-author vcard">
278
+ <img alt='' src='http://1.gravatar.com/avatar/d0a0c65d7f0024411f75ed28fc68d2d7?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Tylur</cite> <span class="says">says:</span> </div>
279
+
280
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31363">
281
+ February 13, 2009 at 1:30 am</a> </div>
282
+
283
+ <p>YAY 1st POST!</p>
284
+
285
+ <div class="reply">
286
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31363#respond' onclick='return addComment.moveForm("div-comment-31363", "31363", "respond", "18615")'>Reply</a> </div>
287
+ </div>
288
+ </li>
289
+ <li class="comment even thread-even depth-1" id="comment-31366">
290
+ <div id="div-comment-31366" class="comment-body">
291
+ <div class="comment-author vcard">
292
+ <img alt='' src='http://1.gravatar.com/avatar/b84b9890862855a66921555eacb604af?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">missmeg426</cite> <span class="says">says:</span> </div>
293
+
294
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31366">
295
+ February 13, 2009 at 1:35 am</a> </div>
296
+
297
+ <p>Am I first? ZOMG.</p>
298
+ <p>Also &#8211; that POOR DOG!</p>
299
+
300
+ <div class="reply">
301
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31366#respond' onclick='return addComment.moveForm("div-comment-31366", "31366", "respond", "18615")'>Reply</a> </div>
302
+ </div>
303
+ </li>
304
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31372">
305
+ <div id="div-comment-31372" class="comment-body">
306
+ <div class="comment-author vcard">
307
+ <img alt='' src='http://1.gravatar.com/avatar/15977b9929d7181b96f60cf59d4a7c01?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Juneau</cite> <span class="says">says:</span> </div>
308
+
309
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31372">
310
+ February 13, 2009 at 2:27 am</a> </div>
311
+
312
+ <p>I love this dog!</p>
313
+
314
+ <div class="reply">
315
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31372#respond' onclick='return addComment.moveForm("div-comment-31372", "31372", "respond", "18615")'>Reply</a> </div>
316
+ </div>
317
+ </li>
318
+ <li class="comment even thread-even depth-1" id="comment-31373">
319
+ <div id="div-comment-31373" class="comment-body">
320
+ <div class="comment-author vcard">
321
+ <img alt='' src='http://0.gravatar.com/avatar/c7c14b74bc15e1c8b1f1355acf252b03?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Nikki</cite> <span class="says">says:</span> </div>
322
+
323
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31373">
324
+ February 13, 2009 at 2:35 am</a> </div>
325
+
326
+ <p>No wai! This picshur is frum TV show bout goggie training, and wuz maed fun of on The Soup &#8211; funnie!</p>
327
+
328
+ <div class="reply">
329
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31373#respond' onclick='return addComment.moveForm("div-comment-31373", "31373", "respond", "18615")'>Reply</a> </div>
330
+ </div>
331
+ </li>
332
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31376">
333
+ <div id="div-comment-31376" class="comment-body">
334
+ <div class="comment-author vcard">
335
+ <img alt='' src='http://1.gravatar.com/avatar/da2d19ce149d01db717130703035a7a7?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">V</cite> <span class="says">says:</span> </div>
336
+
337
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31376">
338
+ February 13, 2009 at 3:16 am</a> </div>
339
+
340
+ <p>Hee hee. I saw this on The Soup&#8230;poor doggie just wants a cupcake&#8230;</p>
341
+
342
+ <div class="reply">
343
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31376#respond' onclick='return addComment.moveForm("div-comment-31376", "31376", "respond", "18615")'>Reply</a> </div>
344
+ </div>
345
+ </li>
346
+ <li class="comment even thread-even depth-1" id="comment-31385">
347
+ <div id="div-comment-31385" class="comment-body">
348
+ <div class="comment-author vcard">
349
+ <img alt='' src='http://1.gravatar.com/avatar/9da66f3da1a26c946a2cfedc32ef203a?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Noalani</cite> <span class="says">says:</span> </div>
350
+
351
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31385">
352
+ February 13, 2009 at 6:05 am</a> </div>
353
+
354
+ <p>It&#8217;s from the TV show, &#8216;It&#8217;s Me Or the Dog&#8217; and the dog&#8217;s name is Stains.</p>
355
+
356
+ <div class="reply">
357
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31385#respond' onclick='return addComment.moveForm("div-comment-31385", "31385", "respond", "18615")'>Reply</a> </div>
358
+ </div>
359
+ </li>
360
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31393">
361
+ <div id="div-comment-31393" class="comment-body">
362
+ <div class="comment-author vcard">
363
+ <img alt='' src='http://1.gravatar.com/avatar/17fed97b91ea2ec67e9650634d60f531?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Chewtoy</cite> <span class="says">says:</span> </div>
364
+
365
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31393">
366
+ February 13, 2009 at 7:01 am</a> </div>
367
+
368
+ <p>It&#8217;s ten times funnier on video, where he stands there frozen with that expression. Love it.</p>
369
+
370
+ <div class="reply">
371
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31393#respond' onclick='return addComment.moveForm("div-comment-31393", "31393", "respond", "18615")'>Reply</a> </div>
372
+ </div>
373
+ </li>
374
+ <li class="comment even thread-even depth-1 parent" id="comment-31403">
375
+ <div id="div-comment-31403" class="comment-body">
376
+ <div class="comment-author vcard">
377
+ <img alt='' src='http://0.gravatar.com/avatar/06d74bf914b5e9b85f5e7f7c5918ba57?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">mitzoe</cite> <span class="says">says:</span> </div>
378
+
379
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31403">
380
+ February 13, 2009 at 9:17 am</a> </div>
381
+
382
+ <p>Is it me, or does he look like Alice Cooper?</p>
383
+
384
+ <div class="reply">
385
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31403#respond' onclick='return addComment.moveForm("div-comment-31403", "31403", "respond", "18615")'>Reply</a> </div>
386
+ </div>
387
+ <ul class='children'>
388
+ <li class="comment odd alt depth-2" id="comment-31452">
389
+ <div id="div-comment-31452" class="comment-body">
390
+ <div class="comment-author vcard">
391
+ <img alt='' src='http://1.gravatar.com/avatar/b211c9a325dbd4b694f31076968abe1f?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">gobo</cite> <span class="says">says:</span> </div>
392
+
393
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31452">
394
+ February 13, 2009 at 11:24 pm</a> </div>
395
+
396
+ <p>YES! I&#8217;ve been trying to put my finger on it. Brain confusion alleviated now.</p>
397
+
398
+ <div class="reply">
399
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31452#respond' onclick='return addComment.moveForm("div-comment-31452", "31452", "respond", "18615")'>Reply</a> </div>
400
+ </div>
401
+ </li>
402
+ </ul>
403
+ </li>
404
+ <li class="comment even thread-odd thread-alt depth-1" id="comment-31425">
405
+ <div id="div-comment-31425" class="comment-body">
406
+ <div class="comment-author vcard">
407
+ <img alt='' src='http://0.gravatar.com/avatar/430990f40774808b2aaeaecffd6be155?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Jussuh</cite> <span class="says">says:</span> </div>
408
+
409
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31425">
410
+ February 13, 2009 at 2:51 pm</a> </div>
411
+
412
+ <p>Haha, I new there would a lol made from this. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1317676835g' alt=':)' class='wp-smiley' /> </p>
413
+
414
+ <div class="reply">
415
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31425#respond' onclick='return addComment.moveForm("div-comment-31425", "31425", "respond", "18615")'>Reply</a> </div>
416
+ </div>
417
+ </li>
418
+ <li class="comment odd alt thread-even depth-1" id="comment-31446">
419
+ <div id="div-comment-31446" class="comment-body">
420
+ <div class="comment-author vcard">
421
+ <img alt='' src='http://1.gravatar.com/avatar/f0181ea4b3deb200104305274925c3c2?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Anomnomnom Omnomnom</cite> <span class="says">says:</span> </div>
422
+
423
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31446">
424
+ February 13, 2009 at 6:58 pm</a> </div>
425
+
426
+ <p>saw it on The Soup, poor mutt looks traumatized!</p>
427
+
428
+ <div class="reply">
429
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31446#respond' onclick='return addComment.moveForm("div-comment-31446", "31446", "respond", "18615")'>Reply</a> </div>
430
+ </div>
431
+ </li>
432
+ <li class="comment even thread-odd thread-alt depth-1" id="comment-31453">
433
+ <div id="div-comment-31453" class="comment-body">
434
+ <div class="comment-author vcard">
435
+ <img alt='' src='http://0.gravatar.com/avatar/073201c377600ed16ac09cc554adc686?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">chibi-auntie</cite> <span class="says">says:</span> </div>
436
+
437
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31453">
438
+ February 13, 2009 at 11:32 pm</a> </div>
439
+
440
+ <p>Looks like my old Aussie Tasha, she loved cupcakes! Ate half a dozen chocolate ones we didn&#8217;t think she could reach, never even got a tummyache.</p>
441
+ <p>Mmm&#8230; now Iz wantin&#8217; a cupcake&#8230;</p>
442
+
443
+ <div class="reply">
444
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31453#respond' onclick='return addComment.moveForm("div-comment-31453", "31453", "respond", "18615")'>Reply</a> </div>
445
+ </div>
446
+ </li>
447
+ <li class="comment odd alt thread-even depth-1" id="comment-31473">
448
+ <div id="div-comment-31473" class="comment-body">
449
+ <div class="comment-author vcard">
450
+ <img alt='' src='http://0.gravatar.com/avatar/eda76c975d3266a1bd3047d767dce105?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">i_@am#1</cite> <span class="says">says:</span> </div>
451
+
452
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31473">
453
+ February 14, 2009 at 6:51 am</a> </div>
454
+
455
+ <p>All dat sugar makz my teeths wiggul</p>
456
+
457
+ <div class="reply">
458
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31473#respond' onclick='return addComment.moveForm("div-comment-31473", "31473", "respond", "18615")'>Reply</a> </div>
459
+ </div>
460
+ </li>
461
+ <li class="comment even thread-odd thread-alt depth-1" id="comment-31497">
462
+ <div id="div-comment-31497" class="comment-body">
463
+ <div class="comment-author vcard">
464
+ <img alt='' src='http://1.gravatar.com/avatar/d7140efeddedd7598f647d39d12d12c4?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">roekachu</cite> <span class="says">says:</span> </div>
465
+
466
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31497">
467
+ February 14, 2009 at 8:02 pm</a> </div>
468
+
469
+ <p>OHMG he be so miserable! Poor goggies&#8230;.Dat still be makin me LOL tho!!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif?m=1317676835g' alt=':D' class='wp-smiley' /> </p>
470
+
471
+ <div class="reply">
472
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31497#respond' onclick='return addComment.moveForm("div-comment-31497", "31497", "respond", "18615")'>Reply</a> </div>
473
+ </div>
474
+ </li>
475
+ <li class="comment odd alt thread-even depth-1" id="comment-31499">
476
+ <div id="div-comment-31499" class="comment-body">
477
+ <div class="comment-author vcard">
478
+ <img alt='' src='http://0.gravatar.com/avatar/8156171b9be068674a0c78596912c72a?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Cheezburgers!</cite> <span class="says">says:</span> </div>
479
+
480
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31499">
481
+ February 14, 2009 at 10:09 pm</a> </div>
482
+
483
+ <p>:O dat goggie looks craaaazy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1317676835g' alt=':)' class='wp-smiley' /> </p>
484
+
485
+ <div class="reply">
486
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31499#respond' onclick='return addComment.moveForm("div-comment-31499", "31499", "respond", "18615")'>Reply</a> </div>
487
+ </div>
488
+ </li>
489
+ <li class="comment even thread-odd thread-alt depth-1" id="comment-31549">
490
+ <div id="div-comment-31549" class="comment-body">
491
+ <div class="comment-author vcard">
492
+ <img alt='' src='http://1.gravatar.com/avatar/712164e41a9075334e640335ec4a3b52?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">mary</cite> <span class="says">says:</span> </div>
493
+
494
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31549">
495
+ February 15, 2009 at 11:44 am</a> </div>
496
+
497
+ <p>OMFG. *dies of laughter*</p>
498
+
499
+ <div class="reply">
500
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31549#respond' onclick='return addComment.moveForm("div-comment-31549", "31549", "respond", "18615")'>Reply</a> </div>
501
+ </div>
502
+ </li>
503
+ <li class="comment odd alt thread-even depth-1" id="comment-31563">
504
+ <div id="div-comment-31563" class="comment-body">
505
+ <div class="comment-author vcard">
506
+ <img alt='' src='http://0.gravatar.com/avatar/a5c1cef6a4e0e6217a0f0fa924ae0f9f?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn"><a href='http://www.yourdailycute.com' rel='external nofollow' class='url'>Your Daily Cute</a></cite> <span class="says">says:</span> </div>
507
+
508
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-31563">
509
+ February 15, 2009 at 3:10 pm</a> </div>
510
+
511
+ <p>I love it! I knew there&#8217;d be a LOL made from it! </p>
512
+ <p>If you haven&#8217;t seen the hystical YouTube video of the Dramatic Cupcake Dog (this guy in the picture) watch it here! <a href="http://tinyurl.com/bxtw57" rel="nofollow">http://tinyurl.com/bxtw57</a><br />
513
+ <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1317676835g' alt=':)' class='wp-smiley' /> </p>
514
+
515
+ <div class="reply">
516
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=31563#respond' onclick='return addComment.moveForm("div-comment-31563", "31563", "respond", "18615")'>Reply</a> </div>
517
+ </div>
518
+ </li>
519
+ <li class="comment even thread-odd thread-alt depth-1 parent" id="comment-32554">
520
+ <div id="div-comment-32554" class="comment-body">
521
+ <div class="comment-author vcard">
522
+ <img alt='' src='http://0.gravatar.com/avatar/8546225a20c63f5b1f51b04fc6e344a8?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn"><a href='http://nldsrtvnhkpz.com/' rel='external nofollow' class='url'>wxqwlelgg</a></cite> <span class="says">says:</span> </div>
523
+
524
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-32554">
525
+ February 25, 2009 at 9:05 am</a> </div>
526
+
527
+ <p>mWmpVD <a href="http://ubykgdogcprz.com/" rel="nofollow">ubykgdogcprz</a>, [url=http://bgenihctmmnf.com/]bgenihctmmnf[/url], [link=http://spyoadxwccsb.com/]spyoadxwccsb[/link], <a href="http://fhmsnlvyinng.com/" rel="nofollow">http://fhmsnlvyinng.com/</a></p>
528
+
529
+ <div class="reply">
530
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=32554#respond' onclick='return addComment.moveForm("div-comment-32554", "32554", "respond", "18615")'>Reply</a> </div>
531
+ </div>
532
+ <ul class='children'>
533
+ <li class="comment odd alt depth-2" id="comment-88015">
534
+ <div id="div-comment-88015" class="comment-body">
535
+ <div class="comment-author vcard">
536
+ <img alt='' src='http://0.gravatar.com/avatar/a8b3cfd816a96456a23d11a979f9e311?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn"><a href='http://cheezburger.com' rel='external nofollow' class='url'>dolphin75860</a></cite> <span class="says">says:</span> </div>
537
+
538
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-88015">
539
+ March 18, 2011 at 1:07 pm</a> </div>
540
+
541
+ <p>what are you saying</p>
542
+
543
+ <div class="reply">
544
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=88015#respond' onclick='return addComment.moveForm("div-comment-88015", "88015", "respond", "18615")'>Reply</a> </div>
545
+ </div>
546
+ </li>
547
+ </ul>
548
+ </li>
549
+ <li class="comment even thread-even depth-1" id="comment-57064">
550
+ <div id="div-comment-57064" class="comment-body">
551
+ <div class="comment-author vcard">
552
+ <img alt='' src='http://0.gravatar.com/avatar/680036b37e845499fc63ff6d691ff1e4?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn"><a href='http://ihasahotdog' rel='external nofollow' class='url'>Dr.OMG</a></cite> <span class="says">says:</span> </div>
553
+
554
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-57064">
555
+ January 22, 2010 at 12:02 pm</a> </div>
556
+
557
+ <p>dog is a weirdo</p>
558
+
559
+ <div class="reply">
560
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=57064#respond' onclick='return addComment.moveForm("div-comment-57064", "57064", "respond", "18615")'>Reply</a> </div>
561
+ </div>
562
+ </li>
563
+ <li class="comment odd alt thread-odd thread-alt depth-1" id="comment-85301">
564
+ <div id="div-comment-85301" class="comment-body">
565
+ <div class="comment-author vcard">
566
+ <img alt='' src='http://0.gravatar.com/avatar/0a5f1203b00945b3921dd600029286c3?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn">Hershey</cite> <span class="says">says:</span> </div>
567
+
568
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-85301">
569
+ February 5, 2011 at 12:15 pm</a> </div>
570
+
571
+ <p>I lub cupcakes. Victoria ranked dis goggie as her strangest case ever.</p>
572
+
573
+ <div class="reply">
574
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=85301#respond' onclick='return addComment.moveForm("div-comment-85301", "85301", "respond", "18615")'>Reply</a> </div>
575
+ </div>
576
+ </li>
577
+ <li class="comment even thread-even depth-1" id="comment-88014">
578
+ <div id="div-comment-88014" class="comment-body">
579
+ <div class="comment-author vcard">
580
+ <img alt='' src='http://0.gravatar.com/avatar/a8b3cfd816a96456a23d11a979f9e311?s=32&amp;d=identicon&amp;r=G' class='avatar avatar-32' height='32' width='32' /> <cite class="fn"><a href='http://cheezburger.com' rel='external nofollow' class='url'>dolphin75860</a></cite> <span class="says">says:</span> </div>
581
+
582
+ <div class="comment-meta commentmetadata"><a href="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/comment-page-1/#comment-88014">
583
+ March 18, 2011 at 1:06 pm</a> </div>
584
+
585
+ <p>lol poor dog</p>
586
+
587
+ <div class="reply">
588
+ <a class='comment-reply-link' href='/2009/02/13/funny-dog-pictures-cupcakes/?replytocom=88014#respond' onclick='return addComment.moveForm("div-comment-88014", "88014", "respond", "18615")'>Reply</a> </div>
589
+ </div>
590
+ </li>
591
+ </ol>
592
+ <div class="commentnavigation">
593
+ <table class="tblcommentnav">
594
+ <tr>
595
+ <td width="25%" align="left"></td>
596
+ <td width="50%" align="center"><a href="#top">Go to Top</a></td>
597
+ <td width="25%" align="right"></td>
598
+ </tr>
599
+ </table>
600
+ </div>
601
+ <br />
602
+
603
+
604
+
605
+ <div id="respond">
606
+ <h3 id="reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2009/02/13/funny-dog-pictures-cupcakes/#respond" style="display:none;">Cancel reply</a></small></h3>
607
+ <form action="http://dogs.icanhascheezburger.com/wp-comments-post.php" method="post" id="commentform">
608
+ <p class="comment-notes">Your email address will not be published. Required fields are marked <span class="required">*</span></p> <p class="comment-form-author"><label for="author">Name</label> <span class="required">*</span><input id="author" name="author" type="text" value="" size="30" aria-required='true' /></p>
609
+ <p class="comment-form-email"><label for="email">Email</label> <span class="required">*</span><input id="email" name="email" type="text" value="" size="30" aria-required='true' /></p>
610
+ <p class="comment-form-url"><label for="url">Website</label><input id="url" name="url" type="text" value="" size="30" /></p>
611
+ <p class="comment-form-comment"><label for="comment">Comment</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p> <p class="form-submit">
612
+ <input name="submit" type="submit" id="submit" value="Post Comment" />
613
+ <input type='hidden' name='comment_post_ID' value='18615' id='comment_post_ID' />
614
+ <input type='hidden' name='comment_parent' id='comment_parent' value='0' />
615
+ </p>
616
+
617
+ <input type="hidden" name="genseq" value="1319932560" />
618
+ <p class="comment-subscription-form"><input type="checkbox" name="subscribe" id="subscribe" value="subscribe" style="width: auto;" tabindex="6"/> <label class="subscribe-label" id="subscribe-label" for="subscribe">Notify me of follow-up comments via email.</label></p><p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto;" tabindex="7"/> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">Notify me of new posts via email.</label></p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="4304f8075d" /></p><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/akismet-2.5/form.js?m=1317676838g&amp;ver=1'></script>
619
+ <p style="display: none;"><input type="hidden" id="ak_js" name="ak_js" value="113"/></p> </form>
620
+ </div><!-- #respond -->
621
+
622
+
623
+ </div><!-- pane2 -->
624
+ <script type="text/javascript">mineEmbedClient.init("3264663", "", false);</script><div id="panemain">
625
+ <div id="fb_hook" class="widget">
626
+ </div>
627
+ <div id="tracka" style="width: 1px; height: 1px;"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_tracka_ROS_SNG', [1, 1], 'tracka');});</script></div><div id="trackb" style="width: 1px; height: 1px;"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_trackb_ROS_SNG', [1, 1], 'trackb');});</script></div><div id="trackc" style="width: 1px; height: 1px;"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_trackc_ROS_SNG', [1, 1], 'trackc');});</script></div><div id="toprightad"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_300_ATF_ROS_SNG', [300,250], 'toprightad');});</script></div><div id="rightskyad"><script type="text/javascript">googletag.cmd.push(function(){googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_160_ATF_ROS_SNG', [160, 600], 'rightskyad');});</script></div> <div id="pane3" class="pane3">
628
+ <div class="widget">
629
+ <form action="/" method="get">
630
+ <label for="search"><h2 class="widgettitle">Search</h2></label>
631
+ <input type="text" name="s" id="search" value="" />
632
+ <input class="button" style="margin-top:5px;" type="submit" value="Go" alt="Search" />
633
+ </form>
634
+ <script src="http://www.lijit.com/blog_wijits?json=0&amp;id=trakr&amp;uri=http%3A%2F%2Fwww.lijit.com%2Fusers%2Fihasahotdog_network&amp;js=1"></script>
635
+ </div><div class="widget" id="rss_widget"><h2 class="widgettitle">Follow or Fan Us</h2><div class="rss_75"><div id="widget_subscribe_text">Subscribe by email:</div><div id="widget_subscribe_form"><form action="http://feedburner.google.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/emailverifySubmit?feedId=4sdt0psn5l28cjolc2ndq2c7do', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><input type="hidden" value="http://feedproxy.google.com/~e?ffid=4sdt0psn5l28cjolc2ndq2c7do" name="url"/><input type="hidden" value="Loldogs 'n Funny Dog Pictures - I Has A Hotdog!" name="title"/><input type="hidden" name="loc" value="en_US"/><input type="text" style="width:120px;" name="email" value="Enter email" onfocus="this.value=(this.value=='Enter email') ? '' : this.value;" onblur="this.value=(this.value=='') ? 'Enter email' : this.value;" />&nbsp;<input class="button" type="submit" value="OK" /></form></div></div><div class="rss_25"><div class="widget_icon"><a href="http://twitter.com/IHAH" rel="nofollow" target="_blank" class="g_sprite1 s_twitter" title="Follow Us on Twitter">Twitter</a></div><div class="widget_icon"><a href="http://www.facebook.com/pages/IHasAHotDogcom/19935294098" rel="nofollow" target="_blank" class="g_sprite1 s_fb" title="Become a Fan!">Facebook</a></div><div class="widget_icon"><a href="http://feeds.feedburner.com/IHasAHotdog" rel="nofollow" target="_blank" class="g_sprite1 rss_icon_small" title="Subscribe to our RSS!">RSS</a></div></div></div><div id="dynamicsidebar"><ul><li id="text-196" class="widget widget_text"><h2 class="widgettitle">See Random Loldogs</h2>
636
+ <div class="textwidget"><br />
637
+ <a href="/?random" class="button1" style="width:120px;margin:0 auto;">Random</a>
638
+ <br /></div>
639
+ </li>
640
+ <li id="text-3" class="widget widget_text"> <div class="textwidget"><h3>Dog Tags By Breed</h3>
641
+ <table><tr><td><a href="http://ihasahotdog.com/tag/basset-hound/" class="s_sprite tag_basset"></a></td><td><a href="http://ihasahotdog.com/tag/bulldog/" class="s_sprite tag_bull"></a></td></tr><tr><td><a href="http://ihasahotdog.com/tag/chihuahua/" class="s_sprite tag_chihuahua"></a></td><td>
642
+ <a href="http://ihasahotdog.com/tag/dachshund/" class="s_sprite tag_dachsund"></a></td></tr><tr><td><a href="http://ihasahotdog.com/tag/maltese/" class="s_sprite tag_maltese"></a></td><td><a href="http://ihasahotdog.com/tag/pug/" class="s_sprite tag_pug"></a></td></tr><tr><td><a href="http://ihasahotdog.com/tag/german-shepherd/" class="s_sprite tag_gershep"></a></td><td><a href="http://ihasahotdog.com/tag/corgi/" class="s_sprite tag_corgi"></a></td></tr></table><a href="/breeds">See more dog tags!</a></div>
643
+ </li>
644
+ <li id="text-197" class="widget widget_text"><h2 class="widgettitle">Hall of Fame</h2>
645
+ <div class="textwidget"><br>
646
+ <p>Check Out our Hall of Fame!
647
+ <br><br>
648
+ <a href="/category/hall-of-fame" class="button1" style="width:120px;margin:0 auto;">Hall of Fame</a></p>
649
+ <br></div>
650
+ </li>
651
+ <li id="recent-comments" class="widget widget_recent_comments"> <h2 class="widgettitle">who be barkin?</h2>
652
+ <table class='recentcommentsavatar' cellspacing='0' cellpadding='0' border='0'><tr><td title="FunnyCuteStuff" class="recentcommentsavatartop" style="height:16px; width:16px"><a href='http://www.funnycutestuff.com/' rel='nofollow'><img alt='' src='http://0.gravatar.com/avatar/6bcc8d1250621f1b53f2dc248dc46246?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></a></td><td class="recentcommentstexttop"><a href='http://www.funnycutestuff.com/' rel='nofollow'>FunnyCuteStuff</a> on <a href="http://dogs.icanhascheezburger.com/2011/10/29/funny-dog-pictures-dogtober-masquerade-mutt/#comment-103199">Dogtober 2011: Masquerade&hellip;</a></td></tr><tr><td title="Littlelani" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://0.gravatar.com/avatar/a2f8f9d749e522c0ff058223b3d62f9c?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">Littlelani on <a href="http://dogs.icanhascheezburger.com/2011/10/29/cute-puppy-pictures-okay-lady-love-you-buh-bye/#comment-103198">Okay&nbsp;lady</a></td></tr><tr><td title="P.Fiona" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/75069018608175bff8fd6191e64dc86d?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">P.Fiona on <a href="http://dogs.icanhascheezburger.com/2011/10/24/funny-dog-videos-what-did-we-do/#comment-103196">VIDEOS: What Did We Do To Dese&hellip;</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-videos-futbol-goggie/#comment-103195">VIDEO: Futbol&nbsp;Goggie</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-no-hooman-no-crai/#comment-103194">Don&#8217;t Shed No&nbsp;Tears</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/28/cute-puppy-pictures-dogtober-lil-punkins/#comment-103193">Dogtober 2011: &#8216;Lil&hellip;</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-dog-helps-blind-teen-participate-in-cross-country/#comment-103192">Dog Helps Blind Teen Participa&hellip;</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-privileged-individuals-only/#comment-103191">STOP!</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/29/cute-puppy-pictures-okay-lady-love-you-buh-bye/#comment-103190">Okay&nbsp;lady</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/29/funny-dog-pictures-dogtober-masquerade-mutt/#comment-103189">Dogtober 2011: Masquerade&hellip;</a></td></tr><tr><td title="quantakiran" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/7656b6042b4522da1ad49c897ac7cb7f?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">quantakiran on <a href="http://dogs.icanhascheezburger.com/2011/10/29/funny-dog-pictures-you-to-yung-da-movies-rated-arg/#comment-103188">you to yung da movies rated&hellip;</a></td></tr><tr><td title="Mike" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/bad1413c52e9c1b84d6fb7096d20e652?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">Mike on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-u-deside-teh-goggie-breed-ob-teh-week-16/#comment-103187">U Deside: Teh Goggie Breed ob &hellip;</a></td></tr><tr><td title="funkyhorse" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/9d5e0cfbf76a75d2e7b22cd2ff8c483c?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">funkyhorse on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-devil-suit/#comment-103186">Iz a devil&nbsp;suit</a></td></tr><tr><td title="Evan" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/5dd7309866580e7b4594721d5a012dc8?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">Evan on <a href="http://dogs.icanhascheezburger.com/2011/10/28/funny-dog-pictures-devil-suit/#comment-103185">Iz a devil&nbsp;suit</a></td></tr><tr><td title="Rachel" class="recentcommentsavatarend" style="height:16px; width:16px"><img alt='' src='http://1.gravatar.com/avatar/3d15a2722233e3a10f55b0e30f824b4d?s=16&amp;d=identicon&amp;r=G' class='avatar avatar-16' height='16' width='16' /></td><td class="recentcommentstextend">Rachel on <a href="http://dogs.icanhascheezburger.com/2011/10/29/cute-puppy-pictures-okay-lady-love-you-buh-bye/#comment-103182">Okay&nbsp;lady</a></td></tr></table>
653
+ </li>
654
+ <li id="archives-2" class="widget widget_archive"><h2 class="widgettitle">Oldies But Goodies</h2>
655
+ <select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'> <option value="">Select Month</option> <option value='http://dogs.icanhascheezburger.com/2011/10/'> October 2011 &nbsp;(300)</option>
656
+ <option value='http://dogs.icanhascheezburger.com/2011/09/'> September 2011 &nbsp;(301)</option>
657
+ <option value='http://dogs.icanhascheezburger.com/2011/08/'> August 2011 &nbsp;(349)</option>
658
+ <option value='http://dogs.icanhascheezburger.com/2011/07/'> July 2011 &nbsp;(335)</option>
659
+ <option value='http://dogs.icanhascheezburger.com/2011/06/'> June 2011 &nbsp;(324)</option>
660
+ <option value='http://dogs.icanhascheezburger.com/2011/05/'> May 2011 &nbsp;(321)</option>
661
+ <option value='http://dogs.icanhascheezburger.com/2011/04/'> April 2011 &nbsp;(305)</option>
662
+ <option value='http://dogs.icanhascheezburger.com/2011/03/'> March 2011 &nbsp;(322)</option>
663
+ <option value='http://dogs.icanhascheezburger.com/2011/02/'> February 2011 &nbsp;(277)</option>
664
+ <option value='http://dogs.icanhascheezburger.com/2011/01/'> January 2011 &nbsp;(293)</option>
665
+ <option value='http://dogs.icanhascheezburger.com/2010/12/'> December 2010 &nbsp;(267)</option>
666
+ <option value='http://dogs.icanhascheezburger.com/2010/11/'> November 2010 &nbsp;(249)</option>
667
+ <option value='http://dogs.icanhascheezburger.com/2010/10/'> October 2010 &nbsp;(270)</option>
668
+ <option value='http://dogs.icanhascheezburger.com/2010/09/'> September 2010 &nbsp;(257)</option>
669
+ <option value='http://dogs.icanhascheezburger.com/2010/08/'> August 2010 &nbsp;(251)</option>
670
+ <option value='http://dogs.icanhascheezburger.com/2010/07/'> July 2010 &nbsp;(182)</option>
671
+ <option value='http://dogs.icanhascheezburger.com/2010/06/'> June 2010 &nbsp;(149)</option>
672
+ <option value='http://dogs.icanhascheezburger.com/2010/05/'> May 2010 &nbsp;(166)</option>
673
+ <option value='http://dogs.icanhascheezburger.com/2010/04/'> April 2010 &nbsp;(157)</option>
674
+ <option value='http://dogs.icanhascheezburger.com/2010/03/'> March 2010 &nbsp;(168)</option>
675
+ <option value='http://dogs.icanhascheezburger.com/2010/02/'> February 2010 &nbsp;(146)</option>
676
+ <option value='http://dogs.icanhascheezburger.com/2010/01/'> January 2010 &nbsp;(148)</option>
677
+ <option value='http://dogs.icanhascheezburger.com/2009/12/'> December 2009 &nbsp;(152)</option>
678
+ <option value='http://dogs.icanhascheezburger.com/2009/11/'> November 2009 &nbsp;(140)</option>
679
+ <option value='http://dogs.icanhascheezburger.com/2009/10/'> October 2009 &nbsp;(146)</option>
680
+ <option value='http://dogs.icanhascheezburger.com/2009/09/'> September 2009 &nbsp;(147)</option>
681
+ <option value='http://dogs.icanhascheezburger.com/2009/08/'> August 2009 &nbsp;(146)</option>
682
+ <option value='http://dogs.icanhascheezburger.com/2009/07/'> July 2009 &nbsp;(147)</option>
683
+ <option value='http://dogs.icanhascheezburger.com/2009/06/'> June 2009 &nbsp;(142)</option>
684
+ <option value='http://dogs.icanhascheezburger.com/2009/05/'> May 2009 &nbsp;(147)</option>
685
+ <option value='http://dogs.icanhascheezburger.com/2009/04/'> April 2009 &nbsp;(145)</option>
686
+ <option value='http://dogs.icanhascheezburger.com/2009/03/'> March 2009 &nbsp;(145)</option>
687
+ <option value='http://dogs.icanhascheezburger.com/2009/02/'> February 2009 &nbsp;(133)</option>
688
+ <option value='http://dogs.icanhascheezburger.com/2009/01/'> January 2009 &nbsp;(142)</option>
689
+ <option value='http://dogs.icanhascheezburger.com/2008/12/'> December 2008 &nbsp;(147)</option>
690
+ <option value='http://dogs.icanhascheezburger.com/2008/11/'> November 2008 &nbsp;(141)</option>
691
+ <option value='http://dogs.icanhascheezburger.com/2008/10/'> October 2008 &nbsp;(145)</option>
692
+ <option value='http://dogs.icanhascheezburger.com/2008/09/'> September 2008 &nbsp;(140)</option>
693
+ <option value='http://dogs.icanhascheezburger.com/2008/08/'> August 2008 &nbsp;(144)</option>
694
+ <option value='http://dogs.icanhascheezburger.com/2008/07/'> July 2008 &nbsp;(143)</option>
695
+ <option value='http://dogs.icanhascheezburger.com/2008/06/'> June 2008 &nbsp;(141)</option>
696
+ <option value='http://dogs.icanhascheezburger.com/2008/05/'> May 2008 &nbsp;(144)</option>
697
+ <option value='http://dogs.icanhascheezburger.com/2008/04/'> April 2008 &nbsp;(143)</option>
698
+ <option value='http://dogs.icanhascheezburger.com/2008/03/'> March 2008 &nbsp;(145)</option>
699
+ <option value='http://dogs.icanhascheezburger.com/2008/02/'> February 2008 &nbsp;(136)</option>
700
+ <option value='http://dogs.icanhascheezburger.com/2008/01/'> January 2008 &nbsp;(140)</option>
701
+ <option value='http://dogs.icanhascheezburger.com/2007/12/'> December 2007 &nbsp;(119)</option>
702
+ <option value='http://dogs.icanhascheezburger.com/2007/11/'> November 2007 &nbsp;(17)</option>
703
+ </select>
704
+ </li>
705
+ <li id="rss-2" class="widget widget_rss"><h2 class="widgettitle"><a class='rsswidget' href='http://blog.cheezburger.com/feed/' title='Syndicate this content'><img style='background:orange;color:white;border:none;' width='14' height='14' src='http://s.wordpress.com/wp-includes/images/rss.png' alt='RSS' /></a> <a class='rsswidget' href='http://blog.cheezburger.com' title='Everything You Ever Wanted to Know About the Cheezburger Network'>Cheezburger Company Blog</a></h2>
706
+ <ul><li><a class='rsswidget' href='http://blog.cheezburger.com/press/we-must-defend-our-lolcats/' title='The internets are in an outrage! We&#8217;ve recently come under attack and we must band together to defend our LOLcats. Gene Weingarten of the Washington Post barked up the wrong tree (no pun intended, this is about LOLcats, not dogs) and had some not so kind things to say about us and our glorious founder [...]'>We Must Defend Our LOLcats</a></li></ul></li>
707
+ <li id="text-198" class="widget widget_text"><h2 class="widgettitle">Cheezburger Confidential: Classic Characters</h2>
708
+ <div class="textwidget"><ul>
709
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-happycat/">Happycat</a></li>
710
+ <li><a href="http://icanhascheezburger.com/dr-tinycat/">Dr. Tinycat</a></li>
711
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-ceiling-cat/">Ceiling Cat</a></li>
712
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-basement-cat/">Basement Cat</a></li>
713
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-hipster-kitty/">Hipster Kitty</a></li>
714
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-hovercat/">Hovercat</a></li>
715
+ <li><a href="http://icanhascheezburger.com/story-invisible-bike/">InvisiCo</a></li>
716
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-longcat/">Longcat</a></li>
717
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-moral-gray-area-kitteh/">Moral Gray Area Kitteh</a></li>
718
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-itteh-bitteh-kitteh-committeh/">Itteh Bitteh Kitteh Committeh</a></li>
719
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-serious-cat/">Serious Cat</a></li>
720
+ <li><a href="http://icanhascheezburger.com/cheezburger-confidential-tacgnol/">Tacgnol</a></li>
721
+ <li><a href="http://icanhascheezburger.com/lolrus/">Lolrus</a></li>
722
+
723
+ </ul>
724
+ </div>
725
+ </li>
726
+ <li id="text-199" class="widget widget_text"><h2 class="widgettitle">Print on Demand</h2>
727
+ <div class="textwidget"><a href="http://lolmart.com/product/big-mug-lols-to-go/?utm_source=UT-right-nav&amp;utm_medium=organic&amp;utm_campaign=UT-ICHC-right-nav" title="LOLs to Go!"><img src="http://icanhascheezburger.files.wordpress.com/2011/08/lols2go_small.jpg" style="position:relative;left:-11px;" /></a></div>
728
+ </li>
729
+ </ul></div> </div><!-- pane3 -->
730
+ <div id='skyscraper1'><script type="text/javascript">googletag.cmd.push(function() {googletag.pubads().display('/1025485/ca-pub-0766144451700556/ICHC_300_BTF1_ROS_SNG', [300, 250], 'skyscraper1');})</script></div>
731
+ </div><!-- panemain -->
732
+ <div class="clearboth"></div>
733
+ <!--cached--><div id='likesites_footer' class='likesites'><h2><a href='http://cheezburger.com/sites'>More I CAN HAS CHEEZBURGER?</a></h2><ul class='like-row'><li class='like-item'><a href='http://icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/21/37317062-0ec8-49ba-97e8-d821a765c682.jpg' width='80px' height='80px' /></a><a href='http://icanhascheezburger.com/' class='like-site-link'>I Can Has Cheezburger? Home - Lolcats n Funny Pictures </a><br /><a href='http://icanhascheezburger.com/' class='like-title-link'>an Odie costume would be worse...just saying</a></li><li class='like-item'><a href='http://justcapshunz.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/9/15/3bc14476-f35e-4c93-b409-365dfb04c2b8.jpg' width='80px' height='80px' /></a><a href='http://justcapshunz.icanhascheezburger.com/' class='like-site-link'>Just Capshunz - All of the Internet. Captioned</a><br /><a href='http://justcapshunz.icanhascheezburger.com/' class='like-title-link'>He Must be in Management</a></li><li class='like-item'><a href='http://squee.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/24/6b17a906-1c98-40c2-ae8b-bb435b2595ef.jpg' width='80px' height='80px' /></a><a href='http://squee.icanhascheezburger.com/' class='like-site-link'>Daily Squee - So cute your brain might explode. </a><br /><a href='http://squee.icanhascheezburger.com/' class='like-title-link'>Mr. Knightley</a></li></ul><ul class='like-row'><li class='like-item'><a href='http://history.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/8/21/b9139fbe-1a8d-4436-acc7-2048241f0821.jpg' width='80px' height='80px' /></a><a href='http://history.icanhascheezburger.com/' class='like-site-link'>Historic LOLs - Captioned Portraits of Yore</a><br /><a href='http://history.icanhascheezburger.com/' class='like-title-link'>UP THE CREEK</a></li><li class='like-item'><a href='http://noms.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/24/c3f6b0c4-141e-41a8-bad0-fd2b204f2300.jpg' width='80px' height='80px' /></a><a href='http://noms.icanhascheezburger.com/' class='like-site-link'>My Food Looks Funny - Funny Food Photos</a><br /><a href='http://noms.icanhascheezburger.com/' class='like-title-link'>Necronomicake Has a Cold</a></li><li class='like-item'><a href='http://puns.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/21/82dbf72b-065c-42c6-af6c-63a9e3fd9973.jpg' width='80px' height='80px' /></a><a href='http://puns.icanhascheezburger.com/' class='like-site-link'>So Much Pun - Visual Puns and Jokes</a><br /><a href='http://puns.icanhascheezburger.com/' class='like-title-link'>Monster Truck</a></li></ul><ul class='like-row'><li class='like-item'><a href='http://celebs.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2010/9/9/e23508d6-c82b-4e99-8375-70b7085df123.jpg' width='80px' height='80px' /></a><a href='http://celebs.icanhascheezburger.com/' class='like-site-link'>ROFLrazzi - Lol Celebs and All That&#039;s Fab Funny in Showbiz </a><br /><a href='http://celebs.icanhascheezburger.com/' class='like-title-link'>And They Called It Lady Vader</a></li><li class='like-item'><a href='http://totallylookslike.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/8/24/33602313-0ab9-4cf2-8e6e-12d0f8e57428.jpg' width='80px' height='80px' /></a><a href='http://totallylookslike.icanhascheezburger.com/' class='like-site-link'>Totally Looks Like - Stuff That Looks Like Other Stuff</a><br /><a href='http://totallylookslike.icanhascheezburger.com/' class='like-title-link'>Darktown Strutters Totally Looks Like TNT Jackson</a></li><li class='like-item'><a href='http://stuff.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/18/c34abf51-13b4-41f5-b30f-d3344bc3f9c3.jpg' width='80px' height='80px' /></a><a href='http://stuff.icanhascheezburger.com/' class='like-site-link'>Must Have Cute - See. Want. Must Have!</a><br /><a href='http://stuff.icanhascheezburger.com/' class='like-title-link'>Beer? Wine? Cocktail?</a></li></ul><ul class='like-row'><li class='like-item'><a href='http://news.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/28/b8bf484d-fe28-4c52-9e0d-0b9734d01fe2.jpg' width='80px' height='80px' /></a><a href='http://news.icanhascheezburger.com/' class='like-site-link'>Pundit Kitchen - Lol News and Lol Politics Fun </a><br /><a href='http://news.icanhascheezburger.com/' class='like-title-link'>The Promise of a New Generation</a></li><li class='like-item'><a href='http://lovelylisting.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/27/6c938fdd-1e17-4cfe-86b5-5f9031c17208.jpg' width='80px' height='80px' /></a><a href='http://lovelylisting.icanhascheezburger.com/' class='like-site-link'>Lovely Listing - Strange Findings in Real Estate Listings</a><br /><a href='http://lovelylisting.icanhascheezburger.com/' class='like-title-link'>Nice Costume, Table</a></li><li class='like-item'><a href='http://wedinator.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/27/d63fcbc6-f265-4aa5-a533-e0952191f5c6.jpg' width='80px' height='80px' /></a><a href='http://wedinator.icanhascheezburger.com/' class='like-site-link'>Wedinator - Your special day... is hilarious. </a><br /><a href='http://wedinator.icanhascheezburger.com/' class='like-title-link'>Dunk Tank Wedding</a></li></ul><ul class='like-row'><li class='like-item'><a href='http://fiveminutegetaway.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/9/15/7117684d-e720-4378-825c-5e71eb11df8d.jpg' width='80px' height='80px' /></a><a href='http://fiveminutegetaway.icanhascheezburger.com/' class='like-site-link'>Five Minute Getaway - Beautiful Travel and Vacation Photos</a><br /><a href='http://fiveminutegetaway.icanhascheezburger.com/' class='like-title-link'>Glade Creek Mill, West Virginia</a></li><li class='like-item'><a href='http://sims3pets.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/28/1ee71b3c-61e9-40cf-8698-664244361d97.jpg' width='80px' height='80px' /></a><a href='http://sims3pets.icanhascheezburger.com/' class='like-site-link'>Sponsored: Sims 3 Pets - Have a Pet. Be a Pet.</a><br /><a href='http://sims3pets.icanhascheezburger.com/' class='like-title-link'>What in tarnation! I'd better go get my bifocals.</a></li><li class='like-item'><a href='http://scifi.icanhascheezburger.com/' class='like-image-link'><img src='http://images.cheezburger.com/ThumbnailCache/smallavatar/images.cheezburger.com/completestore/2011/10/26/bece7f3d-65ae-47de-b550-48593ce9f28f.jpg' width='80px' height='80px' /></a><a href='http://scifi.icanhascheezburger.com/' class='like-site-link'>Set Phasers to LOL - Sci Fi and Fantasy LOLs</a><br /><a href='http://scifi.icanhascheezburger.com/' class='like-title-link'>Seatbelts and Airbags</a></li></ul></ul><div id='like-all-sites'><a href='http://cheezburger.com/sites'>See all 57 Cheezburger Network Sites &raquo;</a></div></div><div class="clearboth"></div>
734
+ </div><!-- mainbody (from header.php) -->
735
+ </div><!-- bodywrapper -->
736
+ <div id="footer_wrapper"><div id="footer">
737
+ <!--cached--><div id='cb-network'><img src='http://s0.wp.com/wp-content/themes/vip/cheezcommon2/images/globalnav/MiniDirectoryLogo.png?m=1317676915g' alt='Cheezburger Network' width='271px' height='27px' /><div class='column'><h2>I CAN HAS CHEEZBURGER?</h2><ul><li><a href='http://icanhascheezburger.com/' title='Lolcats n Funny Pictures ' class='link'>I Can Has Cheezburger? Home</a></li> <li><a href='http://dogs.icanhascheezburger.com/' title='Loldogs n Cute Puppies ' class='footer_select'>I Has A Hotdog</a></li> <li><a href='http://justcapshunz.icanhascheezburger.com/' title='All of the Internet. Captioned' class='link'>Just Capshunz</a></li> <li><a href='http://squee.icanhascheezburger.com/' title='So cute your brain might explode. ' class='link'>Daily Squee</a></li> <li><a href='http://history.icanhascheezburger.com/' title='Captioned Portraits of Yore' class='link'>Historic LOLs</a></li> <li><a href='http://noms.icanhascheezburger.com/' title='Funny Food Photos' class='link'>My Food Looks Funny</a></li> <li><a href='http://puns.icanhascheezburger.com/' title='Visual Puns and Jokes' class='link'>So Much Pun</a></li> <li><a href='http://celebs.icanhascheezburger.com/' title='Lol Celebs and All That&#039;s Fab Funny in Showbiz ' class='link'>ROFLrazzi</a></li> <li><a href='http://totallylookslike.icanhascheezburger.com/' title='Stuff That Looks Like Other Stuff' class='link'>Totally Looks Like</a></li> <li><a href='http://stuff.icanhascheezburger.com/' title='See. Want. Must Have!' class='link'>Must Have Cute</a></li> <li><a href='http://style.icanhascheezburger.com/' title='OMG Style!' class='link'>If Style Could Kill</a></li> <li><a href='http://news.icanhascheezburger.com/' title='Lol News and Lol Politics Fun ' class='link'>Pundit Kitchen</a></li> <li><a href='http://lovelylisting.icanhascheezburger.com/' title='Strange Findings in Real Estate Listings' class='link'>Lovely Listing</a></li> <li><a href='http://wedinator.icanhascheezburger.com/' title='Your special day... is hilarious. ' class='link'>Wedinator</a></li> <li><a href='http://fiveminutegetaway.icanhascheezburger.com/' title='Beautiful Travel and Vacation Photos' class='link'>Five Minute Getaway</a></li> <li><a href='http://sims3pets.icanhascheezburger.com/' title='Have a Pet. Be a Pet.' class='link'>Sponsored: Sims 3 Pets</a></li> <li><a href='http://scifi.icanhascheezburger.com/' title='Sci Fi and Fantasy LOLs' class='link'>Set Phasers to LOL</a></li> </ul></div><div class='column'><h2>FAIL BLOG</h2><ul><li><a href='http://failblog.org/' title='Funny FAIL Pictures and Videos ' class='link'>FAIL Blog Home</a></li> <li><a href='http://failbook.failblog.org/' title='Too Funny To Unfriend' class='link'>Failbook</a></li> <li><a href='http://wins.failblog.org/' title='Funny WIN Photos and Videos' class='link'>WIN!</a></li> <li><a href='http://poorlydressed.failblog.org/' title='Seriously Questionable Style Moments ' class='link'>Poorly Dressed</a></li> <li><a href='http://learnfrommyfail.failblog.org/' title='Life&#039;s Little Lessons' class='link'>Learn From My Fail</a></li> <li><a href='http://engrishfunny.failblog.org/' title='Funny Engrish pictures from around the world.' class='link'>Engrish Funny</a></li> <li><a href='http://cars.failblog.org/' title='Cars in Funny Situations' class='link'>That Will Buff Out</a></li> <li><a href='http://work.failblog.org/' title='Failing in the Workplace' class='link'>Monday Through Friday</a></li> <li><a href='http://sports.failblog.org/' title='Sports Commentary in Captions ' class='link'>Up Next In Sports</a></li> <li><a href='http://thereifixedit.failblog.org/' title='Funny Bad Repairs ' class='link'>There I Fixed It</a></li> <li><a href='http://after12.failblog.org/' title='Party Fails' class='link'>After 12</a></li> <li><a href='http://bros.failblog.org/' title='Bros' class='link'>Bros</a></li> <li><a href='http://holidays.failblog.org/' title='Holiday Fails' class='link'>Holidays</a></li> <li><a href='http://datingfails.failblog.org/' title='Dating Fails' class='link'>Dating Fails</a></li> <li><a href='http://parenting.failblog.org/' title='Your parents told you that?' class='link'>Parenting Fails</a></li> <li><a href='http://autocowrecks.failblog.org/' title='Text Wrecks &amp; Instant Lulz' class='link'>Autocowrecks</a></li> </ul></div><div class='column'><h2>MEMEBASE</h2><ul><li><a href='http://memebase.com/' title='All Your Memes Are In Our Base' class='link'>Memebase Home</a></li> <li><a href='http://thisisphotobomb.memebase.com/' title='(sorta Not Safe For Work) Surprise! Ruined Photos ' class='link'>This Is Photobomb</a></li> <li><a href='http://verydemotivational.memebase.com/' title='Work Harder, Not Smarter. ' class='link'>Very Demotivational</a></li> <li><a href='http://graphjam.memebase.com/' title='Music &amp; Culture for People Who Love Charts' class='link'>GraphJam</a></li> <li><a href='http://senorgif.memebase.com/' title='Funny Animated GIFs' class='link'>Señor Gif</a></li> <li><a href='http://pictureisunrelated.memebase.com/' title='(sorta Not Safe For Work) Funny WTF Pictures ' class='link'>Picture Is Unrelated</a></li> <li><a href='http://comixed.memebase.com/' title='(sorta Not Safe For Work) Vertical 4 Pane Comics ' class='link'>Comixed</a></li> <li><a href='http://derp.memebase.com/' title='All the Derp Durr Hurr that&#039;s fit to Derp' class='link'>Derp</a></li> <li><a href='http://artoftrolling.memebase.com/' title='Trolls on Chatroulette and Yahoo! Answers' class='link'>Art of Trolling</a></li> <li><a href='http://gocryemokid.memebase.com/' title='Go Cry Emo Kids' class='link'>Go Cry Emo Kid</a></li> <li><a href='http://superheroes.memebase.com/' title='Superheroes' class='link'>Superheroes</a></li> <li><a href='http://ragecomics.memebase.com/' title='Express Your Rage' class='link'>Rage Comics</a></li> <li><a href='http://pokememes.memebase.com/' title='I choose you!' class='link'>Pokémemes</a></li> <li><a href='http://bronies.memebase.com/' title='Brony Memes and Pony Lols ' class='link'>My Little Brony</a></li> <li><a href='http://yar.is/' title='It&#039;s a Car!' class='link'>Sponsored: Yar.is</a></li> </ul></div><div class='column split'><h2>THE DAILY WHAT</h2><ul><li><a href='http://thedailywh.at/' title='Hot off the Internets' class='link'>The Daily What</a></li> <li><a href='http://geeks.thedailywh.at/' title='Your Daily Dose of Geekery' class='link'>TDW Geek</a></li> <li><a href='http://gossip.thedailywh.at/' title='Your Daily Dose of Gossip' class='link'>TDW Gossip</a></li> </ul></div><div class='column split'> <h2>MORE</h2> <ul><li><a href='http://knowyourmeme.com/?utm_source=network&amp;utm_medium=footer&amp;utm_campaign=footer' title='Know Your Meme'>Know Your Meme</a></li><li><a href='http://lolmart.com/?utm_source=network&amp;utm_medium=footer&amp;utm_campaign=footer' title='LOLmart'>LOLmart</a></li> <li><a href='http://cheezburger.com/trophies' title='Trophies & Collectibles'>Trophies & Collectibles</a></li> <li><a href='http://blog.cheezburger.com' title='Cheezburger Network Blog'>Cheezburger Network Blog</a></li> <li><a href='http://corp.cheezburger.com/faq/' title='FAQ'>FAQ</a></li> <li><a href='http://cheezburger.com/contact' title='Contact Us'>Contact Us</a></li> <li><a href='https://beta.isocket.com/group/cheezburger-network' title='Advertise'>Advertise</a></li> <li><a href='http://jobs.cheezburger.com/' title='Jobs'>Jobs</a></li> <li><a href='http://developer.cheezburger.com/' title='Tools for Developers'>Tools for Developers</a></li></ul></div></div><p class="bigfooterlinks">
738
+ <a href="https://www.isocket.com/group/cheezburger-network" target="_blank">Advertise</a>
739
+ <a href="http://cheezburger.com/contact">Contact Us</a>
740
+ <a href="http://jobs.cheezburger.com"><strong>Job Openings</strong></a>
741
+ <a href="http://developer.cheezburger.com/">Tools for Developers</a>
742
+ <a href="http://blog.cheezburger.com/">Cheezburger Network Blog</a>
743
+ <a href='http://lolmart.com'>Store</a>
744
+ </p>
745
+
746
+ </div></div>
747
+
748
+ <div id="sub_footer_wrapper"><div id="subfooter">
749
+ <p class="footerlinks">
750
+ Powered by the cute and insane <a href="http://vip.wordpress.com/" rel="generator">WordPress.com VIP</a>. <a href="http://feeds.feedburner.com/IHasAHotdog" rel="nofollow" target="_blank">Entries (RSS)</a> and <a href="http://feeds.feedburner.com/IHasAHotDogWhoBeTalkin" rel="nofollow" target="_blank">Comments (RSS)</a>. </p>
751
+
752
+ <p class="footerlinks">
753
+ By using this site, you are agreeing by the site's <a href="http://corp.cheezburger.com/terms-of-service/" rel="nofollow" target="_blank">terms of use</a> and
754
+ <a href="http://corp.cheezburger.com/privacy-policy/" rel="nofollow" target="_blank">privacy policy</a>. I Can Has Cheezburger?, FAIL Blog, Memebase, Cheezburger, The Daily What, Know Your Meme, and Lolmart are trademarks of Cheezburger, Inc. <a href="http://corp.cheezburger.com/legal/" rel="nofollow" target="_blank">Legal Information</a>.
755
+ <br/>&copy; 2007-2011 Cheezburger, Inc.
756
+ </p>
757
+
758
+ <!-- 5 queries. 0.529 seconds. -->
759
+ </div></div>
760
+ <!-- footer -->
761
+ <br />
762
+ <script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
763
+ <div id="fb-root" />
764
+ <script>
765
+ FB.init({
766
+ appId: "257554437603384",
767
+ xfbml: true
768
+ });
769
+ </script>
770
+ </div>
771
+ <script id="chz-require" data-main="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/js-built/main" src="http://s0.wp.com/wp-content/themes/vip/cheezcommon2/js-built/require.js?m=1317676919g"></script>
772
+
773
+ <script id="chz-main" type="text/javascript">
774
+ //main wp js namespace
775
+ var chzWP = {};
776
+
777
+ //user segmentation helpers
778
+ chzWP.userSegmentation = {
779
+ //sends user segment back to cheezburger.com and optionally GA
780
+ setSegment : function( cfg ){
781
+ var baseUrl = "http:__cheezburger.com_UserSegment_setsegment_?redirect=false&segmentname=".replace(/_/g, "/");
782
+
783
+ //set segment
784
+ cfg.segment = cfg.segment || chzWP.utils.getCookie( cfg.name );
785
+
786
+ //update cheezburger
787
+ if ( cfg.segment !== null ) {
788
+ $.getScript( baseUrl + cfg.name + "&segment=" + cfg.segment );
789
+ }
790
+
791
+ //update google analytics
792
+ if ( cfg.customVar && typeof cfg.varSlot === "number" ){
793
+ //make sure _gaq is available
794
+ window._gaq = window._gaq || [];
795
+
796
+ //store slot assignment
797
+ this.setSegment._gaCustVarSlots = this.setSegment._gaCustVarSlots || [];
798
+
799
+ //check if slot is in use. if not, set GA cust var
800
+ if ( !this.setSegment._gaCustVarSlots[ cfg.varSlot - 1 ] ) {
801
+ window._gaq.push( [ "_setCustomVar", cfg.varSlot, cfg.customVar, cfg.segment, 1 ] );
802
+ this.setSegment._gaCustVarSlots[ cfg.varSlot - 1 ] = cfg.customVar;
803
+ } else {
804
+ //todo - log error
805
+ return false;
806
+ }
807
+ }
808
+ }
809
+ };
810
+
811
+ //utils methods
812
+ chzWP.utils = {
813
+ //generic script injection
814
+ addScript : function ( cfg ){
815
+ var doc = window.document,
816
+ isSSL = doc.location.protocol == "https:" ? true : false,
817
+ t = "script",
818
+ el = doc.createElement( t ),
819
+ slot = doc.getElementsByTagName( t )[ 0 ];
820
+
821
+ el.className = "chz-script";
822
+ el.async = cfg.async || 1;
823
+ cfg.https = cfg.https || cfg.http;
824
+ el.src = ( isSSL ? cfg.https : cfg.http ) + cfg.path;
825
+
826
+ slot.parentNode.insertBefore( el, slot );
827
+ },
828
+
829
+ //read cookie
830
+ getCookie : function ( name ) {
831
+ var nameEQ = name + '=',
832
+ ca = document.cookie.split(';'),
833
+ c;
834
+
835
+ for ( var i = 0; i < ca.length; i = i + 1 ) {
836
+ c = ca[ i ];
837
+
838
+ while ( c.charAt( 0 ) == ' ' ) {
839
+ c = c.substring( 1, c.length );
840
+ }
841
+
842
+ if ( c.indexOf( nameEQ ) == 0 ) {
843
+ return c.substring( nameEQ.length, c.length );
844
+ }
845
+ }
846
+ return null;
847
+ },
848
+
849
+ //activity logging event helper
850
+ logEvent : function ( cfg ){
851
+ var cfg = cfg || {},
852
+ baseUrl = cfg.baseUrl || "http://cheezburger.com/",
853
+ siteId = cfg.siteId || "2",
854
+ controller = cfg.controller || "utdefault",
855
+ action = cfg.action || "view",
856
+ param = cfg.param ? "&p=" + cfg.param : "";
857
+
858
+ $.getScript( baseUrl + "Home/Log/?c=" + controller + "&a=" + action + param + "&vsid=" + siteId );
859
+ }
860
+ };
861
+
862
+ //social sharing
863
+ chzWP.soc = {
864
+ //reddit btns
865
+ buildRedditBtn : function( cfg ){
866
+ var iframe;
867
+
868
+ //defaults
869
+ cfg.url = cfg.url || window.location.href;
870
+ cfg.title = cfg.title || "";
871
+ cfg.newWin = cfg.newWin || "";
872
+
873
+ //uri encode
874
+ for( var i in cfg ){
875
+ cfg[ i ] = encodeURIComponent( cfg[ i ] );
876
+ }
877
+
878
+ //build iframe markup
879
+ iframe = '<iframe src="http://www.reddit.com/static/button/button2.html?'
880
+ + "&url=" + cfg.url
881
+ + "&title=" + cfg.title
882
+ + "&newwindow=" + cfg.newWin
883
+ + '" height="69" width="51" scrolling="no" frameborder="0"></iframe>';
884
+
885
+ return iframe;
886
+ }
887
+ };
888
+
889
+ //AB TEST - IHAH Nav
890
+
891
+ //AB TEST - iPhone app ad
892
+
893
+ //AB TEST - AB Test verification
894
+
895
+
896
+ // doc ready
897
+ $( document ).ready(function(){
898
+ $("#password-clear").show();
899
+ $("#chz-password").hide();
900
+ $("#password-clear").focus(function(){
901
+ $("#password-clear").hide();$
902
+ ("#chz-password").show();
903
+ $("#chz-password").focus()
904
+ });
905
+ $("#chz-password").keypress(function(e){
906
+ var code=e.keyCode||e.which;
907
+ if(code==13){
908
+ mineEmbedClient.loginAndDisplayProfileBox();
909
+ return false;
910
+ }
911
+ });
912
+ $("#chz-password").blur(function(){
913
+ if($("#chz-password").val()==""){
914
+ $("#password-clear").show();
915
+ $("#chz-password").hide()
916
+ }
917
+ });
918
+ $(".default-value").each(function(){
919
+ var default_value=this.value;
920
+ $(this).focus(function(){
921
+ if(this.value==default_value){this.value=""}
922
+ });
923
+ $(this).blur(function(){
924
+ if(this.value==""){this.value=default_value}
925
+ });
926
+ });
927
+ jQuery('#footerad').show();
928
+ var sidebar_height = jQuery('#panemain').height();;
929
+ var like_sites = jQuery("#likesites_footer").height();
930
+ // console.log("panemain height: " + sidebar_height + " | like_sites height: " + like_sites);
931
+ jQuery('#sidebar_scraper').css('top', parseInt( sidebar_height ) + 270 + "px" );
932
+ jQuery('#sidebar_scraper').css('bottom', parseInt( like_sites ) + "px" );
933
+
934
+ $.getScript( "http://cheezburger.com/Embed/UserVoiceWidget" );
935
+
936
+
937
+ });
938
+ </script>
939
+ <script id="chz-trkrs" type="text/javascript">var _gaq = _gaq || [];_gaq.push( [ "_setAccount", "UA-2460010-1" ] );_gaq.push( [ "_setDomainName", ".icanhascheezburger.com" ] );_gaq.push( [ "_setAllowHash", false ] );_gaq.push( [ "_trackPageview" ] );_gaq.push( [ "_trackPageLoadTime" ] );chzWP.utils.addScript({http: "//www",https: "//ssl",path: ".google-analytics.com/ga.js"});var _qevents = _qevents || [];_qevents.push( [ { qacct : "p-75z9nhQwNH4Ek" }, { qacct : "p-94wNw88f65Rhk", labels : "VH1 Pop Culture,MTVN Global Digital Network,MTVN Digital Tribes,Thirtysomething Tribe,MTVN Music and Logo Global Network,MTVN Music and Logo Tribes,VH1 plus Thirtysomething" }]);chzWP.utils.addScript({http: "//edge",https: "//secure",path: ".quantserve.com/quant.js"});(function () {var d = new Image(1, 1);d.onerror = d.onload = function () {d.onerror = d.onload = null;};d.src = [ "//secure-us.imrworldwide.com/cgi-bin/m?ci=us-504777h&cg=0&cc=1&si=", escape(window.location.href), "&rp=", escape(document.referrer), "&ts=compact&rnd=", (new Date()).getTime()].join("");})();var _comscore = _comscore || [];_comscore.push({ c1: "2", c2: "9290244" });chzWP.utils.addScript({http: "//b",https: "//sb",path: ".scorecardresearch.com/beacon.js"});</script><noscript><img src="//pixel.quantserve.com/pixel/p-75z9nhQwNH4Ek.gif" height="1" width="1" alt="Quantcast"/><img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-504777h&amp;cg=0&amp;cc=1&amp;ts=noscript" width="1" height="1" alt="Neilsen" /><img src="http://b.scorecardresearch.com/p?c1=2&c2=9290244&cv=2.0&cj=1" width="1" height="1" alt="ComScore" /></noscript><script type="text/javascript">
940
+ // <![CDATA[
941
+ (function() {
942
+ try{
943
+ if ( window.external &&'msIsSiteMode' in window.external) {
944
+ if (window.external.msIsSiteMode()) {
945
+ var jl = document.createElement('script');
946
+ jl.type='text/javascript';
947
+ jl.async=true;
948
+ jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
949
+ var s = document.getElementsByTagName('script')[0];
950
+ s.parentNode.insertBefore(jl, s);
951
+ }
952
+ }
953
+ }catch(e){}
954
+ })();
955
+ // ]]>
956
+ </script><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?z&#038;ver=MU'></script>
957
+ <script type='text/javascript'>
958
+ /* <![CDATA[ */
959
+ var WPGroHo = {"my_hash":""};
960
+
961
+ /* ]]> */
962
+ </script>
963
+ <script type='text/javascript' src='http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1318621574g&amp;ver=MU'></script>
964
+
965
+ <script type="text/javascript">
966
+ var _qevents = _qevents || [];
967
+ (function() {var elem = document.createElement('script');elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";elem.async = true;elem.type = "text/javascript";var scpt = document.getElementsByTagName('script')[0];scpt.parentNode.insertBefore(elem, scpt); })();
968
+ _qevents.push( { qacct:"p-18-mFEk4J448M", labels:",language.en,type.wpcom,posttag.australian-shepherd,posttag.cupcake,posttag.kitchen,vip.ihasahotdog" } );
969
+ </script>
970
+ <noscript><div style="display: none;"><img src="//pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif?labels=%2Clanguage.en%2Ctype.wpcom%2Cposttag.australian-shepherd%2Cposttag.cupcake%2Cposttag.kitchen%2Cvip.ihasahotdog" height="1" width="1" alt="" /></div></noscript>
971
+
972
+ <script type="text/javascript">
973
+ /* <![CDATA[ */
974
+ jQuery(document).ready( function($) {
975
+
976
+ $('#wpl-button > a.like').click( function(e) {
977
+ e.preventDefault();
978
+
979
+ $('#wpl-mustlogin').remove();
980
+
981
+ $.post( 'http://dogs.icanhascheezburger.com/wp-admin/admin-ajax.php', {
982
+ 'action': 'wpl_record_stat',
983
+ 'stat_name': 'loggedout_like_click'
984
+ } );
985
+
986
+ var tenMins = new Date();
987
+ tenMins.setTime( tenMins.getTime() + 600000 );
988
+ document.cookie = 'wpl_rand=dfabb33ca3; expires=' + tenMins.toGMTString() + '; domain=wordpress.com; path=/;';
989
+
990
+ $('#wpl-count').after( '\
991
+ <div id="wpl-mustlogin"> \
992
+ <form action="https://ihasahotdog.wordpress.com/wp-login.php" method="post"> \
993
+ <p>Just one more step to like this post:</p> \
994
+ <label><span>Username</span> <input type="text" name="log" id="user_login" class="input" value="" size="20" tabindex="80" /></label> \
995
+ <label><span>Password</span> <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="81" /></label> \
996
+ <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In" tabindex="82" /> \
997
+ <input type="hidden" name="redirect_to" value="http://dogs.icanhascheezburger.com/2009/02/13/funny-dog-pictures-cupcakes/?like=1" /> \
998
+ <input type="hidden" name="wpl_rand" value="dfabb33ca3" /> \
999
+ <p>Not a member yet? <a href="http://wordpress.com/signup/?ref=likebox" id="wpl-signup-link">Sign up with WordPress.com</a></p> \
1000
+ </form> \
1001
+ </div> \
1002
+ ');
1003
+
1004
+ $('#wpl-mustlogin').hide().slideDown('fast');
1005
+ } );
1006
+
1007
+ $('#wpl-mustlogin input.input').live( 'focus', function() {
1008
+ $(this).prev().hide();
1009
+ }).live( 'blur', function() {
1010
+ if ( $(this).val() == '' )
1011
+ $(this).prev().show();
1012
+ });
1013
+
1014
+ $('#wpl-mustlogin input#wp-submit').live( 'click', function(e) {
1015
+ e.preventDefault();
1016
+
1017
+ $.post( 'http://dogs.icanhascheezburger.com/wp-admin/admin-ajax.php', {
1018
+ 'action': 'wpl_record_stat',
1019
+ 'stat_name': 'loggedout_login_submit'
1020
+ }, function() {
1021
+ $('#wpl-mustlogin form').submit();
1022
+ } );
1023
+ });
1024
+
1025
+ $('#wpl-mustlogin a#wpl-signup-link').live( 'click', function(e) {
1026
+ e.preventDefault();
1027
+
1028
+ var link = $(this).attr('href');
1029
+
1030
+ $.post( 'http://dogs.icanhascheezburger.com/wp-admin/admin-ajax.php', {
1031
+ 'action': 'wpl_record_stat',
1032
+ 'stat_name': 'loggedout_signup_click'
1033
+ }, function() {
1034
+ location.href = link;
1035
+ } );
1036
+ });
1037
+
1038
+ });
1039
+ /* ]]> */
1040
+ </script>
1041
+ <script src="http://s.stats.wordpress.com/w.js?21" type="text/javascript"></script>
1042
+ <script type="text/javascript">
1043
+ st_go({'blog':'2069225','v':'wpcom','user_id':'0','post':'18615','subd':'ihasahotdog'});
1044
+ function st_vt() {var x=document.createElement("img");x.src="http://stats.wordpress.com/g.gif?blog=2069225&v=wpcomvt&user_id=0&post=18615&subd=ihasahotdog&rand="+Math.random();}
1045
+ ex_go({'crypt':'UE40eW5QN0p8M2Y/RE1BNmNJfGhxNCVxUDExYmtXW29aMi1veE5HZGJrRlJaZUtMNThadkJ6c1J3WnpOeEttb0Fzby0/fkNtJmx6LG4veT0wLE4rcTlMWjRDUlI4WDhfOUlMbkdxQ2V2YURpQyw9bG1UW3BdVSZoazBbRXpmLTBRWWxubC1+MEdyS2NuNXl5TTYwR3JnRzBjLWwmVkdKNW5ZOE98dTNVTFFoQVMleTl2MDEuanhyek9SS3pOSlN0aGp5QmEuWXl8RE4lTVlfN1tGVV18Ji05VE5r'});
1046
+ addLoadEvent(function(){linktracker_init('2069225',18615);});
1047
+ </script>
1048
+ <noscript><img src="http://stats.wordpress.com/b.gif?v=noscript" style="height:0px;width:0px;overflow:hidden" alt="" /></noscript>
1049
+ <!-- Start Quantcast tag -->
1050
+ <script type="text/javascript">
1051
+ _qoptions={
1052
+ qacct:"p-94wNw88f65Rhk",
1053
+ labels:"MTVN Digital Tribes"
1054
+ };
1055
+ </script>
1056
+ <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
1057
+ <noscript>
1058
+ <img src="http://pixel.quantserve.com/pixel/p-94wNw88f65Rhk.gif?labels=MTVN%20Digital%20Tribes" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
1059
+ </noscript>
1060
+ <!-- End Quantcast tag -->
1061
+ <!-- Place to attach login/registration & print on demand popups -->
1062
+ <div id="dlglogin" style="overflow:hidden;"><div id="loginplaceholder"></div>
1063
+ </div>
1064
+
1065
+
1066
+ </body>
1067
+ </html>