<?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>Lynggaard.nu</title>
	<atom:link href="http://lynggaard.nu/feed/" rel="self" type="application/rss+xml" />
	<link>http://lynggaard.nu</link>
	<description>In this blog I'll write about what's going on in my world, like vacations, developing, asp.net, c#</description>
	<lastBuildDate>Fri, 07 Sep 2029 09:58:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adding records to Umbraco Contour programmatically</title>
		<link>http://lynggaard.nu/2010/05/adding-records-to-umbraco-contour-programmatically/</link>
		<comments>http://lynggaard.nu/2010/05/adding-records-to-umbraco-contour-programmatically/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:18:03 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Umbraco]]></category>
		<category><![CDATA[contour]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=218</guid>
		<description><![CDATA[I just had to programmatically add records to an Umbraco Contour Form. Since I couldn&#8217;t find any documentation on how to do this, I thought I would post how I did this. I have an input box (tbEmail) and a button (btnSubmit). On the click event of btnSubmit I got the following code, that adds [...]]]></description>
			<content:encoded><![CDATA[<p>I just had to programmatically add records to an Umbraco Contour Form. Since I couldn&#8217;t find any documentation on how to do this, I thought I would post how I did this.</p>
<p>I have an input box (tbEmail) and a button (btnSubmit). On the click event of btnSubmit I got the following code, that adds a record to the form.</p>
<div class="geshi no csharp">
<div class="head">btnSubmit_Click</div>
<ol>
<li class="li1">
<div class="de1"><span class="kw1">protected</span> <span class="kw1">void</span> btnSubmit_Click<span class="br0">&#40;</span><span class="kw4">object</span> sender, EventArgs e<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var recordStorage <span class="sy0">=</span> <span class="kw3">new</span> RecordStorage<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var formStorage <span class="sy0">=</span> <span class="kw3">new</span> FormStorage<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var form <span class="sy0">=</span> formStorage.<span class="me1">GetForm</span><span class="br0">&#40;</span><span class="kw3">new</span> Guid<span class="br0">&#40;</span><span class="st0">&quot;my form guid&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var recordService <span class="sy0">=</span> <span class="kw3">new</span> RecordService<span class="br0">&#40;</span>form<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordService.<span class="me1">Open</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var record <span class="sy0">=</span> recordService.<span class="me1">Record</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; record.<span class="me1">IP</span> <span class="sy0">=</span> Request.<span class="me1">UserHostAddress</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; record.<span class="me1">UmbracoPageId</span> <span class="sy0">=</span> umbraco.<span class="me1">presentation</span>.<span class="me1">nodeFactory</span>.<span class="me1">Node</span>.<span class="me1">GetCurrent</span><span class="br0">&#40;</span><span class="br0">&#41;</span>.<span class="me1">Id</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordStorage.<span class="me1">InsertRecord</span><span class="br0">&#40;</span>record, form<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">foreach</span> <span class="br0">&#40;</span>var field <span class="kw1">in</span> recordService.<span class="me1">Form</span>.<span class="me1">AllFields</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span>field.<span class="me1">Caption</span> <span class="sy0">==</span> <span class="st0">&quot;#Email&quot;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var key <span class="sy0">=</span> Guid.<span class="me1">NewGuid</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var recordField <span class="sy0">=</span> <span class="kw3">new</span> RecordField<span class="br0">&#40;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Field <span class="sy0">=</span> field,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Key <span class="sy0">=</span> key,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Record <span class="sy0">=</span> record.<span class="me1">Id</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Values <span class="sy0">=</span> <span class="kw3">new</span> List<span class="sy0">&lt;</span><span class="kw4">object</span><span class="sy0">&gt;</span><span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> tbEmail.<span class="me1">Text</span> <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var recordFieldStorage <span class="sy0">=</span> <span class="kw3">new</span> RecordFieldStorage<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordFieldStorage.<span class="me1">InsertRecordField</span><span class="br0">&#40;</span>recordField<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; record.<span class="me1">RecordFields</span>.<span class="me1">Add</span><span class="br0">&#40;</span>key, recordField<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordService.<span class="me1">Submit</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordService.<span class="me1">SaveRecord</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; recordService.<span class="me1">Dispose</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><span class="sy0">&lt;/</span><span class="kw4">object</span><span class="sy0">&gt;</span></div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2010/05/adding-records-to-umbraco-contour-programmatically/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Umbraco Package</title>
		<link>http://lynggaard.nu/2009/10/new-umbraco-package/</link>
		<comments>http://lynggaard.nu/2009/10/new-umbraco-package/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:21:25 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Umbraco]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=206</guid>
		<description><![CDATA[I&#8217;ve just made a new Umbraco Package. What it does is, that it automatically creates canonical meta tags, if the url used is not the one found by Umbracos NiceUrl. Especially useful if you use umbracoUrlAlias or umbracoUseDirectoryUrls To use the extension, download the package and install it to your Umbraco solution. When done, just [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just made a new Umbraco Package. What it does is, that it automatically creates canonical meta tags, if the url used is not the one found by Umbracos NiceUrl. Especially useful if you use umbracoUrlAlias or umbracoUseDirectoryUrls</p>
<p>To use the extension, download the package and install it to your Umbraco solution. When done, just add the [DI]Canonical macro to your templates. If you have a page, that uses that template and uses umbracoUrlAlias and the user/search enginge came via that link, the canonical meta tag will be present in the header.</p>
<p>You can download the source and package at <a href="http://umbcanonical.codeplex.com" target="_blank">codeplex</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/10/new-umbraco-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videos from past concerts</title>
		<link>http://lynggaard.nu/2009/10/videos-from-past-concerts/</link>
		<comments>http://lynggaard.nu/2009/10/videos-from-past-concerts/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 15:52:31 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Concerts]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=185</guid>
		<description><![CDATA[Just added some videos from previous ceoncerts I&#8217;ve been to. See them here]]></description>
			<content:encoded><![CDATA[<p>Just added some videos from previous ceoncerts I&#8217;ve been to.</p>
<p><a title="Concert videos" href="/galleries/concert-videos/">See them here<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/10/videos-from-past-concerts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Wild life&#8221; vacation day 3</title>
		<link>http://lynggaard.nu/2009/08/wild-life-vacation-day-3/</link>
		<comments>http://lynggaard.nu/2009/08/wild-life-vacation-day-3/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 09:52:56 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Vacation]]></category>
		<category><![CDATA[Camping]]></category>
		<category><![CDATA[Wild Life]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=182</guid>
		<description><![CDATA[On the third day of our vacation we took the ferry from Fynshav to Bøjden on Fyn. From here we drove to Langeland with a stop at Valdemar Castle where Sigurd was in the ocean and played with his new toy &#8211; a floating ring. After Valdemar Slot we went to Langeland, which is a [...]]]></description>
			<content:encoded><![CDATA[<p>On the third day of our vacation we took the ferry from Fynshav to Bøjden on Fyn. From here we drove to Langeland with a stop at Valdemar Castle where Sigurd was in the ocean and played with his new toy &#8211; a floating ring.</p>
<p>After Valdemar Slot we went to Langeland, which is a very beautiful island. Especially the southern part of Langeland. We didn&#8217;t do much here except enjoying the nature and each other. One of the things we did see was a sanctuary which among other species also had wild horses.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-16-182">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://lynggaard.nu/2009/08/wild-life-vacation-day-3/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-474" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0734.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0734" alt="IMG_0734" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0734.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-475" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0735.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0735" alt="IMG_0735" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0735.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-476" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0736.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0736" alt="IMG_0736" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0736.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-477" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0737.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0737" alt="IMG_0737" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0737.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-478" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0738.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0738" alt="IMG_0738" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0738.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-479" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0739.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0739" alt="IMG_0739" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0739.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-480" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0740.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0740" alt="IMG_0740" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0740.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-481" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0741.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0741" alt="IMG_0741" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0741.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-482" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0742.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0742" alt="IMG_0742" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0742.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-483" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0743.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0743" alt="IMG_0743" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0743.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-484" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0744.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0744" alt="IMG_0744" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0744.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-485" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0745.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0745" alt="IMG_0745" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0745.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-486" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0746.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0746" alt="IMG_0746" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0746.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-487" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0747.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0747" alt="IMG_0747" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0747.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-488" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0748.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0748" alt="IMG_0748" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0748.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-489" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0749.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0749" alt="IMG_0749" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0749.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-490" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0750.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0750" alt="IMG_0750" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0750.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-491" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0751.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0751" alt="IMG_0751" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0751.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-492" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0752.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0752" alt="IMG_0752" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0752.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-493" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0753.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0753" alt="IMG_0753" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0753.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-494" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0755.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0755" alt="IMG_0755" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0755.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-495" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0756.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0756" alt="IMG_0756" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0756.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-496" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0757.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0757" alt="IMG_0757" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0757.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-497" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0758.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0758" alt="IMG_0758" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0758.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-498" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0759.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0759" alt="IMG_0759" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0759.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-499" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0774.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0774" alt="IMG_0774" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0774.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-500" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0775.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0775" alt="IMG_0775" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0775.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-501" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0776.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0776" alt="IMG_0776" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0776.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-502" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0777.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0777" alt="IMG_0777" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0777.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-503" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0778.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0778" alt="IMG_0778" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0778.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-504" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0779.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0779" alt="IMG_0779" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0779.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-505" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0780.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0780" alt="IMG_0780" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0780.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-506" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0781.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0781" alt="IMG_0781" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0781.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-507" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0782.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0782" alt="IMG_0782" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0782.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-508" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0783.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0783" alt="IMG_0783" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0783.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-509" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0784.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0784" alt="IMG_0784" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0784.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-510" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0785.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0785" alt="IMG_0785" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0785.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-511" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0786.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0786" alt="IMG_0786" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0786.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-512" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0787.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0787" alt="IMG_0787" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0787.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-513" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0788.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0788" alt="IMG_0788" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0788.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-514" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0789.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0789" alt="IMG_0789" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0789.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-515" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0790.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0790" alt="IMG_0790" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0790.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-516" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0791.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0791" alt="IMG_0791" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0791.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-517" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0792.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0792" alt="IMG_0792" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0792.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-518" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0793.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0793" alt="IMG_0793" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0793.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-519" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0794.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0794" alt="IMG_0794" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0794.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-520" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0797.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0797" alt="IMG_0797" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0797.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-521" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0798.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0798" alt="IMG_0798" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0798.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-522" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0799.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0799" alt="IMG_0799" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0799.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-523" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0800.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0800" alt="IMG_0800" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0800.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-524" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0802.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0802" alt="IMG_0802" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0802.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-525" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0803.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0803" alt="IMG_0803" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0803.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-526" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0804.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0804" alt="IMG_0804" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0804.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-527" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0809.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0809" alt="IMG_0809" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0809.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-528" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0810.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0810" alt="IMG_0810" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0810.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-529" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0813.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0813" alt="IMG_0813" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0813.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-530" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0815.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0815" alt="IMG_0815" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0815.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-531" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/IMG_0816.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="IMG_0816" alt="IMG_0816" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_IMG_0816.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-532" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/Panorama1.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="Panorama1" alt="Panorama1" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day3/thumbs/thumbs_Panorama1.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


<p><object width="425" height="350" data="http://www.youtube.com/v/rFDqheJ_TbM" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/rFDqheJ_TbM" /></object></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/EVZUzq9wLCE" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/EVZUzq9wLCE" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/08/wild-life-vacation-day-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Wild life” vacation day 2</title>
		<link>http://lynggaard.nu/2009/08/wild-life-vacation-day-2/</link>
		<comments>http://lynggaard.nu/2009/08/wild-life-vacation-day-2/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 12:03:28 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Vacation]]></category>
		<category><![CDATA[Camping]]></category>
		<category><![CDATA[Tent]]></category>
		<category><![CDATA[Wild Life]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=174</guid>
		<description><![CDATA[On the second day of our vacation we decided to go further south. The newest member of the royal family was to be christened on this day in Møgeltønder. We didn&#8217;t know when, but decided to go to Møgeltønder in the morning, and see what all the excitement was all about. When we arrived there [...]]]></description>
			<content:encoded><![CDATA[<p>On the second day of our vacation we decided to go further south. The newest member of the royal family was to be christened on this day in Møgeltønder. We didn&#8217;t know when, but decided to go to Møgeltønder in the morning, and see what all the excitement was all about. When we arrived there wasn&#8217;t much excitement though, only a lot of people from the press setting up equipment. We decided to call a lifeline, to hear at what time the christening was planned. It turned out there were several hours to the event. So we decided to take a walk in the park and the beautiful old city and then move on.</p>
<p>After our stroll in the park and city, we went to Højer Sluse to see the view, then Tønder where we had lunch. After lunch we drove to Als and found a nice spot in a forest just next to the beach with a view over Fynshav. We also brought a bit of luxury into the wild, so opened a bottle of Rosé and a box of the best chocolate in the world &#8211; Neuhaus and enjoyed each others company, the wine, chocolate and the view.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-15-174">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://lynggaard.nu/2009/08/wild-life-vacation-day-2/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-452" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0695.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0695" alt="IMG_0695" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0695.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-453" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0696.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0696" alt="IMG_0696" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0696.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-454" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0697.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0697" alt="IMG_0697" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0697.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-455" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0698.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0698" alt="IMG_0698" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0698.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-456" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0699.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0699" alt="IMG_0699" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0699.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-457" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0700.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0700" alt="IMG_0700" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0700.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-458" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0701.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0701" alt="IMG_0701" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0701.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-459" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0702.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0702" alt="IMG_0702" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0702.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-460" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0703.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0703" alt="IMG_0703" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0703.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-461" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0704.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0704" alt="IMG_0704" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0704.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-462" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0705.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0705" alt="IMG_0705" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0705.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-463" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0706.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0706" alt="IMG_0706" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0706.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-464" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0707.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0707" alt="IMG_0707" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0707.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-465" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0708.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0708" alt="IMG_0708" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0708.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-466" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0709.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0709" alt="IMG_0709" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0709.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-467" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0710.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0710" alt="IMG_0710" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0710.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-468" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0711.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0711" alt="IMG_0711" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0711.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-469" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0712.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0712" alt="IMG_0712" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0712.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-470" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0715.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0715" alt="IMG_0715" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0715.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-471" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0716.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0716" alt="IMG_0716" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0716.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-472" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0717.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0717" alt="IMG_0717" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0717.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-473" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/IMG_0718.jpg" title=" " class="thickbox" rel="set_15" >
								<img title="IMG_0718" alt="IMG_0718" src="http://lynggaard.nu/wp-content/gallery/2009-31-vacation/day2/thumbs/thumbs_IMG_0718.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


<p><object width="425" height="350" data="http://www.youtube.com/v/mFmr7fCN8yM" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/mFmr7fCN8yM" /></object></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/a-EoiN1afT8" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/a-EoiN1afT8" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/08/wild-life-vacation-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Wild life&#8221; vacation day 1</title>
		<link>http://lynggaard.nu/2009/07/wild-life-vacation-day-1/</link>
		<comments>http://lynggaard.nu/2009/07/wild-life-vacation-day-1/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 18:40:53 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Vacation]]></category>
		<category><![CDATA[Camping]]></category>
		<category><![CDATA[Tent]]></category>
		<category><![CDATA[Wild Life]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=165</guid>
		<description><![CDATA[In this week we (my girlfriend Karin, My self and our dog Sigurd) went on a tent trip. The first of its kind for me &#8211; hence the title. We packed the car with a tent, sleeping bags, clothes, cooling back etc. and went on our adventure. We planned in advance that we would go [...]]]></description>
			<content:encoded><![CDATA[<p>In this week we (my girlfriend Karin, My self and our dog Sigurd) went on a tent trip. The first of its kind for me &#8211; hence the title. We packed the car with a tent, sleeping bags, clothes, cooling back etc. and went on our adventure. We planned in advance that we would go to the southern part of Denmark. According to DMI that part of the country had the best weather forecast.</p>
<p>On the first day we first went to Givskud Zoo. After that visit we went furher south to Jels. Parked the car by Nedersø, which we to a walk around. Had dinner at Royal Oak Golf Club half ways and then went for rest of the walk.<br />
At night we stayed at campsite. Don&#8217;t want to start the &#8220;wild life&#8221; vacation out to hard&#8230;..</p>

<div class="ngg-galleryoverview" id="ngg-gallery-14-165">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://lynggaard.nu/2009/07/wild-life-vacation-day-1/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-408" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0645.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0645" alt="IMG_0645" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0645.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-409" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0646.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0646" alt="IMG_0646" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0646.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-410" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0647.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0647" alt="IMG_0647" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0647.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-411" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0648.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0648" alt="IMG_0648" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0648.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-412" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0649.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0649" alt="IMG_0649" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0649.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-413" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0650.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0650" alt="IMG_0650" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0650.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-414" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0651.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0651" alt="IMG_0651" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0651.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-415" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0652.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0652" alt="IMG_0652" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0652.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-416" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0653.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0653" alt="IMG_0653" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0653.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-417" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0654.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0654" alt="IMG_0654" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0654.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-418" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0655.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0655" alt="IMG_0655" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0655.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-419" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0656.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0656" alt="IMG_0656" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0656.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-420" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0657.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0657" alt="IMG_0657" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0657.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-421" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0658.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0658" alt="IMG_0658" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0658.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-422" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0659.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0659" alt="IMG_0659" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0659.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-423" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0660.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0660" alt="IMG_0660" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0660.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-424" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0661.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0661" alt="IMG_0661" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0661.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-425" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0662.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0662" alt="IMG_0662" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0662.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-426" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0663.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0663" alt="IMG_0663" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0663.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-427" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0664.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0664" alt="IMG_0664" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0664.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-428" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0665.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0665" alt="IMG_0665" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0665.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-429" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0666.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0666" alt="IMG_0666" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0666.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-430" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0667.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0667" alt="IMG_0667" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0667.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-431" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0668.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0668" alt="IMG_0668" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0668.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-432" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0669.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0669" alt="IMG_0669" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0669.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-433" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0670.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0670" alt="IMG_0670" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0670.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-434" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0671.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0671" alt="IMG_0671" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0671.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-435" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0672.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0672" alt="IMG_0672" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0672.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-436" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0673.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0673" alt="IMG_0673" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0673.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-437" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0674.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0674" alt="IMG_0674" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0674.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-438" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0676.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0676" alt="IMG_0676" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0676.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-439" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0677.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0677" alt="IMG_0677" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0677.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-440" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0678.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0678" alt="IMG_0678" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0678.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-441" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0679.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0679" alt="IMG_0679" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0679.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-442" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0681.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0681" alt="IMG_0681" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0681.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-443" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0682.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0682" alt="IMG_0682" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0682.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-444" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0683.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0683" alt="IMG_0683" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0683.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-445" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0684.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0684" alt="IMG_0684" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0684.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-446" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0685.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0685" alt="IMG_0685" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0685.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-447" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0686.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0686" alt="IMG_0686" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0686.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-448" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0687.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0687" alt="IMG_0687" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0687.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-449" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0688.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0688" alt="IMG_0688" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0688.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-450" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0689.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0689" alt="IMG_0689" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0689.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-451" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/IMG_0690.jpg" title=" " class="thickbox" rel="set_14" >
								<img title="IMG_0690" alt="IMG_0690" src="http://lynggaard.nu//wp-content/gallery/2009-31-vacation/day1/thumbs/thumbs_IMG_0690.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


<p><object width="425" height="350" data="http://www.youtube.com/v/YTeeChh49tQ" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/YTeeChh49tQ" /></object></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/pSRAGanJNEw" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/pSRAGanJNEw" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/07/wild-life-vacation-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Walk in closet pt. 1</title>
		<link>http://lynggaard.nu/2009/06/walk-in-closet-pt-1/</link>
		<comments>http://lynggaard.nu/2009/06/walk-in-closet-pt-1/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 14:54:47 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bolig]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/2009/06/walk-in-closet-pt-1/</guid>
		<description><![CDATA[Our new closet can now be taken into use. Still not finished, but usable.]]></description>
			<content:encoded><![CDATA[<p>Our new closet can now be taken into use. Still not finished, but usable. </p>
<p><a href="http://lynggaard.nu/wp-content/uploads/2009/06/l-1600-1200-93f069d7-99f8-443a-b70e-14a9773864bb.jpeg"><img src="http://lynggaard.nu/wp-content/uploads/2009/06/l-1600-1200-93f069d7-99f8-443a-b70e-14a9773864bb.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/06/walk-in-closet-pt-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>We went looking</title>
		<link>http://lynggaard.nu/2009/04/we-went-looking/</link>
		<comments>http://lynggaard.nu/2009/04/we-went-looking/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 07:43:57 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bolig]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=159</guid>
		<description><![CDATA[Yesterday we went looking at three different houses. They were all good in their own way, but one stood out. The house I mentioned the other day. So if we can agree on a contract, that is going to be our new home]]></description>
			<content:encoded><![CDATA[<p>Yesterday we went looking at three different houses. They were all good in their own way, but one stood out. The house I mentioned the other day. So if we can agree on a contract, that is going to be our new home <img src='http://lynggaard.nu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/04/we-went-looking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nemhandel.dk on Umbraco</title>
		<link>http://lynggaard.nu/2009/04/nemhandeldk-on-umbraco/</link>
		<comments>http://lynggaard.nu/2009/04/nemhandeldk-on-umbraco/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 05:44:49 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[Umbraco]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=156</guid>
		<description><![CDATA[How did I forget about this. Last week we launched nemhandel.dk. Nemhandel.dk is build on Umbraco and is, what I think a nice implementation of a public sector site.]]></description>
			<content:encoded><![CDATA[<p>How did I forget about this. Last week we launched <a href="http://www.nemhandel.dk" target="_blank">nemhandel.dk</a>. <a href="http://www.nemhandel.dk" target="_blank">Nemhandel.dk</a> is build on Umbraco and is, what I think a nice implementation of a public sector site.</p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/04/nemhandeldk-on-umbraco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New potential house</title>
		<link>http://lynggaard.nu/2009/04/new-potential-house/</link>
		<comments>http://lynggaard.nu/2009/04/new-potential-house/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 20:32:24 +0000</pubDate>
		<dc:creator>Rasmus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bolig]]></category>

		<guid isPermaLink="false">http://lynggaard.nu/?p=152</guid>
		<description><![CDATA[After this weekends situation regarding our housing situation, we&#8217;ve managed to find an even better potential. It&#8217;s located in a city near Aarhus called Hørning. It looks very positive. We are going to see it in live on wednesday and hopefully it&#8217;s as good as it seems, although nothing ever seems to be You can [...]]]></description>
			<content:encoded><![CDATA[<p>After this weekends situation regarding our housing situation, we&#8217;ve managed to find an even better potential. It&#8217;s located in a city near Aarhus called Hørning. It looks very positive. We are going to see it in live on wednesday and hopefully it&#8217;s as good as it seems, although nothing ever seems to be <img src='http://lynggaard.nu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>You can see a few pictures here:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-12-152">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://lynggaard.nu/2009/04/new-potential-house/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-358" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/rosenvaenget/617-7017101.jpg" title=" " class="thickbox" rel="set_12" >
								<img title="617-7017101.jpg" alt="617-7017101.jpg" src="http://lynggaard.nu/wp-content/gallery/rosenvaenget/thumbs/thumbs_617-7017101.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-359" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/rosenvaenget/617-7017109.jpg" title=" " class="thickbox" rel="set_12" >
								<img title="617-7017109.jpg" alt="617-7017109.jpg" src="http://lynggaard.nu/wp-content/gallery/rosenvaenget/thumbs/thumbs_617-7017109.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-360" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/rosenvaenget/617-7017112.jpg" title=" " class="thickbox" rel="set_12" >
								<img title="617-7017112.jpg" alt="617-7017112.jpg" src="http://lynggaard.nu/wp-content/gallery/rosenvaenget/thumbs/thumbs_617-7017112.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-361" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/rosenvaenget/617-7017114.jpg" title=" " class="thickbox" rel="set_12" >
								<img title="617-7017114.jpg" alt="617-7017114.jpg" src="http://lynggaard.nu/wp-content/gallery/rosenvaenget/thumbs/thumbs_617-7017114.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-362" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://lynggaard.nu/wp-content/gallery/rosenvaenget/617-7017123.jpg" title=" " class="thickbox" rel="set_12" >
								<img title="617-7017123.jpg" alt="617-7017123.jpg" src="http://lynggaard.nu/wp-content/gallery/rosenvaenget/thumbs/thumbs_617-7017123.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://lynggaard.nu/2009/04/new-potential-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

