<?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>Susan Moss Photography</title>
	<atom:link href="http://www.susanmossphotography.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.susanmossphotography.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 May 2012 00:59:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/17/photo-of-the-day-2012-05-17/</link>
		<comments>http://www.susanmossphotography.com/2012/05/17/photo-of-the-day-2012-05-17/#comments</comments>
		<pubDate>Fri, 18 May 2012 00:59:34 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2429</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2429" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2429" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-24.jpg" rel="shadowbox[sbpost-2429];player=img;" title="St. Laurent Reflection" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-24-50x50.jpg" alt="" title="St. Laurent Reflection" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">St. Laurent Reflection</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2429" class="loader"></div>
					<div id="slideshow_2429" class="slideshow"></div>
					<div id="caption_2429" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2429').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2429',
					controlsContainerSel:      '#controls_2429',
					captionContainerSel:       '#caption_2429',  
					loadingContainerSel:       '#loading_2429',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/17/photo-of-the-day-2012-05-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/16/photo-of-the-day-2012-05-16/</link>
		<comments>http://www.susanmossphotography.com/2012/05/16/photo-of-the-day-2012-05-16/#comments</comments>
		<pubDate>Wed, 16 May 2012 22:59:33 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[Katacombes]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2426</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2426" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2426" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-89.jpg" rel="shadowbox[sbpost-2426];player=img;" title="Katacombes" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-89-50x50.jpg" alt="" title="Katacombes" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Katacombes</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2426" class="loader"></div>
					<div id="slideshow_2426" class="slideshow"></div>
					<div id="caption_2426" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2426').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2426',
					controlsContainerSel:      '#controls_2426',
					captionContainerSel:       '#caption_2426',  
					loadingContainerSel:       '#loading_2426',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/16/photo-of-the-day-2012-05-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/15/photo-of-the-day-2012-05-15/</link>
		<comments>http://www.susanmossphotography.com/2012/05/15/photo-of-the-day-2012-05-15/#comments</comments>
		<pubDate>Tue, 15 May 2012 20:15:10 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2423</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2423" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2423" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/EnMasse.jpg" rel="shadowbox[sbpost-2423];player=img;" title="En Masse" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/EnMasse-50x50.jpg" alt="" title="En Masse" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">En Masse</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_2423" class="loader"></div>
					<div id="slideshow_2423" class="slideshow"></div>
					<div id="caption_2423" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2423').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2423',
					controlsContainerSel:      '#controls_2423',
					captionContainerSel:       '#caption_2423',  
					loadingContainerSel:       '#loading_2423',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/15/photo-of-the-day-2012-05-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/14/photo-of-the-day-2012-05-14/</link>
		<comments>http://www.susanmossphotography.com/2012/05/14/photo-of-the-day-2012-05-14/#comments</comments>
		<pubDate>Mon, 14 May 2012 22:26:22 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Nature]]></category>
		<category><![CDATA[Plateau]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2420</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2420" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2420" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Plateau.jpg" rel="shadowbox[sbpost-2420];player=img;" title="Plateau" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Plateau-50x50.jpg" alt="" title="Plateau" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Plateau</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2420" class="loader"></div>
					<div id="slideshow_2420" class="slideshow"></div>
					<div id="caption_2420" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2420').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2420',
					controlsContainerSel:      '#controls_2420',
					captionContainerSel:       '#caption_2420',  
					loadingContainerSel:       '#loading_2420',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/14/photo-of-the-day-2012-05-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/13/photo-of-the-day-2012-05-13/</link>
		<comments>http://www.susanmossphotography.com/2012/05/13/photo-of-the-day-2012-05-13/#comments</comments>
		<pubDate>Sun, 13 May 2012 20:58:59 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[La Bête Rouge]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[The Rialto]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2417</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2417" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2417" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/ChubbyChecker.jpg" rel="shadowbox[sbpost-2417];player=img;" title="Chubby Checker @ Théâtre Rialto, 12 May 2012" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/ChubbyChecker-50x50.jpg" alt="" title="Chubby Checker @ Théâtre Rialto, 12 May 2012" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Chubby Checker @ Théâtre Rialto, 12 May 2012</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2417" class="loader"></div>
					<div id="slideshow_2417" class="slideshow"></div>
					<div id="caption_2417" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2417').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2417',
					controlsContainerSel:      '#controls_2417',
					captionContainerSel:       '#caption_2417',  
					loadingContainerSel:       '#loading_2417',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/13/photo-of-the-day-2012-05-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/12/photo-of-the-day-2012-05-12/</link>
		<comments>http://www.susanmossphotography.com/2012/05/12/photo-of-the-day-2012-05-12/#comments</comments>
		<pubDate>Sat, 12 May 2012 18:57:06 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2413</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2413" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2413" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-70.jpg" rel="shadowbox[sbpost-2413];player=img;" title="Lower St-Laurent" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-70-50x50.jpg" alt="" title="Lower St-Laurent" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Lower St-Laurent</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2413" class="loader"></div>
					<div id="slideshow_2413" class="slideshow"></div>
					<div id="caption_2413" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2413').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2413',
					controlsContainerSel:      '#controls_2413',
					captionContainerSel:       '#caption_2413',  
					loadingContainerSel:       '#loading_2413',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/12/photo-of-the-day-2012-05-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/11/photo-of-the-day-2012-05-11/</link>
		<comments>http://www.susanmossphotography.com/2012/05/11/photo-of-the-day-2012-05-11/#comments</comments>
		<pubDate>Fri, 11 May 2012 18:33:55 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2410</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2410" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2410" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-34.jpg" rel="shadowbox[sbpost-2410];player=img;" title="Café Cleopatra" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Photo-Walk-with-Nora-34-50x50.jpg" alt="" title="Café Cleopatra" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Café Cleopatra</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2410" class="loader"></div>
					<div id="slideshow_2410" class="slideshow"></div>
					<div id="caption_2410" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2410').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2410',
					controlsContainerSel:      '#controls_2410',
					captionContainerSel:       '#caption_2410',  
					loadingContainerSel:       '#loading_2410',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/11/photo-of-the-day-2012-05-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/10/photo-of-the-day-2012-05-10/</link>
		<comments>http://www.susanmossphotography.com/2012/05/10/photo-of-the-day-2012-05-10/#comments</comments>
		<pubDate>Thu, 10 May 2012 22:00:37 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Casa del Popolo]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Plateau]]></category>
		<category><![CDATA[Portraits]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2407</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2407" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2407" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Casa-Del-Popolo.jpg" rel="shadowbox[sbpost-2407];player=img;" title="Casa Del Popolo" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/Casa-Del-Popolo-50x50.jpg" alt="" title="Casa Del Popolo" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Casa Del Popolo</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2407" class="loader"></div>
					<div id="slideshow_2407" class="slideshow"></div>
					<div id="caption_2407" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2407').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2407',
					controlsContainerSel:      '#controls_2407',
					captionContainerSel:       '#caption_2407',  
					loadingContainerSel:       '#loading_2407',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/10/photo-of-the-day-2012-05-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/09/photo-of-the-day-2012-05-09/</link>
		<comments>http://www.susanmossphotography.com/2012/05/09/photo-of-the-day-2012-05-09/#comments</comments>
		<pubDate>Wed, 09 May 2012 16:18:54 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Evenko]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Metropolis]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Women Who Rock!]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2404</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2404" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2404" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/TheCranberries.jpg" rel="shadowbox[sbpost-2404];player=img;" title="The Cranberries @ Metropolis, 8 May 2012" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/TheCranberries-50x50.jpg" alt="" title="The Cranberries @ Metropolis, 8 May 2012" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">The Cranberries @ Metropolis, 8 May 2012</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2404" class="loader"></div>
					<div id="slideshow_2404" class="slideshow"></div>
					<div id="caption_2404" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2404').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2404',
					controlsContainerSel:      '#controls_2404',
					captionContainerSel:       '#caption_2404',  
					loadingContainerSel:       '#loading_2404',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/09/photo-of-the-day-2012-05-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of the Day</title>
		<link>http://www.susanmossphotography.com/2012/05/08/photo-of-the-day-2012-05-08/</link>
		<comments>http://www.susanmossphotography.com/2012/05/08/photo-of-the-day-2012-05-08/#comments</comments>
		<pubDate>Tue, 08 May 2012 22:32:42 +0000</pubDate>
		<dc:creator>Leroybrown1</dc:creator>
				<category><![CDATA[Evenko]]></category>
		<category><![CDATA[Greenland Productions]]></category>
		<category><![CDATA[Les Foufounes Électriques]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.susanmossphotography.com/?p=2401</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
	
		<div class="gallery_clear"></div> 
		<div id="gallery_2401" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_2401" class="thumnail_col hide_me" >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://www.susanmossphotography.com/wp-content/uploads/2012/05/BCASA@Fouf.jpg" rel="shadowbox[sbpost-2401];player=img;" title="BCASA @ Les Foufounes Électriques, 2 May 2012" >								
											<img src="http://www.susanmossphotography.com/wp-content/uploads/2012/05/BCASA@Fouf-50x50.jpg" alt="" title="BCASA @ Les Foufounes Électriques, 2 May 2012" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">BCASA @ Les Foufounes Électriques, 2 May 2012</div>
													
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_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_2401" class="loader"></div>
					<div id="slideshow_2401" class="slideshow"></div>
					<div id="caption_2401" 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');
				$('.thumnail_col').css('width', '50px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_2401').galleriffic({ 
					delay:                     3500,
					numThumbs:                 4,
					preloadAhead:              4,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_2401',
					controlsContainerSel:      '#controls_2401',
					captionContainerSel:       '#caption_2401',  
					loadingContainerSel:       '#loading_2401',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	1,
					defaultTransitionDuration: 	300,
						
					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(duration, 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);
					}
					
				}); 
				
				
				
				/**************** 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.susanmossphotography.com/2012/05/08/photo-of-the-day-2012-05-08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

