<?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>Hendrik Will Photography</title>
	<atom:link href="http://hendrikwill.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hendrikwill.com</link>
	<description></description>
	<lastBuildDate>Sat, 07 Apr 2012 14:02:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Ohh</title>
		<link>http://hendrikwill.com/ohh/</link>
		<comments>http://hendrikwill.com/ohh/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 21:44:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=183</guid>
		<description><![CDATA[Model: Ohh, Koh Mak, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/ohh/20120204-img_7226.jpg"   class="thumb">
											<img title="20120204-img_7226" alt="20120204-img_7226" src="http://hendrikwill.com/wp-content/gallery/ohh/thumbs/thumbs_20120204-img_7226.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/ohh/20120204-img_7227.jpg"   class="thumb">
											<img title="20120204-img_7227" alt="20120204-img_7227" src="http://hendrikwill.com/wp-content/gallery/ohh/thumbs/thumbs_20120204-img_7227.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/ohh/20120204-img_7163.jpg"   class="thumb">
											<img title="20120204-img_7163" alt="20120204-img_7163" src="http://hendrikwill.com/wp-content/gallery/ohh/thumbs/thumbs_20120204-img_7163.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/ohh/20120204-img_7247.jpg"   class="thumb">
											<img title="20120204-img_7247" alt="20120204-img_7247" src="http://hendrikwill.com/wp-content/gallery/ohh/thumbs/thumbs_20120204-img_7247.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/ohh/20120204-img_7236.jpg"   class="thumb">
											<img title="20120204-img_7236" alt="20120204-img_7236" src="http://hendrikwill.com/wp-content/gallery/ohh/thumbs/thumbs_20120204-img_7236.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Model: Ohh,<br />
Koh Mak, 2012</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/ohh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Krabi</title>
		<link>http://hendrikwill.com/krabi/</link>
		<comments>http://hendrikwill.com/krabi/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 10:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=178</guid>
		<description><![CDATA[Model: Ohh, Krabi, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/krabi/20120122-img_6342.jpg"   class="thumb">
											<img title="Krabi, Thailand" alt="Krabi, Thailand" src="http://hendrikwill.com/wp-content/gallery/krabi/thumbs/thumbs_20120122-img_6342.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Model: Ohh,<br />
Krabi, 2012</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/krabi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Park Plaza Bangkok Business Hotel</title>
		<link>http://hendrikwill.com/park-plaza-bangkok-business-hotel/</link>
		<comments>http://hendrikwill.com/park-plaza-bangkok-business-hotel/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:27:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commission]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=162</guid>
		<description><![CDATA[Park Plaza Bangkok is 4 star Hotel in the center Bangkok. It is located in the Sukhumvit/Asoke area. Featured on agoda.com and booking.com, Post Production: Sebastian Dorbrietz / moodmood, Bangkok, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-1.jpg"   class="thumb">
											<img title="parkplaza_2011-1" alt="parkplaza_2011-1" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-1.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-13.jpg"   class="thumb">
											<img title="parkplaza_2011-13" alt="parkplaza_2011-13" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-13.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-25.jpg"   class="thumb">
											<img title="parkplaza_2011-25" alt="parkplaza_2011-25" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-25.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-33.jpg"   class="thumb">
											<img title="parkplaza_2011-33" alt="parkplaza_2011-33" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-33.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-36.jpg"   class="thumb">
											<img title="parkplaza_2011-36" alt="parkplaza_2011-36" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-36.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/parkplaza_2011-38.jpg"   class="thumb">
											<img title="parkplaza_2011-38" alt="parkplaza_2011-38" src="http://hendrikwill.com/wp-content/gallery/park_plaza_bkk/thumbs/thumbs_parkplaza_2011-38.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Park Plaza Bangkok is 4 star Hotel in the center Bangkok. It is located in the Sukhumvit/Asoke area.</p>
<p style="text-align: right;">Featured on agoda.com and booking.com,<br />
Post Production: <a href="http://www.moodmood.de">Sebastian Dorbrietz / moodmood</a>,<br />
Bangkok, 2011</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/park-plaza-bangkok-business-hotel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chiang Rai</title>
		<link>http://hendrikwill.com/chiang-rai/</link>
		<comments>http://hendrikwill.com/chiang-rai/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:26:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Landscape]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=166</guid>
		<description><![CDATA[Post Production: Sebastian Dorbrietz / moodmood.de, Chiang Rai, Thailand]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/chiang_rai/20110210-img_9335.jpg"   class="thumb">
											<img title="20110210-img_9335" alt="20110210-img_9335" src="http://hendrikwill.com/wp-content/gallery/chiang_rai/thumbs/thumbs_20110210-img_9335.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Post Production: <a href="http://www.moodmood.de">Sebastian Dorbrietz / moodmood.de</a>,<br /> Chiang Rai, Thailand</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/chiang-rai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lookbook for DSN</title>
		<link>http://hendrikwill.com/lookbook-for-dsn/</link>
		<comments>http://hendrikwill.com/lookbook-for-dsn/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 13:40:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commission]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=190</guid>
		<description><![CDATA[Lookbook for DSN Model: Milky, Bangkok, 2011 Post Production: Sebastian Dorbrietz / moodmood,]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_8.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_8.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_4.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_4.jpg" width="99" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_5.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_5.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_6.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_6.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_2.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_2.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_3.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_3.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/milky_2011_1.jpg"   class="thumb">
											<img title="Lookbook for DSN" alt="Lookbook for DSN" src="http://hendrikwill.com/wp-content/gallery/lookbook-for-dsn/thumbs/thumbs_milky_2011_1.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Lookbook for <a href="http://www.facebook.com/Deshiny">DSN </a><br />
Model: Milky,<br />
Bangkok, 2011</p>
<p style="text-align: right">Post Production: <a href="http://www.moodmood.de">Sebastian Dorbrietz / moodmood</a>,</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/lookbook-for-dsn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Felix Engel</title>
		<link>http://hendrikwill.com/felix-engel/</link>
		<comments>http://hendrikwill.com/felix-engel/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 17:42:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=159</guid>
		<description><![CDATA[Felix Engel for Yabazz, Nürnberg, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/felix-engel/felix-hw-3.jpg"   class="thumb">
											<img title="Felix Engel" alt="Felix Engel" src="http://hendrikwill.com/wp-content/gallery/felix-engel/thumbs/thumbs_felix-hw-3.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/felix-engel/felix-hw-2.jpg"   class="thumb">
											<img title="Felix Engel" alt="Felix Engel" src="http://hendrikwill.com/wp-content/gallery/felix-engel/thumbs/thumbs_felix-hw-2.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/felix-engel/felix-hw-4.jpg"   class="thumb">
											<img title="Felix Engel" alt="Felix Engel" src="http://hendrikwill.com/wp-content/gallery/felix-engel/thumbs/thumbs_felix-hw-4.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/felix-engel/felix-hw-1.jpg"   class="thumb">
											<img title="Felix Engel" alt="Felix Engel" src="http://hendrikwill.com/wp-content/gallery/felix-engel/thumbs/thumbs_felix-hw-1.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/felix-engel/felix-hw-5.jpg"   class="thumb">
											<img title="Felix Engel" alt="Felix Engel" src="http://hendrikwill.com/wp-content/gallery/felix-engel/thumbs/thumbs_felix-hw-5.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Felix Engel for Yabazz, Nürnberg, 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/felix-engel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sonia</title>
		<link>http://hendrikwill.com/sonia/</link>
		<comments>http://hendrikwill.com/sonia/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 21:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=137</guid>
		<description><![CDATA[Sonia, Hannover, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sonia/20100821-img_7686.jpg"   class="thumb">
											<img title="Sonia" alt="Sonia" src="http://hendrikwill.com/wp-content/gallery/sonia/thumbs/thumbs_20100821-img_7686.jpg" width="99" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sonia/20100821-img_7687.jpg"   class="thumb">
											<img title="Sonia" alt="Sonia" src="http://hendrikwill.com/wp-content/gallery/sonia/thumbs/thumbs_20100821-img_7687.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Sonia, Hannover, 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/sonia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Skies</title>
		<link>http://hendrikwill.com/blue-skies/</link>
		<comments>http://hendrikwill.com/blue-skies/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 20:59:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Landscape]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=117</guid>
		<description><![CDATA[Sylt, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/crw_7348.jpg"   class="thumb">
											<img title="crw_7348" alt="crw_7348" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_crw_7348.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/20100709-img_7075.jpg"   class="thumb">
											<img title="Kampen, Sylt" alt="Kampen, Sylt" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_20100709-img_7075.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/20100709-img_7061.jpg"   class="thumb">
											<img title="Kampen, Sylt" alt="Kampen, Sylt" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_20100709-img_7061.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/20100711-img_7240.jpg"   class="thumb">
											<img title="Braderup, Sylt" alt="Braderup, Sylt" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_20100711-img_7240.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/20100711-img_7274.jpg"   class="thumb">
											<img title="Braderup, Sylt" alt="Braderup, Sylt" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_20100711-img_7274.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/blue-skies/20100711-img_7285.jpg"   class="thumb">
											<img title="Braderup, Sylt" alt="Braderup, Sylt" src="http://hendrikwill.com/wp-content/gallery/blue-skies/thumbs/thumbs_20100711-img_7285.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Sylt, 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/blue-skies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Natascha</title>
		<link>http://hendrikwill.com/natascha/</link>
		<comments>http://hendrikwill.com/natascha/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 17:05:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=141</guid>
		<description><![CDATA[Model: Natascha, Make-Up/Styling: Sally, Retouching: Sebastian Dorbrietz, Braunschweig, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/natascha/natascha1.jpg"   class="thumb">
											<img title="natascha1" alt="natascha1" src="http://hendrikwill.com/wp-content/gallery/natascha/thumbs/thumbs_natascha1.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Model: Natascha, Make-Up/Styling: Sally,<br /> Retouching: <a href="http://www.facebook.com/pages/Sebastian-Dorbrietz-Photography/145463978823532">Sebastian Dorbrietz</a>,<br /> Braunschweig, 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/natascha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sahra</title>
		<link>http://hendrikwill.com/sahra/</link>
		<comments>http://hendrikwill.com/sahra/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 00:18:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://hendrikwill.com/?p=104</guid>
		<description><![CDATA[Sahra, ]]></description>
			<content:encoded><![CDATA[    <div id="nexgal">
        <div id="loading" class="loader"></div> 
        <div id="thumbs" class="navigation"> 
            <ul class="thumbs noscript"> 
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sahra/img_3854.jpg"   class="thumb">
											<img title="Sahra" alt="Sahra" src="http://hendrikwill.com/wp-content/gallery/sahra/thumbs/thumbs_img_3854.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sahra/img_3877.jpg"   class="thumb">
											<img title="Sahra" alt="Sahra" src="http://hendrikwill.com/wp-content/gallery/sahra/thumbs/thumbs_img_3877.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sahra/img_3891.jpg"   class="thumb">
											<img title="Sahra" alt="Sahra" src="http://hendrikwill.com/wp-content/gallery/sahra/thumbs/thumbs_img_3891.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sahra/img_3900.jpg"   class="thumb">
											<img title="Sahra" alt="Sahra" src="http://hendrikwill.com/wp-content/gallery/sahra/thumbs/thumbs_img_3900.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                                <li>
                    <a href="http://hendrikwill.com/wp-content/gallery/sahra/img_3930.jpg"   class="thumb">
											<img title="Sahra" alt="Sahra" src="http://hendrikwill.com/wp-content/gallery/sahra/thumbs/thumbs_img_3930.jpg" width="100" height="100" />
					                    </a>
                    <div class="caption"> </div>
                </li>
                            </ul>
			<a class="pageLink next" style="visibility: hidden;" href="#" title="Next Page"></a>
        </div> 
		<div id="slideshow" class="slideshow"></div> 
        <div id="captions" class="captions"></div> 
        <div style="clear: both;"></div> 
        <script type="text/javascript"> 
            jQuery(document).ready(function() {
				
				var onMouseOutOpacity = 0.8;
				jQuery('#thumbs.navigation .thumbs li').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});
				
			
                // Initialize Minimal Galleriffic Gallery
                var gallery = jQuery('#thumbs').galleriffic({
					delay:                     2500,
					numThumbs:                 10,
					preloadAhead:              10,
                    imageContainerSel:      '#slideshow',
                    captionContainerSel:   '#captions',
                    playLinkText:   '',
                    pauseLinkText:  '',
                    enableTopPager: false,
                    enableBottomPager: false,
                    renderSSControls:   false,
					defaultTransitionDuration: 0,
					syncTransitions:           true,
					enableHistory:             true,
										onSlideChange:             function(prevIndex, nextIndex) {
						// 'this' refers to the gallery, which is an extension of $('#thumbs')
						this.find('ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);

						// Update the photo index display
						this.$captionContainer.find('div.photo-index')
							.html('Photo '+ (nextIndex+1) +' of '+ this.data.length);
					},
					onPageTransitionOut:       function(callback) {
						this.fadeTo('fast', 0.0, callback);
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('visibility', 'hidden');
						var nextPageLink = this.find('a.next').css('visibility', 'hidden');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('visibility', 'visible');

						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('visibility', 'visible');

						this.fadeTo('fast', 1.0);
					}
                    
                });
				
				/**************** Event handlers for custom next / prev page links **********************/

				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});

				gallery.find('a.next').click(function(e) {
					gallery.nextPage();
					e.preventDefault();
				});
				
				/****************************************************************************************/

				/**** Functions to support integration of galleriffic with the jquery.history plugin ****/

				// PageLoad function
				// This function is called when:
				// 1. after calling $.historyInit();
				// 2. after calling $.historyLoad();
				// 3. after pushing "Go Back" button of a browser
				function pageload(hash) {
					// alert("pageload: " + hash);
					// hash doesn't contain the first # character.
					if(hash) {
						jQuery.galleriffic.gotoImage(hash);
					} else {
						gallery.gotoIndex(0);
					}
				}

				// Initialize history plugin.
				// The callback is called at once by present location.hash. 
				jQuery.historyInit(pageload, "advanced.html");

				// set onlick event for buttons using the jQuery 1.3 live method
				jQuery("a[rel='history']").live('click', function(e) {
					if (e.button != 0) return true;

					var hash = this.href;
					hash = hash.replace(/^.*#/, '');

					// moves to a new page. 
					// pageload is called at once. 
					// hash don't contain "#", "?"
					jQuery.historyLoad(hash);

					return false;
				});

				
            });
        </script> 
    </div>

<p style="text-align: right;">Sahra, 2009</p>
]]></content:encoded>
			<wfw:commentRss>http://hendrikwill.com/sahra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

