<?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>Drew Jones - Freelance Website Designer in Fleet, Hampshire, GU51 &#187; Design</title>
	<atom:link href="http://andij.com/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://andij.com</link>
	<description>website design and delivery</description>
	<lastBuildDate>Mon, 29 Aug 2011 11:04:12 +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>Creating Bootstrap, for WordPress &#8211; Part 1</title>
		<link>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1</link>
		<comments>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1#comments</comments>
		<pubDate>Sat, 27 Aug 2011 12:31:00 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[live blog]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://andij.com/?p=576</guid>
		<description><![CDATA[So here&#8217;s what happened. Downloaded WordPress 3.2.1 from http://wordpress.org/download/ and extracted this in /Users/andij/Projects/wp-bootstrap/httpdocs/ Gave it a url of wp-bootstrap.com (set 127.0.0.1 wp-bootstrap.com in my hosts file and then setup the vhost accordingly) as this url will be the final &#8230; <a href="http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s what happened.</p>
<ul>
<li>Downloaded WordPress 3.2.1 from <a href="http://wordpress.org/download/">http://wordpress.org/download/</a> and extracted this in /Users/andij/Projects/wp-bootstrap/httpdocs/</li>
<li>Gave it a url of wp-bootstrap.com (set 127.0.0.1 wp-bootstrap.com in my hosts file and then setup the vhost accordingly) as this url will be the final destination of the sample theme.</li>
<li>Created a new database in mySQL called wp-bootstrap.</li>
<li>Visited my new local development environment of wp-bootstrap.com and followed the config steps.  All is well : )</li>
<li>Copied the &#8216;twentyeleven&#8217; theme, renamed it as &#8216;bootstrap&#8217; then switched to it.</li>
<li>Took a look at <a href="http://wordpress.org/extend/themes/upload/">http://wordpress.org/extend/themes/upload/</a> to see what&#8217;s involved in creating a proper WordPress theme.</li>
<li>Here <a href="http://codex.wordpress.org/Theme_Unit_Test">http://codex.wordpress.org/Theme_Unit_Test</a> there&#8217;s a list of things to do to setup the blog to enable comprehensive testing.</li>
</ul>
<p>After importing the test-data.xml and adjusting the WordPress settings accordingly including the the Long and Short menus I decided to add an html comment to the top of each of the php files in the bootstrap theme <!--filename.php-->.  I did this to make it a little easier to pinpoint which file to edit from viewing the source. In Firebug. (Select the HTML menu flyout and choose &#8216;Show Comments&#8217;)</p>
<p>Add the bootstrap hotlink to the hosted stylesheet:<br />
<code>link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap-1.1.1.min.css"</code></p>
<h4>Starting point</h4>
<p>For now, I&#8217;m going to leave the twentyeleven.css in place give me a helping hand <em>(kinda like the feeling of walking hand in hand through a park in the autumn with a new love)</em>.  I will however remove the reset css from the top of this file.</p>
<p><strong>I will start at the top of the homepage and see what I fancy changing first.</strong></p>
<p>Taking the menu from underneath the banner and placing it at the top and inheriting the bootstrap styles seems to be a good starting point.</p>
<p>Moving the search into the topbar which meant removing some default twentyeleven functionality which changed the position of the search if there&#8217;s the Display Text enabled or not.</p>
<p>Including #masthead from the docs.css from Bootstrap to emulate the same design made the look of the entire header and nav pretty sweet.</p>
<p>If you&#8217;re looking at this blog at the end of August 2011 then this is likely to be what you&#8217;re seeing right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bootstrap, from Twitter for WordPress</title>
		<link>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress</link>
		<comments>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress#comments</comments>
		<pubDate>Mon, 22 Aug 2011 22:17:45 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andij.com/?p=546</guid>
		<description><![CDATA[Many times I&#8217;ve attempted to stream-line my development processes in a variety of different ways, using 960gs, Eric Mayer&#8217;s reset.css, HTML5 Boilerplate, to mention only a few. One of my favourite time-savers is to create an &#8216;interface template&#8217; this template &#8230; <a href="http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many times I&#8217;ve attempted to stream-line my development processes in a variety of different ways, using <a href="http://960.gs/">960gs</a>, <a href="http://meyerweb.com/eric/tools/css/reset/">Eric Mayer&#8217;s reset.css</a>, <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a>, to mention only a few.  One of my favourite time-savers is to create an &#8216;interface template&#8217; this template usually takes the form of a single page with every UI element that I&#8217;m likely to need to build the website. This helps to ensure that all components &#8216;play nice&#8217; with each other.</p>
<p>During this process I often find myself using the same markup with the same class names, for example my pagination nearly always ends up exactly the same HTML and CSS with different styles.  After a while I noticed a number of tricks and techniques were also being repeated.  This included CSS to style buttons exactly the same if the markup used was an anchor, button or input.  Then a number of styles to make the button appear disabled, negative, positive and neutral, then I&#8217;d usually include classes to make them large, medium and small.</p>
<p>Think in your mind that dreamy type of music to set the scene…. </p>
<blockquote><p>&#8220;Wouldn&#8217;t it be great if these techniques were available to implement at the beginning of a project with a way of modifying them to suit the design of the website I&#8217;m building them for.&#8221;</p></blockquote>
<p>While this is still a distant &#8220;I may get round to doing something one day&#8221; thought.  Along comes <a href="http://twitter.github.com/bootstrap/">Bootstrap from Twitter</a>.  A set of tools put together by <a href="http://twitter.com/#!/mdo">@mdo</a> and <a href="http://twitter.com/#!/fat">@fat</a> (from Twitter) which takes this concept by the short and curlies and provides a full set of amazingness, especially if the things I describe above are familiar to you.</p>
<p>A grid system, typography, lists, tables, forms, buttons, tabs, pagination, page messages, modals, tool-tips, popovers are all included, which is so amazingly comprehensive I am overwhelmed!</p>
<p>Wait, there&#8217;s more! &#8216;Really?&#8217; I hear you say. No, there&#8217;s actually <a href="http://lesscss.org/">Less</a>.  Combining all this Bootstrap awesome with the power of Less is nothing short of genius.  It would have been great without it but so so so much better as part of the deployment. You can get really funky with mixins and all that jazz.</p>
<p>As you can see, my blog is a bit of a shambles, with no styling of any note.  It&#8217;s all because I like to tinker with the source code of my themes. I enjoy dipping into the world of WordPress every now and then as it feels more of a hobby than the java that I&#8217;m exposed to on a daily basis.</p>
<p><strong>My intention is to implement Bootstrap from Twitter into a WordPress theme as it simply feels like the right thing to do</strong>, then make it available for download.  Watch this space…  <a href="http://andij.com/contact/">Please get in contact</a> (or comment on this post) if you have the same intentions and would like to help out and keep up the motivation to get something released pretty soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Bootstrap for WordPress</title>
		<link>http://andij.com/2011/08/20/bootstrap-for-wordpress</link>
		<comments>http://andij.com/2011/08/20/bootstrap-for-wordpress#comments</comments>
		<pubDate>Sat, 20 Aug 2011 07:44:26 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andij.com/?p=522</guid>
		<description><![CDATA[With the recent release of Bootstrap from Twitter I thought it could be an opportunity for me to release a WordPress plugin, so I requested a plugin at WordPress.org and I think I made a bit of a booboo. Simply &#8230; <a href="http://andij.com/2011/08/20/bootstrap-for-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With the recent release of <a href="http://twitter.github.com/bootstrap/">Bootstrap from Twitter</a> I thought it could be an opportunity for me to release a WordPress plugin, so I requested a plugin at WordPress.org and I think I made a bit of a booboo.  Simply sending a request for a plugin does not immediately give you a place to post your intentions for the plugin.</p>
<p>So I&#8217;ll get my shizzle out and create my desired implementation of Bootstrap into my WordPress theme and then and only then will I request it has a place in the themes section on wordpress.org.</p>
<p>As a first attempt to understand Bootstrap for Twitter I simply bolted the hotlink css into my existing theme and hey-presto, a new look website! -sweet-</p>
<h3>See full post &#8211; <a href="http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress" title="Bootstrap from Twitter for WordPress">Bootstrap from Twitter for WordPress</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2011/08/20/bootstrap-for-wordpress/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t panic!</title>
		<link>http://andij.com/2010/11/23/dont-panic</link>
		<comments>http://andij.com/2010/11/23/dont-panic#comments</comments>
		<pubDate>Tue, 23 Nov 2010 16:36:45 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://andij.com/?p=510</guid>
		<description><![CDATA[My website will not always look like this! I&#8217;m currently knee deep into constructing and developing my WordPress theme in HTML5, CSS3 spiced up with a bunch of @media queries. As I described in my previous post, I&#8217;m experimenting with &#8230; <a href="http://andij.com/2010/11/23/dont-panic">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3> My website will not always look like this!</h3>
<p>I&#8217;m currently knee deep into constructing and developing my WordPress theme in HTML5, CSS3 spiced up with a bunch of <code>@media</code> queries.</p>
<p>As I described in my previous post, I&#8217;m experimenting with a number of new technologies.  I have started to build this framework for a WordPress theme which will showcase the power of CSS3 <code>@media</code> queries.  So, while you&#8217;re here, scale your browser to see the different <code>@media</code> queries in action, and why not take a peek using your smartphone, or if you have one, your iPad.  When you&#8217;re there, give it a twist and see what it looks like in portrait and landscape.</p>
<p>Funky EH!  Right, I&#8217;m off to do a little more coding before going to visit my nephew, who&#8217;s celebrating his first birthday.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2010/11/23/dont-panic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimenting – mwaaa haaha</title>
		<link>http://andij.com/2010/11/11/experimenting-with-latest-web-tech</link>
		<comments>http://andij.com/2010/11/11/experimenting-with-latest-web-tech#comments</comments>
		<pubDate>Thu, 11 Nov 2010 16:28:35 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>

		<guid isPermaLink="false">http://andij.com/?p=499</guid>
		<description><![CDATA[Recently I&#8217;ve taken to thinking along the lines of many other web designers and developers who are embracing the new technologies. Ranging from the funkiest mobile devices and latest browser technologies. Using a raft of the latest tech plenty of &#8230; <a href="http://andij.com/2010/11/11/experimenting-with-latest-web-tech">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve taken to thinking along the lines of many other web designers and developers who are embracing the new technologies.  Ranging from the funkiest mobile devices and latest browser technologies.</p>
<p>Using a raft of the latest tech plenty of testing and experimentation has been creeping it&#8217;s way into my daily routine.  Armed with a laptop with two external screens, a couple of &#8216;standard (single screen)&#8217; laptops and PCs accompanied with a small handful of smartphones and a tablet:</p>
<ul>
<li>Lenovo T500 &#8211; 1680&#215;1050 &#8211; Windows 7
<ul>
<li>Dell P2210H 1080&#215;1920 (portrait)</li>
<li>Dell P2210H 1920&#215;1080 (landscape)</li>
</ul>
</li>
<li>Toshiba Tecra &#8211; 1024&#215;768 &#8211; Ubuntu 10.04</li>
<li>Dell Optiplex GX520 &#8211; 1280&#215;1024 &#8211; Windows XP</li>
<li>Apple iPad &#8211; 1024&#215;768 &#8211; iOS 3.2.2</li>
<li>Apple iPhone 3G &#8211; 320&#215;480 &#8211; iOS 3.1.3</li>
<li>HTC Desire HD &#8211; 480&#215;800 &#8211; Andriod 2.2</li>
</ul>
<p>These tools of the trade allow me to see my projects on many different devices, so, as a result I&#8217;m going to be using this blog as a testing area for a ground-up build of a wordpress blog incorporating a bunch of ideas.  Many of which may fail, so if it&#8217;s spannered at any time you&#8217;ll know why.</p>
<p>So, first up is <a href="http://elliotjaystocks.com/">Elliot Jay Stocks</a>&#8216; <a href="http://starkerstheme.com/">Starkers WordPress theme</a>, this awesome bad-boy of a theme is right up my street as a web designer, it provides me with the bare-bones &#8216;naked&#8217; theme for me to apply a bespoke design from scratch.</p>
<p>Couple that with the baddass <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a> code, giving me access to the most top-notch tricks to get a full-on HTML5 website started off on the right foot.</p>
<p>Then&#8230;..  An even awesomer revelation!! <a href="http://aarontgrogg.com/">Aaron T. Grogg</a> has got his shizzle out and performed an amalgamation of Starkers and Boilerplate in the form of a WordPress theme called <a href="http://wordpress.org/extend/themes/boilerplate">Boilerplate: Starkers WordPress theme!</a>.</p>
<p>I can hardly believe my eyes..  So much help and assistance out there on the interweb these days..  &#8211; love you guys -</p>
<p>THEN&#8230;.  (Yup, it&#8217;s not over yet&#8230;)  I scoot on over to <a href="http://lessframework.com/">Less Framework 3</a> and shave the CSS from here with all it&#8217;s <code>@media</code> queries.  Providing me with a foundation for tailoring the theme to a number of different width layouts.  I strip out the reset stuff as that exists in the Boilerplate theme by default.  Rock on over to <a href="http://codex.wordpress.org/Child_Themes">WordPress.org Child Themes</a> and use this info to create myself a child theme of Boilerplate.</p>
<p>As a result, I end up with this wonderful baseline of a theme, all ready and waiting for me to apply my limited knowledge to.  I&#8217;m certain that I&#8217;ll learn plenty from this process and expect to be able to apply this new found wealth to my lucky customers.</p>
<p>So, far, so good..  I&#8217;ll now evolve this theme steadily as I learn how to utilise all this wonderment.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2010/11/11/experimenting-with-latest-web-tech/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile website demo</title>
		<link>http://andij.com/2010/07/22/mobile-website-demo</link>
		<comments>http://andij.com/2010/07/22/mobile-website-demo#comments</comments>
		<pubDate>Thu, 22 Jul 2010 16:41:24 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>

		<guid isPermaLink="false">http://andij.com/?p=473</guid>
		<description><![CDATA[I&#8217;m putting together a mobile website that will be used to demo some solutions to Hybris. To make it cool(harder) to get to, scan this QR-Code using your mobile phone QR Reader to visit the demo website: This demo may &#8230; <a href="http://andij.com/2010/07/22/mobile-website-demo">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m putting together a mobile website that will be used to demo some solutions to Hybris.</p>
<p>To make it cool(harder) to get to, scan this QR-Code using your mobile phone QR Reader to visit the demo website:</p>
<p><a href="http://www.mobile-barcodes.com/"><img src="http://www.mobile-barcodes.com/qr-code-generator/generator.php?str=http://andij.com/hybris-mobile&#038;barcode=url" alt="QR Code" style="border:none;" /></a></p>
<p>This demo may well be short lived, so I can&#8217;t guarantee that it&#8217;ll be there in the future, but for now, give it a go.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2010/07/22/mobile-website-demo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sfImageTransform &#8211; logo</title>
		<link>http://andij.com/2008/09/08/sfimagetransform-logo</link>
		<comments>http://andij.com/2008/09/08/sfimagetransform-logo#comments</comments>
		<pubDate>Mon, 08 Sep 2008 12:35:23 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[bathcamp08]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[stunami]]></category>

		<guid isPermaLink="false">http://andij.com/?p=52</guid>
		<description><![CDATA[I&#8217;ve put together this morning a logo to suit sfImageTransform, Stu Lowes Symfony plugin. I took the idea of &#8220;transform&#8221; and thought of a new butterfly emerging from it&#8217;s chrysalis, seeing as my mum is the Publicity Officer of the &#8230; <a href="http://andij.com/2008/09/08/sfimagetransform-logo">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put together this morning a logo to suit sfImageTransform, <a href="http://twitter.com/stunami">Stu Lowes</a> Symfony plugin.</p>
<p><a href="http://andij.com/wp-content/uploads/2008/09/sfimagetransform_logo.png"><img class="size-full wp-image-53 alignnone" title="sfimagetransform_logo" src="http://andij.com/wp-content/uploads/2008/09/sfimagetransform_logo.png" alt="sfImageTransform logo" /></a></p>
<p>I took the idea of &#8220;transform&#8221; and thought of a new butterfly emerging from it&#8217;s chrysalis, seeing as my mum is the Publicity Officer of the <a href="http://www.hantsiow-butterflies.org.uk/">Hampshire and Isle of Wight Butterfly Conservation</a> the idea sprung to mind. <span id="more-52"></span> Having seen the bathCamp logo on the <a href="http://blog.bathcamp.org/2008/07/23/new-bath-style-logo-for-bathcamp/">bathCamp Blog</a></p>
<div class="wp-caption alignnone" style="width: 310px"><img title="bathCamp Logo" src="http://bathcamp.files.wordpress.com/2008/07/bathcamp-logo.png?w=300&amp;h=61" alt="bathCamp Logo" width="300" height="61" /><p class="wp-caption-text">bathCamp Logo</p></div>
<p>I thought it fitting to use some of the logo&#8217;s elements and colours, it fitted perfectly so now let&#8217;s hope that Stu likes it!</p>
<p>Both Stu and I are going to <a href="http://bathcamp.org/bc/">bathCamp</a> this weekend to enjoy the company of the cool geeks in the south-west.  It&#8217;s our first time doing this kid of thing, so it&#8217;s with open eyes and an open mind that we take with us to this event.  We&#8217;re both looking forward to it and hope that our talk is going to be of use to some.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/09/08/sfimagetransform-logo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated banners</title>
		<link>http://andij.com/2008/05/28/animated-banners</link>
		<comments>http://andij.com/2008/05/28/animated-banners#comments</comments>
		<pubDate>Wed, 28 May 2008 13:42:15 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[animated banners]]></category>

		<guid isPermaLink="false">http://andij.com/?p=387</guid>
		<description><![CDATA[Here are some animated banners I created a while back..  Sometime in 2004.]]></description>
			<content:encoded><![CDATA[<p>Here are some animated banners I created a while back..  Sometime in 2004.</p>
<p><img class="alignnone size-full wp-image-392" title="Smart Track" src="http://andij.com/wp-content/uploads/2009/05/smarttrack01.gif" alt="Smart Track" width="468" height="60" /></p>
<p><img class="size-full wp-image-389" title="CV Poster 1" src="http://andij.com/wp-content/uploads/2009/05/cvposter01.gif" alt="CV Poster 1" width="468" height="60" /></p>
<p><img class="size-full wp-image-389" title="CV Poster 2" src="http://andij.com/wp-content/uploads/2009/05/cvposter02.gif" alt="CV Poster 2" width="468" height="60" /></p>
<p><img class="size-full wp-image-393" title="Team Phoenix" src="http://andij.com/wp-content/uploads/2009/05/teamphoenix01.gif" alt="Team Phoenix" width="468" height="60" /></p>
<p><img class="alignnone size-full wp-image-391" title="I Want That Book" src="http://andij.com/wp-content/uploads/2009/05/iwtb01.gif" alt="I Want That Book" width="468" height="60" /></p>
<p><img class="alignnone size-full wp-image-388" title="All Weather Horse Racing" src="http://andij.com/wp-content/uploads/2009/05/awhr01.gif" alt="All Weather Horse Racing" width="468" height="60" /></p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/05/28/animated-banners/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

