<?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>Mertonium</title>
	<atom:link href="http://mertonium.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mertonium.com</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 01:09:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>2010 MPFM Salsa Contest</title>
		<link>http://mertonium.com/2010/07/2010-mpfm-salsa-contest/</link>
		<comments>http://mertonium.com/2010/07/2010-mpfm-salsa-contest/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 01:09:53 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[amerika]]></category>
		<category><![CDATA[champion]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[iowa]]></category>
		<category><![CDATA[mt pleasant]]></category>
		<category><![CDATA[salsa]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=954</guid>
		<description><![CDATA[Today the Mt. Pleasant Farmers Market hosted a salsa contest. I entered a batch of freshly made Green Thunder. An hour and a half of tense taste testing later, Green Thunder was crowned champion. Here are the photos.]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	div#mertonium-gallery {
		width: 670px;
		height: 502px;
		border: 2px solid #ccc;
		background-color: #efefef;
	}
	div#mertonium-gallery div.active {
		display:block;
	}
	
	div#mertonium-gallery div.gal-img {
		width: 670px;
		height: 502px;
		background-repeat: no-repeat;
		background-position: center center;
		position: absolute;
		overflow: hidden;
	}
	
	div#mertonium-gallery div.gal-inside {
		margin-top: 502px;
		padding-left: 18px;
		height: 65px;
		background-image: url('/wp-content/themes/mertonium/images/grey-alpha.png');
	}
	
	div#mertonium-gallery div.gal-inside span p{		
		font-size: 1.2em;
	}
	div#mertonium-gallery div.gal-inside p{
		font-size: 1em;
		color: #ffffff;
		font-family: 'Georgia', serif;
	}
	div#mertonium-gallery div.gal-inside span p{ margin: 0px; }
	div#mertonium-gallery div.gal-inside p{ margin: 0px; }
	div#mg-navigation {
		margin-bottom: 1em;
		border-bottom: 1px solid #efefef;
	}
</style>
<script type="text/javascript">
	var rotator;
	
	function startRotator() {
		rotator = rotate.periodical(3000);
	}
	
	var evnt = (window.webkit) ? 'load' : 'domready';
	window.addEvent(evnt, function() {
		if($defined($('mertonium-gallery'))) {
			//$$('#mertonium-gallery div.gal-img').setStyle('display','none');
			$$('#mertonium-gallery div.gal-img').fade('out');
			$$('#mertonium-gallery div.gal-img')[0].fade('in');
			$('mg-play').setStyle('display','none');			
			
			startRotator.delay(6000)
			
			$('mg-prev').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate('down');
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');				
			});
			$('mg-next').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate(); 
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
				
			});
			$('mg-play').addEvent('click', function(ev) {
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator);
				rotate();
				startRotator.delay(3000);
				$('mg-pause').setStyle('display','inline');
				$('mg-play').setStyle('display','none');
			});
			$('mg-pause').addEvent('click', function(ev) {
				var ev = (ev) ? new Event(ev): false;
				if(ev) ev.stop();
				$clear(rotator);				
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
			});
		}				
	});
	
	function rotate(dir) {
		dir = dir || 'up';
		var curImg;
		var repeat = 'on';
		if($defined($$('#mertonium-gallery .active')[0]) && $$('#mertonium-gallery .active').length > 0) {
			curImg = $$('#mertonium-gallery .active')[0];
		} else { 
			$$('#mertonium-gallery div.gal-img').setStyle('opacity','0');
			curImg = $$('#mertonium-gallery div.gal-img')[0];
			curImg.setStyle('opacity','1');
			curImg.addClass('active');
			return;
		}	
		var images = $$('#mertonium-gallery div.gal-img');
		var nextImg;
		if(dir == 'up') {
			if(repeat == 'on') {
				nextImg = ($defined(curImg.getNext())) ? curImg.getNext() : images[0];
			} else {
				if($defined(curImg.getNext())) {
					nextImg = curImg.getNext();					
				} else {
					$('mg-pause').fireEvent('click');
					$$('div.gal-img').removeClass('active');
					return;
				}
			}
		} else {
			nextImg = ($defined(curImg.getPrevious())) ? curImg.getPrevious() : images[images.length-1];
		}
		
		$$('#mertonium-gallery div.gal-img').removeClass('active');				
		nextImg.addClass('active');
		
			$(curImg).set('tween', { duration: 1000, link:'chain'});
		$(nextImg).set('tween', { duration: 1000, link:'chain'});
		$(curImg).tween('opacity', '0');
		$(nextImg).tween('opacity', '1');
			$(curImg).getFirst().tween('margin-top','502px');
		if($(nextImg).getFirst().get('text') != "") {
			$(nextImg).getFirst().tween('margin-top','437px');
		}
		
	}
