<?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>Phil Ross</title>
	<atom:link href="http://philross.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://philross.org</link>
	<description>The Biotechnique of Phil Ross</description>
	<lastBuildDate>Sat, 17 Nov 2012 23:32:09 +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>Road to Yamanaka</title>
		<link>http://philross.org/2012/11/17/road-to-yamanaka/</link>
		<comments>http://philross.org/2012/11/17/road-to-yamanaka/#comments</comments>
		<pubDate>Sat, 17 Nov 2012 05:40:58 +0000</pubDate>
		<dc:creator>Phil Ross</dc:creator>
				<category><![CDATA[photos-icon]]></category>
		<category><![CDATA[prose-icon]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fungus]]></category>
		<category><![CDATA[mycotecture]]></category>
		<category><![CDATA[the workshop residence]]></category>

		<guid isPermaLink="false">http://philross.org/?p=972</guid>
		<description><![CDATA[Some of the process of growing the Yamanaka series of furniture at The Workshop Residence, which were made from agricultural waste, fungus and salvage wood. &#160;]]></description>
			<content:encoded><![CDATA[<p>Some of the process of growing the Yamanaka series of furniture at <a href="http://theworkshopresidence.com">The Workshop Residence</a>, which were made from agricultural waste, fungus and salvage wood.</p>
	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider1').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider1').data('nivo:vars').currentSlide+2;
					var tS = $('#slider1').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder1 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder1 .fancybox-links a').hide();
					var cS = $('#slider1').data('nivo:vars').currentSlide;
					$('#sliderHolder1 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder1 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider1').data('nivoslider').stop();
			$('#sliderHolder1 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder1 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider1').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider1').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder1 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder1 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder1 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder1 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder1 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("7" < 7)
		{
			//hide arrows
			$('#sliderHolder1 .nivo-upArrow').hide();
			$('#sliderHolder1 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder1 .nivo-downArrow').click(function() {
				var tB = $('#slider1').data('nivo:vars').thumbBuffer;
				var tS = $('#slider1').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider1').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider1').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder1 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder1 .nivo-upArrow').click(function() {
				var tB = $('#slider1').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider1').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider1').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider1').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder1 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider1').data('nivoslider').stop();
			$('#sliderHolder1 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder1 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder1 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder1' class='nivoWrapper'>
		<div id="slider1" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="studio-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/studio-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/studio-copy.jpg&h=82&w=107"/>
								<img alt="img_1976-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1976-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1976-copy.jpg&h=82&w=107"/>
								<img alt="one_kay-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/one_kay-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/one_kay-copy.jpg&h=82&w=107"/>
								<img alt="img_2019-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2019-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2019-copy.jpg&h=82&w=107"/>
								<img alt="img_2067-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2067-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2067-copy.jpg&h=82&w=107"/>
								<img alt="img_1995-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1995-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1995-copy.jpg&h=82&w=107"/>
								<img alt="img_1775-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1775-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1775-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/7</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/studio-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1976-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/one_kay-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2019-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_2067-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-5" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1995-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-6" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama/img_1775-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-1" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider2').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider2').data('nivo:vars').currentSlide+2;
					var tS = $('#slider2').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder2 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder2 .fancybox-links a').hide();
					var cS = $('#slider2').data('nivo:vars').currentSlide;
					$('#sliderHolder2 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder2 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider2').data('nivoslider').stop();
			$('#sliderHolder2 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder2 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider2').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider2').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder2 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder2 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder2 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder2 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder2 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("8" < 7)
		{
			//hide arrows
			$('#sliderHolder2 .nivo-upArrow').hide();
			$('#sliderHolder2 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder2 .nivo-downArrow').click(function() {
				var tB = $('#slider2').data('nivo:vars').thumbBuffer;
				var tS = $('#slider2').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider2').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider2').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder2 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder2 .nivo-upArrow').click(function() {
				var tB = $('#slider2').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider2').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider2').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider2').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder2 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider2').data('nivoslider').stop();
			$('#sliderHolder2 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder2 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder2 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder2' class='nivoWrapper'>
		<div id="slider2" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="img_2795-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2795-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2795-copy.jpg&h=82&w=107"/>
								<img alt="img_2869-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2869-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2869-copy.jpg&h=82&w=107"/>
								<img alt="img_2886-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2886-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2886-copy.jpg&h=82&w=107"/>
								<img alt="mycoberg-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/mycoberg-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/mycoberg-copy.jpg&h=82&w=107"/>
								<img alt="img_2930-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2930-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2930-copy.jpg&h=82&w=107"/>
								<img alt="img_2926-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2926-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2926-copy.jpg&h=82&w=107"/>
								<img alt="img_3082-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_3082-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_3082-copy.jpg&h=82&w=107"/>
								<img alt="img_2923-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2923-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2923-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/8</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2795-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2869-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2886-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/mycoberg-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2930-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-5" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2926-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-6" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_3082-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-7" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama1/img_2923-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-2" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider3').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider3').data('nivo:vars').currentSlide+2;
					var tS = $('#slider3').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder3 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder3 .fancybox-links a').hide();
					var cS = $('#slider3').data('nivo:vars').currentSlide;
					$('#sliderHolder3 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder3 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider3').data('nivoslider').stop();
			$('#sliderHolder3 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder3 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider3').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider3').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder3 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder3 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder3 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder3 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder3 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("5" < 7)
		{
			//hide arrows
			$('#sliderHolder3 .nivo-upArrow').hide();
			$('#sliderHolder3 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder3 .nivo-downArrow').click(function() {
				var tB = $('#slider3').data('nivo:vars').thumbBuffer;
				var tS = $('#slider3').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider3').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider3').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder3 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder3 .nivo-upArrow').click(function() {
				var tB = $('#slider3').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider3').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider3').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider3').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder3 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider3').data('nivoslider').stop();
			$('#sliderHolder3 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder3 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder3 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder3' class='nivoWrapper'>
		<div id="slider3" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="img_3070-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3070-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3070-copy.jpg&h=82&w=107"/>
								<img alt="img_3004-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3004-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3004-copy.jpg&h=82&w=107"/>
								<img alt="img_3064-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3064-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3064-copy.jpg&h=82&w=107"/>
								<img alt="img_3071-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3071-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3071-copy.jpg&h=82&w=107"/>
								<img alt="img_3072-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3072-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3072-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/5</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3070-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-3" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3004-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-3" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3064-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-3" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3071-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-3" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama2/img_3072-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-3" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider4').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider4').data('nivo:vars').currentSlide+2;
					var tS = $('#slider4').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder4 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder4 .fancybox-links a').hide();
					var cS = $('#slider4').data('nivo:vars').currentSlide;
					$('#sliderHolder4 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder4 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider4').data('nivoslider').stop();
			$('#sliderHolder4 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder4 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider4').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider4').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder4 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder4 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder4 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder4 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder4 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("5" < 7)
		{
			//hide arrows
			$('#sliderHolder4 .nivo-upArrow').hide();
			$('#sliderHolder4 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder4 .nivo-downArrow').click(function() {
				var tB = $('#slider4').data('nivo:vars').thumbBuffer;
				var tS = $('#slider4').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider4').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider4').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder4 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder4 .nivo-upArrow').click(function() {
				var tB = $('#slider4').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider4').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider4').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider4').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder4 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider4').data('nivoslider').stop();
			$('#sliderHolder4 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder4 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder4 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder4' class='nivoWrapper'>
		<div id="slider4" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="img_3140-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3140-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3140-copy.jpg&h=82&w=107"/>
								<img alt="img_3063-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3063-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3063-copy.jpg&h=82&w=107"/>
								<img alt="img_3113-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3113-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3113-copy.jpg&h=82&w=107"/>
								<img alt="img_3103-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3103-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3103-copy.jpg&h=82&w=107"/>
								<img alt="img_3152-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3152-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3152-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/5</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3140-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-4" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3063-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-4" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3113-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-4" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3103-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-4" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama3/img_3152-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-4" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider5').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider5').data('nivo:vars').currentSlide+2;
					var tS = $('#slider5').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder5 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder5 .fancybox-links a').hide();
					var cS = $('#slider5').data('nivo:vars').currentSlide;
					$('#sliderHolder5 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder5 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider5').data('nivoslider').stop();
			$('#sliderHolder5 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder5 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider5').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider5').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder5 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder5 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder5 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder5 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder5 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("2" < 7)
		{
			//hide arrows
			$('#sliderHolder5 .nivo-upArrow').hide();
			$('#sliderHolder5 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder5 .nivo-downArrow').click(function() {
				var tB = $('#slider5').data('nivo:vars').thumbBuffer;
				var tS = $('#slider5').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider5').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider5').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder5 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder5 .nivo-upArrow').click(function() {
				var tB = $('#slider5').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider5').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider5').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider5').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder5 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider5').data('nivoslider').stop();
			$('#sliderHolder5 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder5 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder5 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder5' class='nivoWrapper'>
		<div id="slider5" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="img_3453-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/img_3453-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/img_3453-copy.jpg&h=82&w=107"/>
								<img alt="lord_gremlin-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/lord_gremlin-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/lord_gremlin-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/2</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/img_3453-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-5" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yama4/lord_gremlin-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-5" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://philross.org/2012/11/17/road-to-yamanaka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Workshop Residence</title>
		<link>http://philross.org/2012/10/01/the-workshop-residence/</link>
		<comments>http://philross.org/2012/10/01/the-workshop-residence/#comments</comments>
		<pubDate>Mon, 01 Oct 2012 02:23:12 +0000</pubDate>
		<dc:creator>Phil Ross</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ongoing research]]></category>
		<category><![CDATA[photos-icon]]></category>
		<category><![CDATA[prose-icon]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fungus]]></category>
		<category><![CDATA[mycotecture]]></category>
		<category><![CDATA[the workshop residence]]></category>

		<guid isPermaLink="false">http://philross.org/?p=963</guid>
		<description><![CDATA[Through October 31st I will be at The Workshop Residence in San Francisco, where I will be growing a limited edition set of furniture from fungal tissue. Below are some of the prototypes that came out of the design process. &#8230; <a href="http://philross.org/2012/10/01/the-workshop-residence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Through October 31st I will be at <a href="http://theworkshopresidence.com">The Workshop Residence</a> in San Francisco, where I will be growing a limited edition set of furniture from fungal tissue. Below are some of the prototypes that came out of the design process. These use local agricultural waste as the food for the fungus, with the legs fashioned from salvage  wood.</p>
	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider6').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider6').data('nivo:vars').currentSlide+2;
					var tS = $('#slider6').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder6 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder6 .fancybox-links a').hide();
					var cS = $('#slider6').data('nivo:vars').currentSlide;
					$('#sliderHolder6 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder6 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider6').data('nivoslider').stop();
			$('#sliderHolder6 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder6 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider6').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider6').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder6 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder6 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder6 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder6 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder6 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("4" < 7)
		{
			//hide arrows
			$('#sliderHolder6 .nivo-upArrow').hide();
			$('#sliderHolder6 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder6 .nivo-downArrow').click(function() {
				var tB = $('#slider6').data('nivo:vars').thumbBuffer;
				var tS = $('#slider6').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider6').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider6').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder6 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder6 .nivo-upArrow').click(function() {
				var tB = $('#slider6').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider6').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider6').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider6').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder6 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider6').data('nivoslider').stop();
			$('#sliderHolder6 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder6 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder6 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder6' class='nivoWrapper'>
		<div id="slider6" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="yamanakita" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/yamanakita.jpg&h=419&w=587&zc=2&cc=f5f5f5" title="Yamanakita" rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/yamanakita.jpg&h=82&w=107"/>
								<img alt="5fyamanaka_s" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/5fyamanaka_s.jpg&h=419&w=587&zc=2&cc=f5f5f5" title="The Five Finger Yamanaka
" rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/5fyamanaka_s.jpg&h=82&w=107"/>
								<img alt="byamanaka_s" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/byamanaka_s.jpg&h=419&w=587&zc=2&cc=f5f5f5" title="Benign Yamanaka" rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/byamanaka_s.jpg&h=82&w=107"/>
								<img alt="wyamanaka_s" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/wyamanaka_s.jpg&h=419&w=587&zc=2&cc=f5f5f5" title="Yamanaka Wisdom" rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/wyamanaka_s.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/4</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/yamanakita.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-6" title="Yamanakita">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/5fyamanaka_s.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-6" title="The Five Finger Yamanaka
">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/byamanaka_s.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-6" title="Benign Yamanaka">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/yamanaka/wyamanaka_s.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-6" title="Yamanaka Wisdom">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

<p>On Saturday, October 27th there will be a public reception from 12-6 at the gallery, where I will have many of these on display.</p>
<p>Paul Discoe, Peter Dolittle and Michael Sgambellone are master wood joiners and craftsmen who generously helped realize these objects&#8217; alien grace. <span style="line-height: 24px;">The </span><em style="line-height: 24px;">Yamanaka</em><span style="line-height: 24px;"> chairs owe their name to Shigeru Yamanaka, a Japanese scientist who described how fungal cells can be used as a natural binding agent for different materials.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://philross.org/2012/10/01/the-workshop-residence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future Is Fungal: Interview</title>
		<link>http://philross.org/2012/09/29/glasstire-interview-intimate-science/</link>
		<comments>http://philross.org/2012/09/29/glasstire-interview-intimate-science/#comments</comments>
		<pubDate>Sat, 29 Sep 2012 18:39:08 +0000</pubDate>
		<dc:creator>Phil Ross</dc:creator>
				<category><![CDATA[ongoing research]]></category>
		<category><![CDATA[andrea grover]]></category>
		<category><![CDATA[fungus]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[Intimate Science]]></category>
		<category><![CDATA[mycotecture]]></category>

		<guid isPermaLink="false">http://philross.org/?p=954</guid>
		<description><![CDATA[Andrea Grover has published an interview with me called The Future Is Fungal, which goes a bit deeper into how I learned to grow mushrooms. Andrea is the curator of the traveling Intimate Science exhibition that started at The Miller Gallery at Carnegie &#8230; <a href="http://philross.org/2012/09/29/glasstire-interview-intimate-science/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<script type='text/javascript'>

//set up custom caption
function formatTitle(title, currentArray, currentIndex, currentOpts) {
		if(title && title.length)
		{
			$('#fancybox-content').css('margin-top','-60px');
	    var bHTML = '<div id="fancybox-title-content-single">';
			bHTML += '<div class="fancybox-caption-single">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
			bHTML += '</div>';
			return bHTML;
		}
}

$('#pr-image0 .fancy-link').fancybox({
	'titleFormat':formatTitle,
	'margin':100,
	'padding':1,
	'overlayColor':'#333',
	'overlayOpacity':1
});

$('#pr-image0 .fancy-link-no-capt').fancybox({
	'titleFormat':formatTitle,
	'margin':20,
	'padding':1,
	'overlayColor':'#333',
	'overlayOpacity':1
});

</script>
	<div id='pr-image0' class='pr-image' style="width:593px; margin:auto;">
		<div class='single-image' style="width:593px; min-height:444.75px;">
			<img src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/blog/fungdome-copy.jpg&w=593"/>
							<a id="" class="fancy-link-no-capt" href="http://philross.org/wp-content/gallery/blog/fungdome-copy.jpg" title="">
							<span class='fullscreen-but'></span>
			</a>
		</div>
							<div class='pr-image-nocaption'></div>
				</div>

<p>Andrea Grover has published an interview with me called <a href="http://glasstire.com/2012/09/08/the-future-is-fungal-interview-with-phil-ross/" target="_blank">The Future Is Fungal</a>, which goes a bit deeper into how I learned to grow mushrooms. Andrea is the curator of the traveling <a href="http://millergallery.cfa.cmu.edu/exhibitions/intimatescience/" target="_blank">Intimate Science</a> exhibition that started at The Miller Gallery at Carnegie Mellon University.</p>
]]></content:encoded>
			<wfw:commentRss>http://philross.org/2012/09/29/glasstire-interview-intimate-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Fungal Order</title>
		<link>http://philross.org/2012/07/02/new-fungal-order/</link>
		<comments>http://philross.org/2012/07/02/new-fungal-order/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 08:14:11 +0000</pubDate>
		<dc:creator>Phil Ross</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[image essays]]></category>
		<category><![CDATA[ongoing research]]></category>
		<category><![CDATA[photos-icon]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mycotecture]]></category>

		<guid isPermaLink="false">http://philross.org/?p=928</guid>
		<description><![CDATA[International Patent Pending! Some of the exciting new experiments with growing functional building materials out of fungus.]]></description>
			<content:encoded><![CDATA[<p>International Patent Pending!</p>
<p>Some of the exciting new experiments with growing functional building materials out of fungus.</p>
	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider7').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider7').data('nivo:vars').currentSlide+2;
					var tS = $('#slider7').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder7 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder7 .fancybox-links a').hide();
					var cS = $('#slider7').data('nivo:vars').currentSlide;
					$('#sliderHolder7 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder7 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider7').data('nivoslider').stop();
			$('#sliderHolder7 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder7 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider7').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider7').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder7 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder7 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder7 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder7 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder7 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("3" < 7)
		{
			//hide arrows
			$('#sliderHolder7 .nivo-upArrow').hide();
			$('#sliderHolder7 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder7 .nivo-downArrow').click(function() {
				var tB = $('#slider7').data('nivo:vars').thumbBuffer;
				var tS = $('#slider7').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider7').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider7').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder7 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder7 .nivo-upArrow').click(function() {
				var tB = $('#slider7').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider7').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider7').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider7').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder7 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider7').data('nivoslider').stop();
			$('#sliderHolder7 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder7 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder7 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder7' class='nivoWrapper'>
		<div id="slider7" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="ganoplex-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/ganoplex-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/ganoplex-copy.jpg&h=82&w=107"/>
								<img alt="tableau_mort-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/tableau_mort-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/tableau_mort-copy.jpg&h=82&w=107"/>
								<img alt="parts-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/parts-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/parts-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/3</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/ganoplex-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-7" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/tableau_mort-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-7" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung/parts-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-7" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider8').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider8').data('nivo:vars').currentSlide+2;
					var tS = $('#slider8').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder8 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder8 .fancybox-links a').hide();
					var cS = $('#slider8').data('nivo:vars').currentSlide;
					$('#sliderHolder8 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder8 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider8').data('nivoslider').stop();
			$('#sliderHolder8 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder8 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider8').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider8').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder8 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder8 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder8 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder8 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder8 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("5" < 7)
		{
			//hide arrows
			$('#sliderHolder8 .nivo-upArrow').hide();
			$('#sliderHolder8 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder8 .nivo-downArrow').click(function() {
				var tB = $('#slider8').data('nivo:vars').thumbBuffer;
				var tS = $('#slider8').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider8').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider8').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder8 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder8 .nivo-upArrow').click(function() {
				var tB = $('#slider8').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider8').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider8').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider8').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder8 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider8').data('nivoslider').stop();
			$('#sliderHolder8 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder8 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder8 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder8' class='nivoWrapper'>
		<div id="slider8" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="img_7656-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7656-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7656-copy.jpg&h=82&w=107"/>
								<img alt="img_7655-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7655-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7655-copy.jpg&h=82&w=107"/>
								<img alt="img_7660-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7660-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7660-copy.jpg&h=82&w=107"/>
								<img alt="img_7661-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7661-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7661-copy.jpg&h=82&w=107"/>
								<img alt="img_7662-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7662-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7662-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/5</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7656-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-8" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7655-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-8" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7660-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-8" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7661-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-8" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung1/img_7662-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-8" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider9').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider9').data('nivo:vars').currentSlide+2;
					var tS = $('#slider9').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder9 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder9 .fancybox-links a').hide();
					var cS = $('#slider9').data('nivo:vars').currentSlide;
					$('#sliderHolder9 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder9 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider9').data('nivoslider').stop();
			$('#sliderHolder9 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder9 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider9').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider9').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder9 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder9 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder9 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder9 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder9 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("6" < 7)
		{
			//hide arrows
			$('#sliderHolder9 .nivo-upArrow').hide();
			$('#sliderHolder9 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder9 .nivo-downArrow').click(function() {
				var tB = $('#slider9').data('nivo:vars').thumbBuffer;
				var tS = $('#slider9').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider9').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider9').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder9 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder9 .nivo-upArrow').click(function() {
				var tB = $('#slider9').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider9').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider9').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider9').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder9 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider9').data('nivoslider').stop();
			$('#sliderHolder9 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder9 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder9 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder9' class='nivoWrapper'>
		<div id="slider9" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="bobmb-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmb-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmb-copy.jpg&h=82&w=107"/>
								<img alt="bobmbead-copy-3" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmbead-copy-3.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmbead-copy-3.jpg&h=82&w=107"/>
								<img alt="double_miracle-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/double_miracle-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/double_miracle-copy.jpg&h=82&w=107"/>
								<img alt="s_f_stack-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/s_f_stack-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/s_f_stack-copy.jpg&h=82&w=107"/>
								<img alt="brix_corner_s-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/brix_corner_s-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/brix_corner_s-copy.jpg&h=82&w=107"/>
								<img alt="wall_of_fung-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/wall_of_fung-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/wall_of_fung-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/6</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmb-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/bobmbead-copy-3.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/double_miracle-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/s_f_stack-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/brix_corner_s-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-5" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung2/wall_of_fung-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-9" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

	
	<script type="text/javascript">
	$(document).ready(function() {
		$('#slider10').nivoSlider({
		    controlNavThumbs:true,
		    controlNavThumbsFromRel:true,
				effect:'fade',
				pauseTime:5000,
				captionOpacity:1,
				directionNav:false,
				pauseOnHover:false,
				beforeChange:function() {
					//change slide number
					var cS = $('#slider10').data('nivo:vars').currentSlide+2;
					var tS = $('#slider10').data('nivo:vars').totalSlides;
					if(cS == tS+1)
					{
						cS = 1;
					}
					$('#sliderHolder10 .nivo-sliderPlayNumber').text(cS+"/"+tS);
				},
				afterChange:function() {
					$('#sliderHolder10 .fancybox-links a').hide();
					var cS = $('#slider10').data('nivo:vars').currentSlide;
					$('#sliderHolder10 .fancybox-links #ind-'+cS).css('display','block');
				}
		});
		//switch play to stop if hit a thumb
		$('#sliderHolder10 .nivo-controlNav a').click(function() {
			isPlay = false;
			$('#slider10').data('nivoslider').stop();
			$('#sliderHolder10 .nivo-sliderPlay').css("background-position","0px 0px");
		})
		
		var isPlay = true;
		$('#sliderHolder10 .nivo-sliderPlay').click(function() {
			if(isPlay)
			{
				isPlay = false;
				$('#slider10').data('nivoslider').stop();
				$(this).css("background-position","0 0");
			} else
			{
				isPlay = true;
				$('#slider10').data('nivoslider').start();
				$(this).css("background-position","0 26px");
			}
		})
		$('#sliderHolder10 .nivo-sliderPlay').mouseover(function() {
			if(isPlay)
			{
				$(this).css("background-position","27px 26px");
			} else
			{
				$(this).css("background-position","27px 0");
			}
		})
		
		$('#sliderHolder10 .nivo-sliderPlay').mouseout(function() {
			if(isPlay)
			{
				$(this).css("background-position","0 26px");
			} else
			{
				$(this).css("background-position","0 0");
			}
		})
		
		//set up overs
		$('#sliderHolder10 .nivo-controlNav a').each(function() {
			$(this).prepend('<span class="over"></span>');
		})
		
		$('#sliderHolder10 .nivo-controlNav a').mouseover(function() {
			$(this).find('.over').stop(true,true).fadeIn(500);
		})
		
		$('#sliderHolder10 .nivo-controlNav a').mouseout(function() {
			$(this).find('.over').stop(true,true).fadeOut(500);
		})
		
		
		//realign and hide arrows if less than six items
		if("5" < 7)
		{
			//hide arrows
			$('#sliderHolder10 .nivo-upArrow').hide();
			$('#sliderHolder10 .nivo-downArrow').hide();
		} else
		{
			//buttons for scrolling 
			//they rearrange the items
			$('#sliderHolder10 .nivo-downArrow').click(function() {
				var tB = $('#slider10').data('nivo:vars').thumbBuffer;
				var tS = $('#slider10').data('nivo:vars').totalSlides;
				tB--;
				if(tB<0)
				{
					$('#slider10').data('nivo:vars').thumbBuffer = tS-1;
				} else
				{
					$('#slider10').data('nivo:vars').thumbBuffer = tB;
				}
				var fL = $('#sliderHolder10 .nivo-controlNav a:first');
				fL.animate({marginTop:-91},200,'easeOutCubic',function() {
					var p = $(this).parent();
					$(this).remove();
					$(this).css({marginTop:0});
					p.append($(this));
				})
			})
		
			$('#sliderHolder10 .nivo-upArrow').click(function() {
				var tB = $('#slider10').data('nivo:vars').thumbBuffer;
				tB++;
				var tS = $('#slider10').data('nivo:vars').totalSlides;
				if(tB>tS-1)
				{
					$('#slider10').data('nivo:vars').thumbBuffer = 0;
				} else
				{
					$('#slider10').data('nivo:vars').thumbBuffer = tB;
				}
				var lL = $('#sliderHolder10 .nivo-controlNav a:last');
				var p = lL.parent();
				lL.remove();
				lL.css({marginTop:-91});
				p.prepend(lL);
				lL.animate({marginTop:0},300,'easeOutCubic')
			})
		}
		
		
		
		
		//
		//FANCYBOX
		
		var isFancyPlay = false;
		var fancyInterval;
		//to deal with bug in fancy box of hitting play twice
		var isHitting = true;
		
		//set up custom caption
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
				if(title && title.length)
				{
					$('#fancybox-content').css('margin-top','-60px');
				} 
		    var bHTML = '<div id="fancybox-title-content">';
				bHTML += "<div class='nivo-sliderPlayHolder fancy-play-holder'>";
				bHTML += "<div class='nivo-sliderPlayNumber'>"+(currentIndex + 1) + '/' + currentArray.length+"</div>";
				bHTML += "<div class='nivo-sliderPlay'></div>";
				bHTML += '</div>';
				bHTML += '<div class="fancybox-caption">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
				bHTML += '</div>';
				return bHTML;
		}
		
		function completeFancy () {
			//stop other slideshow if running
			isPlay = false;
			$('#slider10').data('nivoslider').stop();
			$('#sliderHolder10 .nivo-sliderPlay').css("background-position","0px 0px");
			
			//initialize play
			
			$('#fancybox-title-content .nivo-sliderPlay').mousedown(function() {
				clearInterval(fancyInterval);
				//again for bug firing this event twice after first fancybox click
				setTimeout(function() {
					isHitting = true
				},100);
				if(isHitting)
				{
					isHitting = false;
					if(isFancyPlay)
					{
						isFancyPlay = false;
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
					} else
					{
						isFancyPlay = true;
						fancyInterval = setInterval($.fancybox.next, 5000);	
						$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
						$.fancybox.next();
					}
				}
			});
			$('#fancybox-title-content .nivo-sliderPlay').mouseover(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","27px 26px");
				} else
				{
					$(this).css("background-position","27px 0");
				}
			})

			$('#fancybox-title-content .nivo-sliderPlay').mouseout(function() {
				if(isFancyPlay)
				{
					$(this).css("background-position","0 26px");
				} else
				{
					$(this).css("background-position","0 0");
				}
			})
			
			//see if should show play or pause
			if(isFancyPlay)
			{
				$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 26px');
			} else
			{
			$('#fancybox-title-content .nivo-sliderPlay').css('background-position','0 0');
			}
			
			//stop fancybox from playing if click prev or next
			$('#fancybox-right').click(function() {
				isFancyPlay = false;
			})
			
			$('#fancybox-left').click(function() {
				isFancyPlay = false;
			})
		}
		
		function closedFancy() 
		{
			$('#fancybox-content').css('margin-top','0px');
			clearInterval(fancyInterval);
			isFancyPlay = false;
			
		}
		
		$('#sliderHolder10 .fancy-link').fancybox({
			
			'onComplete':completeFancy,
			'onClosed':closedFancy,
			'titleFormat':formatTitle,
			'overlayColor':'#333',
			'changeFade':0,
			'changeSpeed':0,
			'margin':100,
			'padding':1,
			'cyclic':true,
			'overlayOpacity':1
		});
		
		//show first fullscreen button
		$('#sliderHolder10 .fancybox-links a:first').show();
	})
</script>
	<!--holder for images-->
	<div id='sliderHolder10' class='nivoWrapper'>
		<div id="slider10" class="nivoSlider">
		<!-- Thumbnails -->
							<img alt="e1_brix11-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/e1_brix11-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/e1_brix11-copy.jpg&h=82&w=107"/>
								<img alt="3-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/3-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/3-copy.jpg&h=82&w=107"/>
								<img alt="img_7747-copy-3" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_7747-copy-3.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_7747-copy-3.jpg&h=82&w=107"/>
								<img alt="img_3990-copy-3" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_3990-copy-3.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_3990-copy-3.jpg&h=82&w=107"/>
								<img alt="king_queen-copy" src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/king_queen-copy.jpg&h=419&w=587&zc=2&cc=f5f5f5" title=" " rel="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/king_queen-copy.jpg&h=82&w=107"/>
					</div>
		<div class='nivo-sliderPlayHolder'>
			<div class='nivo-sliderPlayNumber'>1/5</div>
			<div class='nivo-sliderPlay'></div>
		</div>
		<div class='nivo-upArrow'></div>
		<div class='nivo-downArrow'></div>
		<div class='fancybox-links'>
					<a id="ind-0" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/e1_brix11-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-10" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-1" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/3-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-10" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-2" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_7747-copy-3.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-10" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-3" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/img_3990-copy-3.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-10" title=" ">
				<span class='fullscreen-but'></span>
			</a>
								<a id="ind-4" class="fancy-link" href="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/newfung4/king_queen-copy.jpg&h=800&w=1200&zc=2&br=51&bg=51&bb=51" rel="fancy-gallery-10" title=" ">
				<span class='fullscreen-but'></span>
			</a>
							</div>
	</div>

]]></content:encoded>
			<wfw:commentRss>http://philross.org/2012/07/02/new-fungal-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Press</title>
		<link>http://philross.org/2011/05/31/press/</link>
		<comments>http://philross.org/2011/05/31/press/#comments</comments>
		<pubDate>Tue, 31 May 2011 14:42:35 +0000</pubDate>
		<dc:creator>Phil Ross</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Press]]></category>

		<guid isPermaLink="false">http://philross.org/?p=781</guid>
		<description><![CDATA[An article about my research on fungal materials in Time Magazine. Eric Lemay has written an article about Junior Return for the May issue of Gastronomica, which has a mirror here in the Boston Globe. From the front page of &#8230; <a href="http://philross.org/2011/05/31/press/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<script type='text/javascript'>

//set up custom caption
function formatTitle(title, currentArray, currentIndex, currentOpts) {
		if(title && title.length)
		{
			$('#fancybox-content').css('margin-top','-60px');
	    var bHTML = '<div id="fancybox-title-content-single">';
			bHTML += '<div class="fancybox-caption-single">'+(title && title.length ? '<p>' + title + '</p>' : '' )+'</span>';
			bHTML += '</div>';
			return bHTML;
		}
}

$('#pr-image0 .fancy-link').fancybox({
	'titleFormat':formatTitle,
	'margin':100,
	'padding':1,
	'overlayColor':'#333',
	'overlayOpacity':1
});

$('#pr-image0 .fancy-link-no-capt').fancybox({
	'titleFormat':formatTitle,
	'margin':20,
	'padding':1,
	'overlayColor':'#333',
	'overlayOpacity':1
});

</script>
	<div id='pr-image0' class='pr-image' style="width:593px; margin:auto;">
		<div class='single-image' style="width:593px; min-height:457.10416666667px;">
			<img src="http://philross.org/wp-content/themes/billhoss/scripts/timthumb.php?src=http://philross.org/wp-content/gallery/single_images/fungarch.jpg&w=593"/>
							<a id="" class="fancy-link-no-capt" href="http://philross.org/wp-content/gallery/single_images/fungarch.jpg" title="">
							<span class='fullscreen-but'></span>
			</a>
		</div>
							<div class='pr-image-nocaption'></div>
				</div>

<p>An article about my research on fungal materials in <a href="http://www.time.com/time/magazine/article/0,9171,1957474,00.html" target="_blank">Time Magazine</a>.</p>
<p>Eric Lemay has written an article about Junior Return for the May issue of Gastronomica, which has a mirror here in the <a href="http://www.boston.com/bostonglobe/ideas/brainiac/2011/04/the_matrix_--_w.html" target="_blank">Boston Globe</a>.</p>
<p>From the front page of the fall dining section of the NY Times about an edible insect dinner I put together for The Brooklyn Kitchen.<br />
<iframe src="http://player.vimeo.com/video/15359153?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="600" height="338"></iframe></p>
<p>Some videos about CRITTER Salon events that took place down in LA at Machine Project this past year.</p>
<p>Clone Home- A drop in plant cloning and cultural center.<br />
<iframe src="http://player.vimeo.com/video/14867635?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="600" height="338"></iframe></p>
<p>Eat Bug Eat- Just what it sounds like.<br />
<iframe src="http://player.vimeo.com/video/12095259?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="600" height="338"></iframe></p>
<p>Enormous Microscopic Evening- a giant microscope jam session at the Hammer.<br />
<iframe src="http://player.vimeo.com/video/22781774?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="600" height="338"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://philross.org/2011/05/31/press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
