<?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>Disappearing Corners &#187; Bund</title>
	<atom:link href="http://www.disappearingcorners.com/tag/bund/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.disappearingcorners.com</link>
	<description>Rediscovering Shanghai&#039;s forgotten heritage through photography &#38; tales</description>
	<lastBuildDate>Tue, 03 Jan 2012 14:01:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Yokohama Specie Bank</title>
		<link>http://www.disappearingcorners.com/yokohama-specie-bank/</link>
		<comments>http://www.disappearingcorners.com/yokohama-specie-bank/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:38:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=259</guid>
		<description><![CDATA[Yokohama Specie Bank]]></description>
			<content:encoded><![CDATA[<p>Yokohama Specie Bank</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_259" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_259" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Yokohama-Specie-Bank.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Yokohama-Specie-Bank-50x50.jpg" alt="" title="Yokohama Specie Bank" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Yokohama Specie Bank</div>
												<div class="image-desc">© DBHKer</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_259" class="loader"></div>
					<div id="slideshow_259" class="slideshow"></div>
					<div id="caption_259" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_259 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_259').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_259',
					controlsContainerSel:      '#controls_259',
					captionContainerSel:       '#caption_259',  
					loadingContainerSel:       '#loading_259',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/yokohama-specie-bank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Shanghai Club</title>
		<link>http://www.disappearingcorners.com/the-shanghai-club/</link>
		<comments>http://www.disappearingcorners.com/the-shanghai-club/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:38:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=257</guid>
		<description><![CDATA[The Shanghai Club]]></description>
			<content:encoded><![CDATA[<p>The Shanghai Club</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_257" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_257" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Shanghai-Club.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Shanghai-Club-50x50.jpg" alt="" title="The Shanghai Club" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Shanghai Club</div>
												<div class="image-desc">© DBHKer</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_257" class="loader"></div>
					<div id="slideshow_257" class="slideshow"></div>
					<div id="caption_257" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_257 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_257').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_257',
					controlsContainerSel:      '#controls_257',
					captionContainerSel:       '#caption_257',  
					loadingContainerSel:       '#loading_257',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/the-shanghai-club/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asiatic Petroleum Building</title>
		<link>http://www.disappearingcorners.com/asiatic-petroleum-building/</link>
		<comments>http://www.disappearingcorners.com/asiatic-petroleum-building/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:37:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=255</guid>
		<description><![CDATA[Asiatic Petroleum Building Built in 1916 for Royal Dutch Shell&#8217;s Asiatic Petroleum division.]]></description>
			<content:encoded><![CDATA[<p>Asiatic Petroleum Building</p>
<p>Built in 1916 for Royal Dutch Shell&#8217;s Asiatic Petroleum division.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_255" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_255" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/asia-petroleum.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/asia-petroleum-50x50.jpg" alt="" title="Asia Petroleum Building" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Asia Petroleum Building</div>
												<div class="image-desc">Photo Credit: DBHKer</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_255" class="loader"></div>
					<div id="slideshow_255" class="slideshow"></div>
					<div id="caption_255" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_255 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_255').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_255',
					controlsContainerSel:      '#controls_255',
					captionContainerSel:       '#caption_255',  
					loadingContainerSel:       '#loading_255',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>
		
		
<div align="center"><div class="google-map-placeholder" id="dd111797c49921165e2bbfaea7822cb8" style="width:450px;height:350px; border:1px solid #333333;"></div></div><div class="google-map-directions-panel" id="directions-placeholder-dd111797c49921165e2bbfaea7822cb8" style="margin-top: 8px !important; text-align: center; padding: 10px 12px !important; overflow: auto;"></div><script type="text/javascript">
    var map_dd111797c49921165e2bbfaea7822cb8 = new google.maps.Map(document.getElementById("dd111797c49921165e2bbfaea7822cb8"));
    var orc = new jQuery.GoogleMapOrchestrator(map_dd111797c49921165e2bbfaea7822cb8, {markerdirections: "true", bubbleAutoPan: "false", initLocation: "31.23334,121.49127", zoom : 18, mapType: google.maps.MapTypeId.ROADMAP});
    orcHolder.push({mapId: "dd111797c49921165e2bbfaea7822cb8", orchestrator: orc});
    orc.switchMapControl(true, jQuery.GoogleMapOrchestrator.ControlType.MAPTYPE);
    orc.switchMapControl(true, jQuery.GoogleMapOrchestrator.ControlType.PAN);
    orc.switchMapControl(true, jQuery.GoogleMapOrchestrator.ControlType.ZOOM);
    orc.switchMapControl(true, jQuery.GoogleMapOrchestrator.ControlType.SCALE);
    orc.switchMapControl(true, jQuery.GoogleMapOrchestrator.ControlType.STREETVIEW);
    orc.buildInitLocationMarker();
</script>
]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/asiatic-petroleum-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caldbeck McGregor &amp; Co</title>
		<link>http://www.disappearingcorners.com/caldbeck-mcgregor-co/</link>
		<comments>http://www.disappearingcorners.com/caldbeck-mcgregor-co/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:36:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=253</guid>
		<description><![CDATA[Address: Foochow Road]]></description>
			<content:encoded><![CDATA[<p>Address: Foochow Road</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_253" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_253" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Caldbeck-McGregor-Co-400x262.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Caldbeck-McGregor-Co-50x50.jpg" alt="" title="Caldbeck McGregor &amp; Co" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Caldbeck McGregor & Co</div>
												<div class="image-desc">Photo Credit: DBHKer</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_253" class="loader"></div>
					<div id="slideshow_253" class="slideshow"></div>
					<div id="caption_253" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_253 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_253').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_253',
					controlsContainerSel:      '#controls_253',
					captionContainerSel:       '#caption_253',  
					loadingContainerSel:       '#loading_253',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/caldbeck-mcgregor-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lester School &amp; Technical Institute</title>
		<link>http://www.disappearingcorners.com/lester-school-technical-institute/</link>
		<comments>http://www.disappearingcorners.com/lester-school-technical-institute/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:36:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=251</guid>
		<description><![CDATA[Text by John Meckley Designed by the firm of Lester, Johnson, &#038; Morris (Henry Lester, George A. Johnson &#038; Gordon Morris) in 1934; now the Shanghai Seaman&#8217;s Hospital. The building looks like an airplane or a bird when seen from above: Click here]]></description>
			<content:encoded><![CDATA[<p><em>Text by John Meckley</em></p>
<p>Designed by the firm of Lester, Johnson, &#038; Morris (Henry Lester, George A. Johnson &#038; Gordon Morris) in 1934; now the Shanghai Seaman&#8217;s  Hospital. The building looks like an airplane or a bird when seen from above: <a href="http://maps.google.com/maps?f=q&#038;source=s_q&#038;hl=en&#038;geocode=&#038;q=changzhi+Rd,+shanghai&#038;sll=31.230708,121.472916&#038;sspn=1.012226,2.113495&#038;g=shanghai&#038;ie=UTF8&#038;hq=&#038;hnear=Changzhi+Rd,+Hongkou,+Shanghai,+China&#038;ll=31.252749,121.493602&#038;spn=0.003953,0.008256&#038;t=h&#038;z=18">Click here</a></p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_251" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_251" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/lester-400x224.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/lester-50x50.jpg" alt="" title="Lester School &amp; Technical Institute " />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Lester School & Technical Institute </div>
												<div class="image-desc">© John Meckley</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_251" class="loader"></div>
					<div id="slideshow_251" class="slideshow"></div>
					<div id="caption_251" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_251 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_251').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_251',
					controlsContainerSel:      '#controls_251',
					captionContainerSel:       '#caption_251',  
					loadingContainerSel:       '#loading_251',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/lester-school-technical-institute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Customs House</title>
		<link>http://www.disappearingcorners.com/the-customs-house/</link>
		<comments>http://www.disappearingcorners.com/the-customs-house/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 07:52:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=136</guid>
		<description><![CDATA[The Customs House]]></description>
			<content:encoded><![CDATA[<p>The Customs House</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_136" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_136" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Customs-House-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Customs-House-50x50.jpg" alt="" title="The Customs House" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Customs House</div>
												<div class="image-desc">© Max Waldman</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_136" class="loader"></div>
					<div id="slideshow_136" class="slideshow"></div>
					<div id="caption_136" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_136 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_136').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_136',
					controlsContainerSel:      '#controls_136',
					captionContainerSel:       '#caption_136',  
					loadingContainerSel:       '#loading_136',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/the-customs-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The former British Consulate</title>
		<link>http://www.disappearingcorners.com/the-former-british-consulate/</link>
		<comments>http://www.disappearingcorners.com/the-former-british-consulate/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 07:52:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Bund]]></category>
		<category><![CDATA[Huangpu District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=134</guid>
		<description><![CDATA[No 33 East Zhongshan Road I (text from Ruan Yi Shan Brochure) Shanghai was officially opened to foreigners as a commercial treaty port on November 17, 1843. The British consulate to Shanghai was built in July 1849. It was burnt to askes on December 24, 1870. The rebuilding commenced in June, 1872 nd was completed [...]]]></description>
			<content:encoded><![CDATA[<p><strong>No 33 East Zhongshan Road I</strong></p>
<p>(text from Ruan Yi Shan Brochure)</p>
<p>Shanghai was officially opened to foreigners as a commercial treaty port on November 17, 1843. The British consulate to Shanghai was built in July 1849. It was burnt to askes on December 24, 1870. The rebuilding commenced in June, 1872 nd was completed in 1873. The building displays a combination of British Renaissance and Victorian Style. Brick-wood structured, it has an H-plan with a four-slope roof.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_134" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_134" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Former-British-Consulate-Building-II-400x266.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Former-British-Consulate-Building-II-50x50.jpg" alt="" title="The Former British Consulate Building" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Former British Consulate Building</div>
												<div class="image-desc">© Cíntia Kou</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Former-British-Consulate-Building-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Former-British-Consulate-Building-50x50.jpg" alt="" title="The Former British Consulate Building" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Former British Consulate Building</div>
												<div class="image-desc">© Max Waldman</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_134" class="loader"></div>
					<div id="slideshow_134" class="slideshow"></div>
					<div id="caption_134" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></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_134 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_134').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_134',
					controlsContainerSel:      '#controls_134',
					captionContainerSel:       '#caption_134',  
					loadingContainerSel:       '#loading_134',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              'Play Slideshow',
					pauseLinkText:             'Pause Slideshow',
					prevLinkText:              '&lsaquo; Previous Photo',
					nextLinkText:              'Next Photo &rsaquo;',
					nextPageLinkText:          'Next &rsaquo;',
					prevPageLinkText:          '&lsaquo; Prev',
					enableHistory:             	false,  
					autoStart:                 	'',
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					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>http://www.disappearingcorners.com/the-former-british-consulate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