</script>
<div id="mertonium-gallery"><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2881-670x439.jpg'); "><div class="gal-inside"><span><p>Salsa Caliente</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2882-537x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2887-670x437.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2888-406x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2889-484x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2890-670x449.jpg'); "><div class="gal-inside"><span><p>The Champion</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2891-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2892-377x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2894-635x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2896-670x473.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2898-399x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100721_2899-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" /></div></div></div><div id="mg-navigation" class="span-17 last"><div class="span-13"><a id="mg-play" href="#">Play</a><a id="mg-pause" href="#">Pause</a></div><div class="span-2" style="text-align:right"><a href="#" id="mg-prev">Previous</a></div><div class="span-2 last" style="text-align:right"><a href="#" id="mg-next">Next</a></div></div>
<p>Today the <a href="http://mpfarmmarket.org" target="_blank">Mt. Pleasant Farmers Market</a> hosted a salsa contest.  I entered a batch of freshly made Green Thunder.  An hour and a half of tense taste testing later, Green Thunder was crowned champion.  Here are the photos.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=954" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/2010-mpfm-salsa-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Feedback Joomla Extension</title>
		<link>http://mertonium.com/2010/07/client-feedback-joomla-extension/</link>
		<comments>http://mertonium.com/2010/07/client-feedback-joomla-extension/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 02:54:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=935</guid>
		<description><![CDATA[The Client Feedback extension for Joomla! is a component &#38; module combination that aims to help clear up communication between people who build websites and their clients. Like most web developers, I&#8217;ve gotten &#8220;the website doesn&#8217;t look/work right&#8221; emails from clients with no details about how they are trying to view the site. I built...<a class="read-more" href="http://mertonium.com/2010/07/client-feedback-joomla-extension/">&#160;&#160;Jump to the rest of &#171;Client Feedback Joomla Extension&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<p>The Client Feedback extension for Joomla! is a component &amp; module combination that aims to help clear up communication between people who build websites and their clients.  Like most web developers, I&#8217;ve gotten &#8220;the website doesn&#8217;t look/work right&#8221; emails from clients with no details about how they are trying to view the site.</p>
<p>I built this extension in an effort to help the feedback/support cycle.  Now, clients (or anyone for that matter) can browse a site, spot an issue or have a question about a particular page, and submit a feedback form without ever leaving the page.  Every feedback form (in addition to the client&#8217;s comments) records information about the client, like their browser, operating system, screen resolution, etc.  With this information developers &amp; designers can get a better picture of what the client is seeing.</p>
<h3>Download</h3>
<div class="download-div"><a href="http://mertonium.com/downloads/client_feedback_UNZIP_FIRST.zip" title="Downloaded 7 times" >Download Joomla Client Feedback Component</a> [19.38 kB] 7 hits</a></div>
<h3>Installation</h3>
<p>First unzip the file you downloaded (which should have &#8220;UNZIP_FIRST&#8221; in the filename).  Inside the unzipped file you will find two more zip files: com_feedback.zip &amp; mod_feedback.zip.  Install the component, (com_feedback.zip) first and the module (mod_feedback.zip) second via the normal Joomla extension install screen.</p>
<p>Once both the component &amp; module are installed, assign the module to a position that occurs throughout your template.  Now the feedback form will appear on your site.</p>
<h3>Screenshots</h3>
<div id="attachment_944" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-944" title="clientfeedback_screenshot1a" src="http://mertonium.com/wp-content/uploads/2010/07/clientfeedback_screenshot1a-670x481.jpg" alt="" width="670" height="481" /><p class="wp-caption-text">The Client Feedback component in action on FlatBen.org</p></div>
<div id="attachment_943" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-943" title="clientfeedback_screenshot3" src="http://mertonium.com/wp-content/uploads/2010/07/clientfeedback_screenshot3-670x296.jpg" alt="" width="670" height="296" /><p class="wp-caption-text">Admin screen for the Client Feedback component</p></div>
<h3>Development</h3>
<p>The Client Feedback extension is the first Joomla extension I&#8217;ve built for the general public, so I would appreciate <a href="#contact-me">any feedback</a> (lol).  Also, if you would like to get the most up-to-date code, you can <a title="Visit the svn repository" href="http://svn.grownseed.net/mertonium/trunk/joomla/Client_Feedback/" target="_blank">download the source code directly from its SVN repository</a> (thanks to our good friends at <a href="http://www.grownseed.net/" target="_blank">Grownseed</a> for the SVN server space).</p>
<h3>License</h3>
<p>GNU/GPL see LICENSE.php in the com_feedback folder.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=935" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/client-feedback-joomla-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pochoirs français (French Stencils)</title>
		<link>http://mertonium.com/2010/07/pochoirs-francais-french-stencils/</link>
		<comments>http://mertonium.com/2010/07/pochoirs-francais-french-stencils/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 21:32:51 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[amerika]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[french]]></category>
		<category><![CDATA[graffiti]]></category>
		<category><![CDATA[iowa]]></category>
		<category><![CDATA[iowa city]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[stencil]]></category>
		<category><![CDATA[street]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=796</guid>
		<description><![CDATA[Yesterday I again found myself wandering through Iowa City, photographing street art, when I noticed the above series of stencils. I can honestly say that my French vocabulary doubled from the start of the walk to the end. Très bon, Monsieur.]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	div#mertonium-gallery {
		width: 670px;
		height: 502px;
		border: 2px solid #ccc;
		background-color: #efefef;
	}
	div#mertonium-gallery div.active {
		display:block;
	}
	
	div#mertonium-gallery div.gal-img {
		width: 670px;
		height: 502px;
		background-repeat: no-repeat;
		background-position: center center;
		position: absolute;
		overflow: hidden;
	}
	
	div#mertonium-gallery div.gal-inside {
		margin-top: 502px;
		padding-left: 18px;
		height: 65px;
		background-image: url('/wp-content/themes/mertonium/images/grey-alpha.png');
	}
	
	div#mertonium-gallery div.gal-inside span p{		
		font-size: 1.2em;
	}
	div#mertonium-gallery div.gal-inside p{
		font-size: 1em;
		color: #ffffff;
		font-family: 'Georgia', serif;
	}
	div#mertonium-gallery div.gal-inside span p{ margin: 0px; }
	div#mertonium-gallery div.gal-inside p{ margin: 0px; }
	div#mg-navigation {
		margin-bottom: 1em;
		border-bottom: 1px solid #efefef;
	}
