<?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>Andrew McLagan travel photography</title>
	<atom:link href="http://www.andrewmclagan.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andrewmclagan.com</link>
	<description>images and stories from the far reaches</description>
	<lastBuildDate>Sat, 17 Dec 2011 05:47:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>How to determine wordpress version in a plugin or code</title>
		<link>http://www.andrewmclagan.com/how-to-determine-wordpress-version-in-a-plugin-or-code?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-determine-wordpress-version-in-a-plugin-or-code</link>
		<comments>http://www.andrewmclagan.com/how-to-determine-wordpress-version-in-a-plugin-or-code#comments</comments>
		<pubDate>Sat, 17 Dec 2011 05:44:57 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=493</guid>
		<description><![CDATA[Often when developing plugins or scripts that need to support new features and older versions of wordpress it is neccessery to determine the currently running version of a wordpress install. There are a number of ways to do this, although i believe the solution that i offer up is the best to future proof your [...]]]></description>
			<content:encoded><![CDATA[<p>Often when developing plugins or scripts that need to support new features and older versions of wordpress it is neccessery to determine the currently running version of a wordpress install. There are a number of ways to do this, although i believe the solution that i offer up is the best to future proof your code. Often developers will use complex string position or regular expression manipulation to determine version numbers. This is not nessacery, we simply need to write a function to covert the  $wp_version; variable from a string to a floating point number ( a decimal number ) then we are able to do regular PHP value comparison:</p>
<h4>Old way</h4>
<p>

<!-- Crayon Syntax Highlighter v1.6.3 -->
<style type="text/css">#crayon-4f45736d3a9c0 .crayon-plain { font-size: 12px !important; line-height: 16px !important;}</style>
		<div id="crayon-4f45736d3a9c0" class="crayon-syntax crayon-theme-classic" crayon-os="pc" settings=" scroll-mouseover" style=" margin-top: 12px; margin-bottom: 12px; float: none; clear: both;">
		
			<div class="crayon-toolbar" settings=" mouseover overlay hide delay">
			<div class="crayon-tools"><a href="#" class="crayon-nums-button crayon-button" title="Toggle Line Numbers" onclick="toggle_nums('crayon-4f45736d3a9c0'); return false;"></a><a href="#" class="crayon-copy-button crayon-button" title="Copy Plain Code" onclick="copy_plain('crayon-4f45736d3a9c0'); return false;"></a><a href="#" class="crayon-popup-button crayon-button" title="Open Code in Window" onclick="return false;"></a><a href="#" class="crayon-plain-button crayon-button" title="Toggle Plain Code" onclick="toggle_plain('crayon-4f45736d3a9c0'); return false;"></a><span class="crayon-language">PHP</span><a href="#" class="crayon-nums-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-copy-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-popup-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-plain-button crayon-button crayon-pressed crayon-invisible"></a></div>
			</div><div><textarea class="crayon-plain" settings="dblclick" readonly  wrap="off" style="-moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4;"><pre><code>// Check version.</code></pre>
<pre><code>global $wp_version;</code></pre>
<pre><code>if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false || strpos($wp_version, '2.9') !== false ) {  </code><span class="Apple-style-span" style="font-family: monospace;"> // do stuff </span><span class="Apple-style-span" style="font-family: monospace;">} elseif ( strpos($wp_version, '2.5') !== false || strpos($wp_version, '2.6') !== false ) { // do stuff  </span><span class="Apple-style-span" style="font-family: monospace;">} elseif ( strpos($wp_version, '2.3') !== false ) { // do stuff } elseif ( strpos($wp_version, '2.2') !== false || strpos($wp_version, '2.1') !== false || strpos($wp_version, '2.0') !== false ) { // do stuff } else { // do stuff }</span></pre></textarea></div><div class="crayon-info"></div>
			<div class="crayon-main" style="">
				<table class="crayon-table" cellpadding="0" cellspacing="0">
					<tr class="crayon-row">
				<td class="crayon-nums " settings="show">
					<div class="crayon-nums-content"><div class="crayon-num">1</div><div class="crayon-num crayon-striped-num">2</div><div class="crayon-num">3</div></div>
				</td>
						<td class="crayon-code"><div class="crayon-pre"><div class="crayon-line" id="line-1"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="o ">&lt;</span><span class="cn ">code</span><span class="o ">&gt;</span><span class="c ">// Check version.&lt;/code&gt;&lt;/pre&gt;</span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-2"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="o ">&lt;</span><span class="cn ">code</span><span class="o ">&gt;</span><span class="m ">global</span><span class="h "> </span><span class="v ">$wp_version</span><span class="sy ">;</span><span class="o ">&lt;</span><span class="o ">/</span><span class="cn ">code</span><span class="o ">&gt;</span><span class="o ">&lt;</span><span class="o ">/</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-3"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="o ">&lt;</span><span class="cn ">code</span><span class="o ">&gt;</span><span class="st ">if</span><span class="h "> </span><span class="sy ">(</span><span class="h "> </span><span class="e ">strpos</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="h "> </span><span class="s ">'2.7'</span><span class="sy ">)</span><span class="h "> </span><span class="o ">!==</span><span class="h "> </span><span class="t ">false</span><span class="h "> </span><span class="o ">||</span><span class="h "> </span><span class="e ">strpos</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="h "> </span><span class="s ">'2.8'</span><span class="sy ">)</span><span class="h "> </span><span class="o ">!==</span><span class="h "> </span><span class="t ">false</span><span class="h "> </span><span class="o ">||</span><span class="h "> </span><span class="e ">strpos</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="h "> </span><span class="s ">'2.9'</span><span class="sy ">)</span><span class="h "> </span><span class="o ">!==</span><span class="h "> </span><span class="t ">false</span><span class="h "> </span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="sy "></span><span class="sy "></span><span class="h "> </span><span class="o ">&lt;</span><span class="o ">/</span><span class="cn ">code</span><span class="o ">&gt;</span><span class="o ">&lt;</span><span class="cn ">span</span><span class="h "> </span><span class="t ">class</span><span class="o ">=</span><span class="s ">"Apple-style-span"</span><span class="h "> </span><span class="cn ">style</span><span class="o ">=</span><span class="s ">"font-family: monospace;"</span><span class="o ">&gt;</span><span class="h "> </span><span class="c ">// do stuff &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: monospace;"&gt;} elseif ( strpos($wp_version, '2.5') !== false || strpos($wp_version, '2.6') !== false ) { // do stuff  &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: monospace;"&gt;} elseif ( strpos($wp_version, '2.3') !== false ) { // do stuff } elseif ( strpos($wp_version, '2.2') !== false || strpos($wp_version, '2.1') !== false || strpos($wp_version, '2.0') !== false ) { // do stuff } else { // do stuff }&lt;/span&gt;&lt;/pre&gt;</span><span class="h "></span></div></div></td>
					</tr>
				</table>
			</div>
		</div>
<!-- [Parse Time: 0.0000 seconds] [Format Time: 0.0053 seconds] -->

</p>
<h4>New way</h4>
<p>

<!-- Crayon Syntax Highlighter v1.6.3 -->
<style type="text/css">#crayon-4f45736d3aa03 .crayon-plain { font-size: 12px !important; line-height: 16px !important;}</style>
		<div id="crayon-4f45736d3aa03" class="crayon-syntax crayon-theme-classic" crayon-os="pc" settings=" scroll-mouseover" style=" margin-top: 12px; margin-bottom: 12px; float: none; clear: both;">
		
			<div class="crayon-toolbar" settings=" mouseover overlay hide delay">
			<div class="crayon-tools"><a href="#" class="crayon-nums-button crayon-button" title="Toggle Line Numbers" onclick="toggle_nums('crayon-4f45736d3aa03'); return false;"></a><a href="#" class="crayon-copy-button crayon-button" title="Copy Plain Code" onclick="copy_plain('crayon-4f45736d3aa03'); return false;"></a><a href="#" class="crayon-popup-button crayon-button" title="Open Code in Window" onclick="return false;"></a><a href="#" class="crayon-plain-button crayon-button" title="Toggle Plain Code" onclick="toggle_plain('crayon-4f45736d3aa03'); return false;"></a><span class="crayon-language">PHP</span><a href="#" class="crayon-nums-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-copy-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-popup-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-plain-button crayon-button crayon-pressed crayon-invisible"></a></div>
			</div><div><textarea class="crayon-plain" settings="dblclick" readonly  wrap="off" style="-moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4;"><pre>/**
 * @method       wordpress_version
 * @description  returns the current wordpress version as a float number
 */
function wordpress_version() {

    global $wp_version;

    if( strpos($wp_version, '.') &lt; strpos($wp_version,',') ) { 

        $wp_version = str_replace('.','',$wp_version);
        $wp_version = strtr($wp_version,',','.');
    }
    else { 

        $wp_version = str_replace(',','',$wp_version);
    } 

    return (float)$wp_version;
}</pre>
<pre>if( wordpress_version() &gt; 3 )
   // do stuff
if( wordpress_version() &gt; 3.2 )
  // do stuff
if( wordpress_version() &lt; 3 )
  // do stuff</pre>
<pre></textarea></div><div class="crayon-info"></div>
			<div class="crayon-main" style="">
				<table class="crayon-table" cellpadding="0" cellspacing="0">
					<tr class="crayon-row">
				<td class="crayon-nums " settings="show">
					<div class="crayon-nums-content"><div class="crayon-num">1</div><div class="crayon-num crayon-striped-num">2</div><div class="crayon-num">3</div><div class="crayon-num crayon-striped-num">4</div><div class="crayon-num">5</div><div class="crayon-num crayon-striped-num">6</div><div class="crayon-num">7</div><div class="crayon-num crayon-striped-num">8</div><div class="crayon-num">9</div><div class="crayon-num crayon-striped-num">10</div><div class="crayon-num">11</div><div class="crayon-num crayon-striped-num">12</div><div class="crayon-num">13</div><div class="crayon-num crayon-striped-num">14</div><div class="crayon-num">15</div><div class="crayon-num crayon-striped-num">16</div><div class="crayon-num">17</div><div class="crayon-num crayon-striped-num">18</div><div class="crayon-num">19</div><div class="crayon-num crayon-striped-num">20</div><div class="crayon-num">21</div><div class="crayon-num crayon-striped-num">22</div><div class="crayon-num">23</div><div class="crayon-num crayon-striped-num">24</div><div class="crayon-num">25</div><div class="crayon-num crayon-striped-num">26</div><div class="crayon-num">27</div></div>
				</td>
						<td class="crayon-code"><div class="crayon-pre"><div class="crayon-line" id="line-1"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="c ">/**</span></div><div class="crayon-line crayon-striped-line" id="line-2"><span class="c "> * @method       wordpress_version</span></div><div class="crayon-line" id="line-3"><span class="c "> * @description  returns the current wordpress version as a float number</span></div><div class="crayon-line crayon-striped-line" id="line-4"><span class="c "> */</span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-5"><span class="t ">function</span><span class="h "> </span><span class="e ">wordpress_version</span><span class="sy ">(</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-6"><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-7"><span class="h ">    </span><span class="m ">global</span><span class="h "> </span><span class="v ">$wp_version</span><span class="sy ">;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-8"><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-9"><span class="h ">    </span><span class="st ">if</span><span class="sy ">(</span><span class="h "> </span><span class="e ">strpos</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="h "> </span><span class="s ">'.'</span><span class="sy ">)</span><span class="h "> </span><span class="o ">&amp;</span><span class="cn ">lt</span><span class="sy ">;</span><span class="h "> </span><span class="e ">strpos</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="s ">','</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "> </span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-10"><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-11"><span class="h ">        </span><span class="v ">$wp_version</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">str_replace</span><span class="sy ">(</span><span class="s ">'.'</span><span class="sy ">,</span><span class="s ">''</span><span class="sy ">,</span><span class="v ">$wp_version</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-12"><span class="h ">        </span><span class="v ">$wp_version</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">strtr</span><span class="sy ">(</span><span class="v ">$wp_version</span><span class="sy ">,</span><span class="s ">','</span><span class="sy ">,</span><span class="s ">'.'</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-13"><span class="h ">    </span><span class="sy ">}</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-14"><span class="h ">    </span><span class="st ">else</span><span class="h "> </span><span class="sy ">{</span><span class="h "> </span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-15"><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-16"><span class="h ">        </span><span class="v ">$wp_version</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">str_replace</span><span class="sy ">(</span><span class="s ">','</span><span class="sy ">,</span><span class="s ">''</span><span class="sy ">,</span><span class="v ">$wp_version</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-17"><span class="h ">    </span><span class="sy ">}</span><span class="h "> </span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-18"><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-19"><span class="h ">    </span><span class="k">return</span><span class="h "> </span><span class="sy ">(</span><span class="t ">float</span><span class="sy ">)</span><span class="v ">$wp_version</span><span class="sy ">;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-20"><span class="sy ">}</span><span class="o ">&lt;</span><span class="o ">/</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="h "></span><span class="h "></span></div><div class="crayon-line" id="line-21"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="st ">if</span><span class="sy ">(</span><span class="h "> </span><span class="e ">wordpress_version</span><span class="sy ">(</span><span class="sy ">)</span><span class="h "> </span><span class="o ">&amp;</span><span class="cn ">gt</span><span class="sy ">;</span><span class="h "> </span><span class="h "></span>3<span class="h "> </span><span class="sy ">)</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-22"><span class="h ">   </span><span class="c ">// do stuff</span><span class="h "></span></div><div class="crayon-line" id="line-23"><span class="st ">if</span><span class="sy ">(</span><span class="h "> </span><span class="e ">wordpress_version</span><span class="sy ">(</span><span class="sy ">)</span><span class="h "> </span><span class="o ">&amp;</span><span class="cn ">gt</span><span class="sy ">;</span><span class="h "> </span><span class="h "></span>3<span class="sy ">.</span><span class="h "></span>2<span class="h "> </span><span class="sy ">)</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-24"><span class="h ">  </span><span class="c ">// do stuff</span><span class="h "></span></div><div class="crayon-line" id="line-25"><span class="st ">if</span><span class="sy ">(</span><span class="h "> </span><span class="e ">wordpress_version</span><span class="sy ">(</span><span class="sy ">)</span><span class="h "> </span><span class="o ">&amp;</span><span class="cn ">lt</span><span class="sy ">;</span><span class="h "> </span><span class="h "></span>3<span class="h "> </span><span class="sy ">)</span><span class="h "></span><span class="h "></span></div><div class="crayon-line crayon-striped-line" id="line-26"><span class="h ">  </span><span class="c ">// do stuff&lt;/pre&gt;</span><span class="h "></span></div><div class="crayon-line" id="line-27"><span class="o ">&lt;</span><span class="cn ">pre</span><span class="o ">&gt;</span><span class="h "></span></div></div></td>
					</tr>
				</table>
			</div>
		</div>
<!-- [Parse Time: 0.0000 seconds] [Format Time: 0.0097 seconds] -->

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/how-to-determine-wordpress-version-in-a-plugin-or-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buzludzha, a cold wind from the east</title>
		<link>http://www.andrewmclagan.com/buzludzha-a-cold-wind-from-the-east?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=buzludzha-a-cold-wind-from-the-east</link>
		<comments>http://www.andrewmclagan.com/buzludzha-a-cold-wind-from-the-east#comments</comments>
		<pubDate>Mon, 13 Jun 2011 08:46:04 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Bulgaria]]></category>
		<category><![CDATA[Eastern Bloc]]></category>
		<category><![CDATA[Romania]]></category>
		<category><![CDATA[Soviet]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=462</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_7450.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>I sometimes wonder if there is a better way of things, a fairer way. A direction away from the consumption driven, egotistical and totally unsustainable path of capitalism. A place where the values of family, community and the environment take priority. The well being of the whole and not just the gifted few. Is this a Utopian [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_7450.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p><span>I sometimes wonder if there is a better way of things, a fairer way. A direction away from the consumption driven, egotistical and totally unsustainable path of capitalism. A place where the values of family, community and the environment take priority. The well being of the whole and not just the gifted few. Is this a Utopian Marxists dream? Only time holds the answers. Although i do believe it is within our grasp, if we let it slip we let the inherit problems of capitalism (poverty, greed, environmental and social destruction) take hold and capitalize. Some ideas just do not avail us.</span></p>
<p><span>Although I do not write today to talk politics, I want to relate to you an <span>experience</span> that I had in Bulgaria late 2009. I spent roughly one month traveling around the country and another month in a small hostel with some good friends that i met there. During my stay and our many visits to a nearby local tavern my friend and I heard a story about an old soviet ruin in the mountains nearby called <span><span><span>Buzludzha</span></span></span>. The story had me intrigued as to why i could find no further information in any guide books or for that matter on the Internet. I began to ask around the towns folk and was often given short abrupt answers at even the mention of the name. One old timer informed me that the soviet era was still the not so distant past for allot of Bulgarians and a past many would rather forget.</span></p>
<p><span>Despite this eventually we had loose directions marked on a map of the nearby mountains that would require what seemed like a couple hours bus ride,  some hitch hiking then a small hike to the location of the old soviet ruins of <span><span><span>Buzludzha</span></span></span>. So my friend and i set off with small packs filled with water, a map and not much else. By the time we made the easy hitch to the starting point of the trek it was late in the afternoon, even so we continued up the mountain.</span></p>
<p><span>The first sign of the ruins that we came <span>across</span> were two giant fists holding torches raised up in the air. They had the very distinct and somewhat crude artistic value that <span>pertains</span> to most soviet era monuments. A thick grey mist <span>surrounded</span> us deadening all sounds adding to the ominous and sad air of this forgotten place. We spent some time walking and climbing over and around the structure, in awe. Yet it was a mere shadow of what was to come&#8230;</span></p>
<p><span>Shivering, we made our way through the heavy grey mist without speaking a word to each other. Later I was to find out this very mountain was the scene of the culminating battle between Bulgarian rebels led by the <span>infamous</span> </span><a title="Hadji Dimitar" href="http://en.wikipedia.org/wiki/Hadji_Dimitar"><span><span><span><span>Hadji</span></span></span> <span><span><span>Dimitar</span></span></span></span></a> and <a title="Stefan Karadzha" href="http://en.wikipedia.org/wiki/Stefan_Karadzha"><span>Stefan <span><span><span>Karadzha</span></span></span></span></a> against the Turks in 1981. Many years after this the socialist movement in Bulgaria was also born in this location when party members gathered here in secret.</p>
<p><span>Continuing still up the mountain, the short <span>alpine</span> grass was laden with dew. My eyes had been almost wholly following my feet, my mind being <span><span><span>pre occupied</span></span></span> with other thoughts <span>until</span> i heard a sharp gasp from my friend. Looking up i saw something emerging out of the think fog off in the distance. The shadow of a large shape that can only be described as a UFO with a large tower disappearing into the whiteness above it.</span></p>
<p>She turned around, looking at me with a huge grin, whispering as not to disturb the silence &#8220;Its fucking huge!&#8221;</p>
<p>I crouched down framing this&#8230;. Thing&#8230; and took a shot.</p>
<p><a href="http://www.andrewmclagan.com/unidentified-soviet-object"><img class="alignnone" title="Buzludzha soviet building bulgariaa" src="http://andrewmclagan.com/pictures/IMG_7091.jpg" alt="Buzludzha soviet building bulgariaa" width="650" height="433" /></a></p>
<p><span>Filled with excitement and <span><span>surprise</span></span> we raced up the rest of the short slope we were <span><span>ascending</span></span> to the summit. We were greeted with the incredible and somewhat <span><span>ominous</span></span> scene that was <span><span><span>layed</span></span></span> out before us. We found <span><span>ourselves</span></span> almost underneath the huge structure as it rose above us, we were in some sort of parade ground or ceremonial area in front of the building. This place sent goosebumps running over my entire body&#8230;</span></p>
<p><span>Plastered on the outside of the building was patches of Nazi and Communistic graffiti. Along with some embossed <span><span>Cyrillic</span></span> lettering near the massive and heavily barred entrance doors that we were obviously unable to read. Following the <span><span>perimeter</span></span> of the building we eventually found a small hole on one side that someone had created to gain entrance. Lowering <span><span>ourselves</span></span> into the hole we found <span><span><span>ourself</span></span></span> in one of the underground levels of the building.</span></p>
<p><span>I switched my headlight on and was greeted with a vision of rubble  and decay. Everything from old shoes to crumbling pieces of the building itself lay scattered on the floor. Finding some stairs we crept up to the ground level that was above us. The past <span><span>opulence</span></span> of this place was very apparent.  Every surface  floor, walls and ceiling were covered in marble that glittered in the light from my headlamp, there were also tatters of red felt carpet that were visible here and there. The sheer size of this place was <span><span>mesmerizing</span></span>. We then entered what was obviously the main hall and interior of the <span><span>circular</span></span> structure. Before us stretched an <span><span>enormous</span></span> room filled with incredibly intricate and beautifully made tile mosaics that were in extreme sates of disrepair, many of the tiles scattered in heaps on the floor. The mosaics depicted soviet era political <span><span>effigy</span></span> such as portraits of Lenin and Starlin alongside murals of nuclear rocket and the like. Looking up one sees the immense vaulted <span><span>circular</span></span> dome <span><span>ceiling</span></span> with the soviet hammer and sickle set as the centre piece.</span></p>
<p><a href="http://www.andrewmclagan.com/hammer-and-sickle"><img class="alignnone" title="Hammer and sickle" src="http://andrewmclagan.com/pictures/IMG_7450.jpg" alt="Soviet Hammer and sickle" width="650" height="433" /></a></p>
<p><span>As it was far too late to be hitching back to town, and any buses had long since <span><span>finished</span></span> service for the day we decided to spend the fast approaching night here. It was not an easy decision to say the least, the idea of spending the night in this place sent shivers up my spine and <span><span>terrified</span></span> both my companion and myself&#8230; So we both spent a sleepless night huddled together and freezing in the lower levels of the building. <span><span>Listening</span></span> to the strange noises that <span><span>surrounded</span></span> us fully expecting some aliens to jump around the corner and take us away. <span><span><span>haha</span></span></span>. A night i will never forget&#8230;</span></p>
<p><a href="http://www.andrewmclagan.com/bowls-of-the-beast"><img class="alignnone" title="Bowls of the beast" src="http://andrewmclagan.com/pictures/IMG_7415.jpg" alt="Bowls of the beast" width="576" height="290" /></a></p>
<p><span>When what seemed like an endless night eventually broke, we were rewarded for our vigil by the most impressive of sunrises looking out through the widows of the &#8220;UFO&#8221; <span><span>across</span></span> the surrounding mountain peaks popping up like islands in a sea of clouds. Not as ill prepared as me my friend had brought some tea with her, although cold, sitting there in those windows sipping tea and watching the sun rise made it all worth it.</span></p>
<p><a href="http://www.andrewmclagan.com/approaching-light"><img class="alignnone" title="Island peaks at dawn" src="http://andrewmclagan.com/pictures/IIMG_7466.jpg" alt="Island peaks at dawn" width="650" height="433" /></a></p>
<p>If anyone has any further information on this place it would be great if you could leave a comment below. The <a href="http://en.wikipedia.org/wiki/Buzludzha"><span><span><span><span>Wikipedia</span></span></span> article</span></a> has very little information on the building and surrounding area.</p>
<p><a href="http://www.andrewmclagan.com/category/galleries/easternbloc">View more images from Bulgaria</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/buzludzha-a-cold-wind-from-the-east/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dirt artisan</title>
		<link>http://www.andrewmclagan.com/dirt-artisan?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dirt-artisan</link>
		<comments>http://www.andrewmclagan.com/dirt-artisan#comments</comments>
		<pubDate>Sat, 11 Jun 2011 13:38:02 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[The subcontinent]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=447</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_6166.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>Clay vessels used to carry and store water in homes.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_6166.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>Clay vessels used to carry and store water in homes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/dirt-artisan/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trade winds</title>
		<link>http://www.andrewmclagan.com/trade-winds?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=trade-winds</link>
		<comments>http://www.andrewmclagan.com/trade-winds#comments</comments>
		<pubDate>Sat, 11 Jun 2011 13:36:41 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[The subcontinent]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=445</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_6132.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>A man fishing in the holy Ganges river, Varanasi India.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_6132.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>A man fishing in the holy Ganges river, Varanasi India.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/trade-winds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>istanbul girl</title>
		<link>http://www.andrewmclagan.com/istanbul-girl?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=istanbul-girl</link>
		<comments>http://www.andrewmclagan.com/istanbul-girl#comments</comments>
		<pubDate>Sat, 11 Jun 2011 04:34:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[slide]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=443</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/slide/Untitled-1.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>istanbul]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/slide/Untitled-1.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>istanbul</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/istanbul-girl/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Shady Persian motorcycle deals</title>
		<link>http://www.andrewmclagan.com/shady-persian-motorcycle-deals?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shady-persian-motorcycle-deals</link>
		<comments>http://www.andrewmclagan.com/shady-persian-motorcycle-deals#comments</comments>
		<pubDate>Fri, 10 Jun 2011 09:57:27 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=431</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_4452.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>Late 2009 to early 2010 i spent 4 months or so riding a motorcycle around the indescribebly beautiful country of Iran. Despite what  image the media may portray, the people of Iran are some of the friendliest and most hospitibal i have encounterd in all my wanderings. During my stay in Iran I rarely found [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/pictures/IMG_4452.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>Late 2009 to early 2010 i spent 4 months or so riding a motorcycle around the indescribebly beautiful country of Iran. Despite what  image the media may portray, the people of Iran are some of the friendliest and most hospitibal i have encounterd in all my wanderings. During my stay in Iran I rarely found myself lodging at a hotel or hostel as i was constantly staying with locals who were so kind to offer. More then once i was approached on the street with offers of a place to stay in a family home. Seemingly i was an obvious (and rare) forigner. I soon came to learn just how engrained politness and hospitality is in Persian culture, they even have a word for it&#8230; <em>Ta</em>&#8216;<em>arof</em>!  Wikipedia&#8217;s definition:</p>
<p><strong><div class='et-box et-shadow'>
					<div class='et-box-content'></strong>T&#8217;aarof/ Tarof (Persian: تعارف) is a Persian form of civility emphasizing both self-deference and social rank. The term encompasses a range of social behaviours, from a man displaying etiquette by opening the door for a woman, to a group of colleagues standing on ceremony in front of a door that can permit the entry of only one at time, earnestly imploring the most senior to break the deadlock.<strong></div></div><br />
</strong></p>
<p>If only the rest of the world followed these simple rules as closely as Iranians seem to do so&#8230; Anyway im not here to ramble on about the politness of Persians! I want to relate to you the story of how i came to be riding a motorcycle around this country. read on!</p>
<p>Stepping off the Trans-asian express (an epic journey) in Tabriz, a city in northern Iran,  i found myself wandering around the train station like an elephant who happened to find himself at the bottom of the ocean all of a sudden, out of place to say the least. A sharp, cold mountain breeze greeted me as i exited the station and walked out into the city. Nothing made sense, the people stared, the street signs were all in the cursive Farsi script and there were people in militery uniforms everywhere. The trepidation wormed its way through my guts and turned into a sharp spike of adreniline. What was i doing here? Never before in all my adventures around this globe have i felt more out of place then then those first few hours.</p>
<p>Wandering aimlessly through the streets trying to find somewhere to spend the fast appraoching night was the only loose goal i hung onto. More then once I thought about abandoning all dignity and partaking in a concrete matress next to one of the homeless people on the streets. At least they had fires!</p>
<p>Some time during my meanderings i looked up and saw a young dude with a big smile walking towards me, he as looking directly at me. I did the stupid thing most people do in this situation, looked behind my self and found no one, thinking it can&#8217;t be me he is looking at&#8230;</p>
<p>&#8220;Hello my friend! What are you doing in my country?&#8221; he said through his broad grin.</p>
<p>Great i thought. Three hours in and im about to be abused by a crazy guy on the street. Why <span style="text-decoration: underline;">DID</span> i come here anyway?</p>
<p>&#8220;Ahhh&#8230; Thought i&#8217;d come check it out&#8230;&#8221; i mumbled back to him, unable to come up with something more elaborate. Simply because that was actually as good a reason as i had.</p>
<p>&#8220;Does not everyone from your country think we are all terrorists? and that we  want to blow up your families?&#8221; he said, still smiling.</p>
<p>&#8220;yeah, i guess they do&#8221; You could have shown me a naked picture of the queen and i would have been less shocked then i was by his question. No better way to the truth then a direct question. As I was unable to form even the shadow of a pseudo lie he got the truth.</p>
<p>&#8220;Well, when you go home, you tell everyone we are good people and we have families just like you.&#8221; He said, trailing of with a belly full of laughter.</p>
<p>Mohammad, as was his name and from what i can see is the name of almost every male in this country, proceeded to invite me back to his family home for the evening. Glad to be relieved of my conrete matress I obliged him. In the end i stayed with him for the better part of a week in Tabriz, having him and his families small Iranian style car as my personal tour guide. What ever these cars are named i cannot remember, but they do bring a whole new level of &#8230;something to the word car. Fun times.</p>
<p>At the the end of my memorable stay at the family abode of young Mohammad, (not sure why im calling him young, as he was certainly at least my equal in age) as i walked out their front gate dragging a small child that had attatched themself to my leg in a vain attempt at extending my visit, Mr Mohammad stopped me.</p>
<p>&#8220;Andrew, if your going to the City of Esphahan you should visit my freinds who i studied with. they own a carpet store in the main bazzar&#8221; he told me as he wrote down the details on the back cover of my diary. Unseemingly this was the beggining of my motorcycle escapades around the ancient Persian empire.</p>
<p>Esphahan is located on the central plains of the Iranian pleautu, warmer then the north although still not a balmy location at this time of the year. Upon finally reaching this city with many more adventures along the way (stay tuned)  I quickly found a hostel to stay in for the night. The next day i wandered into the city with the intent on finding the friends of Mr Mohammad. Little trouble did i have. Walking through the bazaar i noticed a group of young guys lazing around playing a board game sipping on the ever present Iranian tea (Chay as the Iranians spell it). I entered the room, introduced myself and quickly found myself lounging on a carpet chatting away and chugging down on a Chay.</p>
<p>One central realization i have had over the years is that no matter where you roam east, north, south or west young people are all generally the same. Before 5 minutes i felt like i was in Australia with a group of my best mates and not in Iran with a bunch of strangers. During the conversation i mentioned that i was interested in percuring a motorcycle to tour the country on. The topic was differed till later when one of the guys took me to another carpet shop in the same bazaar.</p>
<p>Never have i seen eyes more pirceing then those set in the sockets of the propieter of this store. I barely listened as introductions were made mezmarized by his eyes. After some idle banter and the non-rigours of Ta&#8217;aarf i was able to glean that the man was from the tribal region in the south east of Afghanistan and Iran. If you have ever seen the famous photograph entitled &#8220;Afghan Girl&#8221; by the nat geo photographer <a href="http://www.stevemccurry.com/">Steve McCurry</a>, these are the eyes. We spent the next hour or so discussing everything from life in Australia to the ever present Isreal / Palestien conflict. Eventually i deftly steered the conversation on to the topic of my motorcycle ambitions. Having won the friendship of this man over many more cups of chay, he informed me that it was illigal for a forigner to own a motorcycle with Iranian registration&#8230; although he could probably &#8220;arrange&#8221; it.  Also an interesting note is the lack of motorcycels larger then 150cc. During the Islamic revolution of 1979 the governemnt banned all motorcycles over the 150cc class as many assasinations were carried out on high powered bikes, making for quick escapes.</p>
<p>A young boy who worked at his store had recently needed to sell his motorcycle to pay for tuition fees for some of his education ( this i found strange as the boy was only around 17). I came back the next day and within half an hour or so the young lad turned up on the bike and we began the negotation process. Any such dealings in Iran are seemingly an excuse to consume more chay and talk philosophy. Even so we reached the respectable price of 300 euros&#8230; And after some dodgey paperwork (involving forged licences and various other documents), visits to various official ..err places the process was complete and she was mine!</p>
<p>If your wondering why i only paid 300 euros for the bike you have to remember that its only 150cc and also there is the fact that it was a genuine Imitation Chinese Honda! haha.</p>
<p>I often travel on motorcycles, and no matter how many times i sit on them it still feels like the first time, some of you know the feeling. Big bubbles of excitement were floating through my body as i rode back to the hostel, i could ramble about it for hours but all i will say is there is NOTHING like traveling on a motorcycle.</p>
<p>Freedom in its purest form.</p>
<p><a href="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_2460.jpg"><img class="alignleft size-medium wp-image-432" title="The carpet shop" src="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_2460-300x199.jpg" alt="The Iranian carpet shop" width="300" height="199" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_4552.jpg"><img class="alignnone size-medium wp-image-433" title="keys and forged license" src="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_4552-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p><a href="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_4452.jpg"><img class="alignnone size-medium wp-image-434" title="the bike" src="http://www.andrewmclagan.com/wp-content/uploads/2011/06/IMG_4452-300x222.jpg" alt="the bike in iran" width="300" height="222" /></a></p>
<p><a href="http://www.andrewmclagan.com/category/galleries/persia">Images from Iran</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/shady-persian-motorcycle-deals/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Friendly travels</title>
		<link>http://www.andrewmclagan.com/a-friends-travel-blog?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-friends-travel-blog</link>
		<comments>http://www.andrewmclagan.com/a-friends-travel-blog#comments</comments>
		<pubDate>Thu, 09 Jun 2011 18:19:45 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=401</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/wp-content/uploads/2011/06/Untitled-3.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>If your interested in reading the well formed ramblings of a close friend of my&#8217;n head on over to his travel blog. Growing up in the same small town we hail from the same social group that is intensely addicted to life on the road. As memory serves me right&#8230; Chris has been to every continent on [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://www.andrewmclagan.com/wp-content/uploads/2011/06/Untitled-3.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>If your interested in reading the well formed ramblings of a close friend of my&#8217;n head on over to his<a title="chris pinkerton travel blog" href="http://christopherpinkerton.blogspot.com" target="_blank"> travel blog</a>. Growing up in the same small town we hail from the same social group that is intensely addicted to life on the road. As memory serves me right&#8230; Chris has been to every continent on this little planet of ours. Also as a side note he is pretty handy with a camera and not to bad at scribbling a word or two about his numerous journies. Stay tuned.</p>
<p>Also read the technical rantings my friend writes here on his <a href="http://www.joshsaunders.net/">Technology Blog</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/a-friends-travel-blog/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bamboo wall</title>
		<link>http://www.andrewmclagan.com/bamboo-wall?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bamboo-wall</link>
		<comments>http://www.andrewmclagan.com/bamboo-wall#comments</comments>
		<pubDate>Thu, 09 Jun 2011 15:23:08 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[The subcontinent]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=397</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_6721.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>Some sugar cane about to be squeezed into delicious fresh juice.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_6721.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>Some sugar cane about to be squeezed into delicious fresh juice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/bamboo-wall/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tree and leaf</title>
		<link>http://www.andrewmclagan.com/tree-and-leaf?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tree-and-leaf</link>
		<comments>http://www.andrewmclagan.com/tree-and-leaf#comments</comments>
		<pubDate>Thu, 09 Jun 2011 15:15:05 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[The eastern bloc]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=391</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_7558.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>Deep in a Romanian forest, near an old soviet ear ruin, early autumn morning.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_7558.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>Deep in a Romanian forest, near an old soviet ear ruin, early autumn morning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/tree-and-leaf/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eastern wheels</title>
		<link>http://www.andrewmclagan.com/eastern-wheels?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eastern-wheels</link>
		<comments>http://www.andrewmclagan.com/eastern-wheels#comments</comments>
		<pubDate>Thu, 09 Jun 2011 15:13:16 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[The eastern bloc]]></category>

		<guid isPermaLink="false">http://www.andrewmclagan.com/?p=388</guid>
		<description><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_5789.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p>An old soviet ear car covered in snow.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.andrewmclagan.com/wp-content/themes/DeepFocus/timthumb.php?src=http://andrewmclagan.com/pictures/IMG_5789.jpg&amp;h=200&amp;w=300&amp;zc=1"/></p><p>An old soviet ear car covered in snow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewmclagan.com/eastern-wheels/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

