<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>twodinks.com</title>
	<atom:link href="http://twodinks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://twodinks.com</link>
	<description>random musings from Joe, Dave, and friends</description>
	<lastBuildDate>Thu, 19 Aug 2010 04:27:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Feature Box with single post from designated category</title>
		<link>http://twodinks.com/2010/08/19/feature-box-with-single-post-from-designated-category/</link>
		<comments>http://twodinks.com/2010/08/19/feature-box-with-single-post-from-designated-category/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 04:27:09 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1054</guid>
		<description><![CDATA[Sometimes you need to throw something up front and center for all the world to see. Leave your pants on, Mazz, I&#8217;m talking about blog posts. /* populates feature box with latest post excerpt :: change category name to taste*/ &#8230; <a href="http://twodinks.com/2010/08/19/feature-box-with-single-post-from-designated-category/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to throw something up front and center for all the world to see. Leave your pants on, Mazz, I&#8217;m talking about blog posts.</p>
<p>/* populates feature box with latest post excerpt :: change category name to taste*/</p>
<p>function featurecontent() { ?&gt;</p>
<p>&lt;div id=&#8221;my-feature-box&#8221;&gt;</p>
<p>// start loop with query for specific category of post &amp; desired number to display<br />
&lt;?php $my_query = new WP_Query(&#8216;category_name=video&amp;showposts=1&#8242;); while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); $do_not_duplicate = $post-&gt;ID;?&gt;</p>
<p>// set title of displayed post to display as h2 and supply permalink to full article<br />
&lt;h2&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;&lt;?php the_title(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</p>
<p>// display the content or change to the_excerpt if desired<br />
&lt;?php the_content(); ?&gt;</p>
<p>// offer link to the rest of the article if using an excerpt<br />
&lt;div class=&#8221;featurereadmore&#8221;&gt;<br />
&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Read the full article&#8221;&gt;Read the full article &amp;rarr;&lt;/a&gt;<br />
&lt;/div&gt;</p>
<p>// end the loop<br />
&lt;?php endwhile; ?&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
}</p>
<p>add_action(&#8216;thesis_hook_feature_box&#8217;, &#8216;featurecontent&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/19/feature-box-with-single-post-from-designated-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Footer mania continues</title>
		<link>http://twodinks.com/2010/08/18/footer-mania-continues/</link>
		<comments>http://twodinks.com/2010/08/18/footer-mania-continues/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 03:49:57 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1051</guid>
		<description><![CDATA[Maybe I mentioned this elsewhere, but what the hell, here is is again. To add a clone of the top nav, just do this: /* Remove Thesis attribution, add footer nav */ remove_action(&#8216;thesis_hook_footer&#8217;, &#8216;thesis_attribution&#8217;); add_action(&#8216;thesis_hook_footer&#8217;, &#8216;thesis_nav_menu&#8217;);]]></description>
			<content:encoded><![CDATA[<p>Maybe I mentioned this elsewhere, but what the hell, here is is again. To add a clone of the top nav, just do this:</p>
<p>/* Remove Thesis attribution, add footer nav */<br />
remove_action(&#8216;thesis_hook_footer&#8217;, &#8216;thesis_attribution&#8217;);<br />
add_action(&#8216;thesis_hook_footer&#8217;, &#8216;thesis_nav_menu&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/18/footer-mania-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Look! Another Footer!</title>
		<link>http://twodinks.com/2010/08/04/look-another-footer/</link>
		<comments>http://twodinks.com/2010/08/04/look-another-footer/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 02:50:35 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1044</guid>
		<description><![CDATA[Hot on the heels (heels! footer! haha!) of yesterday&#8217;s footer post, here&#8217;s a better way to code it, using an unordered list so it&#8217;s semantically correct: // Custom footer add_action('thesis_hook_footer', 'custom_footer'); function custom_footer() { ?&#62; &#60;div id="footer_right"&#62;&#38;copy; &#60; ?= date( &#8230; <a href="http://twodinks.com/2010/08/04/look-another-footer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hot on the heels (heels! footer! haha!) of yesterday&#8217;s footer post, here&#8217;s a better way to code it, using an unordered list so it&#8217;s semantically correct:</p>
<p><code>// Custom footer<br />
add_action('thesis_hook_footer', 'custom_footer'); </p>
<p>function custom_footer() {<br />
?&gt;<br />
&lt;div id="footer_right"&gt;&amp;copy; &lt; ?= date( 'Y' ) ?&gt;, Company name &amp;bull; site by <a href="http://hurshmandesign.com">HDG, inc.</a>&lt;/div&gt;<br />
&lt;div id="footer_left"&gt;<br />
&lt;ul class="menu"&gt;<br />
&lt;li&gt;<a href="index.php">HOME</a>&lt;/li&gt;<br />
&lt;li&gt;<a href="about-us">About us</a>&lt;/li&gt;<br />
&lt;li&gt;<a href="services">Services</a>&lt;/li&gt;<br />
&lt;li&gt;<a href="news">News</a>&lt;/li&gt;<br />
&lt;li&gt;<a href="affiliations">Affiliations</a>&lt;/li&gt;<br />
&lt;li&gt;<a href="contact-us">Contact Us</a>&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt; ?php<br />
}</code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/04/look-another-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bite me, &#8220;chiefs&#8221;</title>
		<link>http://twodinks.com/2010/08/04/bite-me-chiefs/</link>
		<comments>http://twodinks.com/2010/08/04/bite-me-chiefs/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 14:43:42 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Kvetching]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1040</guid>
		<description><![CDATA[First, read this: Steffy: BP pays less for CEO failure than U.S. firms By LOREN STEFFY Copyright 2010 Houston Chronicle Aug. 3, 2010, 10:06PM As a British corporation, BP pays less for failure. BP&#8217;s board offered ousted CEO Tony Hayward &#8230; <a href="http://twodinks.com/2010/08/04/bite-me-chiefs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>First, read this:</p>
<blockquote><p>Steffy: BP pays less for CEO failure than U.S. firms</p>
<p>By LOREN STEFFY Copyright 2010 Houston Chronicle</p>
<p>Aug. 3, 2010, 10:06PM</p>
<p>As a British corporation, BP pays less for failure.<br />
BP&#8217;s board offered ousted CEO Tony Hayward a parachute on his way out, but it&#8217;s not all that golden compared with the premium that U.S. companies put on executive failure.</p>
<p>It&#8217;s a safe bet that if BP has been an American company, Hayward&#8217;s wallet would be much fatter as he departs. Great Britain, though, cracked down on golden parachutes in the 1990s.</p>
<p>Hayward&#8217;s severance is basically a year&#8217;s salary, which is $1.6 million, and his pension benefits, which total about $17.5 million.</p>
<p>That, by most measures, is a lot of money. If BP were based in Houston, the combination would put him at No. 6 on the Chronicle&#8217;s list of highest-paid public company executives, published Sunday.</p>
<p>But even counting his pension payments, which are benefits earned over a 28-year career as opposed to a reward for his brief tenure as CEO, Hayward&#8217;s severance is modest among other failed executives.</p>
<p>It&#8217;s less than a tenth of what Robert Nardelli got for leaving Home Depot, a company that is far smaller, easier to manage and less prone to catastrophic disaster. If a guy runs a chain of hardware stores into the ground and gets $210 million, then under the Nardelli Principle what should be the reward for an executive who spills oil all over the Gulf of Mexico?</p>
<p>Then there&#8217;s the Wall Street crowd, led by Merrill Lynch&#8217;s Stan O&#8217;Neal, who laid waste to the firm and walked away with $161.5 million, and Ken Lewis, who bought Merrill after O&#8217;Neal was done with it, misled shareholders about its losses, and still got $125 million for leaving. Charles Prince oversaw huge write-downs at Citigroup related to subprime mortgages and was given $42 million in defeat.</p>
<p>&#8216;The right gesture&#8217;?</p>
<p>We&#8217;ve seen this pattern so many times, we&#8217;ve come to expect it. Indeed, some lawmakers have called for Hayward to forfeit his severance because of the magnitude of the disaster that occurred on his watch.</p>
<p>Les Csorba, who runs the Houston office of Heidrick &amp; Struggles, an executive search firm, said Hayward should consider that on his own.</p>
<p>&#8220;If I were him, I might set up a foundation in my retirement in which those proceeds would support organizations that are involved in cleaning up the Gulf,&#8221; he said. &#8220;That might be the right gesture.&#8221;</p>
<p>Looking at the lives that have been upended on the Gulf Coast and in the oil industry as a result of the latest BP disaster, it&#8217;s natural to question why Hayward deserves anything.</p>
<p>Corporate boards, though, also have to think about hiring the next CEO.</p>
<p>&#8220;You have to send the right signal to the market that you&#8217;re still willing to be competitive,&#8221; Csorba said.</p>
<p>If Hayward, who largely inherited BP&#8217;s broken culture, leaves with nothing, who would be willing to step into the job? If leading a giant corporation becomes a zero-sum game — succeed and you bask in riches, fail and you get nothing, who would want the job?</p>
<p>The trick for corporate boards is striking a balance, creating proper incentives for success and not making the punishment for failure so stifling CEOs are afraid to take risks.</p>
<p>In addition to the salary and pension, Hayward has BP stock options, but they&#8217;re virtually worthless and probably will remain so. BP&#8217;s shares have recovered since Hayward&#8217;s departure, but they&#8217;re still 34 percent below where they traded in April.</p>
<p>Unlike so many U.S. boards, BP directors haven&#8217;t attempted to issue additional shares or reprice options to make Hayward whole.</p>
<p>Hayward was on track to receive millions more in bonus shares under a plan adopted before the Gulf disaster, but aren&#8217;t likely to be granted now.</p>
<p>BP has done so much wrong in handling its latest crisis, but its handling of Hayward&#8217;s departure should serve as an example for U.S. companies that still pay way too much for failure.</p>
<p>Loren Steffy is the Chronicle&#8217;s business columnist. His commentary appears Sundays, Wednesdays and Fridays. Contact him at loren.steffy@chron.com. His blog is at http://blogs.chron.com/lorensteffy/.</p></blockquote>
<p>Cry me a freaking river. Anyone else who screws up in their job gets fired, no severance, no pension, and quite often they&#8217;re frog-marched to the door with their personal shit in a box. You may even be blackballed in your own profession.</p>
<p>But if you&#8217;re a CEO who&#8217;s screwed up massively – disrupting the lives of thousands of employees – they kiss your ass, hand you ten of millions of dollars on your way out the door, and meet you next weekend for another sailboat race?</p>
<p>You&#8217;re kidding, right?. Suck it up, rich boys, and take responsibility for the problems your massive egos have caused.</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/04/bite-me-chiefs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick one</title>
		<link>http://twodinks.com/2010/08/04/a-quick-one/</link>
		<comments>http://twodinks.com/2010/08/04/a-quick-one/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 13:57:35 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://twodinks.com/2010/08/04/a-quick-one/</guid>
		<description><![CDATA[Caps-lock Warnings on password fields.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sitepoint.com/newsletter/viewissue.php?id=3&#038;issue=302#7">Caps-lock Warnings on password fields</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/04/a-quick-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A different use for this blog</title>
		<link>http://twodinks.com/2010/08/03/a-different-use-for-this-blog/</link>
		<comments>http://twodinks.com/2010/08/03/a-different-use-for-this-blog/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 16:21:29 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1020</guid>
		<description><![CDATA[Sure, once in awhile one of us will find time to post our usual silliness. I&#8217;m also going to start using this as a place to store code snippets I don&#8217;t want to lose. I&#8217;m sure you&#8217;ll all be very &#8230; <a href="http://twodinks.com/2010/08/03/a-different-use-for-this-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sure, once in awhile one of us will find time to post our usual silliness. I&#8217;m also going to start using this as a place to store code snippets I don&#8217;t want to lose. I&#8217;m sure you&#8217;ll all be very excited to read them.</p>
<h3>Switch Nav position in Thesis</h3>
<p><code>/* Switch Nav Position PHP */<br />
remove_action('thesis_hook_before_header', 'thesis_nav_menu');<br />
add_action('thesis_hook_after_header', 'thesis_nav_menu');</code></p>
<h3>Complex Custom Footer in Thesis</h3>
<p>An easier way would be to put this in custom_functions.php:<br />
<code>add_action('thesis_hook_footer', 'thesis_nav_menu');</code><br />
but that only works if you want the header and footer nav content to match.</p>
<p><code >/* Custom footer */<br />
add_action('thesis_hook_footer', 'custom_footer');<br />
function custom_footer() {</code><br />
<code >?&gt;<br />
&lt;div id="footer_right"&gt;&amp;copy; &lt; ?= date( 'Y' ) ?&gt;, Company Name &amp;bull; Site by the &lt;a href="http://www.mediacellar.com"&gt;media cellar, inc.&lt;/a&gt;&lt;/div&gt;<br />
&lt;div id="footer_left"&gt;<br />
&lt;a href="index.php"&gt;HOME&lt;/a&gt; &amp;bull;<br />
&lt;a href="/page1"&gt;PAGE1&lt;/a&gt; &amp;bull;<br />
&lt;a href="/page2"&gt;PAGE2&lt;/a&gt; &amp;bull;<br />
&lt;a href="/building-blocks"&gt;EXTERNAL LINK&lt;/a&gt; &amp;bull;<br />
&lt;a href="/contact-us"&gt;CONTACT&lt;/a&gt; &amp;bull;<br />
&lt;a href="/privacy-policy"&gt;PRIVACY POLICY&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;div id="footer_note"&gt;footernote&lt;/div&gt;<br />
&lt; ?php<br />
}</code></code></p>
<p>Plenty more to come. Be excited, you know you love this stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/08/03/a-different-use-for-this-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>So Long, Big Butter&#8230;</title>
		<link>http://twodinks.com/2010/06/15/so-long-big-butter/</link>
		<comments>http://twodinks.com/2010/06/15/so-long-big-butter/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 00:32:04 +0000</pubDate>
		<dc:creator>Other Jim</dc:creator>
				<category><![CDATA[Minutiae]]></category>

		<guid isPermaLink="false">http://twodinks.com/2010/06/15/so-long-big-butter/</guid>
		<description><![CDATA[Big Butter Jesus went down in a creamy conflagration last night. All that&#8217;s left is the metal skeleton, prompting the new name of Terminator Jesus, used all over town today. His raised right hand was struck by lightning, and lo &#8230; <a href="http://twodinks.com/2010/06/15/so-long-big-butter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://twodinks.com/wp-content/uploads/2010/06/butter-jesus-statue-lightning-584.jpg"><img src="http://twodinks.com/wp-content/uploads/2010/06/butter-jesus-statue-lightning-584.jpg" alt="" width="584" height="415" class="aligncenter size-full wp-image-1017" /></a></p>
<p>Big Butter Jesus went down in a creamy conflagration last night.  All that&#8217;s left is the metal skeleton, prompting the new name of Terminator Jesus, used all over town today.  His raised right hand was struck by lightning, and lo and behold, styrofoam covered in fiberglass burns real good.  The statue and adjoining building both had lightning rods, but, well, it&#8217;s lightning.  The church plans to rebuild Touchdown Jesus, and I say rebuild it 10 feet higher&#8230;.otherwise, God wins.  From the &#8220;Ironic, don&#8217;t cha think&#8221; department, the giant Hustler Hollywood sign across the highway was untouched.<br />
<a href="http://twodinks.com/wp-content/uploads/2010/06/statuedestroyed10_709984g.jpg"><img src="http://twodinks.com/wp-content/uploads/2010/06/statuedestroyed10_709984g.jpg" alt="" width="412" height="232" class="aligncenter size-full wp-image-1018" /></a></p>
<p>Apparently they call this a &#8220;hot fire&#8221;. Good to know.</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/06/15/so-long-big-butter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Help Design BP&#8217;s new logo!</title>
		<link>http://twodinks.com/2010/06/11/help-design-bps-new-logo/</link>
		<comments>http://twodinks.com/2010/06/11/help-design-bps-new-logo/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 20:46:06 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Graphics/Photos/Web]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1013</guid>
		<description><![CDATA[Yep, right here. Plenty of creativity already there, but go on and share your ideas!]]></description>
			<content:encoded><![CDATA[<p><a href="http://twodinks.com/wp-content/uploads/2010/06/bplogos.jpg"><img class="alignright size-medium wp-image-1014" title="bplogos" src="http://twodinks.com/wp-content/uploads/2010/06/bplogos-300x204.jpg" alt="" width="300" height="204" /></a>Yep, right <a href="http://www.logomyway.com/contestView.php?contestId=1746">here</a>. Plenty of creativity already there, but go on and share your ideas!</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/06/11/help-design-bps-new-logo/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>LOST in 3 Minutes</title>
		<link>http://twodinks.com/2010/05/28/lost-in-3-minutes/</link>
		<comments>http://twodinks.com/2010/05/28/lost-in-3-minutes/#comments</comments>
		<pubDate>Sat, 29 May 2010 01:14:03 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Movies & Music]]></category>
		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1010</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/-HWECQa23Cs&#038;hl=en_US&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-HWECQa23Cs&#038;hl=en_US&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/05/28/lost-in-3-minutes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classy &#8220;Family Values&#8221; types</title>
		<link>http://twodinks.com/2010/05/28/classy-family-values-types/</link>
		<comments>http://twodinks.com/2010/05/28/classy-family-values-types/#comments</comments>
		<pubDate>Fri, 28 May 2010 19:59:37 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Kvetching]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://twodinks.com/?p=1008</guid>
		<description><![CDATA[If Rush Limbaugh and John McCain slagging on 13-year old (in the case of McCain, 18-year old) Chelsea Clinton isn&#8217;t bad enough, we now have Glenn Beck smearing 11-year old Malia Obama: There&#8217;s no shame in these people at all, &#8230; <a href="http://twodinks.com/2010/05/28/classy-family-values-types/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If <a href="http://answers.yahoo.com/question/index?qid=20090613090202AAEk7K1">Rush Limbaugh and John McCain slagging on 13-year old (in the case of McCain, 18-year old) Chelsea Clinton</a> isn&#8217;t bad enough, we now have Glenn Beck smearing 11-year old Malia Obama:</p>
<p><object width='320' height='260'><param name='movie' value='http://cloudfront.mediamatters.org/static/flash/player.swf'></param><param name='flashvars' value='config=http://mediamatters.org/embed/cfg2?f=/static/clips/2010/05/28/5958/premiereradionetworks-20100528-beck-daughters-aiff.flv'></param><param name='allowscriptaccess' value='always'></param><param name='allownetworking' value='all'></param><embed src='http://cloudfront.mediamatters.org/static/flash/player.swf' type='application/x-shockwave-flash' flashvars='config=http://mediamatters.org/embed/cfg2?f=/static/clips/2010/05/28/5958/premiereradionetworks-20100528-beck-daughters-aiff.flv' allowscriptaccess='always' allowfullscreen='true' width='320' height='260'></embed></object></p>
<p>There&#8217;s no shame in these people at all, is there?</p>
]]></content:encoded>
			<wfw:commentRss>http://twodinks.com/2010/05/28/classy-family-values-types/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