</style>
<script type="text/javascript">
	var rotator;
	
	function startRotator() {
		rotator = rotate.periodical(3000);
	}
	
	var evnt = (window.webkit) ? 'load' : 'domready';
	window.addEvent(evnt, function() {
		if($defined($('mertonium-gallery'))) {
			//$$('#mertonium-gallery div.gal-img').setStyle('display','none');
			$$('#mertonium-gallery div.gal-img').fade('out');
			$$('#mertonium-gallery div.gal-img')[0].fade('in');
			$('mg-play').setStyle('display','none');			
			
			startRotator.delay(6000)
			
			$('mg-prev').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate('down');
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');				
			});
			$('mg-next').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate(); 
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
				
			});
			$('mg-play').addEvent('click', function(ev) {
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator);
				rotate();
				startRotator.delay(3000);
				$('mg-pause').setStyle('display','inline');
				$('mg-play').setStyle('display','none');
			});
			$('mg-pause').addEvent('click', function(ev) {
				var ev = (ev) ? new Event(ev): false;
				if(ev) ev.stop();
				$clear(rotator);				
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
			});
		}				
	});
	
	function rotate(dir) {
		dir = dir || 'up';
		var curImg;
		var repeat = 'on';
		if($defined($$('#mertonium-gallery .active')[0]) && $$('#mertonium-gallery .active').length > 0) {
			curImg = $$('#mertonium-gallery .active')[0];
		} else { 
			$$('#mertonium-gallery div.gal-img').setStyle('opacity','0');
			curImg = $$('#mertonium-gallery div.gal-img')[0];
			curImg.setStyle('opacity','1');
			curImg.addClass('active');
			return;
		}	
		var images = $$('#mertonium-gallery div.gal-img');
		var nextImg;
		if(dir == 'up') {
			if(repeat == 'on') {
				nextImg = ($defined(curImg.getNext())) ? curImg.getNext() : images[0];
			} else {
				if($defined(curImg.getNext())) {
					nextImg = curImg.getNext();					
				} else {
					$('mg-pause').fireEvent('click');
					$$('div.gal-img').removeClass('active');
					return;
				}
			}
		} else {
			nextImg = ($defined(curImg.getPrevious())) ? curImg.getPrevious() : images[images.length-1];
		}
		
		$$('#mertonium-gallery div.gal-img').removeClass('active');				
		nextImg.addClass('active');
		
			$(curImg).set('tween', { duration: 1000, link:'chain'});
		$(nextImg).set('tween', { duration: 1000, link:'chain'});
		$(curImg).tween('opacity', '0');
		$(nextImg).tween('opacity', '1');
			$(curImg).getFirst().tween('margin-top','502px');
		if($(nextImg).getFirst().get('text') != "") {
			$(nextImg).getFirst().tween('margin-top','437px');
		}
		
	}
