<?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 &#187; Photographs</title>
	<atom:link href="http://mertonium.com/category/photographs/feed/" rel="self" type="application/rss+xml" />
	<link>http://mertonium.com</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 04:26:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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>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>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>
		<item>
		<title>Happy Easter, Konijntje</title>
		<link>http://mertonium.com/2010/04/happy-easter-konijntje/</link>
		<comments>http://mertonium.com/2010/04/happy-easter-konijntje/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 18:10:19 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Glasgow]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[graffiti]]></category>
		<category><![CDATA[konijntje]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[street]]></category>
		<category><![CDATA[the Dutch]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=678</guid>
		<description><![CDATA[Some of you may remember my first collection of Konijntje images from around the west end and central Glasgow.  Well, in honour of Easter, here are some more I&#8217;ve been collecting.  Enjoy.]]></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/04/JMM_20100404_0698-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100403_0683-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100402_0682-670x461.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100402_0681-670x502.jpg'); "><div class="gal-inside"><span><p>The Bunny is back.</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100331_0676-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100329_0675-670x453.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100328_0674-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100322_0649-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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100320_0625-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100319_0624-424x503.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100318_0611-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100313_0594-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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100313_0592-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100313_0591-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100313_0570-361x503.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100312_0376-670x463.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100213_0148-670x502.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=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100124_0129-670x447.jpg'); "><div class="gal-inside"><span><p>Konijntje is back.</p>
</span> <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=678" width="1" height="1" style="display: none;" /></div></div><div class="gal-img" style="background-image: url('http://mertonium.com/wp-content/uploads/2010/04/JMM_20100124_0127-335x503.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=678" 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>Some of you may remember my <a title="Original Konijntje Post" href="http://mertonium.com/2009/11/konijntje/" target="_self">first collection of Konijntje images</a> from around the west end and central Glasgow.  Well, in honour of Easter, here are some more I&#8217;ve been collecting.  Enjoy.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=678" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/04/happy-easter-konijntje/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pimpernel Petroleum</title>
		<link>http://mertonium.com/2010/03/pimpernel-petroleum/</link>
		<comments>http://mertonium.com/2010/03/pimpernel-petroleum/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:53:29 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Photographs]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[outdoor]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[scotland]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=674</guid>
		<description><![CDATA[Luss is one of a few villages on the edge of Loch Lomond.  There is also a Scottish nursery rhyme about a rough bus that goes between Luss &#38; Glasgow.  For a bit of a laugh, I made the image above to commemorate the Sunday afternoon drive which led us to Luss.]]></description>
			<content:encoded><![CDATA[<div id="attachment_675" class="wp-caption aligncenter" style="width: 680px"><a href="http://mertonium.com/2010/03/pimpernel-petroleum/"><img class="size-medium wp-image-675 " title="luss_poem" src="http://mertonium.com/wp-content/uploads/2010/03/luss_poem-670x446.png" alt="" width="670" height="446" /></a><p class="wp-caption-text">Pimpernel Petroleum</p></div>
<p>Luss is one of a few villages on the edge of Loch Lomond.  There is also a Scottish nursery rhyme about a rough bus that goes between Luss &amp; Glasgow.  For a bit of a laugh, I made the image above to commemorate the Sunday afternoon drive which led us to Luss.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=674" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/03/pimpernel-petroleum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>12 Gauge Clippers</title>
		<link>http://mertonium.com/2010/03/12-gauge-clippers/</link>
		<comments>http://mertonium.com/2010/03/12-gauge-clippers/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 12:14:21 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Glasgow]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[clipper]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[guns]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=669</guid>
		<description><![CDATA[Ever since I moved to Scotland, I&#8217;ve noticed a Glaswegian affinity for the wee round lighter with the pentagon shaped flint wheel know as the &#8220;Clipper.&#8221;  After a little studying I discovered that diameter of a clipper is spot on with a 12 gauge shotgun shell.  Which brings us to the photos above, my 12...<a class="read-more" href="http://mertonium.com/2010/03/12-gauge-clippers/">&#160;&#160;Jump to the rest of &#171;12 Gauge Clippers&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_670" class="wp-caption aligncenter" style="width: 663px"><a href="http://mertonium.com/2010/03/12-gauge-clippers"><img class="size-medium wp-image-670  " title="RGB_lighters" src="http://mertonium.com/wp-content/uploads/2010/03/RGB_lighters-653x503.png" alt="" width="653" height="503" /></a><p class="wp-caption-text">Gauge  Clippers</p></div>
<p>Ever since I moved to Scotland, I&#8217;ve noticed a Glaswegian affinity for the wee round lighter with the pentagon shaped flint wheel know as the &#8220;<a title="Clipper on wikipedia" href="http://en.wikipedia.org/wiki/Clipper_%28lighter%29" target="_blank">Clipper</a>.&#8221;  After a little studying I discovered that diameter of a clipper is spot on with a 12 gauge shotgun shell.  Which brings us to the photos above, my 12 Gauge Clippers.</p>
<p>Ive got a few around, so if anyone wants one, leave a comment, or hit me on <a href="http://twitter.com/mertonium" target="_blank">Twitter</a>.  First come, first served.</p>
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=669" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/03/12-gauge-clippers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Duke of Wellington (in 3D)</title>
		<link>http://mertonium.com/2010/03/the-duke-of-wellington-in-3d/</link>
		<comments>http://mertonium.com/2010/03/the-duke-of-wellington-in-3d/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 11:11:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Glasgow]]></category>
		<category><![CDATA[Photographs]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[anaglyph]]></category>
		<category><![CDATA[outdoor]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[street]]></category>

		<guid isPermaLink="false">http://mertonium.com/?p=665</guid>
		<description><![CDATA[After reading a tutorial on how to make 3D photos in last months issue of .net, I decided to have a shot at it.  So yesterday I went &#8216;doon the toon&#8217; to find a subject for my experiment in the 3rd dimension.  Once I got to GoMA, it was obvious that my subject would be...<a class="read-more" href="http://mertonium.com/2010/03/the-duke-of-wellington-in-3d/">&#160;&#160;Jump to the rest of &#171;The Duke of Wellington (in 3D)&#187;&#160;</a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_666" class="wp-caption aligncenter" style="width: 543px"><img class="size-full wp-image-666" title="anaglyph-GoMA" src="http://mertonium.com/wp-content/uploads/2010/03/anaglyph-GoMA.png" alt="The Duke and his cap" width="533" height="579" /><p class="wp-caption-text">The Duke and his cap in 3D (glasses required)</p></div>
<p style="text-align: left;">
After reading a tutorial on how to make 3D photos in last months issue of <a title="The March 2010 issue of .net" href="http://www.netmag.co.uk/zine/latest-issue/issue-200" target="_blank">.net</a>, I decided to have a shot at it.  So yesterday I went &#8216;doon the toon&#8217; to find a subject for my experiment in the 3rd dimension.  Once I got to <a title="Info on GoMA" href="http://en.wikipedia.org/wiki/Gallery_of_Modern_Art" target="_blank">GoMA</a>, it was obvious that my subject would be the Duke of Wellington.</p>
<p style="text-align: left;">To see the above image in all its 3D glory you will need a pair of red &amp; blue 3D glasses.  If you don&#8217;t have any, I&#8217;ve got some links below on how to acquire a pair.</p>
<p style="text-align: left;"><a href="http://www.ehow.com/how_4455680_make-d-glasses.html" target="_blank">How to make 3D glasses</a><br />
<a href="http://www.rainbowsymphony.com/free-3d-glasses.html" target="_blank">Where to send away for a free pair of 3D glasses 1</a><br />
<a href="http://www.3dglassesonline.com/how-do-3d-glasses-work/" target="_blank">Where to send away for a free pair of 3D glasses 2</a></p>
<p style="text-align: left;">
 <img src="http://mertonium.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=665" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://mertonium.com/2010/03/the-duke-of-wellington-in-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
