<?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>NY INTERACTIVE AGENCY « iFUEL INTERACTIVE / AGENCY212</title>
	<atom:link href="http://blogs.ifuelinteractive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.ifuelinteractive.com</link>
	<description>A NY INTERACTIVE AGENCY</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:30:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento Caching</title>
		<link>http://blogs.ifuelinteractive.com/2012/02/02/magento-caching/</link>
		<comments>http://blogs.ifuelinteractive.com/2012/02/02/magento-caching/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 15:30:07 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Magento Moments]]></category>
		<category><![CDATA[Caching]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=622</guid>
		<description><![CDATA[Magento uses caching extensively.  If you also want to be able to save something to cache rather than reading from the database or some more expense resource like that, it’s simple:
$value = Mage::app()-&#62;loadCache(‘my_cache_key’);
If the key isn’t found, $value will be null.
To store a value in the cache is almost as easy:
Mage::app()-&#62;saveCache($data_to_store, ‘my_cache_key’, array(), $duration_in_seconds);
(The [...]]]></description>
			<content:encoded><![CDATA[<p>Magento uses caching extensively.  If you also want to be able to save something to cache rather than reading from the database or some more expense resource like that, it’s simple:</p>
<blockquote><p>$value = Mage::app()-&gt;loadCache(‘my_cache_key’);</p></blockquote>
<p>If the key isn’t found, $value will be null.</p>
<p>To store a value in the cache is almost as easy:</p>
<blockquote><p>Mage::app()-&gt;saveCache($data_to_store, ‘my_cache_key’, array(), $duration_in_seconds);</p></blockquote>
<p>(The empty array in the call above is standing in for a parameter called “tags” which, to my knowledge, is not used.  Someone please correct me on that if I’ve got it wrong.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2012/02/02/magento-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loading Blocks</title>
		<link>http://blogs.ifuelinteractive.com/2012/02/01/loading-blocks/</link>
		<comments>http://blogs.ifuelinteractive.com/2012/02/01/loading-blocks/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 00:11:46 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Magento Moments]]></category>
		<category><![CDATA[Blocks]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=615</guid>
		<description><![CDATA[Sometimes I’m banging my head against the wall trying to figure out why my block isn’t loading right or some other layout element isn’t rendering.  And I’ve always wished I could just see the layout as Magento is seeing it.  So I finally dug in to see and it’s actually incredibly simple to output the [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I’m banging my head against the wall trying to figure out why my block isn’t loading right or some other layout element isn’t rendering.  And I’ve always wished I could just see the layout as Magento is seeing it.  So I finally dug in to see and it’s actually incredibly simple to output the layout for a given page in xml format.</p>
<pre class="brush: php">
echo Mage::app()-&gt;getLayout()-&gt;getNode()-&gt;asNiceXml(&#039;&#039;, 0);
</pre>
<p>The layout is just a Varien_Simplexml_Config.  getNode buys you access to the private $_xml variable that holds the root node of the xml document.  Then asNiceXml formats it nicely for the screen.  If you’d rather output to a file (they can be large chunks of xml) supply a file name for the first parameter of asNiceXml and the xml will be written there, too.</p>
<p>Now back to why my block isn’t loading…</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2012/02/01/loading-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logging Database Queries in Magento</title>
		<link>http://blogs.ifuelinteractive.com/2012/02/01/logging-database-queries-in-magento/</link>
		<comments>http://blogs.ifuelinteractive.com/2012/02/01/logging-database-queries-in-magento/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 15:13:05 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Magento Moments]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=612</guid>
		<description><![CDATA[Sometimes Magento does something and it’s just not obvious why.  We’ve all heard “why aren’t my products showing up?” more times than we can count.  Magento’s object model for building queries is great, but sometimes you just need to see the sql that’s being run on the database in order to know what’s really going [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Sometimes Magento does something and it’s just not obvious why.  We’ve all heard “why aren’t my products showing up?” more times than we can count.  Magento’s object model for building queries is great, but sometimes you just need to see the sql that’s being run on the database in order to know what’s really going on.</p>
<p style="text-align: justify;">In the past I’ve used the general log in mysql.  That can be a great source of information, but, depending on the version of mysql, it can be a pain to set up.  Other times I’ve inserted logging code into various db classes in order to print out queries that are being run, but I always have to find the right place again.  But today I stumbled on this blog entry -<a title="Logging Database Queries in Magento" href="http://blog.nexcess.net/2011/04/15/logging-database-queries-in-magento/" target="_blank"> http://blog.nexcess.net/2011/04/15/logging-database-queries-in-magento/</a> that spells out exactly how you can turn on some (as far as I know) undocumented logging functionality that is built right in to the Magento data access layer.  Kudos to the author and thanks for sharing!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2012/02/01/logging-database-queries-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Awards &#8211; 20 Fabulous New Websites For Your Inspiration</title>
		<link>http://blogs.ifuelinteractive.com/2012/01/06/css-award/</link>
		<comments>http://blogs.ifuelinteractive.com/2012/01/06/css-award/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 19:40:35 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Creative]]></category>
		<category><![CDATA[Awards]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=605</guid>
		<description><![CDATA[Here at iFuel, we are very excited to be featured again for our design work for Giutzy.com.
We were recognized as one of the 20 Fabulous New Websites For Your Inspiration.

We&#8217;re very excited to share this news with you all!
]]></description>
			<content:encoded><![CDATA[<p>Here at iFuel, we are very excited to be featured again for our design work for<a title="Giutzy.com" href="http://www.giutzy.com/" target="_blank"> Giutzy.com.</a></p>
<p>We were recognized as one of the 20 Fabulous New <a title="CSS Awards – 20 Fabulous New Websites For Your Inspiration" href="http://www.inspiredm.com/css-awards-20-fabulous-new-websites-for-your-inspiration/" target="_blank">Websites </a>For Your Inspiration.</p>
<p style="text-align: center;"><a href="http://www.inspiredm.com/css-awards-20-fabulous-new-websites-for-your-inspiration/"><img class="aligncenter size-full wp-image-606" title="Inspired Mag" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2012/01/Inspired-Mag.jpg" alt="" width="586" height="658" /></a></p>
<p>We&#8217;re very excited to share this news with you all!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2012/01/06/css-award/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the Text Value of a Category Attribute of Type Select</title>
		<link>http://blogs.ifuelinteractive.com/2011/12/30/text-value-cattegory-attribute-type-selec/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/12/30/text-value-cattegory-attribute-type-selec/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 19:36:20 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Magento Moments]]></category>
		<category><![CDATA[Attribute]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Magento Momnents]]></category>
		<category><![CDATA[Text Value]]></category>
		<category><![CDATA[Type Select]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=598</guid>
		<description><![CDATA[As shown elsewhere, you can add an attribute to the category entity in Magento.  If the attribute is of type select, getting the text value of an option is a bit of a pain:
$category = Mage::getModel(‘catalog/category’)-&#62;load(10);
$attribute = Mage::getSingleton(&#8216;eav/config&#8217;)-&#62;getAttribute(&#8216;catalog_category&#8217;, &#8216;myattribute_code&#8217;);
$text = $attribute-&#62;getSource()-&#62;getOptionText($category-&#62;getMyattributeCode());
]]></description>
			<content:encoded><![CDATA[<p>As shown elsewhere, you can add an attribute to the category entity in Magento.  If the attribute is of type select, getting the text value of an option is a bit of a pain:</p>
<p>$category = Mage::getModel(‘catalog/category’)-&gt;load(10);</p>
<p>$attribute = Mage::<em>getSingleton</em>(&#8216;eav/config&#8217;)-&gt;getAttribute(&#8216;catalog_category&#8217;, &#8216;myattribute_code&#8217;);</p>
<p>$text = $attribute-&gt;getSource()-&gt;getOptionText($category-&gt;getMyattributeCode());</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/12/30/text-value-cattegory-attribute-type-selec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIP Water Cooler</title>
		<link>http://blogs.ifuelinteractive.com/2011/12/28/water-cooler/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/12/28/water-cooler/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 17:46:55 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[Starbucks]]></category>
		<category><![CDATA[Water Cooler]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=587</guid>
		<description><![CDATA[It was a sad morning here at iFuel Interactive. We got into the office today, and noticed that out beloved water cooler was making an odd noise. Rick went to go get some water for the coffee pot, and noticed that the entire machine was very hot, and water that was being dispensed out was boiling hot [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">It was a sad morning here at <a title="iFuel Interactive" href="http://www.ifuelinteractive.com/" target="_blank">iFuel Interactive</a>. We got into the office today, and noticed that out beloved water cooler was making an odd noise. Rick went to go get some water for the coffee pot, and noticed that the entire machine was very hot, and water that was being dispensed out was boiling hot (even from the cold dispenser). He quickly unplugged the water cooler, and took out the 5 gallon water jug. Something must have happened to the heating coils, as it even started to melt the mouth of the jug. Thank goodness this didn&#8217;t happen over the weekend, or who knows what could have happened.</p>
<p style="text-align: justify;"><span id="more-587"></span></p>
<p style="text-align: justify;">I called our water distributor, and told them about what happened. Not only did the woman sound more shocked than I did about the situation, but she set up an emergency replacement call for tomorrow morning.</p>
<p style="text-align: justify;">In light of the morning&#8217;s events, I sent out an office wide e-mail:</p>
<p style="text-align: justify;"><strong>Subject: </strong></p>
<p style="text-align: justify;">Do Not Use Water Cooler</p>
<p style="text-align: justify;"><strong>E-mail: </strong></p>
<p style="text-align: justify;">Good Morning:</p>
<p style="text-align: justify;">This morning, our water cooler seemed to become a “water boiler” and was heating both water settings, and even melted the water jug that was in there.</p>
<p style="text-align: justify;">The cooler has been unplugged, and a new one will be delivered tomorrow to replace this one, along with a new 5 gallon water jug to replace the one we lost.</p>
<p style="text-align: justify;">Services for the water cooler will be held this afternoon, and the funeral is tomorrow (whenever the [water distributor] guy gets here).</p>
<p style="text-align: justify;">Sorry for the inconvenience.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">To honor our lost friend, I felt it only correct to honor it with a proper tombstone.</p>
<p style="text-align: center;"><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/Water-cooler-11.jpg"><img class="aligncenter size-full wp-image-589" title="RIP iFuel Interactive Water Cooler" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/Water-cooler-11.jpg" alt="" width="504" height="672" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/water-cooler-2.jpg"><img class="aligncenter size-full wp-image-593" title="RIP iFuel Interactive Water Cooler" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/water-cooler-2.jpg" alt="" width="504" height="672" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/water-cooler-3.jpg"><img class="aligncenter size-full wp-image-594" title="RIP iFuel Interactive Water Cooler" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/12/water-cooler-3.jpg" alt="" width="504" height="672" /></a></p>
<p style="text-align: center;">
<p style="text-align: justify;">In lieu of flowers, the iFuel Interactive family kindly asks that you go to your <a title="Find Your Local Starbucks" href="http://www.starbucks.com/store-locator" target="_blank">local </a>Starbucks and buy a bottle of <a title="Ethos Water" href="http://www.starbucks.com/responsibility/community/ethos-water-fund" target="_blank">Ethos</a> water, where 5 cents goes towards their Ethos® Water Fund, part of the <a title="Starbucks" href="http://www.starbucks.com" target="_blank">Starbucks </a>Foundation.</p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/12/28/water-cooler/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Best. YouTube. Video. Ever.</title>
		<link>http://blogs.ifuelinteractive.com/2011/12/08/best-youtube-video-ever/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/12/08/best-youtube-video-ever/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 15:13:17 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Creative]]></category>
		<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[AWESOME]]></category>
		<category><![CDATA[Christmas Lights]]></category>
		<category><![CDATA[Holidays]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=581</guid>
		<description><![CDATA[The holiday season is in full swing, and I&#8217;m slowly getting into the spirit of things. I listen to my holiday radio station on Pandora, and changed my desktop wallpaper to that of various festive winter scenes. Plus, I just bought a lovely dress to wear to my holiday parties, and I&#8217;m almost done with all my [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The holiday season is in full swing, and I&#8217;m slowly getting into the spirit of things. I listen to my holiday radio station on <a title="Pandora Radio Station for Christmas" href="http://www.pandora.com/?_sl=1&amp;shareImp=true#!/stations/play/661175555327564975" target="_blank">Pandora</a>, and changed my desktop <a title="Windows Themes" href="http://windows.microsoft.com/en-us/windows/downloads/personalize/themes?ocid=W7_personalizeCPL" target="_blank">wallpaper </a>to that of various festive winter scenes. Plus, I just bought a lovely dress to wear to my holiday parties, and I&#8217;m almost done with all my shopping.</p>
<p style="text-align: justify;">After all the hard work that goes into preparing for the holidays, it is important to sit back, relax, and enjoy the time-honored tradition of putting up Christmas lights on one&#8217;s home.</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/rmgf60CI_ks?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>(This is my absolute favorite YouTube video ever!)</p>
<p>Happy Holidays!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/12/08/best-youtube-video-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iAM THANKFUL</title>
		<link>http://blogs.ifuelinteractive.com/2011/11/22/iam-thankful/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/11/22/iam-thankful/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 20:58:03 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[Holidays]]></category>
		<category><![CDATA[Thanks]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=567</guid>
		<description><![CDATA[
As the holiday season quickly approaches, lest we forget all that we have to be thankful for:
&#8220;I have too much to be thankful for. I can&#8217;t take anything for granted.&#8221;
-RN
&#8220;Family, friends, food and a new Muppets movie.&#8221;
-BS
&#8220;Thankful for the people at iFuel (seriously!), a new home, awesome wife, baby on the way and God&#8217;s many [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/iAM-THANKFUL.jpg"><img class="size-full wp-image-568  aligncenter" title="iAM THANKFUL" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/iAM-THANKFUL.jpg" alt="" width="528" height="456" /></a></p>
<p>As the holiday season quickly approaches, lest we forget all that we have to be thankful for:</p>
<p style="text-align: center;">&#8220;I have too much to be thankful for. I can&#8217;t take anything for granted.&#8221;<br />
-RN</p>
<p style="text-align: center;">&#8220;Family, friends, food and a new Muppets movie.&#8221;<br />
-BS</p>
<p style="text-align: center;">&#8220;Thankful for the people at iFuel (seriously!), a new home, awesome wife, baby on the way and God&#8217;s many blessings this year.&#8221;<br />
-RW</p>
<p style="text-align: center;">&#8220;I am thankful for my Mom and Dad, they raised me and they tried all their best to make me the guy that I am now. Mom and Dad- thank you very much.&#8221;<br />
-NM</p>
<p style="text-align: center;">&#8220;I am thankful for my family, my Lobster, my friends, and my sisters. No matter what hardships we may face, it is important to remember all that we still have.&#8221;<br />
-JD</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/11/22/iam-thankful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday N.M.!</title>
		<link>http://blogs.ifuelinteractive.com/2011/11/18/happy-birthday-n-m/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/11/18/happy-birthday-n-m/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 19:13:48 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[ifuel]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=558</guid>
		<description><![CDATA[As active members of the iFuel Party Planning Committee, Tom and myself brought in some fine delicacies to celebrate NM&#8217;s birthday.

The celebration included: chocolate cake, brownies, and a variety of donuts. Everyone enjoyed the party, however, now everyone wants to take a nap.
Happy Birthday NM!!
]]></description>
			<content:encoded><![CDATA[<p>As active members of the iFuel Party Planning Committee, Tom and myself brought in some fine delicacies to celebrate NM&#8217;s birthday.</p>
<p><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/IMAG00101.jpg"><img class="size-large wp-image-560 alignnone" title="Party Planning Committee" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/IMAG00101-1024x612.jpg" alt="" width="655" height="392" /></a></p>
<p>The celebration included: chocolate cake, brownies, and a variety of donuts. Everyone enjoyed the party, however, now everyone wants to take a nap.</p>
<p>Happy Birthday NM!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/11/18/happy-birthday-n-m/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iFuel Interactive Supports the Arts</title>
		<link>http://blogs.ifuelinteractive.com/2011/11/03/ifuel-interactive-supports-the-arts/</link>
		<comments>http://blogs.ifuelinteractive.com/2011/11/03/ifuel-interactive-supports-the-arts/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 16:32:20 +0000</pubDate>
		<dc:creator>Jacqueline DeVito</dc:creator>
				<category><![CDATA[Creative]]></category>
		<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=550</guid>
		<description><![CDATA[Here at iFuel Interactive, we like to think of ourselves as those who support the arts.
This week, we had some special visitors to our office, and they shared with us some lovely artwork on the dry erase board in our conference room.

&#8220;iFuel Interactive&#8221; by Em™ 2011©
We are very lucky to have this lovely piece of art [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Here at iFuel Interactive, we like to think of ourselves as those who support the arts.</p>
<p style="text-align: justify;">This week, we had some special visitors to our office, and they shared with us some lovely artwork on the dry erase board in our conference room.</p>
<p style="text-align: center;"><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/iFuel-by-Em.jpg"><img class="aligncenter size-full wp-image-551" style="border: 5px solid black;" title="iFuel Interactive" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2011/11/iFuel-by-Em.jpg" alt="" width="559" height="146" /></a></p>
<p style="text-align: center;">&#8220;iFuel Interactive&#8221; by Em™ 2011©</p>
<p>We are very lucky to have this lovely piece of art to enjoy and share with others.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2011/11/03/ifuel-interactive-supports-the-arts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