</script>
<div id="mertonium-gallery"><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2819-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;stencil&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2816-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;diamond ring&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2814-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;glasses&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2813-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;ant&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2795-670x486.jpg'); "><div class="gal-inside"><span><p>&#8220;stars&#8221;, &#8220;moon&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2792-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;trees&#8221;, &#8220;stump&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" /></div></div></div><div id="mg-navigation" class="span-17 last"><div class="span-13"><a id="mg-play" href="#">Play</a><a id="mg-pause" href="#">Pause</a></div><div class="span-2" style="text-align:right"><a href="#" id="mg-prev">Previous</a></div><div class="span-2 last" style="text-align:right"><a href="#" id="mg-next">Next</a></div></div><p><span id="more-796"></span><br />
<br />
Yesterday I again found myself <a title="See the rest of the IC street art photos" href="http://mertonium.com/2010/07/iowa-city-street-art/">wandering through Iowa City, photographing street art</a>, when I noticed the above series of stencils.  I can honestly say that my French vocabulary doubled from the start of the walk to the end. Très bon, Monsieur.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=796" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/pochoirs-francais-french-stencils/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>American Bench</title>
		<link>http://mertonium.com/2010/07/american-bench/</link>
		<comments>http://mertonium.com/2010/07/american-bench/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 03:55:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Daily Photo]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[amerika]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[iowa]]></category>
		<category><![CDATA[outdoor]]></category>
		<category><![CDATA[street]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=791</guid>
		<description><![CDATA[After a long hiatus, I&#8217;ve got another daily photo.  This one is from Burlington, Iowa.]]></description>
			<content:encoded><![CDATA[<div id="attachment_792" class="wp-caption aligncenter" style="width: 680px"><a href="http://mertonium.com/2010/07/american-bench/"><img class="size-medium wp-image-792 " title="amerika_bench" src="http://mertonium.com/wp-content/uploads/2010/07/amerika_bench-670x434.jpg" alt="" width="670" height="434" /></a><p class="wp-caption-text">Old Glory, in Bench Form</p></div>
<p><span id="more-791"></span>After a long hiatus, I&#8217;ve got another daily photo.  This one is from Burlington, Iowa.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=791" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/american-bench/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title> Hat</title>
		<link>http://mertonium.com/2010/07/head-hat/</link>
		<comments>http://mertonium.com/2010/07/head-hat/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 02:20:27 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[hat]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=780</guid>
		<description><![CDATA[I bought this hat last December in Rekyavic, Iceland, for five quid. It was plain at the time and I planned on customizing it &#8220;sometime.&#8221; I thought it would would be a sweet idea to put a&#60;/head&#62; tag on the back of it &#8211; to signify the end of my head. Flash forward six months...<a class="read-more" href="http://mertonium.com/2010/07/head-hat/">&#160;&#160;Jump to the rest of &#171;</head> Hat&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_781" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-781" title="head_hat" src="http://mertonium.com/wp-content/uploads/2010/07/head_hat-670x406.jpg" alt="" width="670" height="406" /><p class="wp-caption-text">My new &lt;/head&gt; hat</p></div>
<p>I bought this hat last December in Rekyavic, Iceland, for five quid. It was plain at the time and I planned on customizing it &#8220;sometime.&#8221;  I thought it would would be a sweet idea to put a&lt;/head&gt; tag on the back of it &#8211; to signify the end of my head.</p>
<p>Flash forward six months to me walking around Brooklyn, New York, and I see a place called <a title="The Neighborhoodies Website" href="http://www.neighborhoodies.com/" target="_blank">Neighborhoodies</a>.  15 minutes later, my vision is realized.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=780" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/head-hat/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Iowa City Street Art</title>
		<link>http://mertonium.com/2010/07/iowa-city-street-art/</link>
		<comments>http://mertonium.com/2010/07/iowa-city-street-art/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 17:55:47 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[amerika]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[graffiti]]></category>
		<category><![CDATA[iowa]]></category>
		<category><![CDATA[street]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=769</guid>
		<description><![CDATA[I recently took a walk around my old stomping grounds in Iowa City and pleasantly surprised with the quality of street art.  These shots are everything I found in an hour of wandering around outside the city center. If anyone has any more leads on decent pieces in the Iowa City area, or any information...<a class="read-more" href="http://mertonium.com/2010/07/iowa-city-street-art/">&#160;&#160;Jump to the rest of &#171;Iowa City Street Art&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
	div#mertonium-gallery {
		width: 670px;
		height: 502px;
		border: 2px solid #ccc;
		background-color: #efefef;
	}
	div#mertonium-gallery div.active {
		display:block;
	}
	
	div#mertonium-gallery div.gal-img {
		width: 670px;
		height: 502px;
		background-repeat: no-repeat;
		background-position: center center;
		position: absolute;
		overflow: hidden;
	}
	
	div#mertonium-gallery div.gal-inside {
		margin-top: 502px;
		padding-left: 18px;
		height: 65px;
		background-image: url('/wp-content/themes/mertonium/images/grey-alpha.png');
	}
	
	div#mertonium-gallery div.gal-inside span p{		
		font-size: 1.2em;
	}
	div#mertonium-gallery div.gal-inside p{
		font-size: 1em;
		color: #ffffff;
		font-family: 'Georgia', serif;
	}
	div#mertonium-gallery div.gal-inside span p{ margin: 0px; }
	div#mertonium-gallery div.gal-inside p{ margin: 0px; }
	div#mg-navigation {
		margin-bottom: 1em;
		border-bottom: 1px solid #efefef;
	}
</style>
<script type="text/javascript">
	var rotator;
	
	function startRotator() {
		rotator = rotate.periodical(3000);
	}
	
	var evnt = (window.webkit) ? 'load' : 'domready';
	window.addEvent(evnt, function() {
		if($defined($('mertonium-gallery'))) {
			//$$('#mertonium-gallery div.gal-img').setStyle('display','none');
			$$('#mertonium-gallery div.gal-img').fade('out');
			$$('#mertonium-gallery div.gal-img')[0].fade('in');
			$('mg-play').setStyle('display','none');			
			
			startRotator.delay(6000)
			
			$('mg-prev').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate('down');
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');				
			});
			$('mg-next').addEvent('click', function(ev) { 
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator); 
				rotate(); 
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
				
			});
			$('mg-play').addEvent('click', function(ev) {
				var ev = new Event(ev);
				ev.stop();
				$clear(rotator);
				rotate();
				startRotator.delay(3000);
				$('mg-pause').setStyle('display','inline');
				$('mg-play').setStyle('display','none');
			});
			$('mg-pause').addEvent('click', function(ev) {
				var ev = (ev) ? new Event(ev): false;
				if(ev) ev.stop();
				$clear(rotator);				
				$('mg-pause').setStyle('display','none');
				$('mg-play').setStyle('display','inline');
			});
		}				
	});
	
	function rotate(dir) {
		dir = dir || 'up';
		var curImg;
		var repeat = 'on';
		if($defined($$('#mertonium-gallery .active')[0]) && $$('#mertonium-gallery .active').length > 0) {
			curImg = $$('#mertonium-gallery .active')[0];
		} else { 
			$$('#mertonium-gallery div.gal-img').setStyle('opacity','0');
			curImg = $$('#mertonium-gallery div.gal-img')[0];
			curImg.setStyle('opacity','1');
			curImg.addClass('active');
			return;
		}	
		var images = $$('#mertonium-gallery div.gal-img');
		var nextImg;
		if(dir == 'up') {
			if(repeat == 'on') {
				nextImg = ($defined(curImg.getNext())) ? curImg.getNext() : images[0];
			} else {
				if($defined(curImg.getNext())) {
					nextImg = curImg.getNext();					
				} else {
					$('mg-pause').fireEvent('click');
					$$('div.gal-img').removeClass('active');
					return;
				}
			}
		} else {
			nextImg = ($defined(curImg.getPrevious())) ? curImg.getPrevious() : images[images.length-1];
		}
		
		$$('#mertonium-gallery div.gal-img').removeClass('active');				
		nextImg.addClass('active');
		
			$(curImg).set('tween', { duration: 1000, link:'chain'});
		$(nextImg).set('tween', { duration: 1000, link:'chain'});
		$(curImg).tween('opacity', '0');
		$(nextImg).tween('opacity', '1');
			$(curImg).getFirst().tween('margin-top','502px');
		if($(nextImg).getFirst().get('text') != "") {
			$(nextImg).getFirst().tween('margin-top','437px');
		}
		
	}
