<?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>Thinkubator - A Thoughtprocess Interactive Blog &#187; What Were They Thinkubating?!</title>
	<atom:link href="http://www.thoughtprocessinteractive.com/blog/category/what-were-they-thinkubating/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thoughtprocessinteractive.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 22:33:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Combining navigation on the easySlider jQuery plugin</title>
		<link>http://www.thoughtprocessinteractive.com/blog/combining-navigation-on-the-easyslider-jquery-plugin</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/combining-navigation-on-the-easyslider-jquery-plugin#comments</comments>
		<pubDate>Wed, 23 Dec 2009 23:34:01 +0000</pubDate>
		<dc:creator>Stephanie</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Stephanie Raumschuh]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[easyslider]]></category>
		<category><![CDATA[jquery slider]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=508</guid>
		<description><![CDATA[Today, I was putting together a proof-of-concept for a new website design that included a media &#8216;slider&#8217; on the home page. I did a bit of searching and came across the Easy Slider 1.7 plugin which uses jQuery to simplify this task. Score! We love jQuery here at TPI because it takes heavy-coding Javascript tasks [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/combining-navigation-on-the-easyslider-jquery-plugin' addthis:title='Combining navigation on the easySlider jQuery plugin ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Today, I was putting together a proof-of-concept for a new website design that included a media &#8216;slider&#8217; on the home page. I did a bit of searching and came across the <a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank">Easy Slider 1.7</a> plugin which uses <a href="http://jquery.com/" target="_blank">jQuery</a> to simplify this task. Score! We love jQuery here at TPI because it takes heavy-coding Javascript tasks and makes them really simple to accomplish and usually more interactive and fun.</p>
<p>This plugin seemed to have all we needed except one thing. There was a choice in navigation between arrows left and right (previous and next) OR numeric/individual item navigation below. (For this case, we&#8217;ll use actual &#8216;Sliders&#8217; as our representation of the easySlider. Hungry yet?)</p>
<p><img class=" alignnone" title="Sliders" src="http://www.tpidev.com/tpi/sliders/images/blogslider.jpg" alt="Navigation illustration" width="500" height="328" /></p>
<p>For the design we&#8217;re envisioning, both systems needed to be utilized. It seemed like a simple fix and I set about combining both  navigation types to show up at the same time. Problem. For some reason, the next/previous buttons weren&#8217;t behaving properly when you used the numeric navigation below to choose an item! If you clicked on an item in the numeric nav, the next button would inexplicably send the gallery zooming off into space and then slowly return to the first item in the list.</p>
<p>How do we fix this!? Good ol&#8217; scheming and know-how to the rescue! I&#8217;ll give you the quick-and-dirty since I&#8217;m pretty sure that&#8217;s what you&#8217;re interested in, anyway.</p>
<p>First, to show both navigations, go into easySlider1.7.js and find this part:</p>
<pre style="overflow:scroll">if(options.controlsShow){
var html = options.controlsBefore;
if(options.numeric){
html += '&lt;ol id="'+ options.numericId +'"&gt;&lt;/ol&gt;';
} else {
if(options.firstShow) html += '&lt;span id="'+ options.firstId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.firstText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;span id="'+ options.prevId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.prevText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;span id="'+ options.nextId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.nextText +'&lt;/a&gt;&lt;/span&gt;';
if(options.lastShow) html += ' &lt;span id="'+ options.lastId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.lastText +'&lt;/a&gt;&lt;/span&gt;';
};

html += options.controlsAfter;
$(obj).after(html);
};</pre>
<p>And change it to this:</p>
<pre style="overflow:scroll">if(options.controlsShow){
var html = options.controlsBefore;
if(options.numeric){
html += '&lt;ol id="'+ options.numericId +'"&gt;&lt;/ol&gt;';
if(options.firstShow) html += '&lt;span id="'+ options.firstId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.firstText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;div id="arrows"&gt;&lt;span id="'+ options.prevId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.prevText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;span id="'+ options.nextId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.nextText +'&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;';
if(options.lastShow) html += ' &lt;span id="'+ options.lastId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.lastText +'&lt;/a&gt;&lt;/span&gt;';
} else {
if(options.firstShow) html += '&lt;span id="'+ options.firstId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.firstText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;span id="'+ options.prevId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.prevText +'&lt;/a&gt;&lt;/span&gt;';
html += ' &lt;span id="'+ options.nextId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.nextText +'&lt;/a&gt;&lt;/span&gt;';
if(options.lastShow) html += ' &lt;span id="'+ options.lastId +'"&gt;&lt;a href=\"javascript:void(0);\"&gt;'+ options.lastText +'&lt;/a&gt;&lt;/span&gt;';
};

html += options.controlsAfter;
$(obj).after(html);
};</pre>
<p>Then find this part:</p>
<pre>if(options.numeric){
for(var i=0;i&lt;s;i++){
$(document.createElement("li"))
.attr('id',options.numericId + (i+1))
.html('&lt;a rel='+ i +' href=\"javascript:void(0);\"&gt;'+ (i+1) +'&lt;/a&gt;')
.appendTo($("#"+ options.numericId))
.click(function(){
animate($("a",$(this)).attr('rel'),true);
});
};
} else {
$("a","#"+options.nextId).click(function(){
animate("next",true);
});
$("a","#"+options.prevId).click(function(){
animate("prev",true);
});
$("a","#"+options.firstId).click(function(){
animate("first",true);
});
$("a","#"+options.lastId).click(function(){
animate("last",true);
});
};</pre>
<p>And change it to this:</p>
<pre style="overflow:scroll">if(options.numeric){
for(var i=0;i&lt;s;i++){
$(document.createElement("li"))
.attr('id',options.numericId + (i+1))
.html('&lt;a rel='+ i +' href=\"javascript:void(0);\"&gt;'+ (i+1) +'&lt;/a&gt;')
.appendTo($("#"+ options.numericId))
.click(function(){
animate($("a",$(this)).attr('rel'),true);
});
};
$("a","#"+options.nextId).click(function(){
animate("next",true);
});
$("a","#"+options.prevId).click(function(){
animate("prev",true);
});
$("a","#"+options.firstId).click(function(){
animate("first",true);
});
$("a","#"+options.lastId).click(function(){
animate("last",true);
});
} else {
$("a","#"+options.nextId).click(function(){
animate("next",true);
});
$("a","#"+options.prevId).click(function(){
animate("prev",true);
});
$("a","#"+options.firstId).click(function(){
animate("first",true);
});
$("a","#"+options.lastId).click(function(){
animate("last",true);
});
};</pre>
<p>NOW, to make it work properly (and here&#8217;s the kicker), parseInt!!!!!</p>
<p>Find the &#8216;animate&#8217; function (~line 140):</p>
<pre style="overflow:scroll">function animate(dir,clicked){
if (clickable){
clickable = false;
var ot = t;
switch(dir){
case "next":
t = (ot&gt;=ts) ? (options.continuous ? t+1 : ts) : t+1;
break;
case "prev":
t = (t&lt;=0) ? (options.continuous ? t-1 : 0) : t-1;
break;
case "first":
t = 0;
break;
case "last":
t = ts;
break;
default:
t = dir;
break;
};</pre>
<p>And insert this itttty bitty little parseInt:</p>
<pre style="overflow:scroll">function animate(dir,clicked){
if (clickable){
clickable = false;
var ot = t;
t = parseInt(t);
switch(dir){
case "next":
t = (ot&gt;=ts) ? (options.continuous ? t+1 : ts) : t+1;
break;
case "prev":
t = (t&lt;=0) ? (options.continuous ? t-1 : 0) : t-1;
break;
case "first":
t = 0;
break;
case "last":
t = ts;
break;
default:
t = dir;
break;
};</pre>
<p>Thats it! Wow, that seemed a lot harder than it was. We figured out that the two navigations were treating the current item differently (one as an integer, one as a string &#8211; who knew!) so basically we&#8217;re just telling them all to be integers so both methods will work the same.</p>
<p>For reference, here&#8217;s another little proof of concept we drew up. Sliders. Get it? We&#8217;re hilarious, i know.  (click the pickles OR the ketchup. CRAZY!) <a href="http://tpidev.com/tpi/sliders/index.html" target="_blank">easySlider plugin &#8216;Sliders&#8217; demo</a></p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/combining-navigation-on-the-easyslider-jquery-plugin' addthis:title='Combining navigation on the easySlider jQuery plugin ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/combining-navigation-on-the-easyslider-jquery-plugin/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Spoiler Alert: Super Bowl XLIII Commercials</title>
		<link>http://www.thoughtprocessinteractive.com/blog/spoiler-alert-super-bowl-xliii-commercials</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/spoiler-alert-super-bowl-xliii-commercials#comments</comments>
		<pubDate>Fri, 30 Jan 2009 20:42:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Multimedia News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[superbowl]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=332</guid>
		<description><![CDATA[Adweek released some previews of the upcoming Super Bowl Sunday commercials. With ads going for upwards of 3 million dollars for a 30 second clip, you be the judge if it was worth it for the big hitters of business. The ads can be viewed on their website at http://www.adweek.com/aw/custom-reports/superbowl/video.html Also, check out the classics [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/spoiler-alert-super-bowl-xliii-commercials' addthis:title='Spoiler Alert: Super Bowl XLIII Commercials ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Adweek released some previews of the upcoming Super Bowl Sunday commercials. With ads going for upwards of 3 million dollars for a 30 second clip, you be the judge if it was worth it for the big hitters of business.</p>
<p>The ads can be viewed on their website at</p>
<p><a href="http://www.adweek.com/aw/custom-reports/superbowl/video.html" target="_blank">http://www.adweek.com/aw/custom-reports/superbowl/video.html </a></p>
<p>Also, check out the classics tabs for some oldies but goodies. After all aren&#8217;t the commercials the best part most of the time?</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/spoiler-alert-super-bowl-xliii-commercials' addthis:title='Spoiler Alert: Super Bowl XLIII Commercials ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/spoiler-alert-super-bowl-xliii-commercials/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flame-broiled cologne by Burger King</title>
		<link>http://www.thoughtprocessinteractive.com/blog/flame-broiled-cologne-by-burger-king</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/flame-broiled-cologne-by-burger-king#comments</comments>
		<pubDate>Fri, 19 Dec 2008 22:48:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[Online Marketing News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[buger king cologne]]></category>
		<category><![CDATA[viral marketing]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=273</guid>
		<description><![CDATA[Burger King has captured the flame broiled essence of a Whopper and put it into a cologne for men. And of course they have a hilarious website to go with it. Genius. I can&#8217;t wait to see how Hardee&#8217;s answers. And PETA for that matter.  More at their &#8220;Fire Meets Desire&#8221; website and a Yahoo [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/flame-broiled-cologne-by-burger-king' addthis:title='Flame-broiled cologne by Burger King ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><span style="text-decoration: underline;"><a href="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/12/flame.jpg"></a><a href="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/12/flame1.jpg"><img class="size-medium wp-image-278  aligncenter" title="flame1" src="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/12/flame1.jpg" alt="" width="176" height="167" /></a><br />
</span></p>
<p>Burger King has captured the flame broiled essence of a Whopper and put it into a cologne for men. And of course they have a hilarious website to go with it. Genius. I can&#8217;t wait to see how Hardee&#8217;s answers. And PETA for that matter.</p>
<p> More at their &#8220;<a title="Burger King Cologne" href="http://www.firemeetsdesire.com/">Fire Meets Desire</a>&#8221; website and a Yahoo Shopping article <a title="Burger King Cologne" href="http://shopping.yahoo.com/articles/yshoppingarticles/187/a-whopper-of-a-perfume/">here</a>. Too bad they are already sold out for the holidays, that would have been a great &#8220;white elephant&#8221; gift.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/flame-broiled-cologne-by-burger-king' addthis:title='Flame-broiled cologne by Burger King ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/flame-broiled-cologne-by-burger-king/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blackbird &#8211; A browser for the African American community</title>
		<link>http://www.thoughtprocessinteractive.com/blog/blackbird-a-browser-for-the-african-american-community</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/blackbird-a-browser-for-the-african-american-community#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:01:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=246</guid>
		<description><![CDATA[The browser wars have reached a new level&#8230; &#8220;Blackbird is a web browser for the African American community. Blackbird was developed by a team of African Americans to allow you to connect to what&#8217;s going on in the African American community&#8230;.Because we know that 85% of African Americans prefer online news information from the Black [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/blackbird-a-browser-for-the-african-american-community' addthis:title='Blackbird &#8211; A browser for the African American community ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>The browser wars have reached a new level&#8230;</p>
<p>&#8220;Blackbird is a web browser for the African American community. Blackbird was developed by a team of African Americans to allow you to connect to what&#8217;s going on in the African American community&#8230;.Because we know that 85% of African Americans prefer online news information from the Black perspective.&#8221;</p>
<p>Um&#8230;.Nevermind, I&#8217;ll keep my thoughts to myself on this one.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/blackbird-a-browser-for-the-african-american-community' addthis:title='Blackbird &#8211; A browser for the African American community ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/blackbird-a-browser-for-the-african-american-community/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>iPhone summer love, winter blues&#8230;</title>
		<link>http://www.thoughtprocessinteractive.com/blog/iphone-summer-love-winter-blues</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/iphone-summer-love-winter-blues#comments</comments>
		<pubDate>Mon, 08 Dec 2008 16:26:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=242</guid>
		<description><![CDATA[So in the past six months I&#8217;ve openly and freely loved my iphone. I really can&#8217;t say I had any complaints. Very few dropped calls. Loads of fun with apps. Reasonably fast internet connection. My usb charger never went up in flames, despite the warnings. I got plenty of time with each battery charge. I [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/iphone-summer-love-winter-blues' addthis:title='iPhone summer love, winter blues&#8230; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>So in the past six months I&#8217;ve openly and freely loved my iphone. I really can&#8217;t say I had any complaints. Very few dropped calls. Loads of fun with apps. Reasonably fast internet connection. My usb charger never went up in flames, despite the warnings. I got plenty of time with each battery charge. I thought my phone was perfect, until it got cold here in St. Louis.</p>
<p>Something that never occurred to me when I purchased the iPhone in the summer (clever release date)&#8230;You can&#8217;t use it with gloves on. It only responds to your bare skin. This poses a major problem and serious annoyance, especially when you&#8217;re driving or walking around outside in the cold. It&#8217;s really not cool to have to either:</p>
<p>1) Scramble to take my gloves off and get to the phone in time to answer while simultaneously operating a vehicle or walking two large dogs, or&#8230;<br />
2) Use my nose to unlock the screen and type in my password.</p>
<p>That little oversight has become a real annoyance. </p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/iphone-summer-love-winter-blues' addthis:title='iPhone summer love, winter blues&#8230; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/iphone-summer-love-winter-blues/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Who Said Calc Teachers Were Not Creative?</title>
		<link>http://www.thoughtprocessinteractive.com/blog/who-said-calc-teachers-were-not-creative</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/who-said-calc-teachers-were-not-creative#comments</comments>
		<pubDate>Tue, 02 Dec 2008 18:53:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[Online Marketing News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Online Marketing]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=234</guid>
		<description><![CDATA[San Diego Calc teacher sells ads on his tests to recoup money lost in budget cuts. Brilliant. I&#8217;m just glad I&#8217;m finished with school because my mother would have bought a large banner at the top of the test threatening me to fail another Calc test&#8230;<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/who-said-calc-teachers-were-not-creative' addthis:title='Who Said Calc Teachers Were Not Creative? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/12/test.jpg"><img class="aligncenter size-medium wp-image-235" title="test" src="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/12/test.jpg" alt="" width="300" height="214" /></a></p>
<p>San Diego Calc teacher sells ads on his tests to recoup money lost in budget cuts. <a title="USA Today - Calc Teacher Sells Ads on Tests" href="http://cli.gs/uaU2Me">Brilliant</a>. I&#8217;m just glad I&#8217;m finished with school because my mother would have bought a large banner at the top of the test threatening me to fail another Calc test&#8230;</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/who-said-calc-teachers-were-not-creative' addthis:title='Who Said Calc Teachers Were Not Creative? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/who-said-calc-teachers-were-not-creative/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Many Uses for Bacon</title>
		<link>http://www.thoughtprocessinteractive.com/blog/the-many-uses-for-bacon</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/the-many-uses-for-bacon#comments</comments>
		<pubDate>Wed, 26 Nov 2008 22:40:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[funny gifts]]></category>
		<category><![CDATA[unusual gifts]]></category>

		<guid isPermaLink="false">http://www.thoughtprocessinteractive.com/blog/?p=230</guid>
		<description><![CDATA[As we learned from Pulp Fiction, bacon is good. And apparently it&#8217;s good for more than eating. Just thought I&#8217;d notify you Cyber Monday shoppers of some interesting bacon gifts I discovered thanks to a friend who identifies himself as a bacon (um, we&#8217;ll just use the world &#8220;fan&#8221; instead of what he actually said). [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/the-many-uses-for-bacon' addthis:title='The Many Uses for Bacon ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/11/bacon-wallet.jpg"><img class="aligncenter size-medium wp-image-231" title="Bacon Wallet" src="http://www.thoughtprocessinteractive.com/blog/wp-content/uploads/2008/11/bacon-wallet.jpg" alt="" width="300" height="225" /></a></p>
<p>As we learned from Pulp Fiction, bacon is good. And apparently it&#8217;s good for more than eating. Just thought I&#8217;d notify you Cyber Monday shoppers of some interesting bacon gifts I discovered thanks to a friend who identifies himself as a bacon (um, we&#8217;ll just use the world &#8220;fan&#8221; instead of what he actually said).  <a title="Bacon Gifts" href="http://www.perpetualkid.com/index.asp?PageAction=VIEWPROD&amp;ProdID=1733" target="_blank">Perpetual Kid</a> has bacon wallets, bacon floss, and my favorite: bacon and egg breakfast bandages.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/the-many-uses-for-bacon' addthis:title='The Many Uses for Bacon ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/the-many-uses-for-bacon/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Motrin&#8217;s Mom Problem</title>
		<link>http://www.thoughtprocessinteractive.com/blog/motrins-mom-problem</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/motrins-mom-problem#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:56:01 +0000</pubDate>
		<dc:creator>Kelsey</dc:creator>
				<category><![CDATA[Kelsey Burkemper]]></category>
		<category><![CDATA[Online Marketing News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev3.com/www/blog/?p=196</guid>
		<description><![CDATA[Motrin&#8217;s got a mom problem. Why? This: This is a web ad that was launched as part of a print and online advertising campaign for Motrin on Sept. 30th, and it&#8217;s a great example of two things: 1) Copywriting matters. 2) Word of mouth combined with web 2.0 is powerful thing. So, what happened here [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/motrins-mom-problem' addthis:title='Motrin&#8217;s Mom Problem ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Motrin&#8217;s got a mom problem. Why? This:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Mztymu72l7c&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Mztymu72l7c&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>This is a web ad that was launched as part of a print and online advertising campaign for Motrin on Sept. 30th, and it&#8217;s a great example of two things:</p>
<p>1) Copywriting matters.</p>
<p>2) Word of mouth combined with web 2.0 is powerful thing.</p>
<p>So, what happened here is Motrin designed a campaign that is obviously targeted to a very valuable demographic: women with children. Their primary message can be found in the Clintonesque tagline they&#8217;ve used at the end of this ad: &#8220;Motrin. We feel your pain.&#8221; Nice, right? Simple enough. Makes sense. And then it all goes downhill.</p>
<p>Someone at Motrin decided that the best way to make this connection would be to focus on the aches and pains associated with wearable baby carriers &#8211; which have become popular with parents over the past several years because of the unique bonding experience they provide. This too, is all well and good, until you read/hear the first line of the ad:</p>
<p>&#8220;Wearing your baby seems to be in fashion.&#8221;</p>
<p>Hmmm. Right off the bat, you&#8217;ve got problems. First, this statement could (and coincidentally, did) imply that wearing your baby in a carrier has more to do with appearing fashionable or hip than bonding with your child (think Paris Hilton clutching a miniature dog on a red carpet). Generally, anything that may compare someone&#8217;s child to a celebutant&#8217;s chihuahua is unwise. But, there&#8217;s still an opportunity to clarify with the follow-up statement, which includes the phrase:</p>
<p>&#8220;Supposedly it&#8217;s a real bonding experience.&#8221;</p>
<p>So close! Replace &#8220;Supposedly&#8221; with &#8220;There&#8217;s no denying that&#8221; and you&#8217;re home free! Until this next doozy:</p>
<p>&#8220;I&#8217;ll put up with the pain because it&#8217;s a good kind of pain. It&#8217;s for my kid.&#8221; (getting warmer&#8230;) &#8220;Plus, it totally makes me look like an official mom.&#8221; (Cold)</p>
<p>Clearly, nobody ran this copy past anyone from the target audience-or a good editor (which, for the record, is almost always a wise move). As you might expect, mothers of America were none too pleased, and they voiced their dismay in a big way.  The ad was pulled after two days of a massive mommy 2.0 backlash on Twitter and blogs across the internet.</p>
<p>Motrin&#8217;s new PR problem is a perfect example of how little appealing graphics and a good idea (or intentions) mean if the copy isn&#8217;t right.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/motrins-mom-problem' addthis:title='Motrin&#8217;s Mom Problem ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/motrins-mom-problem/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>EEEEWWWW&#8230;</title>
		<link>http://www.thoughtprocessinteractive.com/blog/eeeewwww</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/eeeewwww#comments</comments>
		<pubDate>Tue, 18 Nov 2008 19:22:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev3.com/www/blog/?p=194</guid>
		<description><![CDATA[Looks like astronauts will soon get their drinking water from recycled urine. My favorite quote from the article: &#8220;Agency officials say the water from the system will be cleaner than U.S. tap water.&#8221; Maybe Bear Grylls is actually on to something&#8230;<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/eeeewwww' addthis:title='EEEEWWWW&#8230; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Looks like astronauts will soon get their drinking water from recycled urine. My favorite quote from <a title="Astronauts To Drink Recycled Urine" href="http://abcnews.go.com/Technology/story?id=4858780&amp;page=1" target="_blank">the article</a>:</p>
<p>&#8220;Agency officials say the water from the system will be cleaner than U.S. tap water.&#8221;</p>
<p>Maybe Bear Grylls is actually on to something&#8230;</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/eeeewwww' addthis:title='EEEEWWWW&#8230; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/eeeewwww/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 11 Lamest Blogs</title>
		<link>http://www.thoughtprocessinteractive.com/blog/top-11-lamest-blogs</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/top-11-lamest-blogs#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:10:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[lame]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev3.com/www/blog/?p=192</guid>
		<description><![CDATA[Whew! We didn&#8217;t make the list. PC World &#8211; Top 11 Lamest Blogs I actually know of a few blogs that are lamer than these. Why is it Top 11 anyway?<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/top-11-lamest-blogs' addthis:title='Top 11 Lamest Blogs ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Whew! We didn&#8217;t make the list. <img src='http://www.thoughtprocessinteractive.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a title="Top 11 Lamest Blogs" href="http://www.pcworld.com/article/153615/top_11_lamest_blogs.html" target="_blank">PC World &#8211; Top 11 Lamest Blogs</a></p>
<p>I actually know of a few blogs that are lamer than these. Why is it Top 11 anyway?</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/top-11-lamest-blogs' addthis:title='Top 11 Lamest Blogs ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/top-11-lamest-blogs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheaper gas = Free Software</title>
		<link>http://www.thoughtprocessinteractive.com/blog/cheaper-gas-free-software</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/cheaper-gas-free-software#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:21:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev2.com/www/blog/?p=160</guid>
		<description><![CDATA[Just spreading the news that CodeWeavers CrossOver Mac is free tomorrow. It&#8217;s a funny story how it happened &#8211; 3 months ago Codeweavers CEO Jeremy White issued a &#8220;Lame Duck Challenge&#8221; to President GDubbs, claiming that he would offer his software for free if the President accomplished any of five goals during his last 6 [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/cheaper-gas-free-software' addthis:title='Cheaper gas = Free Software ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Just spreading the news that CodeWeavers CrossOver Mac is free tomorrow. It&#8217;s a funny story how it happened &#8211; 3 months ago Codeweavers CEO Jeremy White issued a &#8220;<a title="Lame Duck Challenge" href="http://www.tuaw.com/2008/10/27/codeweavers-says-cheap-gas-free-software-tomorrow/" target="_blank">Lame Duck Challenge</a>&#8221; to President GDubbs, claiming that he would offer his software for free if the President accomplished any of five goals during his last 6 months in office. </p>
<ol>
<li>Gas drops to $2.79/gallon</li>
<li>Milk drops to $3.50/gallon</li>
<li>US jobs exceed 138 million</li>
<li>The Twin Cities median home price returns to $233,000</li>
<li>Osama Bin Laden is captured</li>
</ol>
<div>Well&#8230;due to the recent economic downturn (not necessarily due to GW), gas in St. Paul his $2.79/gallon. And tomorrow Mac users will rejoice in free software. <a title="Free Software" href="http://www.tuaw.com/2008/10/27/codeweavers-says-cheap-gas-free-software-tomorrow" target="_blank">More</a>&#8230;</div>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/cheaper-gas-free-software' addthis:title='Cheaper gas = Free Software ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/cheaper-gas-free-software/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Riding in gears 6 and 7 just got cheaper</title>
		<link>http://www.thoughtprocessinteractive.com/blog/riding-in-gears-6-and-7-just-got-cheaper</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/riding-in-gears-6-and-7-just-got-cheaper#comments</comments>
		<pubDate>Thu, 09 Oct 2008 13:57:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[James Fawcett]]></category>
		<category><![CDATA[What Were They Thinkubating?!]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev2.com/www/blog/?p=148</guid>
		<description><![CDATA[The new bailout bill does officially include a tax credit for employers to help reimburse bicycle commuting employees.  It&#8217;s a $20/month credit per cyclo-commuting employee so that the employer can reimburse for reasonable expenses incurred by the employee &#8220;for the purchase of a bicycle and bicycle improvements, repair, and storage, if such bicycle is regularly [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/riding-in-gears-6-and-7-just-got-cheaper' addthis:title='Riding in gears 6 and 7 just got cheaper ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>The new bailout bill does officially include a tax credit for employers to help reimburse bicycle commuting employees.  It&#8217;s a $20/month credit per cyclo-commuting employee so that the employer can reimburse for reasonable expenses incurred by the employee <em>&#8220;for the purchase of a bicycle and bicycle improvements, repair, and storage, if such bicycle is regularly used for travel between the employee’s residence and place of employment.&#8221;</em></p>
<p>So, that new bike you&#8217;ve been eyeballing at the bike shop, now&#8217;s the time get it.  Maybe save $20 to $40 a month in gas, plus $20 from the gov.</p>
<p><a href="http://www.bicycleretailer.com/news/newsDetail/1878.html" target="_blank">http://www.bicycleretailer.com/news/newsDetail/1878.html</a></p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/riding-in-gears-6-and-7-just-got-cheaper' addthis:title='Riding in gears 6 and 7 just got cheaper ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/riding-in-gears-6-and-7-just-got-cheaper/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>376 mpg car in 1973?</title>
		<link>http://www.thoughtprocessinteractive.com/blog/376-mpg-car-in-1973</link>
		<comments>http://www.thoughtprocessinteractive.com/blog/376-mpg-car-in-1973#comments</comments>
		<pubDate>Mon, 16 Jun 2008 20:41:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[What Were They Thinkubating?!]]></category>

		<guid isPermaLink="false">http://thinktpi.tpidev2.com/www/blog/?p=13</guid>
		<description><![CDATA[So I’ve been doing some research to prepare for the social media marketing for Black Magic, and I keep running into a story in forums, blogs, etc about a car that got 376.59 mpg back in the 70’s in a contest hosted by Shell Oil companies. They claim the car was modified a lot, and [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/376-mpg-car-in-1973' addthis:title='376 mpg car in 1973? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div id="OriginalPost" class="message">
<div class="formatted_text_body">
<p>So I’ve been doing some research to prepare for the social media marketing for Black Magic, and I keep running into a story in forums, blogs, etc about a car that got 376.59 mpg back in the 70’s in a contest hosted by Shell Oil companies. They claim the car was modified a lot, and the gasoline was vaporized before entering a super-heated (and super insulated) engine. I have no idea if this is true or some internet hoax that generated a lot of buzz, but it’s kind of interesting to read.</p>
<p>I first came across the story in Jay Leno’s Garage forums, then saw it here:<br />
<a href="http://blog.hemmings.com/index.php/2007/05/01/big-oil-conspiracy-376-mpg-opel-uncovered/">http://blog.hemmings.com/index.php/2007/05/01/big-oil-conspiracy-376-mpg-opel-uncovered/</a></p>
<p>then here: <a href="http://www.opel-p1.nl/custom/testcar/Shell%20Opel.htm">http://www.opel-p1.nl/custom/testcar/Shell%20Opel.htm</a></p>
<p>then here: <a href="http://www.treehugger.com/files/2008/02/souped_down_old.php#comments">http://www.treehugger.com/files/2008/02/souped_down_old.php#comments</a></div>
</div>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.thoughtprocessinteractive.com/blog/376-mpg-car-in-1973' addthis:title='376 mpg car in 1973? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.thoughtprocessinteractive.com/blog/376-mpg-car-in-1973/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

