<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.sidewalksoffox.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

	<channel>

		<title>Sidewalksoffox.com</title>

		<link>http://www.sidewalksoffox.com</link>
		<description>Michael's Blog</description>
		<dc:language>en-in</dc:language>
		<dc:creator>michael@sidewalksoffox.com</dc:creator>

		<dc:rights>Copyright 2009</dc:rights>
		<admin:generatorAgent rdf:resource="http://www.codeigniter.com/" />

	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.sidewalksoffox.com/sidewalksoffox" /><feedburner:info uri="sidewalksoffox" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>

			<title>Google Links Directly to Content Sections Inside Search Result Snippets</title>
			<link>http://feeds.sidewalksoffox.com/~r/sidewalksoffox/~3/QS_Lo3z-oTI/google-links-directly-to-content-sections-inside-search-result-snippets</link>
			<guid isPermaLink="false">http://www.sidewalksoffox.com/blog/google-links-directly-to-content-sections-inside-search-result-snippets</guid>

			<description>&lt;p&gt;Google &lt;a title="Jump to the information you want right from the search snippets" href="http://googleblog.blogspot.com/2009/09/jump-to-information-you-want-right-from.html"&gt;announced&lt;/a&gt; that they have added a new feature to search results. The brief summary in a result may contain links to specific sections of content on the page. This helps get a user directly to the most relevant content faster. For example, if I search for "jquery tabs", one of my results looks like this:&lt;/p&gt;