</script>
<div id="mertonium-gallery"><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100615_2670-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100615_2667-670x503.jpg'); "><div class="gal-inside"><span><p>Longhorns in IC?</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100615_2669-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100615_2668-377x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100615_2666-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2811-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2810-377x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2801-377x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2800-670x352.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2799-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2798-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2797-377x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2794-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2793-670x503.jpg'); "><div class="gal-inside"><span><p>&#8220;Save Your Money&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2791-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2789-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2788-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2786-377x503.jpg'); "><div class="gal-inside"><span><p>&#8220;Ghetto Tags Suck&#8221;</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2784-665x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/07/JMM_20100709_2783-670x503.jpg'); "><div class="gal-inside"><span></span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" /></div></div></div><div id="mg-navigation" class="span-17 last"><div class="span-13"><a id="mg-play" href="#">Play</a><a id="mg-pause" href="#">Pause</a></div><div class="span-2" style="text-align:right"><a href="#" id="mg-prev">Previous</a></div><div class="span-2 last" style="text-align:right"><a href="#" id="mg-next">Next</a></div></div>
<p>I recently took a walk around my old stomping grounds in Iowa City and pleasantly surprised with the quality of street art.  These shots are everything I found in an hour of wandering around outside the city center.</p>
<p>If anyone has any more leads on decent pieces in the Iowa City area, or any information on the artists above (I&#8217;m not a cop), <a href="#contact-me">give me a shout</a>.</p>
<p><strong>UPDATE [10 July 2010] </strong>- I went back to Iowa City yesterday and actually went into the city center to have a look.  I&#8217;ve added about 15 new photos to this post and created an entirely separate post for all the <a title="See the French vocab stencils" href="http://mertonium.com/2010/07/pochoirs-francais-french-stencils/">French vocabulary stencils</a>.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=769" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/07/iowa-city-street-art/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2010 World Cup Uniform Typography</title>
		<link>http://mertonium.com/2010/06/2010-world-cup-uniform-typography/</link>
		<comments>http://mertonium.com/2010/06/2010-world-cup-uniform-typography/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 04:44:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[soccer]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[typeset]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=755</guid>
		<description><![CDATA[I&#8217;ve spent the past two weeks glued to ESPN watching the 2010 World Cup and I find myself repeating continuously, &#8220;what is the font on their jersey?&#8221; I did some research and this is what I found for the majority of teams. Unity Unity is a custom alphabet designed by Yomar Augusto for Adidas.  It...<a class="read-more" href="http://mertonium.com/2010/06/2010-world-cup-uniform-typography/">&#160;&#160;Jump to the rest of &#171;2010 World Cup Uniform Typography&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_756" class="wp-caption aligncenter" style="width: 580px"><a href="http://mertonium.com/2010/06/2010-world-cup-uniform-typography"><img class="size-large wp-image-756  " title="world_cup_kit_typography_vert" src="http://mertonium.com/wp-content/uploads/2010/06/world_cup_kit_typography_vert-570x1024.jpg" alt="" width="570" height="1024" /></a><p class="wp-caption-text">Uniforms for 22 of the 32 Word Cup teams</p></div>
<p>I&#8217;ve spent the past two weeks glued to ESPN watching the 2010 World Cup and I find myself repeating continuously, &#8220;what is the font on their jersey?&#8221;</p>
<p>I did some research and this is what I found for the majority of teams.</p>
<h2>Unity</h2>
<p><a href="http://brictype.com/" target="_blank">Unity</a> is a custom alphabet designed by Yomar Augusto for Adidas.  It is used by Argentina, Denmark, Spain, France, Germany, Greece, Japan, Mexico, Nigeria, South Africa, Slovakia and Paraguay.</p>
<h2>[Nike]</h2>
<p>I&#8217;m still looking for the name of the font used on the Nike kits. It is used by Australia, Brasil, South Korea, Portugal, Serbia, and the USA.</p>
<h2>Crepello</h2>
<p>Crepello is a custom font made for Puma by Paul Barnes of Commercial Type.  It is used by Italy, Uruguay, and Switzerland.</p>
<h2>Olembe</h2>
<p>Olembe, like Crepello above, was designed by Paul Barnes of Commercial Type for Puma.  It is used by Algeria, Cameroon, Côte d&#8217;Ivoire, and Ghana.</p>
<p>I have not been able to find out about the names of the fonts used on England (Umbro), Honduras (Joma), Chile (Brooks), or North Korea &#8211; so if anyone knows, give me a shout.</p>
<p>FontFeed has a <a href="http://fontfeed.com/archives/world-cup-typography-paul-barnes/" target="_blank">good interview with Paul Barnes</a> about the creation of both Crepello &amp; Olembe.</p>
<p><strong>Note</strong>: All the photos used here were taken from <a title="World Soccer Shop" href="http://www.worldsoccershop.com/" target="_blank">World Soccer Shop</a> (which is why I&#8217;ve only got 22).</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=755" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/06/2010-world-cup-uniform-typography/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Coming Home</title>
		<link>http://mertonium.com/2010/06/coming-home/</link>
		<comments>http://mertonium.com/2010/06/coming-home/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 15:36:15 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Photographs]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[guns]]></category>
		<category><![CDATA[iowa]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=751</guid>
		<description><![CDATA[This photo represents the simple pleasures of going home.  In my case, returning to rural Iowa means standing in the driveway, shooting beer cans with a pellet rifle.  Good times.]]></description>
			<content:encoded><![CDATA[<div id="attachment_748" class="wp-caption aligncenter" style="width: 692px"><img class="size-large wp-image-748" title="3_holed_busch" src="http://mertonium.com/wp-content/uploads/2010/06/3_holed_busch-682x1024.jpg" alt="" width="682" height="1024" /><p class="wp-caption-text">Beer Cans and BB Guns</p></div>
<p>This photo represents the simple pleasures of going home.  In my case, returning to rural Iowa means standing in the driveway, shooting beer cans with a pellet rifle.  Good times.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=751" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/06/coming-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Malta Half Marathon</title>
		<link>http://mertonium.com/2010/05/the-malta-half-marathon/</link>
		<comments>http://mertonium.com/2010/05/the-malta-half-marathon/#comments</comments>
		<pubDate>Tue, 18 May 2010 18:53:52 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[half marathon]]></category>
		<category><![CDATA[I'm not a runner]]></category>
		<category><![CDATA[Malta]]></category>
		<category><![CDATA[street]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=733</guid>
		<description><![CDATA[From the start, I could tell that 2010 was going to be a year of extraordinary events. First on the list: run a half marathon.  Living in Scotland, February is not a good time to spend 2 consecutive hours outdoors.  This is why my girlfriend and I decided to go to the small, Mediterranean island...<a class="read-more" href="http://mertonium.com/2010/05/the-malta-half-marathon/">&#160;&#160;Jump to the rest of &#171;The Malta Half Marathon&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_737" class="wp-caption aligncenter" style="width: 680px"><a href="http://mertonium.com/2010/05/the-malta-half-marathon/"><img class="size-medium wp-image-737 " title="JMM_20100228_0306" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100228_0306-670x502.jpg" alt="" width="670" height="502" /></a><p class="wp-caption-text">13.1 Miles Later...</p></div>
<p>From the start, I could tell that 2010 was going to be a year of extraordinary events. First on the list: run a half marathon.  Living in Scotland, February is not a good time to spend 2 consecutive hours outdoors.  This is why my girlfriend and I decided to go to the small, Mediterranean island nation of Malta for our first half marathon.</p>
<p>This half marathon trip to Malta was also to be the testing ground for my idea of making short videos while traveling (<a title="Tartan Eagles Go North" href="http://www.tartaneaglesgonorth.com/" target="_blank">which turned out pretty well later</a>).</p>
<h3>Practice Run</h3>
<p>Two days before the race, Laura &amp; I ran a wee 7km route along the sea-side promenade of Sliema.  It was obvious that the marathon was in town from the clusters of other foreign runners doing the same thing.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/QiJiK0diDKM&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/QiJiK0diDKM&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Pre-race Jog</h3>
<p>Prior to the race we warmed up by walking through the crowd, looking for good candidates to bum some sunscreen from.  After successfully scoring some cancer protection, we adjourned to the playground for some swinging &amp; jogging.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YyK5DaLu8nk&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/YyK5DaLu8nk&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>The Start</h3>
<p>Malta Half Marathon is a go!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1LNsTlFzA3A&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/1LNsTlFzA3A&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>The 8km Mark</h3>
<p>With the temperature getting above 80°F (27°C), the first water station was a great site to see (and hear as they had a live band).</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4dTZSG-OoEk&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/4dTZSG-OoEk&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Sponges!</h3>
<p>This is where I started to lose it a bit.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/LJAFVBk4Txg&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/LJAFVBk4Txg&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>The End</h3>
<p>13.1 miles (22km) and just over two hours later we made it to the finish line.  Running across half of a country is definitely a great way to see it.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ZrYPc9yjaIA&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/ZrYPc9yjaIA&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Next of the list of extraordinary events in 2010?  Bon Jovi concert in New Jersey.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=733" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/05/the-malta-half-marathon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scandinavian Signs</title>
		<link>http://mertonium.com/2010/05/scandinavian-signs/</link>
		<comments>http://mertonium.com/2010/05/scandinavian-signs/#comments</comments>
		<pubDate>Mon, 03 May 2010 15:56:45 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Photographs]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[scandinavia]]></category>
		<category><![CDATA[signs]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=703</guid>
		<description><![CDATA[As you may know, I can&#8217;t stop taking photos of products or signs that I think sound funny. Here is a collection of gems from my recent banger rally through Scandinavia.]]></description>
			<content:encoded><![CDATA[<div id="attachment_725" class="wp-caption aligncenter" style="width: 680px"><a href="http://mertonium.com/2010/05/scandinavian-signs/"><img class="size-medium wp-image-725 " title="JMM_20100420_1085" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100420_1085-670x502.jpg" alt="" width="670" height="502" /></a><p class="wp-caption-text">Bridge to Hell</p></div>
<p>As you may know, I can&#8217;t stop taking photos of products or signs that I think sound funny.  Here is a collection of gems from <a href="http://tartaneaglesgonorth.com" target="_blank">my recent banger rally through Scandinavia</a>.</p>
<div id="attachment_706" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-706" title="JMM_20100418_1020" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100418_1020-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">Smak - Oslo</p></div>
<div id="attachment_704" class="wp-caption aligncenter" style="width: 662px"><img class="size-medium wp-image-704" title="JMM_20100417_0971" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100417_0971-652x503.jpg" alt="" width="652" height="503" /><p class="wp-caption-text">Food Pancakes in Copenhagen</p></div>
<div id="attachment_705" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-705" title="JMM_20100418_0999" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100418_0999-670x343.jpg" alt="" width="670" height="343" /><p class="wp-caption-text">Rasta Buffet</p></div>
<div id="attachment_707" class="wp-caption aligncenter" style="width: 387px"><img class="size-medium wp-image-707" title="JMM_20100418_1031" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100418_1031-377x503.jpg" alt="" width="377" height="503" /><p class="wp-caption-text">Geekiest Soda Ever</p></div>
<div id="attachment_708" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-708" title="JMM_20100420_1090" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100420_1090-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">Divine Chocolate Milk</p></div>
<div id="attachment_726" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-726" title="JMM_20100423_1190" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100423_1190-670x455.jpg" alt="" width="670" height="455" /><p class="wp-caption-text">KKK Supermarket</p></div>
<div id="attachment_709" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-709" title="JMM_20100420_1112" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100420_1112-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">Bacon in a Tube</p></div>
<div id="attachment_711" class="wp-caption aligncenter" style="width: 387px"><img class="size-medium wp-image-711" title="JMM_20100421_1134" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100421_1134-377x503.jpg" alt="" width="377" height="503" /><p class="wp-caption-text">Drink &#39;til You Die</p></div>
<div id="attachment_712" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-712" title="JMM_20100421_1266" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100421_1266-670x446.jpg" alt="" width="670" height="446" /><p class="wp-caption-text">Skruf in Tromso</p></div>
<div id="attachment_723" class="wp-caption aligncenter" style="width: 387px"><img class="size-medium wp-image-723" title="JMM_20100417_0961" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100417_0961-377x503.jpg" alt="" width="377" height="503" /><p class="wp-caption-text">DONG Energy</p></div>
<div id="attachment_713" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-713" title="JMM_20100422_1173" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100422_1173-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">Servingforslag</p></div>
<div id="attachment_715" class="wp-caption aligncenter" style="width: 387px"><img class="size-medium wp-image-715" title="JMM_20100423_1328" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100423_1328-377x503.jpg" alt="" width="377" height="503" /><p class="wp-caption-text">Finnish Tobacco</p></div>
<div id="attachment_716" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-716" title="JMM_20100425_1345" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100425_1345-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">What kind of coffee?</p></div>
<div id="attachment_717" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-717" title="JMM_20100425_1353" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100425_1353-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">Japp</p></div>
<div id="attachment_718" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-718" title="JMM_20100425_1358" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100425_1358-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">This guy is suing the yogurt company for using his photo. Seriously.</p></div>
<div id="attachment_724" class="wp-caption aligncenter" style="width: 680px"><img class="size-medium wp-image-724" title="JMM_20100417_0968" src="http://mertonium.com/wp-content/uploads/2010/05/JMM_20100417_0968-670x502.jpg" alt="" width="670" height="502" /><p class="wp-caption-text">n00b</p></div>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=703" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/05/scandinavian-signs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
