<?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; French Concession</title>
	<atom:link href="http://www.disappearingcorners.com/tag/french-concession/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>The Boissezon</title>
		<link>http://www.disappearingcorners.com/the-boissezon/</link>
		<comments>http://www.disappearingcorners.com/the-boissezon/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 16:23:29 +0000</pubDate>
		<dc:creator>f.thomas</dc:creator>
				<category><![CDATA[The Florian Collection]]></category>
		<category><![CDATA[French Concession]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=1373</guid>
		<description><![CDATA[Address: 26 West Fuxing Rd Leonard Veysseyre &#38; Kruze Built in 1933.]]></description>
			<content:encoded><![CDATA[<p><strong>Address: 26 West Fuxing Rd</strong></p>
<p>Leonard Veysseyre &amp; Kruze<br />
Built in 1933.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_1373" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_1373" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2010/12/IMG_1417-375x500.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2010/12/IMG_1417-50x50.jpg" alt="" title="IMG_1417" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Boissezon</div>
												<div class="image-desc">© Florian Thomas</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_1373" class="loader"></div>
					<div id="slideshow_1373" class="slideshow"></div>
					<div id="caption_1373" 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_1373 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_1373').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_1373',
					controlsContainerSel:      '#controls_1373',
					captionContainerSel:       '#caption_1373',  
					loadingContainerSel:       '#loading_1373',
					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-boissezon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shang-fang Gardens</title>
		<link>http://www.disappearingcorners.com/shang-fang-gardens/</link>
		<comments>http://www.disappearingcorners.com/shang-fang-gardens/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 09:36:58 +0000</pubDate>
		<dc:creator>f.thomas</dc:creator>
				<category><![CDATA[The Florian Collection]]></category>
		<category><![CDATA[French Concession]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=1360</guid>
		<description><![CDATA[Address: Central Huaihai Rd Lane 1285 (淮海中路1285弄) Built in 1938. Spence Robinson &#38; Partners.]]></description>
			<content:encoded><![CDATA[<p><strong>Address: Central Huaihai Rd Lane 1285 (淮海中路1285弄)<br />
</strong></p>
<p>Built in 1938. Spence Robinson &amp; Partners.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_1360" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_1360" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7028-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7028-50x50.jpg" alt="" title="IMG_7028" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Shang-fang Gardens</div>
												<div class="image-desc">© Florian Thomas</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7023-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7023-50x50.jpg" alt="" title="IMG_7023" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Shang-fang Gardens</div>
												<div class="image-desc">© Florian Thomas</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7021-375x500.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2010/10/IMG_7021-50x50.jpg" alt="" title="IMG_7021" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Shang-fang Gardens</div>
												<div class="image-desc">© Florian Thomas</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_1360" class="loader"></div>
					<div id="slideshow_1360" class="slideshow"></div>
					<div id="caption_1360" 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_1360 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_1360').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_1360',
					controlsContainerSel:      '#controls_1360',
					captionContainerSel:       '#caption_1360',  
					loadingContainerSel:       '#loading_1360',
					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/shang-fang-gardens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jubilee Court</title>
		<link>http://www.disappearingcorners.com/jubilee-court/</link>
		<comments>http://www.disappearingcorners.com/jubilee-court/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 07:39:44 +0000</pubDate>
		<dc:creator>f.thomas</dc:creator>
				<category><![CDATA[The Florian Collection]]></category>
		<category><![CDATA[French Concession]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=1347</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<br />

]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/jubilee-court/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art Deco Water Tower</title>
		<link>http://www.disappearingcorners.com/art-deco-water-tower/</link>
		<comments>http://www.disappearingcorners.com/art-deco-water-tower/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:43:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=277</guid>
		<description><![CDATA[Text by John Meckley Located on Fenyang Rd at the site of the former Jewish Hospital, now the Shanghai Eye-Nose Hospital.]]></description>
			<content:encoded><![CDATA[<p><em>Text by John Meckley</em></p>
<p>Located on Fenyang Rd at the site of the former Jewish Hospital, now the Shanghai Eye-Nose Hospital.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_277" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_277" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/99-water-tower1.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/99-water-tower1-50x50.jpg" alt="" title="Water Tower" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Water Tower</div>
												<div class="image-desc">Photo Credit: 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_277" class="loader"></div>
					<div id="slideshow_277" class="slideshow"></div>
					<div id="caption_277" 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_277 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_277').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_277',
					controlsContainerSel:      '#controls_277',
					captionContainerSel:       '#caption_277',  
					loadingContainerSel:       '#loading_277',
					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="866421d5276aebb135ccceaa3e9175ed" style="width:450px;height:350px; border:1px solid #333333;"></div></div><div class="google-map-directions-panel" id="directions-placeholder-866421d5276aebb135ccceaa3e9175ed" style="margin-top: 8px !important; text-align: center; padding: 10px 12px !important; overflow: auto;"></div><script type="text/javascript">
    var map_866421d5276aebb135ccceaa3e9175ed = new google.maps.Map(document.getElementById("866421d5276aebb135ccceaa3e9175ed"));
    var orc = new jQuery.GoogleMapOrchestrator(map_866421d5276aebb135ccceaa3e9175ed, {markerdirections: "true", bubbleAutoPan: "false", initLocation: "31.20845,121.45316", zoom : 18, mapType: google.maps.MapTypeId.ROADMAP});
    orcHolder.push({mapId: "866421d5276aebb135ccceaa3e9175ed", 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/art-deco-water-tower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Morriss Estate</title>
		<link>http://www.disappearingcorners.com/morriss-estate/</link>
		<comments>http://www.disappearingcorners.com/morriss-estate/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:42:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=271</guid>
		<description><![CDATA[It was a cold and rainy evening in the late 1990s. Sitting in our 90 sq ft hotel room, we were wondering where to go for dinner. The clock has already struck seven, and we were so hungry. We searched all the restaurant directories and guidebooks we had, and one of my companions shouted in [...]]]></description>
			<content:encoded><![CDATA[<p>It was a cold and rainy evening in the late 1990s. Sitting in our 90 sq ft hotel room, we were wondering where to go for dinner. The clock has already struck seven, and we were so hungry. We searched all the restaurant directories and guidebooks we had, and one of my companions shouted in excitment, ‘What about Lan Na Thai at Ruijin Guest House? I saw it featured on TV some months ago.’ ‘Fabulous! Call the reception and ask them to get us a cab!’ I responded.</p>
<p>A VW Santana taxi arrived and four of us begin our Formula I taxi ride through the labyrinth of streets and lanes in the former French Concession.</p>
<p>The taxi stopped at the main gate of Ruijin Guest House.</p>
<p>‘Aren’t you going to drive us to the building inside?’ I demanded.</p>
<p>‘No. You’ve got to find your own way in the garden yourselves!’ The driver shouted back.</p>
<p>It was wet and dark, and there were no lights in the big garden. There were muddy pools everywhere: we had to be extra cautious. It took us about twenty minutes before we could arrived to one of the 4 buildings in the compound, and fortunately, Lan Na Thai was inside!</p>
<p>The restaurant was located on the second floor of the building and it was extremely dark inside too. The walls were painted in blue, the dining hall was filled with wooden tables and chairs and Buddha statues were all over the place; all the windows were opened, the white curtains were not properly tied, thus they danced in the air. There were no other diners except us and so the atmosphere was quite ghostly.</p>
<p>All the waiters and waitresses were dressed in black Tang shirts and trousers and wore kung-fu shoes.</p>
<p>I asked one of them who looked sleepy probably due to the dim lighting, ‘Who originally owned this house?’</p>
<p>‘Chiang Kai Shek, the Generalissimo.’</p>
<p>‘He really knows enjoying life.’ I thought… … … … …</p>
<p>I was of course not satisfied with the answer and years later, I came across many other articles about this beautiful compound…. …</p>
<p>A lot of foreigners rushed to Shanghai after it was opened as a treaty port and many of them made a fortune trading opium. Later they invested in real estates and became even richer. Among these people are the Morriss family, which most of the older Shanghainese heard of.</p>
<p>Henry Morriss arrived to Shanghai from Britain with another friend in 1867. He first worked for HSBC, and later won some fortune from horse racing, a game he was so passionate about. He later purchase North China Daily News, the oldest English newspaper in China and became its president.</p>
<p>He also owned lots of lands at the French Concession area like those around Seymour Road (today’s Shanxi Lu) and Avenue Pere Robert (today’s Ruijin No.2 Road), where he later built the Morriss Estate. When he died, a Frenchman called Chollot bought the northern part of the garden in 1928 and built a Canidrome (dog racing track) and a hotel there. Aftger liberation, the dog racing track became the Cultural Square as it is today and the hotel was once a library and then a theatre academy.</p>
<p>The whole garden covers an area of 77000sqm, and the complex comprises 4 elegant villas that are distinctive in style. Constructed in 1917, Villas 1 and 2 were the private garden residence of Mr Morriss and located in the heart of the complex. It’s worth to mention that Madame Soong Mei Ling once stayed here and after liberation, it was used as the office for Shanghai’s first mayor, Mr Chen Yi. Villa 3, built in 1932 was also the residence of Morriss and was taken over by Shanghai Building of Land Bureau when the last Morriss son, a bachelor died in 1952 in the estate.</p>
<p>In 1924, the northeastern part of the garden was sold to Mitsui Trading Co., where they later built an Italian Renaissance style estate in 1936 which is known as Villa 4 today. They built a wall west of the estate to separate themselves, and later the place was named Mitsui Garden. After the Pacific War, the KMT took the estate and the high-ranked officials stayed there. After liberation, officials of the East China Bureau who used to stay at the St. John’s University moved in.</p>
<p>Not long after, the municipal government tore down the walls that separate the estates and the complex became a whole again.</p>
<p>The site was turned to Ruijin Guest House in 1956, accommodating Party Leaders and foreign politicians. The guesthouse was opened to public in 1979, so every one of us have the chance to enjoy ourselves at this unique landmark!</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_271" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_271" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
						</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_271" class="loader"></div>
					<div id="slideshow_271" class="slideshow"></div>
					<div id="caption_271" 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_271 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_271').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_271',
					controlsContainerSel:      '#controls_271',
					captionContainerSel:       '#caption_271',  
					loadingContainerSel:       '#loading_271',
					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/morriss-estate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Former Norwegian Consulate</title>
		<link>http://www.disappearingcorners.com/former-norwegian-consulate/</link>
		<comments>http://www.disappearingcorners.com/former-norwegian-consulate/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:28:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=241</guid>
		<description><![CDATA[Former Norwegian Consulate]]></description>
			<content:encoded><![CDATA[<p>Former Norwegian Consulate</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_241" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_241" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Former-Norwegian-Consulate.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/Former-Norwegian-Consulate-50x50.jpg" alt="" title="Former Norwegian Consulate" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Former Norwegian Consulate</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_241" class="loader"></div>
					<div id="slideshow_241" class="slideshow"></div>
					<div id="caption_241" 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_241 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_241').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_241',
					controlsContainerSel:      '#controls_241',
					captionContainerSel:       '#caption_241',  
					loadingContainerSel:       '#loading_241',
					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/former-norwegian-consulate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Gascoigne Apartments</title>
		<link>http://www.disappearingcorners.com/the-gascoigne-apartments/</link>
		<comments>http://www.disappearingcorners.com/the-gascoigne-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:14:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=221</guid>
		<description><![CDATA[Built in 1935, this 13-story building, is a typical example of Art Deco architecture. After the recent renovation, only the building&#8217;s exterior remains true to its original design, while the interior decoration and room layout have been indiscriminately altered.]]></description>
			<content:encoded><![CDATA[<p>Built in 1935, this 13-story building, is a typical example of Art Deco architecture. After the recent renovation, only the building&#8217;s exterior remains true to its original design, while the interior decoration and room layout have been indiscriminately altered.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_221" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_221" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Gascoigne-Apartments-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Gascoigne-Apartments-50x50.jpg" alt="" title="The Gascoigne Apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Gascoigne Apartments</div>
												<div class="image-desc">© Cíntia Kou</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_221" class="loader"></div>
					<div id="slideshow_221" class="slideshow"></div>
					<div id="caption_221" 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_221 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_221').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_221',
					controlsContainerSel:      '#controls_221',
					captionContainerSel:       '#caption_221',  
					loadingContainerSel:       '#loading_221',
					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-gascoigne-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cathay Mansions</title>
		<link>http://www.disappearingcorners.com/cathay-mansions/</link>
		<comments>http://www.disappearingcorners.com/cathay-mansions/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:11:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Avenue Joffre]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=213</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<br />
<br />

]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/cathay-mansions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cercle Sportif Français</title>
		<link>http://www.disappearingcorners.com/cercle-sportif-francais/</link>
		<comments>http://www.disappearingcorners.com/cercle-sportif-francais/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:11:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=211</guid>
		<description><![CDATA[Located on South Maoming Road, adjacent to the modern Okura Garden Hotel, it was first built in the 1920s and known as the French Club. According to Tess Johnston, this club also admitted women, although they limited it to 40 at one certain time. The building is well preserved and many of the original features [...]]]></description>
			<content:encoded><![CDATA[<p>Located on South Maoming Road, adjacent to the modern Okura Garden Hotel, it was first built in the 1920s and known as the French Club. According to Tess Johnston, this club also admitted women, although they limited it to 40 at one certain time. The building is well preserved and many of the original features are still there.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_211" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_211" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
						</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_211" class="loader"></div>
					<div id="slideshow_211" class="slideshow"></div>
					<div id="caption_211" 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_211 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_211').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_211',
					controlsContainerSel:      '#controls_211',
					captionContainerSel:       '#caption_211',  
					loadingContainerSel:       '#loading_211',
					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/cercle-sportif-francais/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grosvenor House</title>
		<link>http://www.disappearingcorners.com/grosvenor-house/</link>
		<comments>http://www.disappearingcorners.com/grosvenor-house/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:10:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=209</guid>
		<description><![CDATA[Grosvenor House]]></description>
			<content:encoded><![CDATA[<p>Grosvenor House</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_209" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_209" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/grosvenor-house-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/grosvenor-house-50x50.jpg" alt="" title="grosvenor house" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Grosvenor House</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_209" class="loader"></div>
					<div id="slideshow_209" class="slideshow"></div>
					<div id="caption_209" 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_209 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_209').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_209',
					controlsContainerSel:      '#controls_209',
					captionContainerSel:       '#caption_209',  
					loadingContainerSel:       '#loading_209',
					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/grosvenor-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lyceum Theatre</title>
		<link>http://www.disappearingcorners.com/lyceum-theatre/</link>
		<comments>http://www.disappearingcorners.com/lyceum-theatre/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:09:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=206</guid>
		<description><![CDATA[Lyceum Theatre was built in 1930 at the famous intersection of Maoming Lu and Changle Lu glibly referred to as &#8220;Heart of the French Concession&#8221;. Before liberation it housed an amateur drama company; Mei Lanfang, Zhou Xinfang, Yu Zhenfei, Zhao Dan, Qin Yi and Zhou Xiaoyan graced its stage with their presence. However, after liberation [...]]]></description>
			<content:encoded><![CDATA[<p>Lyceum Theatre was built in 1930 at the famous intersection of Maoming Lu and Changle Lu glibly referred to as &#8220;Heart of the French Concession&#8221;.  Before liberation it housed an amateur drama company; Mei Lanfang, Zhou Xinfang, Yu Zhenfei, Zhao Dan, Qin Yi and Zhou Xiaoyan graced its stage with their presence. However, after liberation the building&#8217;s functions expanded so much that it lost its calling as a theatre entirely. Now it plays third-grade commercial performances and houses a karaoke club.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_206" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_206" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/lyceum-400x320.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/lyceum-50x50.jpg" alt="" title="lyceum" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Lyceum Theatre</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_206" class="loader"></div>
					<div id="slideshow_206" class="slideshow"></div>
					<div id="caption_206" 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_206 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_206').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_206',
					controlsContainerSel:      '#controls_206',
					captionContainerSel:       '#caption_206',  
					loadingContainerSel:       '#loading_206',
					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/lyceum-theatre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Cathay Theatre</title>
		<link>http://www.disappearingcorners.com/the-cathay-theatre/</link>
		<comments>http://www.disappearingcorners.com/the-cathay-theatre/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:08:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=200</guid>
		<description><![CDATA[Located on the intersection of Central Huaihai Road and South MaoMing Road, this 1930s Art Deco Theatre is still one of the few historic cinemas that is still in operation.]]></description>
			<content:encoded><![CDATA[<p>Located on the intersection of Central Huaihai Road and South MaoMing Road, this 1930s Art Deco Theatre is still one of the few historic cinemas that is still in operation.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_200" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_200" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Cathay-Theatre-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Cathay-Theatre-50x50.jpg" alt="" title="The Cathay Theatre" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Cathay Theatre</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_200" class="loader"></div>
					<div id="slideshow_200" class="slideshow"></div>
					<div id="caption_200" 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_200 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_200').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_200',
					controlsContainerSel:      '#controls_200',
					captionContainerSel:       '#caption_200',  
					loadingContainerSel:       '#loading_200',
					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-cathay-theatre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Belden Apartments</title>
		<link>http://www.disappearingcorners.com/the-belden-apartments/</link>
		<comments>http://www.disappearingcorners.com/the-belden-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:08:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=198</guid>
		<description><![CDATA[Address: No 213 South Shanxi Road (formerly known as Avenue du Roi Albert) Old apartment block built in 1924.]]></description>
			<content:encoded><![CDATA[<p><strong>Address: No 213 South Shanxi Road (formerly known as Avenue du Roi Albert)</strong></p>
<p>Old apartment block built in 1924.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_198" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_198" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Belden-Apartments.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Belden-Apartments-50x50.jpg" alt="" title="The Belden Apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Belden Apartments</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_198" class="loader"></div>
					<div id="slideshow_198" class="slideshow"></div>
					<div id="caption_198" 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_198 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_198').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_198',
					controlsContainerSel:      '#controls_198',
					captionContainerSel:       '#caption_198',  
					loadingContainerSel:       '#loading_198',
					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-belden-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le Bearne Apartments</title>
		<link>http://www.disappearingcorners.com/le-bearne-apartments/</link>
		<comments>http://www.disappearingcorners.com/le-bearne-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:06:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=187</guid>
		<description><![CDATA[Address: No 453~457 Middle Huai Hai Road, the former Avenue Joffre Designed by architects Leonard, Veysseyre &#038; Kruze and located in the French Concession in 1930. Some parts of the building is 7-storey high, while some are 10-storey covering a land area of 5200sqm. It was a property of the French businessmen until the outbreak [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Address: No 453~457 Middle Huai Hai Road, the former Avenue Joffre</strong></p>
<p>Designed by architects Leonard, Veysseyre &#038; Kruze and located in the French Concession in 1930. Some parts of the building is 7-storey high, while some are 10-storey covering a land area of 5200sqm. It was a property of the French businessmen until the outbreak of the Pacific War when they sold it at a low price of H.H Kung, the then richest man in China.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_187" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_187" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/le-bearne-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/le-bearne-50x50.jpg" alt="" title="Le Bearne Apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Le Bearne Apartments</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_187" class="loader"></div>
					<div id="slideshow_187" class="slideshow"></div>
					<div id="caption_187" 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_187 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_187').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_187',
					controlsContainerSel:      '#controls_187',
					captionContainerSel:       '#caption_187',  
					loadingContainerSel:       '#loading_187',
					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/le-bearne-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>College Francais</title>
		<link>http://www.disappearingcorners.com/college-francais/</link>
		<comments>http://www.disappearingcorners.com/college-francais/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=183</guid>
		<description><![CDATA[One of the best thing after work in Shanghai is a walk down the small streets behind the main avenues where our office towers stand. If you happen to work near Huai Hai Middle Road, then you should visit Nanchang Road, formerly known as Rue Vallon. There you will find a lovely old building sitting [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best thing after work in Shanghai is a walk down the small streets behind the main avenues where our<br />
office towers stand.</p>
<p>If you happen to work near Huai Hai Middle Road, then you should visit Nanchang Road, formerly known as Rue Vallon. There you will find a lovely old building sitting quietly, usually haunted except a few elderly who look after it during the day; the old Shanghai Science Hall.</p>
<p>There are only very few sources about this beautiful old facade, and it really took me some time to trace its origins. The whole story dates back in 1904, when the number of French population grew rapidly. The Municipal Council in the former French Concession commissioned a Sports Club for the French community in town. It is a 2-storey building of brick and concrete composite with a large tennis court with a total area of 500sqm. When the club was moved to a new venue, the present Okura Garden Hotel on Maoming Road in 1925, this building was converted into a school known as College Francais, or College Municipal Francais according to some sources. After liberation in 1949, it was assigned for a new mission, and became the headquarters of the Shanghai Science Hall.</p>
<p>I arrived at this haunted hall on a late afternoon and the old guard who was on duty told me I should come another day; he’ll turn on all the lights of the hall and show me its original grandeur……Hope he’ll keep his promise.</p>
<p><strong>Note: </strong>I am still searching for the name of the architects who designed this building. The Chinese translation is 万茨 and 博尔舍伦. If you happen to come across their corresponding French names, please contact me. Thank you.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_183" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_183" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/College-Francais.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/College-Francais-50x50.jpg" alt="" title="College Francais" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">College Francais</div>
												<div class="image-desc">Photo Credits: Cíntia Kou</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_183" class="loader"></div>
					<div id="slideshow_183" class="slideshow"></div>
					<div id="caption_183" 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_183 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_183').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_183',
					controlsContainerSel:      '#controls_183',
					captionContainerSel:       '#caption_183',  
					loadingContainerSel:       '#loading_183',
					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/college-francais/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hengshan Community Church</title>
		<link>http://www.disappearingcorners.com/hengshan-community-church/</link>
		<comments>http://www.disappearingcorners.com/hengshan-community-church/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 08:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=179</guid>
		<description><![CDATA[Hengshan Community Church]]></description>
			<content:encoded><![CDATA[<p>Hengshan Community Church</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_179" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_179" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/hengshan-community-church.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/hengshan-community-church-50x50.jpg" alt="" title="hengshan community church" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Hengshan Community Church</div>
												<div class="image-desc">© Cíntia Kou</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_179" class="loader"></div>
					<div id="slideshow_179" class="slideshow"></div>
					<div id="caption_179" 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_179 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_179').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_179',
					controlsContainerSel:      '#controls_179',
					captionContainerSel:       '#caption_179',  
					loadingContainerSel:       '#loading_179',
					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/hengshan-community-church/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackstone Apartments</title>
		<link>http://www.disappearingcorners.com/blackstone-apartments/</link>
		<comments>http://www.disappearingcorners.com/blackstone-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 07:57:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=157</guid>
		<description><![CDATA[Blackstone Apartments were built in 1924. It is a four-story Baroque-style building with a rounded extending porch supported by double Corinthian columns. The terrace above the porch is formed with three arches, some convex, some concave. The walls and some elements of decoration are made of black stones, hence the name. After 1945, this building [...]]]></description>
			<content:encoded><![CDATA[<p>Blackstone Apartments were built in 1924. It is a four-story Baroque-style building with a rounded extending porch supported by double Corinthian columns. The terrace above the porch is formed with three arches, some convex, some concave. The walls and some elements of decoration are made of black stones, hence the name. After 1945, this building was home to the United Nation&#8217;s General Agency of Postwar Relief.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/blackstone-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Astrid Apartments</title>
		<link>http://www.disappearingcorners.com/the-astrid-apartments/</link>
		<comments>http://www.disappearingcorners.com/the-astrid-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 07:51:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=128</guid>
		<description><![CDATA[Address: No 294~316 Nanchang Road This Art Deco Apartment Building was invested by Wing On in 1933 and designed by 列文*. The 8-storey apartment building was popular among the expatriates at that time, and according to T. Johnston&#8217;s A Last Look, the 1939 directory only revealed 1 Chinese tenant!]]></description>
			<content:encoded><![CDATA[<p><strong>Address: No 294~316 Nanchang Road</strong></p>
<p>This Art Deco Apartment Building was invested by Wing On in 1933 and designed by 列文*. The 8-storey apartment building was popular among the expatriates at that time, and according to T. Johnston&#8217;s A Last Look, the 1939 directory only revealed 1 Chinese tenant!</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_128" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_128" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Astrid-Apartments-400x300.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/The-Astrid-Apartments-50x50.jpg" alt="" title="The Astrid Apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Astrid Apartments</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_128" class="loader"></div>
					<div id="slideshow_128" class="slideshow"></div>
					<div id="caption_128" 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_128 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_128').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_128',
					controlsContainerSel:      '#controls_128',
					captionContainerSel:       '#caption_128',  
					loadingContainerSel:       '#loading_128',
					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-astrid-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Alfred Magy Apartments</title>
		<link>http://www.disappearingcorners.com/the-alfred-magy-apartments/</link>
		<comments>http://www.disappearingcorners.com/the-alfred-magy-apartments/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 07:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=120</guid>
		<description><![CDATA[Address: Fuxing Xi Road by Wulumuqi Zhong Road In the year of 1937, a Soochow businessman invested a piece of land at the intersection of Route Gustare de Boissenzon (the present day Fuxing Xi Lu) and Rue Alfred Magy (the present day Wulumuqi Zhong Lu) and built an apartment building that named after the road, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Address: Fuxing Xi Road by Wulumuqi Zhong Road</strong></p>
<p>In the year of 1937, a Soochow businessman invested a piece of land at the intersection of Route Gustare de Boissenzon (the present day Fuxing Xi Lu) and Rue Alfred Magy (the present day Wulumuqi Zhong Lu) and built an apartment building that named after the road, Alfred Magy. At that time, all the people in Shanghai were very impressed at this project &#8212; a 10-storey structure on a piece of land with merely an area of 220sqm!</p>
<p>The original layout consisted of a garage that can park 4 cars, and a garbage chute on the ground floor. There are two 2-room apartments on the second floor, while all other floors consisted of just 1 apartment. (According to some Chinese sources, including OLD SHANGHAI APARTMENT BUILDINGS published by Tongji University press), the 9th to 10th floor is a &#8220;skip floor apartment&#8221; (DC will confirm later)</p>
<p>The good thing about these apartments is that light travels to each corner of the apartment, from bedrooms to living rooms to bathrooms and to kitchens. High quality materials were used for the interior. Heater and hot water and everything essential for daily lives (even by modern&#8217;s standards!) were all available. So it&#8217;s small, but you get everything. The huge curve of the balconies and streamline design was considered something very modern during those old Shanghai days.</p>
<p>The Alfred Magy Apartments remained to be one of the most classic example in Shanghai. Its clever design has given us a lot of inspiration.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_120" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_120" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/alfred.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/alfred-50x50.jpg" alt="" title="The Alfred Magy Apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Alfred Magy Apartments</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_120" class="loader"></div>
					<div id="slideshow_120" class="slideshow"></div>
					<div id="caption_120" 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_120 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_120').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_120',
					controlsContainerSel:      '#controls_120',
					captionContainerSel:       '#caption_120',  
					loadingContainerSel:       '#loading_120',
					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-alfred-magy-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gothic Mansion on Anfu Road</title>
		<link>http://www.disappearingcorners.com/gothic-mansion-on-anfu-lu/</link>
		<comments>http://www.disappearingcorners.com/gothic-mansion-on-anfu-lu/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 15:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=105</guid>
		<description><![CDATA[Address: No. 255 Anfu Road The history of this mansion at 255 Anfu Lu is shrouded in mystery. The four-story castle with tapering tower and Gothic windows sits surrounded with a village of small shacks that barely reach one third of its first floor. Inside the mansion, a spiraling cream-colored staircase runs all the way [...]]]></description>
			<content:encoded><![CDATA[<p>Address: No. 255 Anfu Road</p>
<p>The history of this mansion at 255 Anfu Lu is shrouded in mystery. The four-story castle with tapering tower and Gothic windows sits surrounded with a village of small shacks that barely reach one third of its first floor. Inside the mansion, a spiraling cream-colored staircase runs all the way to the top of the octagonal tower. What used to be a lofty residence for one rich family now has one family in every room, and the flights are used as kitchens. In the early forties, Route Dupleix (now Anfu Lu) was often clogged with automobiles lining up to get to the notorious club and residence of Pan Sanxing, a Shanghai&#8217;s nouveau-riche and a collaborator with the Japanese.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_105" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_105" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/11/anfu-lu-mansion.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/11/anfu-lu-mansion-50x50.jpg" alt="" title="anfu lu mansion" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Gothic Mansion on Anfu Lu</div>
												<div class="image-desc">© Katya Knyazeva</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_105" class="loader"></div>
					<div id="slideshow_105" class="slideshow"></div>
					<div id="caption_105" 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_105 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_105').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_105',
					controlsContainerSel:      '#controls_105',
					captionContainerSel:       '#caption_105',  
					loadingContainerSel:       '#loading_105',
					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/gothic-mansion-on-anfu-lu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Estrella Apartments</title>
		<link>http://www.disappearingcorners.com/estrella-apartments/</link>
		<comments>http://www.disappearingcorners.com/estrella-apartments/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:48:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[Avenue Joffre]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Lazlo Hudec]]></category>
		<category><![CDATA[Luwan District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=35</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<br />

]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/estrella-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Former Residence of Soong Tse Ven</title>
		<link>http://www.disappearingcorners.com/former-residence-of-soong-tse-ven/</link>
		<comments>http://www.disappearingcorners.com/former-residence-of-soong-tse-ven/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:45:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=17</guid>
		<description><![CDATA[Address: 11 Donping Road, by Hengshan Lu Built in 1921, this red &#8220;garden residence&#8221; as it is referred in the historical databases, was a property of a man called Rosenfeld, and in 1927 became the residence of Soong Tse Ven. It&#8217;s converted into an English pub in 1998.]]></description>
			<content:encoded><![CDATA[<p><strong>Address: 11 Donping Road, by Hengshan Lu</strong></p>
<p>Built in 1921, this red &#8220;garden residence&#8221; as it is referred in the historical databases, was a property of a man called Rosenfeld, and in 1927 became the residence  of Soong Tse Ven. It&#8217;s converted into an English pub in 1998.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_17" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_17" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/sashas.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/sashas-50x50.jpg" alt="" title="Former Residence of Soong Tse Ven" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Former Residence of Soong Tse Ven</div>
												<div class="image-desc">© Cíntia Kou</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_17" class="loader"></div>
					<div id="slideshow_17" class="slideshow"></div>
					<div id="caption_17" 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_17 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_17').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_17',
					controlsContainerSel:      '#controls_17',
					captionContainerSel:       '#caption_17',  
					loadingContainerSel:       '#loading_17',
					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/former-residence-of-soong-tse-ven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liberty Apartments</title>
		<link>http://www.disappearingcorners.com/liberty-apartments/</link>
		<comments>http://www.disappearingcorners.com/liberty-apartments/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Lazlo Hudec]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=7</guid>
		<description><![CDATA[Liberty Apartments at 258 Wuyuan Lu is a nine-story reinforced concrete structure completed in 1937 with a total building area of 2,740 sq.m. It has a moderne facade covered with dark brown brick tiles. It houses 18 homes. (info from Shanghai Daily Supplement, graciously provided by MRP46)]]></description>
			<content:encoded><![CDATA[<p>Liberty Apartments at 258 Wuyuan Lu is a nine-story reinforced concrete structure completed in 1937 with a total building area of 2,740 sq.m. It has a moderne facade covered with dark brown brick tiles. It houses 18 homes.</p>
<p>(info from Shanghai Daily Supplement, graciously provided by <a href="http://flickr.com/photos/mrp46/">MRP46</a>)</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_7" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_7" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/liberty-apartments.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/liberty-apartments-50x50.jpg" alt="" title="liberty apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Liberty Apartments</div>
												<div class="image-desc">© Katya Knyazeva</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_7" class="loader"></div>
					<div id="slideshow_7" class="slideshow"></div>
					<div id="caption_7" 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_7 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_7').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_7',
					controlsContainerSel:      '#controls_7',
					captionContainerSel:       '#caption_7',  
					loadingContainerSel:       '#loading_7',
					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/liberty-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Normandie Apartments</title>
		<link>http://www.disappearingcorners.com/normandie-apartments/</link>
		<comments>http://www.disappearingcorners.com/normandie-apartments/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:42:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Lazlo Hudec]]></category>
		<category><![CDATA[Xuhui District]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=5</guid>
		<description><![CDATA[Normandie Apartments, which earns the nickname Flatiron Building of Shanghai; because of its striking resemblance to the one in NYC. Also another work by Hudec and it is still an apartment building occupied by locals. Some richer expatriates are starting to occupy the place again and one of the walk tour participants even showed us [...]]]></description>
			<content:encoded><![CDATA[<p>Normandie Apartments, which earns the nickname Flatiron Building of Shanghai; because of its striking resemblance to the one in NYC. Also another work by Hudec and it is still an apartment building occupied by locals. Some richer expatriates are starting to occupy the place again and one of the walk tour participants even showed us his apartment which he acquired recently.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_5" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_5" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/the-normaldie-apartments.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/the-normaldie-apartments-50x50.jpg" alt="" title="the normandie apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Normandie Apartments</div>
												<div class="image-desc">© Cíntia Kou</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/the-normandie-apartments-400x266.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/the-normandie-apartments-50x50.jpg" alt="" title="the normandie apartments" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">The Normandie Apartments</div>
												<div class="image-desc">© Cíntia Kou</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_5" class="loader"></div>
					<div id="slideshow_5" class="slideshow"></div>
					<div id="caption_5" 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_5 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_5').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_5',
					controlsContainerSel:      '#controls_5',
					captionContainerSel:       '#caption_5',  
					loadingContainerSel:       '#loading_5',
					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/normandie-apartments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liu Ji Sheng&#8217;s Residence</title>
		<link>http://www.disappearingcorners.com/liu-ji-shengs-residence/</link>
		<comments>http://www.disappearingcorners.com/liu-ji-shengs-residence/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:42:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[First Batch]]></category>
		<category><![CDATA[French Concession]]></category>
		<category><![CDATA[Jing'an District]]></category>
		<category><![CDATA[Lazlo Hudec]]></category>

		<guid isPermaLink="false">http://www.disappearingcorners.com/?p=3</guid>
		<description><![CDATA[Located on Julu Road, this house was built in 1926 as a gift from Liu Ji Sheng to his beloved wife. It was designed by Hudec, and the sculpture in the courtyard is a present from Hudec to Mrs Liu. It is said that the iron railings in the stairs incorporated the initals of the [...]]]></description>
			<content:encoded><![CDATA[<p>Located on Julu Road, this house was built in 1926 as a gift from Liu Ji Sheng to his beloved wife. It was designed by Hudec, and the sculpture in the courtyard is a present from Hudec to Mrs Liu. It is said that the iron railings in the stairs incorporated the initals of the owners, although I had no luck to enter the building after all these years.</p>
<p>It is currently the Writer&#8217;s Association. For more information, visit <a href="http://www.hudec.cn">http://www.hudec.cn</a></p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_3" class="gallery"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_3" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/LJS-1.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/LJS-1-50x50.jpg" alt="" title="LJS-1" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Room inside Liu Ji Sheng's Residence</div>
												<div class="image-desc">© Katya Knyazeva</div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://www.disappearingcorners.com/wp-content/uploads/2008/10/LJS-2-400x314.jpg" >								
											<img src="http://www.disappearingcorners.com/wp-content/uploads/2008/10/LJS-2-50x50.jpg" alt="" title="LJS-2" />
										</a>
										
										<div class="caption">
											
												<div class="image-caption">Liu Ji Sheng's Residence</div>
												<div class="image-desc">© Katya Knyazeva</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_3" class="loader"></div>
					<div id="slideshow_3" class="slideshow"></div>
					<div id="caption_3" 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_3 ul.thumbs li, .thumnail_col a.pageLink').opacityrollover({
					mouseOutOpacity:   onMouseOutOpacity,
					mouseOverOpacity:  1.0,
					fadeSpeed:         'fast',
					exemptionSelector: '.selected'
				});	
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_3').galleriffic({ 
					delay:                     3500,
					numThumbs:                 9,
					preloadAhead:              9,
					enableTopPager:            false,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_3',
					controlsContainerSel:      '#controls_3',
					captionContainerSel:       '#caption_3',  
					loadingContainerSel:       '#loading_3',
					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>
		
		
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?msa=0&amp;doflg=ptm&amp;ie=UTF8&amp;msid=203256263225588875088.0004555e7c25bcef125be&amp;ll=31.221013,121.452967&amp;spn=0.003211,0.00456&amp;z=17&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?msa=0&amp;doflg=ptm&amp;ie=UTF8&amp;msid=203256263225588875088.0004555e7c25bcef125be&amp;ll=31.221013,121.452967&amp;spn=0.003211,0.00456&amp;z=17&amp;source=embed" style="color:#0000FF;text-align:left">Shanghai Disappearing Corners: First Hundred</a> in a larger map</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.disappearingcorners.com/liu-ji-shengs-residence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