&lt;p&gt;&lt;img title="Google Search Results With Content Links" src="http://www.sidewalksoffox.com/images/content/google-results-with-content-links.png" alt="Google search results with content links in the snippet " width="567" height="134" /&gt;&lt;/p&gt;
&lt;p&gt;Clicking "How To..." would take me directly to this portion of the page (&lt;a title="jQuery Tabs - How To section" href="http://docs.jquery.com/UI/Tabs#How_to..."&gt;http://docs.jquery.com/UI/Tabs#How_to...&lt;/a&gt;) instead of the top of the page (&lt;a title="jQuery Tabs - Documentation" href="http://docs.jquery.com/UI/Tabs"&gt;http://docs.jquery.com/UI/Tabs&lt;/a&gt;). I think that I will enjoy this feature quite a bit, and since &lt;a title="Usability findings from smashing magazine" href="http://www.smashingmagazine.com/2009/09/24/10-useful-usability-findings-and-guidelines/"&gt;most users do not scroll&lt;/a&gt;, this should get some dusty content a little bit of fresh attention.&lt;/p&gt;
&lt;h2&gt;&lt;a name="how-i-imagine-it-works"&gt;&lt;/a&gt;How I imagine It Works&lt;/h2&gt;
&lt;p&gt;&lt;img style="float: right;" title="Google's imaginary content section workhorses." src="http://www.sidewalksoffox.com/images/content/kid-on-computer.jpg" alt="Google's imaginary content section workhorses." width="250" height="167" /&gt;I imagine that google installed an application on all of the computers in their daycare centers. The app rewards the toddlers with ice cream and candy for clicking all the "big words" on a page. All the while they track the clicks using a super-secret internal version of analytics, using the data to serve content to us with a better experience. Next time you see a first grader, let them know you appreciate it.&lt;/p&gt;
&lt;h2&gt;&lt;a name="how-it-actually-works"&gt;&lt;/a&gt;How it Actually Works&lt;/h2&gt;
&lt;p&gt;According to the offical &lt;a title="Using named anchors to identify sections on your pages" href="http://googlewebmastercentral.blogspot.com/2009/09/using-named-anchors-to-identify.html"&gt;google webmaster's blog&lt;/a&gt;, google is simply scanning the page for anchor tags in section headings. Sometimes things really are as simple as they seem. The good news is, it should be pretty easy to clean up your site and increase your chances of getting these links in your search results. In fact, you may already be there... or at least close.&lt;/p&gt;
&lt;h2&gt;&lt;a name="how-to-increase-the-chance-your-google-search-results-snippets-will-include-content-links"&gt;&lt;/a&gt;How to Increase the Chance Your Google Search Results Snippets Will Include Content Links&lt;/h2&gt;
&lt;p&gt;Break up the content of your page into sections, giving each section a heading tag (h2 or h3, etc). Inside the sub-header tags, add an anchor.&lt;/p&gt;
&lt;pre class="code"&gt;&amp;lt;h2&amp;gt;&amp;lt;a name="how-i-imagine-it-works" class="mceItemAnchor"/&amp;gt;How I imagine It Works&amp;lt;/h2&amp;gt;&lt;/pre&gt;
&lt;pre class="code"&gt;&amp;lt;h2&amp;gt;&amp;lt;a name="how-it-actually-works" class="mceItemAnchor"/&amp;gt;How It Actually Works&amp;lt;/h2&amp;gt;&lt;/pre&gt;
&lt;p&gt;You should also link to these anchors somewhere on the page, in a table of contents fashion.&lt;/p&gt;
&lt;p&gt;As with anything google, nothing is a guarantee. Fortunately, this is something we should all probably be doing anyway. It makes it much more convenient to link to specific content when you want to share something. For example, the smashing magazine article I linked to above ("most users do not scroll") has no anchor tags, and if you click it, you'll have to scroll down and find the section that I was referencing.&lt;/p&gt;
&lt;h2&gt;&lt;a name="a-php-function-to-automatically-generate-anchors-within-your-subheads"&gt;&lt;/a&gt;A PHP Function to Automatically Generate Anchors Within Your Subheads&lt;/h2&gt;
&lt;pre class="code"&gt;/**
 * generate a subhead with an anchor tag
 *
 *  Usage: 
 *    echo subhead("How it Actually Works");
 *  Prints:
 *    &amp;lt;h2&amp;gt;&amp;lt;a name="how-it-actually-works"&amp;gt;How it Actually Works&amp;lt;/h2&amp;gt;
 * 
 * @param string $name 
 * @return string 
 */
function subhead($name) {
 $anchor_name = strtolower(str_replace(' ', '-', $name));
 return "&amp;lt;h2&amp;gt;&amp;lt;a name=\"$anchor_name\" /&amp;gt;$name&amp;lt;/h2&amp;gt;";
}
&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/sidewalksoffox/~4/QS_Lo3z-oTI" height="1" width="1"/&gt;</description>
			<pubDate>Fri, 25 Sep 2009 16:27:39 -0400</pubDate>

		<feedburner:origLink>http://www.sidewalksoffox.com/blog/google-links-directly-to-content-sections-inside-search-result-snippets</feedburner:origLink></item>

	
		<item>

			<title>Fixing Pixelation from Scaled Images in IE</title>
			<link>http://feeds.sidewalksoffox.com/~r/sidewalksoffox/~3/wemN3N6Rb_c/fixing-pixelation-from-scaled-images-in-ie</link>
			<guid isPermaLink="false">http://www.sidewalksoffox.com/blog/fixing-pixelation-from-scaled-images-in-ie</guid>

			<description>&lt;p&gt;A project I worked on recently called for a carousel with five images of different sizes -- somewhat like a "light" coverflow. I ended up building it with basic &lt;img alt="" /&gt; tags that get scaled by javascript which modified the width attribute.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img title="Cover Slider Layout" src="http://www.sidewalksoffox.com/images/content/cover-slider-layout.png" alt="Prototype of cover slider. " width="580" height="214" /&gt;&lt;/p&gt;
&lt;p&gt;One of the problems that I ran in to involved the loss of quality from Internet Explorer 6 and 7 when the browser renders the image at a smaller dimension than the file.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img title="IE Scaled Image" src="http://www.sidewalksoffox.com/images/content/ie-scaled-imaged.jpg" alt="image scaled in ie" width="569" height="316" /&gt;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;This project was for a site that still has a substantial amount of visitors using IE6 (and IE7's scaling abilities are not much better than 6). So I needed to come up with a way to correct the image scaling. A short google later, I found &lt;a title="Ethan Marcotte" href="http://unstoppablerobotninja.com/about/"&gt;Ethan Marcotte&lt;/a&gt;'s blog post &lt;a title="Fluid Images on Unstoppable Robot Ninja" href="http://unstoppablerobotninja.com/entry/fluid-images/"&gt;Fluid Images&lt;/a&gt; [via &lt;a title="Unstoppable Robot Ninja" href="http://unstoppablerobotninja.com/about/"&gt;Unstoppable Robot Ninja&lt;/a&gt;] and a &lt;a title="On UI Quality (The Little Things): Client-side Image Resizing" href="http://code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/"&gt;post on flickr's developer blog&lt;/a&gt;.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;It turns out that the Microsoft AlphaImageLoader used to support transparent pngs in IE6 will also cause the browser to use a better engine to render scale.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;Here is how I fixed scaled images for IE6:&lt;/p&gt;
&lt;pre class="brush: js"&gt;// apply AlphaImageLoader in IE6 for better image scaling
var broswerVersion=navigator.appVersion;
if(broswerVersion.indexOf('MSIE 6') &amp;gt;= 0) {
    $('.cover_slider .images img').each(function() {
        var imgSrc = $(this).attr('src');
        this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + imgSrc + "', sizingMethod='scale')";
        this.src = '/images/misc/spacer.gif';
    });
}
&lt;/pre&gt;
&lt;p style="text-align: left;"&gt;You use the src from the image in the AlphaImageLoader call, and then replace the src with a transparent "spacer" gif. It's not perfect, but it is definitely much better.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;IE7 is even easier. It can be fixed with a simple MS specific CSS class.&lt;/p&gt;
&lt;pre class="brush: css; gutter: false;"&gt;.cover_slider img {
    -ms-interpolation-mode:bicubic;
}
&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/sidewalksoffox/~4/wemN3N6Rb_c" height="1" width="1"/&gt;</description>
			<pubDate>Mon, 21 Sep 2009 19:23:41 -0400</pubDate>

		<feedburner:origLink>http://www.sidewalksoffox.com/blog/fixing-pixelation-from-scaled-images-in-ie</feedburner:origLink></item>

	
		<item>

			<title>Google's Custom Search Engine: Unsung Hero of Search Tools</title>
			<link>http://feeds.sidewalksoffox.com/~r/sidewalksoffox/~3/l6K39TeB8A8/googles-custom-search-engine-unsung-hero-of-search-tools</link>
			<guid isPermaLink="false">http://www.sidewalksoffox.com/blog/googles-custom-search-engine-unsung-hero-of-search-tools</guid>

			<description>&lt;p&gt;Google provides an easy to use tool for building a "customized search engine" that only searches the sites you specify. Google Custom Search may not receive a lot of hype around the internet, but it is a very simple, yet powerful resource.&lt;/p&gt;					&lt;p&gt;Sometimes you want to search for something, but only within a specific set of sites. For example, Smashing Magazine recently posted a list of &lt;a title="45+ Excellent Code Snippet Resources and Repositories" href="http://www.smashingmagazine.com/2009/07/21/45-excellent-code-snippet-resources-and-repositories/"&gt;45+ Excellent Code Snippet Resources and Repositories&lt;/a&gt;. Occasionally, I find myself opening several tabs to search through a few of my favorite sites from this list in hopes that someone else has already figured out the best way to do something; so I decided to make a custom search engine.&lt;/p&gt;
&lt;p&gt;To get started, visit http://www.google.com/cse and click "Create a Custom Search Engine." The form is pretty self-explanitory -- just enter the list of sites that you want to search.&lt;/p&gt;
&lt;p&gt;Here is the list I created:&lt;/p&gt;
&lt;p&gt;snipplr.com/*&lt;br /&gt;*.smipple.net/*&lt;br /&gt;tipster.carsonified.com/* &lt;br /&gt;snipt.net/* &lt;br /&gt;snippets.dzone.com/* &lt;br /&gt;*.koders.com/* &lt;br /&gt;codesnippets.joyent.com/* &lt;br /&gt;*.bytemycode.com/ &lt;br /&gt;refactormycode.com/* &lt;br /&gt;*.naslu.com/* &lt;br /&gt;codecodex.com/wiki/* &lt;br /&gt;*.jonasjohn.de/snippets/* &lt;br /&gt;github.com/* &lt;br /&gt;*.codase.com/* &lt;br /&gt;*.google.com/codesearch/* &lt;br /&gt;*.snipiti.com/* &lt;br /&gt;codekeep.net/* &lt;br /&gt;snippetsmania.com/* &lt;br /&gt;devsnippets.com/* &lt;br /&gt;*.refactory.org/*&lt;br /&gt;*.code-sucks.com/code/*&lt;br /&gt;*.phpsnips.com/*&lt;br /&gt;*.phpclasses.org/*&lt;br /&gt;wiki.greasespot.net/Code_snippets/*&lt;br /&gt;*.stackoverflow.com/*&lt;/p&gt;
&lt;p&gt;Once created, there are several more advanced options -- annotations, styling, custom logos, etc.&lt;/p&gt;
&lt;p&gt;If you want to see what the result looks like, you can see the &lt;a title="Code Snippet Custom Search Engine" href="http://www.google.com/coop/cse?cx=006849743663034701000:vcyfrskdmuy"&gt;Code Snippet search engine&lt;/a&gt; I created, or jump straight into creating your own and let me know what you come up with.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/sidewalksoffox/~4/l6K39TeB8A8" height="1" width="1"/&gt;</description>
			<pubDate>Wed, 29 Jul 2009 08:46:35 -0400</pubDate>

		<feedburner:origLink>http://www.sidewalksoffox.com/blog/googles-custom-search-engine-unsung-hero-of-search-tools</feedburner:origLink></item>

	
		<item>

			<title>7 jQuery Plugins You Should Use on Every Website</title>
			<link>http://feeds.sidewalksoffox.com/~r/sidewalksoffox/~3/ktjQDp3yM5o/7-jquery-plugins-you-should-use-on-every-website</link>
			<guid isPermaLink="false">http://www.sidewalksoffox.com/blog/7-jquery-plugins-you-should-use-on-every-website</guid>

			<description>&lt;p&gt;&lt;a title="David Walsh's Blog" href="http://davidwalsh.name/"&gt;David Walsh&lt;/a&gt; recently posted a solid list of &lt;a class="" title="" target="" href="http://davidwalsh.name/7-mootools-plugins"&gt;7 MooTools Plugins You Should Use on Every Website&lt;/a&gt;. Many of his posts use jQuery, but since this one focused on MooTools, I thought I would put up a list of some jQuery plugins that perform similar tasks. This is not a jQuery vs MooTools post -- just a list for sites that already use jQuery.
&lt;/p&gt;					&lt;h2&gt;1. autoResize&lt;/h2&gt;
&lt;p&gt;David makes the case that all textareas should be resizable, and I would have to agree. When text expands past the boundries of a textarea, autoResize will modify the size of the textarea, allowing the user to see all of the content in the box.&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;div class="boxlink homepage"&gt;
&lt;p&gt;
 &lt;a href="http://james.padolsey.com/javascript/jquery-plugin-autoresize/"&gt;jQuery autoResize homepage&lt;/a&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;h2&gt;2. Custom Checkboxes with jQuery&lt;/h2&gt;
&lt;p&gt;Though less of a requirement, better looking checkboxes can make a big impact on user experience. The following tutorial shows you how to implement customized checkboxes (and radio controls).&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.hieu.co.uk/blog/index.php/2009/07/09/customize-html-control-with-jquery-checkbox-radio/"&gt;Customize HTML control with jQuery (Checkbox + Radio)&lt;/a&gt;
&lt;/p&gt;
&lt;h2&gt;3. FancyBox
&lt;/h2&gt;
&lt;p&gt;Lightbox components are a slick and convenient addition to many sites. You can use the jQuery UI dialog features to create a lightbox, but FancyBox is a cleaner solution designed specifically for use as a lightbox.&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://fancy.klade.lv/"&gt;jQuery FancyBox homepage&lt;/a&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;h2&gt;4. asmSelect&lt;/h2&gt;
&lt;p&gt;A jQuery alternative to David's quickboxes was not easily found. Instead, I offer you a plugin that improves upon the "select multiple" control of the browser.&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://code.google.com/p/jquery-asmselect/"&gt;jQuery asmSelect homepage&lt;/a&gt;
&lt;/p&gt;
&lt;h2&gt;5. ScrollTo&lt;/h2&gt;
&lt;p&gt;This plugin allows you to cleanly scroll to a location on the page.&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://demos.flesler.com/jquery/scrollTo/"&gt;jQuery ScrollTo homepage&lt;/a&gt;
&lt;/p&gt;
&lt;h2&gt;6. qTip&lt;/h2&gt;
&lt;p&gt;qTip is the full-featured tooltip solution. It includes just about anything you could ever want to do with a tooltip, including media/complex content inside the tooltip, arrows, positioning, and more.&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://craigsworks.com/projects/qtip/"&gt;jQuery qTip homepage&lt;/a&gt;
&lt;/p&gt;
&lt;h2&gt;7. Zebra Tables&lt;/h2&gt;
&lt;p&gt;I am sure that there is an excellent plugin out there that will do this for you, but it seems just as easy to do it yourself.&lt;/p&gt;
&lt;p&gt;Setup your styles:&lt;/p&gt;
&lt;pre&gt;&lt;code class="css"&gt;&lt;br&gt;table.zebra tr.odd {&lt;br&gt; background-color: #CCCCCC;&lt;br&gt;}&lt;br&gt;table.zebra tr.hover {&lt;br&gt; background-color: #99FF99;&lt;br&gt;}&lt;br&gt;table.zebra tr.selected {&lt;br&gt; background-color: #9999FF;&lt;br&gt;}&lt;br&gt;&lt;/code&gt;&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;after document.ready():&lt;/p&gt;
&lt;pre&gt;&lt;code class="js"&gt;&lt;br&gt;$('table.zebra')&lt;br&gt; // add a class of 'odd' to all the odd rows&lt;br&gt; .find('tr:odd').addClass('odd').end()&lt;br&gt; // add a class of 'even' to all the even rows&lt;br&gt; .find('tr:even').addClass('even').end()&lt;br&gt; .find('tr')&lt;br&gt; // when a row is clicked, give it a class of 'selected'&lt;br&gt; .click(function() {&lt;br&gt; $(this).toggleClass('selected');&lt;br&gt; })&lt;br&gt; // when a row is hovered over, give it a class of 'hover'&lt;br&gt; .hover(&lt;br&gt; // over&lt;br&gt; function() {&lt;br&gt; $(this).addClass('hover');&lt;br&gt; },&lt;br&gt; // mouse-out&lt;br&gt; function() {&lt;br&gt; $(this).removeClass('hover');&lt;br&gt; }&lt;br&gt; )&lt;br&gt;&lt;/code&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;code class="js"&gt;.end();&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href="/demos/zebra_tables"&gt;jQuery Zebra Striping Demo&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Thanks to David Walsh for the great post and set of tools.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/sidewalksoffox/~4/ktjQDp3yM5o" height="1" width="1"/&gt;</description>
			<pubDate>Mon, 13 Jul 2009 19:38:16 -0400</pubDate>

		<feedburner:origLink>http://www.sidewalksoffox.com/blog/7-jquery-plugins-you-should-use-on-every-website</feedburner:origLink></item>

	
		<item>

			<title>Fever - My New Favorite RSS Reader</title>
			<link>http://feeds.sidewalksoffox.com/~r/sidewalksoffox/~3/GR3hPb5F-cU/fever-my-new-favorite-rss-reader</link>
			<guid isPermaLink="false">http://www.sidewalksoffox.com/blog/fever-my-new-favorite-rss-reader</guid>

			<description>&lt;p&gt;I was reading through my RSS feeds a few weeks ago and I came across a few posts referencing &lt;a class="" href="http://www.shauninman.com/blog"&gt;Shaun Inman&lt;/a&gt;'s &lt;a class="" href="http://feedafever.com/"&gt;Fever&lt;/a&gt; app. I use google reader, but I often try alternatives. &lt;a class="" href="http://www.newsgator.com/individuals/netnewswire/default.aspx"&gt;NetNewsWire&lt;/a&gt; is very powerful and &lt;a class="" href="http://www.acrylicapps.com/times/"&gt;Times&lt;/a&gt; looks clean, but neither of them worked for me as well as Google Reader. I decided to take the chance on fever and I haven't looked back since. &lt;/p&gt;					&lt;p&gt;Fever allows you to set feeds as "sparks." A spark is a feed that you do not actually read every post for, but it seeds the list of "Hot" posts. Any hyperlinks within a spark gets tracked and added to the links in your normal subscriptions. The pages that are linked to the most bubble up to the top of the "Hot" list. This means that all the misc feeds that would occasionally have great posts have a proper place now. I don't have to filter through posts on my own, they naturally make their way to the top. You can also do some fun stuff like subscribing to the "popular" feed for delicious keywords of your choosing, and mark them as sparks to catch what people are bookmarking as well as blogging about.&lt;/p&gt;&lt;p&gt;&lt;img  alt="Fever Screenshot" title="Fever Screenshot" style="border: 0px solid #d0d0d0; width: 821px;" src="http://www.sidewalksoffox.com/images/content/feverscreenshot.png"&gt;&lt;/p&gt;&lt;p&gt;The interface is really slick. It hides item counts by default (google reader was always 1000+ anyway). The iPhone interface works really well (better than google reader, which occasionally freezes up and resets).&lt;/p&gt;&lt;p&gt;My only complaint is that there is no "Share" feature. You can save items, but you can't generate a feed of items to share with friends. As a solution, I decided to start using my Tumblr account (&lt;a href="http://michaelfox.tumblr.com"&gt;http://michaelfox.tumblr.com&lt;/a&gt;) for sharing items. All of my activity is on FriendFeed (&lt;a href="http://friendfeed.com/michaelfox"&gt;http://friendfeed.com/michaelfox&lt;/a&gt;), but I feel like that is too much... I want a way to share only items that I think others might find interesting. &lt;/p&gt;&lt;p&gt;If you are interested in what I find, you can subscribe to &lt;a href="http://michaelfox.tumblr.com"&gt;my tumblr mini-blog&lt;/a&gt; at &lt;a href="http://michaelfox.tumblr.com/rss"&gt;http://michaelfox.tumblr.com/rss&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/sidewalksoffox/~4/GR3hPb5F-cU" height="1" width="1"/&gt;</description>
			<pubDate>Sat, 11 Jul 2009 19:46:58 -0400</pubDate>

		<feedburner:origLink>http://www.sidewalksoffox.com/blog/fever-my-new-favorite-rss-reader</feedburner:origLink></item>

	
</channel></rss>
