<?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>Sytse van der Zee &#187; John&#8217;s Woodhouse</title>
	<atom:link href="https://sytsevanderzee.nl/category/john-woodhouse/feed/" rel="self" type="application/rss+xml" />
	<link>https://sytsevanderzee.nl</link>
	<description>Illustrator &#38; Tekenaar</description>
	<lastBuildDate>Thu, 30 Apr 2026 17:31:39 +0000</lastBuildDate>
	<language>nl</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>cover</title>
		<link>https://sytsevanderzee.nl/1/</link>
		<comments>https://sytsevanderzee.nl/1/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 12:00:47 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2081</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2081" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2081" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/cover.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/cover-50x50.jpg" alt="" title="cover" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2081" class="loader"></div>
					<div id="slideshow_2081" class="slideshow"></div>
					<div id="caption_2081" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2081" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2081 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2081').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2081',
					controlsContainerSel:      '#controls_2081',
					captionContainerSel:       '#caption_2081',  
					loadingContainerSel:       '#loading_2081',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>case</title>
		<link>https://sytsevanderzee.nl/case/</link>
		<comments>https://sytsevanderzee.nl/case/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:59:04 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2071</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2071" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2071" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2019/01/Johns-webtekst-feb-2020-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2019/01/Johns-webtekst-feb-2020-50x50.jpg" alt="" title="John&#039;s webtekst feb 2020" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2071" class="loader"></div>
					<div id="slideshow_2071" class="slideshow"></div>
					<div id="caption_2071" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2071" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2071 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2071').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2071',
					controlsContainerSel:      '#controls_2071',
					captionContainerSel:       '#caption_2071',  
					loadingContainerSel:       '#loading_2071',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cast</title>
		<link>https://sytsevanderzee.nl/cast/</link>
		<comments>https://sytsevanderzee.nl/cast/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:58:28 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2048</guid>
		<description><![CDATA[John's Woodhouse]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2048" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2048" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/1-John.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/1-John-50x50.jpg" alt="" title="1 John" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">John Wood > unfinished business is unbearable to him</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/2-Desire.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/2-Desire-50x50.jpg" alt="" title="2 Desire" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Desire > the lost love </div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/3-Sherilyn.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/3-Sherilyn-50x50.jpg" alt="" title="3 Sherilyn" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Sherilyn > the heir</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/4-Harry.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/4-Harry-50x50.jpg" alt="" title="4 Harry" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Harry > who harvests his investment</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/5-Leo.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/5-Leo-50x50.jpg" alt="" title="5 Leo" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Leo > one of the abandoned twins </div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/6-Norman.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/6-Norman-50x50.jpg" alt="" title="6 Norman" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Norman > the accordionist of the abandoned twins</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/7-Goedhardt.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/7-Goedhardt-50x50.jpg" alt="" title="7 Goedhardt" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">notary Goedhardt > the loyal friend</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/8-Abigail.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/8-Abigail-50x50.jpg" alt="" title="8 Abigail" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Abigail > the smart one</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/9-Deborah.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/9-Deborah-50x50.jpg" alt="" title="9 Deborah" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Deborah > the one who suffers most</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/10-De.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/10-De-50x50.jpg" alt="" title="10 De" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">De > who falls in love</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/11-Ed.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/11-Ed-50x50.jpg" alt="" title="11 Ed" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc">Ed > who also falls in love</div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2048" class="loader"></div>
					<div id="slideshow_2048" class="slideshow"></div>
					<div id="caption_2048" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2048" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2048 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2048').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2048',
					controlsContainerSel:      '#controls_2048',
					captionContainerSel:       '#caption_2048',  
					loadingContainerSel:       '#loading_2048',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/cast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5</title>
		<link>https://sytsevanderzee.nl/5/</link>
		<comments>https://sytsevanderzee.nl/5/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:57:46 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2416</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2416" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2416" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2019/01/5-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2019/01/5-50x50.jpg" alt="" title="5" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2416" class="loader"></div>
					<div id="slideshow_2416" class="slideshow"></div>
					<div id="caption_2416" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2416" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2416 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2416').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2416',
					controlsContainerSel:      '#controls_2416',
					captionContainerSel:       '#caption_2416',  
					loadingContainerSel:       '#loading_2416',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>16</title>
		<link>https://sytsevanderzee.nl/16/</link>
		<comments>https://sytsevanderzee.nl/16/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:56:25 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2419</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2419" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2419" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2019/01/16-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2019/01/16-50x50.jpg" alt="" title="16" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2419" class="loader"></div>
					<div id="slideshow_2419" class="slideshow"></div>
					<div id="caption_2419" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2419" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2419 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2419').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2419',
					controlsContainerSel:      '#controls_2419',
					captionContainerSel:       '#caption_2419',  
					loadingContainerSel:       '#loading_2419',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30</title>
		<link>https://sytsevanderzee.nl/2-2/</link>
		<comments>https://sytsevanderzee.nl/2-2/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:55:25 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2087</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2087" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2087" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/2.5-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/2.5-50x50.jpg" alt="" title="2.5" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2087" class="loader"></div>
					<div id="slideshow_2087" class="slideshow"></div>
					<div id="caption_2087" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2087" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2087 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2087').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2087',
					controlsContainerSel:      '#controls_2087',
					captionContainerSel:       '#caption_2087',  
					loadingContainerSel:       '#loading_2087',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>38</title>
		<link>https://sytsevanderzee.nl/38/</link>
		<comments>https://sytsevanderzee.nl/38/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:54:30 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2423</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2423" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2423" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2019/01/38-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2019/01/38-50x50.jpg" alt="" title="38" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2423" class="loader"></div>
					<div id="slideshow_2423" class="slideshow"></div>
					<div id="caption_2423" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2423" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2423 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2423').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2423',
					controlsContainerSel:      '#controls_2423',
					captionContainerSel:       '#caption_2423',  
					loadingContainerSel:       '#loading_2423',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>47</title>
		<link>https://sytsevanderzee.nl/47/</link>
		<comments>https://sytsevanderzee.nl/47/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:53:16 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2426</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2426" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2426" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2019/01/47-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2019/01/47-50x50.jpg" alt="" title="47" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2426" class="loader"></div>
					<div id="slideshow_2426" class="slideshow"></div>
					<div id="caption_2426" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2426" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2426 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2426').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2426',
					controlsContainerSel:      '#controls_2426',
					captionContainerSel:       '#caption_2426',  
					loadingContainerSel:       '#loading_2426',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/47/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>53</title>
		<link>https://sytsevanderzee.nl/3-2/</link>
		<comments>https://sytsevanderzee.nl/3-2/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:52:38 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2093</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2093" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2093" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/3.8-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/3.8-50x50.jpg" alt="" title="3.8" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2093" class="loader"></div>
					<div id="slideshow_2093" class="slideshow"></div>
					<div id="caption_2093" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2093" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2093 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2093').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2093',
					controlsContainerSel:      '#controls_2093',
					captionContainerSel:       '#caption_2093',  
					loadingContainerSel:       '#loading_2093',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/3-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>67</title>
		<link>https://sytsevanderzee.nl/4-2/</link>
		<comments>https://sytsevanderzee.nl/4-2/#comments</comments>
		<pubDate>Sun, 20 Jan 2019 11:51:46 +0000</pubDate>
		<dc:creator>Sytse</dc:creator>
				<category><![CDATA[John's Woodhouse]]></category>

		<guid isPermaLink="false">http://sytsevanderzee.nl/?p=2099</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2099" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2099" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="https://sytsevanderzee.nl/wp-content/uploads/2015/08/4.8-740x598.jpg" >								
											<img src="https://sytsevanderzee.nl/wp-content/uploads/2015/08/4.8-50x50.jpg" alt="" title="4.8" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption"></div>
												<div class="image-desc"></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="gallery_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2099" class="loader"></div>
					<div id="slideshow_2099" class="slideshow"></div>
					<div id="caption_2099" class="caption-container"></div>
				</div>
				
				
				
			</div>
	<div id="controls_2099" class="controls"></div>
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
		
				// Initially set opacity on thumbs and add
				// additional styling for hover effect on thumbs
				var onMouseOutOpacity = 0.67;
				$('#thumbs_2099 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2099').galleriffic({ 
					delay:                     3000,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2099',
					controlsContainerSel:      '#controls_2099',
					captionContainerSel:       '#caption_2099',  
					loadingContainerSel:       '#loading_2099',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Automatisch',
					pauseLinkText:             'Stop',
					prevLinkText:              'Vorige',
					nextLinkText:              'Volgende',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	100,
						
					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);
					},
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(1000, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					},
					onImageAdded: function(imageData, li) {
						_li.opacityrollover({
							mouseOutOpacity:   onMouseOutOpacity,
							mouseOverOpacity:  1.0,
							fadeSpeed:         'fast',
							exemptionSelector: '.selected'
						});
					}
					
				}); 
				
				/**************** 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();
				});
		
			});
		</script>
		
		
]]></content:encoded>
			<wfw:commentRss>https://sytsevanderzee.nl/4-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
