<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Circuit Editions | Contemporary photographic, digital and print-based works on paper</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Circuit Editions, a division of Circuit Gallery, specializes in affordable limited editions of contemporary photographic, digital, and print-based works on paper. " />
<meta name="keywords" content="photography, photo, foto, art, limited editions, digital art, affordable, editions, Toronto, collecting, Alejandro Cartagena, Robert Bean, Sharon Switzer, Andrew Wright, fundraising 
" />
<meta name="robots" content="INDEX,FOLLOW" />
<link rel="icon" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/favicon.ico" type="image/x-icon" />
<!--[if lt IE 7]>
<script type="text/javascript">
//<![CDATA[
    var BLANK_URL = 'http://www.circuiteditions.com/js/blank.html';
    var BLANK_IMG = 'http://www.circuiteditions.com/js/spacer.gif';
//]]>
</script>
<![endif]-->
<script type="text/javascript">
var SKIN_URL = 'https://www.circuiteditions.com/skin/frontend/circuitgallery/default/';
</script>
<script type="text/javascript" src="https://www.circuiteditions.com/skin/frontend/circuitgallery/default/js/jquery-1.4.3.min.js" ></script> 

<script type="text/javascript">
  jQuery.noConflict();
  // Code that uses other library's $ can follow here.
</script>
<script type="text/javascript">
var ExamplesPagination;
(function($){
    ExamplesPagination = {
    	speed: 500,
    	easing: 'swing',
    	
    	moveBack: function(){
    		var self = this;
			
			// Conditional statement added to loop scroller.
			
			if (this.pageContainer.position().left == 0) {
					this.pageContainer.animate({
					left: 0 - ( (this.total-1) * $(this.pages[0]).width()) + "px"
				}, {
					speed: this.speed,
					easing: this.easing,
					complete: function(){
						self.updatePages();
					}
				});
				
				this.current = this.total-1;
			
			} else {
			
				this.pageContainer.animate({
					left: 0 - (this.current * $(this.pages[0]).width()) + "px"
				}, {
					speed: this.speed,
					easing: this.easing,
					complete: function(){
						self.updatePages();
					}
				});
			
			}
			
    	},
		
		moveForward: function(){
    		var self = this;
			
			// Conditional statement added to loop scroller.
			
			var last = -($(this.pages[0]).width() * (this.total-1));
			
			if (this.pageContainer.position().left == last) {
					this.pageContainer.animate({
					left: 0 - ( 0 * $(this.pages[0]).width()) + "px"
				}, {
					speed: this.speed,
					easing: this.easing,
					complete: function(){
						self.updatePages();
					}
				});
				
				this.current = 0;
			
			} else {
			
				this.pageContainer.animate({
					left: 0 - (this.current * $(this.pages[0]).width()) + "px"
				}, {
					speed: this.speed,
					easing: this.easing,
					complete: function(){
						self.updatePages();
					}
				});
			
			}
			
    	},
		
		move: function(){
			
    		var self = this;
		
			this.pageContainer.animate({
				left: 0 - (this.current * $(this.pages[0]).width()) + "px"
			}, {
				speed: this.speed,
				easing: this.easing,
				complete: function(){
					self.updatePages();
				}
			});
			
    	},
    	
    	goTo: function(ind){
    		this.current = Math.min(0, Math.max(this.total - 1, ind));
    		this.move();
    	},
    	
    	next: function(){
    		this.current = Math.min(this.total - 1, this.current + 1);
			//alert (this.current);
			this.moveForward();
    	},
    	
    	prev: function(){
    		this.current = Math.max(0, this.current - 1);
    		this.moveBack();
    	},
    	
    	updatePages: function(){
			
			// Commented out when making scroller loop. Causes arrows to look disabled.
			
    		/*if(this.current === 0){
    			this.prevBtn.addClass('disabled');
    		} else {
    			this.prevBtn.removeClass('disabled');
    		}
    		if(this.current == this.total - 1){
    			this.nextBtn.addClass('disabled');
    		} else {
    			this.nextBtn.removeClass('disabled');
    		}*/
    	},
    	
    	initialize: function(){
    		var self = this;
    		
    		this.pageContainer = $('#slidedeck_examples .navigation .pages');
    		this.pages = $('#slidedeck_examples .navigation .page');
    		this.prevBtn = $('#slidedeck_examples .navigation a.btn_examples_prevnext.prev');
    		this.nextBtn = $('#slidedeck_examples .navigation a.btn_examples_prevnext.next');
    		
    		this.total = this.pages.length;
    		this.current = 0;
    		
    		this.prevBtn.click(function(event){
    			event.preventDefault();
    			self.prev();
    		});
    	
			this.nextBtn.click(function(event){
    			event.preventDefault();
    			self.next();
    		});
    		
    		this.updatePages();
    	}
    };
    
    $(document).ready(function(){
		if(document.location.pathname.substr(0,9) == "/examples"){
			var gotoSlide = document.location.search.match(/\?hash=([a-zA-Z0-9\-_]+)/);
			if(gotoSlide !== null){
				window.scrollTo(0,0);
				SlideDeckExamples.goTo($('#slidedeck_examples dd').index($('#' + gotoSlide[1])));
			}

            var ssHeight = $('.slidedeck dd .screenshot').height();
            $('.slidedeck dd .screenshot img').each(function(){
                $(this).css({
                    marginTop: ((ssHeight - $(this).height()) / 2)
                });
            });
		}
        
		$('#slidedeck_examples .navigation a.thumb').click(function(event){
			if($('#slidedeck_examples .navigation').hasClass('index')){
				event.preventDefault();
				var example_id = this.href.split("#")[1];
				SlideDeckExamples.goTo($('#slidedeck_examples dd').index($('#' + example_id)) + 1);
			}
			
			});

		ExamplesPagination.initialize();
    });
})(jQuery);
</script> 

<script type="text/javascript" src="https://www.circuiteditions.com//skin/frontend/circuitgallery/default/js/stepcarousel.js" ></script>
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/slidedeck.skin.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/slidedeck-home-page.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/slidedeck-project-page.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/cg.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/cg_about_content.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/lightbox.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/styles.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/base/default/css/widgets.css" media="all" />
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/css/print.css" media="print" />
<script type="text/javascript" src="http://www.circuiteditions.com/js/prototype/prototype.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/lib/ccard.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/prototype/validation.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/scriptaculous/builder.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/scriptaculous/effects.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/scriptaculous/dragdrop.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/scriptaculous/controls.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/scriptaculous/slider.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/varien/js.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/varien/form.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/varien/menu.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/mage/translate.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/mage/cookies.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/slidedeck.jquery.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/jquery.reject.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/js/lightbox.js"></script>
<link href="http://www.circuiteditions.com/rss/default/@new" title="New Products" rel="alternate" type="application/rss+xml" />
<link rel="canonical" href="http://www.circuiteditions.com/" />
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="http://www.circuiteditions.com/skin/frontend/base/default/css/styles-ie.css" media="all" />
<![endif]-->
<!--[if lt IE 7]>
<script type="text/javascript" src="http://www.circuiteditions.com/js/lib/ds-sleight.js"></script>
<script type="text/javascript" src="http://www.circuiteditions.com/skin/frontend/base/default/js/ie6.js"></script>
<![endif]-->

<script type="text/javascript">
//<![CDATA[
Mage.Cookies.path     = '/';
Mage.Cookies.domain   = '.www.circuiteditions.com';
//]]>
</script>

<script type="text/javascript">
//<![CDATA[
optionalZipCountries = [];
//]]>
</script>
<script type="text/javascript">//<![CDATA[
        var Translator = new Translate([]);
        //]]></script><script src="https://www.circuiteditions.com/js/jquery.tools.min.js"></script>
<link media="all" href="https://www.circuiteditions.com/js/fancybox/jquery.fancybox-1.3.4.css" type="text/css" rel="stylesheet">

<script type="text/javascript" src="https://www.circuiteditions.com/js/fancybox/jquery.fancybox-1.3.4.js"></script>
<script type="text/javascript" src="https://www.circuiteditions.com/js/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="https://www.circuiteditions.com/js/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="https://www.circuiteditions.com/js/fancybox/jquery.easing-1.3.pack.js"></script></head>
<body class=" cms-index-index cms-home">
<div class="wrapper">
        <noscript>
        <div class="noscript">
            <div class="noscript-inner">
                <p><strong>JavaScript seem to be disabled in your browser.</strong></p>
                <p>You must have JavaScript enabled in your browser to utilize the functionality of this website.</p>
            </div>
        </div>
    </noscript>
    <div class="page">
        <div class="quicklinks-container">      <div class="quicklinks"> <ul class="links">
                        <li class="first" ><a href="https://www.circuiteditions.com/customer/account/" title="My Account" >My Account</a></li>
                                                                <li ><a href="http://www.circuiteditions.com/checkout/cart/" title="My Cart" class="top-link-cart">My Cart</a></li>
                                <li ><a href="https://www.circuiteditions.com/checkout/" title="Checkout" class="top-link-checkout">Checkout</a></li>
                                <li class=" last" ><a href="https://www.circuiteditions.com/customer/account/login/" title="Log In" >Log In</a></li>
            </ul>
</div></div>
<div class="header-container">
    <div class="header">
                <h1 class="logo"><strong>Circuit Editions</strong><a href="http://www.circuiteditions.com/" title="Circuit Editions" class="logo"><img src="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/images/logo.gif" alt="Circuit Editions" /></a></h1>
                <div class="quick-access">
	        <div class="slogan" style="color: #666 !important; font-size: 11px; line-height: 14px; margin-top: 15px; float: right;"><span class="slogan-blue" style="color: #51beC7">ONLINE SHOP</span> <span class="bullet" style="display: inline-block; font-size: 9px; margin: 0 5px;">&bull;</span> specializing in editions of contemporary photographic,<br /> digital and print-based art on paper <span class="bullet" style="display: inline-block; font-size: 9px; margin: 0 5px;">&bull;</span> <span class="slogan-blue" style="color: #51beC7">a division of circuit gallery</span></div>
            
                    </div>
            </div>
</div>
<div class="nav-container">
    <ul id="nav">
    <li class="level0 nav-0 level-top home" id="home">
		<a class="level-top" href="http://www.circuiteditions.com/">
		<span>Home</span>
		</a>
	</li>
    <li class="level0 nav-1 level-top browse" id="browse">
		<a class="level-top" href="http://www.circuiteditions.com/browse-by/featured/view-featured">
		<span>Browse by</span>
		</a>
	</li>	
            <li class="level0 nav-2 level-top projects" id="projects">
		<a class="level-top" href="http://www.circuiteditions.com/projectsmain">
		<span>Project</span>
		</a>
	</li>
    <li class="level0 nav-3 level-top services" id="services">
		<a class="level-top" href="http://www.circuiteditions.com/printing">
		<span>Services</span>
		</a>
	</li>
    <li class="level0 nav-4 level-top aboutus" id="aboutus">
		<a class="level-top" href="http://www.circuiteditions.com/about-us">
		<span>About</span>
		</a>
	</li>    
    <li class="level0 nav-5 level-top blog" id="blog">
		<a class="level-top" href="http://www.circuiteditions.com/blog">
		<span>Blog</span>
		</a>
	</li>    	
    </ul>
    <div class="search-container">
		<form method="get" action="http://www.circuiteditions.com/catalogsearch/result/" id="search_mini_form">
		    <fieldset>
		    <legend>Search Site</legend>
		    <div class="mini-search">
		        <div class="search-autocomplete" id="search_autocomplete" style="display: none;"></div>
		        <input type="image" alt="Search" src="http://www.circuiteditions.com/skin/frontend/circuitgallery/default/images/btn_mini_search.gif">
		        <input type="text" value="" name="q" class="input-text" id="search" autocomplete="off">
		        <script type="text/javascript">
		            var searchForm = new Varien.searchForm('search_mini_form', 'search', 'Search gallery ...');
		            searchForm.initAutocomplete('http://www.circuiteditions.com/catalogsearch/ajax/suggest/', 'search_autocomplete');
		        </script>
		    </div>
		    </fieldset>
		</form>  
	</div>	
</div>
        <div class="main-container col1-layout">
            <div class="main">
                                <div class="col-main">
                                        <div class="std"><p>&nbsp;</p></div><div class="container" id="examples_container">
  <div class="container" id="slidedeck_examples">
    <dl class="slidedeck">
    
   
<dd id="featured1" class="slide slide_1">
<div class="screenshot"> <a href="/exhibitions_weber"> <img height="320" width="400" title="Interrogations, Donald Weber Photography Exhibition" alt="Interrogations, Donald Weber Photography Exhibition" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/weber026_400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Current Exhibition</h3>
<h1 style="font-size: 30px; color: #6D1728; margin-top: 5px; text-align: left; font-weight: bold; font-family: Arial;">Interrogations</h1>
<h1 style="font-size: 20px; color: #333333; margin-top: 3px; text-align: left; margin-bottom: 15px; font-weight: bold; font-family: Arial;">Donald Weber</h1>
<p style="font-size: 16px; color: #666666; font-weight: bold; font-family: Arial;">November 27 - December 20, 2014</p>
<p class="about_content_single"><strong>Opening Reception</strong><br /> Thursday, November 27, 6:00 to 9:00 p.m.</p>
<p class="about_content_single"><strong>Circuit Gallery @ Prefix ICA</strong><br /> 401 Richmond Street West, Suite 124<br /> Toronto, ON, M6R 2G5</p>

<p class="about_content">Interrogating the Interrogator. Donald Weber's award-winning photography project Interrogations set for Canadian premiere in our latest exhibition.</p>

<div class="enter_gallery">
<h3><a target="_parent" href="/exhibitions_weber">Learn More &raquo;</a></h3>   
</div>
</div>
<div class="caption"><span>Donald Weber, <em>Interrogation X</em>, 2010</span></div>
</div>
</dd> 
 
 
 
<dd id="featured2" class="slide slide_1">
        <div class="screenshot"> <a href="/crandall"> <img height="" width="" title="Robert Bean, Writing Machines" alt="Robert Bean, Crandall from the series Writing Machines" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/bean_crandall_400.jpg" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Featured Artist</h3>
            <h4 class="subtitle"><a target="_parent" href="/browse-by/artist/gallery-artists/robert-bean?mode=grid">Robert Bean</a></h4>
            <p class="about_content">Circuit Gallery is pleased to offer work by senior Canadian artist <a target="_parent" href="/browse-by/artist/gallery-artists/robert-bean?mode=grid"><strong>Robert Bean</strong></a> from his series <a href="/crandall"><strong>Writing Machines</strong></a>.</p>

         <h2 class="about_content">About these Editions</h2>
            <p class="about_content">Exploring the idea of obsolescence, in this case obsolete technology, Robert Bean gives us a series of exquisite photographs of typewriters taken at the Peter Mitterhofer Typewriter Museum in Partschins, Italy. These "writing machines" are part of Bean's ongoing project investigating photography and its relationship to memory, technology, language and experience. </p>
            <div class="enter_gallery">
              <h3><a target="_parent" href="/browse-by/artist/gallery-artists/robert-bean?mode=grid">See More Work by Robert Bean &raquo;</a></h3>
           </div>
          </div>
          <div class="caption"><span>Robert Bean, <em>Crandall</em>, 2006</span></div>
        </div>
      </dd>  
      
      

<dd id="featured3" class="slide slide_1">
<div class="screenshot"> <a href="http://www.circuitgallery.com/woodland-caribou-slate-islands"> <img height="320" width="400" title="Eamon Mac Mahon, Woodland Caribou, 2011" alt="Eamon Mac Mahon, Woodland Caribou" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/MacMahon_Caribou400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Work Available</h3>
<h4 class="subtitle"><a target="_parent" href="http://www.circuitgallery.com/browse-by/artist/project-artists/eamon-mac-mahon?mode=grid">Eamon Mac Mahon</a></h4>         
            
<p class="about_content">Circuit Gallery is pleased to offer work by <a target="_parent" href="http://www.circuitgallery.com/browse-by/artist/project-artists/eamon-mac-mahon?mode=grid">Eamon Mac Mahon</a>.</p>

<p class="about_content">Mac Mahon, who has focused on landscape since 2004 and spent much of his time working in the Canadian North, has a deep interest in our relationship with nature, its role in our imaginary, and our different experience and understanding of its reality. His landscape imagery is evocative of both the strength and fragility of our environment, and our complex and at times ambiguous relationship to it. Mac Mahon portrays, by way of visual anecdote, particular places, moments, and incidents to reveal both the power of nature as something unforgiving, destructive and "bigger than us" and its fragility as something in need of protection.</p>
<p></p>
<div class="enter_gallery">
<h3><a target="_parent" href="http://www.circuitgallery.com/browse-by/artist/project-artists/eamon-mac-mahon?mode=grid">See More by Eamon Mac Mahon &raquo;</a></h3>          
</div>
</div>
<div class="caption"><span>Eamon Mac Mahon, <em>Woodland Caribou</em>, 2011</span></div>
</div>
</dd> 


<dd id="featured4" class="slide slide_1">
<div class="screenshot"> <a href="/blog/2014/04/01/new-exhibition-venue/"> <img height="320" width="400" title="Circuit Gallery at Prefix ICA" alt="Circuit Gallery at Prefix ICA" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/Circuit_prefix400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Gallery News</h3>
<h4 class="subtitle"><a target="_parent" href="/blog/2014/04/01/new-exhibition-venue/">New Exhibition Home<br />
Circuit Gallery @ Prefix ICA</a></h4>         

<p class="about_content">Circuit Gallery is pleased to announce that we have a new exhibition home as we have entered a presentation partnership with <strong>Prefix Institute of Contemporary Art</strong>.</p>

<p class="about_content">Starting in 2014, <strong>Circuit Gallery @ Prefix</strong> will present four exhibitions a year at this respected venue located in the 401 Richmond building, a destination arts-hub in downtown Toronto.</p>

<p class="about_content">Our first exhibition, <a target="_parent" href="http://www.circuitgallery.com/exhibitions_embedded"><em>Embedded</em></a>, featured new work by Canadian photographer Donald Weber and Ukrainian born, U.S. based photographer Dima Gavrysh. Our second exhibition, which opens in August, will present work by Chicago-based artist <a target="_parent" href="http://www.circuitgallery.com/exhibitions_natal">Judy Natal</a>.</p>
<div class="enter_gallery">
<h3><a target="_parent" href="/blog/2014/04/01/new-exhibition-venue/">Learn More &raquo;</a></h3>   
</div>
</div>
</div>
</dd> 



<dd id="featured5" class="slide slide_1">
<div class="screenshot"> <a href="/browse-by/artist/gallery-artists/akihiko-miyoshi"> <img height="320" width="400" title="Akihiko Miyoshi, Abstract Portrait, 2011" alt="Akihiko Miyoshi, Abstract Portrait, 2011" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/Miyoshi_detail_400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Featured Artist</h3>
<h4 class="subtitle"><a target="_parent" href="/browse-by/artist/gallery-artists/akihiko-miyoshi">Akihiko Miyoshi</a></h4>         

<p class="about_content">Circuit Gallery is pleased to offer work by Portland-based artist <strong>Akihiko Miyoshi</strong>, including work from his project entitled <em>Abstract Photographs</em> which we recently <a target="_parent" href="/exhibitions_contact2013">exhibited</a> in the 2013 Scotiabank CONTACT Photography Festival.</p>

<p class="about_content">In <em>Abstract Photographs</em> Miyoshi explores the intersection between art and technology, centrally dealing with questions specific to photographic representation by cleverly exploiting the conventions of perception and representation and creating tensions between digital and analogue techniques.</p>
<div class="enter_gallery">
<h3><a target="_parent" href="/browse-by/artist/gallery-artists/akihiko-miyoshi">See More &raquo;</a></h3>   
</div>
</div>
<div class="caption"><span>Akihiko Miyoshi, <em>Abstract Photograph (122111a)</em> (detail), 2011</span></div>
</div>
</dd> 
    
   
<dd id="featured6" class="slide slide_1">
        <div class="screenshot"> <a href="/artist/andrew-wright/standing-wave-3"> <img title="Standing Wave #3 by Andrew Wright" alt="Standing Wave #3 by Andrew Wright" class="attachment-post-thumbnail" src="/images/slide_imgs/wright001_400.jpg" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Featured Artist</h3>
            <h4 class="subtitle"><a target="_parent" href="/artist/andrew-wright/standing-wave-3">Andrew Wright</a></h4>
            <p class="about_content">Circuit Gallery is pleased to offer a series of limited editions by Canadian artist <a target="_parent" href="/artist/andrew-wright/standing-wave-3"><strong>Andrew Wright</strong></a>.</p>
            <h2 class="about_content">About the Featured Editions</h2>
            <p class="about_content">In the series <em><a href="/artist/andrew-wright/standing-wave-3">Water's Edge</a></em>, Wright turns his attention to water, and not just any water, but the rapids precipitously close to Niagara Falls.</p>
            <p class="about_content">These raw images of North America's largest standing waves probe both fiction and reality. They are images of near impossible complexity that engulf, astound, and confound.</p>
            <div class="enter_gallery">
              <h3><a target="_parent" href="/artist/andrew-wright/standing-wave-3">See More by Andrew Wright &raquo;</a></h3>
            </div>
          </div>
          <div class="caption"><span>Left: Andrew Wright, <em>Standing Wave #3</em>, (detail) from the series <em>Water's Edge</em>, 2007</span></div>
        </div>
      </dd>

         
      
<dd id="featured7" class="slide slide_1">
<div class="screenshot"> <a href="/browse-by/artist/gallery-artists/andrew-emond/expressway-culvert-outlet-west-highland-creek"> <img height="320" width="400" title="Andrew Emond, West Highland Creek" alt="Andrew Emond, West Highland Creek, 2012" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/emond020_400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">New Works</h3>
<h4 class="subtitle"><a target="_parent" href="/browse-by/artist/gallery-artists/andrew-emond?mode=grid">Andrew Emond</a></h4>
<p class="about_content">Circuit Gallery is pleased to have new work by Canadian photographer <a target="_parent" href="/browse-by/artist/gallery-artists/andrew-emond?mode=grid"><strong>Andrew Emond</strong></a> from his ongoing project <a href="/browse-by/artist/gallery-artists/andrew-emond/expressway-culvert-outlet-west-highland-creek"><strong>Water Courses</strong></a>.</p>

<p class="about_content"><strong>Water Courses</strong> is a meaningful look at the relation of natural water flow&mdash;rivers, creeks, tributaries&mdash;and their manipulation, as we corral, channel and redirect them to meet our needs and accommodate urban development.</p>

<p class="about_content">At once beautiful and edging on surreal his study serves as a reminder of the natural beauty that can be found in the city, where concrete meets nature and where nature persists. The images prompt consideration of the issues that effect these waterways and the balance needed in sustainable development. </p>
 
<div class="enter_gallery">
<h3><a target="_parent" href="/browse-by/artist/gallery-artists/andrew-emond?mode=grid">Learn More &raquo;</a></h3>
</div>
</div>
<div class="caption"><span>Andrew Emond, <em>Expressway culvert outlet, West Highland Creek</em> (detail), 2012</span></div>
</div>
</dd> 

      
      
      

<dd id="featured8" class="slide slide_1">
        <div class="screenshot"> <a href="/project/satellite-montreal"> <img height="320" width="404" title="Thomas Kneubuhler, Electric Mountain 14" alt="Thomas Kneubuhler, Electric Mountain 14" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/kneubuhler_404.jpg" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Projects + Collaborations</h3>
            <h4 class="subtitle"><a target="_parent" href="/project/satellite-montreal">Art from Montreal in collaboration with Satellite Magazine</a></h4>         
            
            <p class="about_content">Circuit Gallery is pleased to partnering with <a target="_parent" href="/project/satellite-montreal"><strong>Satellite Magazine</strong></a> to offer a series of limited-edition artworks from the magazine. Satellite is an exciting new biannual magazine that focuses on cities, culture and politics. Each issue features an in-depth look at a single city, alongside interviews, art, and nonfiction.</p>

<p class="about_content">Our collaboration starts with their second issue, which focuses on the city of <strong>Montreal</strong>, and features great work by: <a href="/project/satellite-montreal/densite-neuter-02-neutral-density-02" title="Marie-Claire Blais" target="_parent"><strong>Marie-Claire Blais</strong></a>, <a href="/project/satellite-montreal/electric-15" title="Thomas Kneubuhler" target="_parent"><strong>Thomas Kneub&uuml;hler</strong></a> and <a href="http://www.circuitgallery.com/project/satellite-montreal/cast-away" title="Matt Shane" target="_parent"><strong>Matt Shane</strong></a>.</p>

            <div class="enter_gallery"><br />
              <h3><a target="_parent" href="/project/satellite-montreal">Learn More &raquo;</a></h3> 
</div>
          </div>
          <div class="caption"><span>Thomas Kneubuhler, <em>Electric Mountain #14</em>, 2009</span></div>
        </div>
      </dd>   
 
    
<dd id="featured9" class="slide slide_1">
      <div class="screenshot"> <a href="/browse-by/artist/gallery-artists/robert-canali-3/untitled-7-in-dust"> <img height="320" width="400" title="Robert Canali" alt="Robert Canali, In Dust, 2010" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/canali2_400.jpg" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Featured Artist</h3>
<h4 class="subtitle"><a target="_parent" href="/browse-by/artist/gallery-artists/robert-canali-3/untitled-7-in-dust">Robert Canali</a></h4>
            <p class="about_content">Circuit Gallery is pleased to offer work by Toronto based artist <a target="_parent" href="/browse-by/artist/gallery-artists/robert-canali-3/untitled-7-in-dust"><strong>Robert Canali</strong></a> from his project <a href="/browse-by/artist/gallery-artists/robert-canali-3/untitled-7-in-dust"><strong>In Dust</strong></a>.</p>

         <h2 class="about_content">About these Editions</h2>
            <p class="about_content">Robert Canali gives us a series of highly abstract and beautiful images about light and its corollary colour. Exploring the oppositions between the tangible and the intangible, abstraction and representation, Canali uses the very materials of photography—glass, paper, film, fluorescent tubes—to give objective representation to the essential yet utterly immaterial aspects of the medium.</p>
            <div class="enter_gallery">
              <h3><a target="_parent" href="/browse-by/artist/gallery-artists/robert-canali-3/untitled-7-in-dust">See More Work by Robert Canali &raquo;</a></h3>
           </div>
          </div>
          <div class="caption"><span>From the series <em>In Dust</em>, 2010</span></div>
        </div>
      </dd> 


<dd id="featured10" class="slide slide_1">
<div class="screenshot"> <a href="http://www.circuitgallery.com/blog/2012/02/13/carpoolers/"> <img height="320" width="400" title="Alejandro Cartagena, Car Poolers" alt="Alejandro Cartagena, Car Poolers" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/cartagena_pooler2_400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Selling fast!</h3>
<h4 class="subtitle"><a target="_parent" href="http://www.circuitgallery.com/blog/2012/02/13/carpoolers/">Alejandro Cartagena</a></h4>
<p class="about_content">Circuit Gallery is pleased to offer a striking series of new works by Mexican-based photographer <a target="_parent" href="http://www.circuitgallery.com/blog/2012/02/13/carpoolers/"><strong>Alejandro Cartagena</strong></a> from his award winning project <a href="http://www.circuitgallery.com/blog/2012/02/13/carpoolers/"><strong>Car Poolers</strong></a>.</p>
<p class="about_content">Offering a different take on 'car pooling', Cartagena continues his pointed investigation of the complex issues relating to unhampered suburban expansion.</p>
<div class="enter_gallery">
<h3><a target="_parent" href="http://www.circuitgallery.com/blog/2012/02/13/carpoolers/">See More Work by Alejandro Cartagena &raquo;</a></h3> 
Read more on our Blog   
</div>
</div>
<div class="caption"><span>Alejandro Cartagena, Untitled Car Poolers #2 (detail), 2011</span></div>
</div>
</dd>   
      


<dd id="featured11" class="slide slide_1">
<div class="screenshot"> <a href="/browse-by/artist/gallery-artists/paulo-catrica/lfc-450-1-8-2006-15-07hrs-f32-4-sec"> <img height="320" width="400" title="Paulo Catrica, Opera, Teatro Sao Carlos" alt="Paulo Catrica, Opera, Teatro Sao Carlos" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/catrica0010_400.jpg" style="margin-top: 15.5px;" /></a> </div>
<div class="copy">
<div class="content">
<h3 class="title">Featured Artist</h3>
<h4 class="subtitle"><a target="_parent" href="/browse-by/artist/gallery-artists/paulo-catrica?mode=grid">Paulo Catrica</a></h4>         

<p class="about_content">Circuit Gallery is pleased to offer a series of exquisite pictures taken inside the <em>Teatro Nacional de S&atilde;o Carlos</em>, the home of the Portuguese National Opera in Lisbon, by Portuguese photographer <a target="_parent" href="/browse-by/artist/gallery-artists/paulo-catrica?mode=grid"><strong>Paulo Catrica</strong></a>.</p>

<p class="about_content">Devoid of people or action, and deceptively straightforward, Catrica's photographs seem to concern themselves with presenting the non-public spaces of this heritage building&mdash;offering us a privileged look behind the scenes. While indeed documenting the interior of S&atilde;o Carlos, Catrica's photographs are less interested in these "backstage" spaces as such, as they are in what is happening to them. Despite their objective emptiness the presence and industry of people and the past are palpable. Catrica's study is a response to the perceived trend toward the wholesale acquisition and importation larger pre-packaged European productions.</p>
<div class="enter_gallery">
<h3><a target="_parent" href="/browse-by/artist/gallery-artists/paulo-catrica?mode=grid">See More &raquo;</a></h3>   
</div>
</div>
<div class="caption"><span>Paulo Catrica, <em>Lfc 450 1/8/2006 15:07hrs f32/4 sec., 2006</em>, 2006</span></div>
</div>
</dd> 






         <dd id="featured12" class="slide slide_1">
        <div class="screenshot"> <a href="/permutations-after-william-wegman-7"> <img height="320" width="400" title="Susana Reisman, Permutations after William Wegman" alt="Susana Reisman, Permutations after William Wegman" class="attachment-post-thumbnail wp-post-image"  src="/images/slide_imgs/reisman_wegman_400.jpg" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Featured Artist</h3>
            <h4 class="subtitle"><a target="_parent" href="/blog/2011/12/10/featured-artist-susana-reisman/ ">Susana Reisman</a></h4>
            <p class="about_content">Circuit Gallery is excited to offer new work by Toronto-based artist <a target="_parent" href="/browse-by/artist/gallery-artists/susana-reisman/"><strong>Susana Reisman</strong></a> from her series <a href="/browse-by/artist/gallery-artists/susana-reisman/"><strong>Domestic Disclosures</strong></a>.</p>

         <h2 class="about_content">About these Editions</h2>
            <p class="about_content">Creating homages from objects found around her house – food stuff, office supplies, dishes and cleaning items – Reisman playfully speaks to the ‘history of art’ and engages with the idea of influence. Here she playfully nods towards William Wegman's series <em>Before/On/After</em> from 1972.</p> 

            <div class="enter_gallery">
              <h3><a target="_parent" href="/browse-by/artist/gallery-artists/susana-reisman/">See More Work by Susana Reisman &raquo;</a></h3>
Read more on our <a target="_parent" href="/blog/2011/12/10/featured-artist-susana-reisman/"><u>Blog</u> &raquo;</a>
           </div>
          </div>
          <div class="caption"><span>Susana Reisman,<em>Permutations (after William Wegman) #7</em>, 2009</span></div>
        </div>
      </dd> 
      

     
     
     
     
     
      
     <!-- <dd id="featured12" class="slide slide_1">
        <div class="screenshot"> <a href="/artist/gift-certificate"><img height="" width="" title="Circuit Gallery Gift Certificates" alt="Circuit Gallery Gift Certificates" class="attachment-post-thumbnail wp-post-image" src="/images/slide_imgs/gc_400.png" style="margin-top: 15.5px;" /></a> </div>
        <div class="copy">
          <div class="content">
            <h3 class="title">Gift Certificates</h3>
            <h4 class="subtitle"><a target="_parent" href="/artist/gift-certificate">Give a Gift of Art</a></h4>
            <p class="about_content">Our Gift Certificates are a fun and easy way to give a gift of art!</p>
            <p class="about_content">Simply enter an amount, the recipient's email address, and a personal message and we will take care of the rest!</p>
            <p class="about_content">When you purchase a <a href="/artist/gift-certificate" target="_blank">GIFT CERTIFICATE</a> the recipient will receive an email notifying them of your gift; including a Gift Card with your personalized message, the amount given, and a redemption code. The recipient simply has to visit the site, choose their gift, and apply the credit towards their purchase(s).</p>
            <p class="about_content">Our Gift Certificates <em>never expire</em> and can be redeemed at any time and towards one or more purchases.</p>
            <div class="enter_gallery">
              <h3><a target="_parent" href="/artist/gift-certificate">Learn More &raquo;</a></h3>
            </div>
          </div>
        </div>
      </dd>-->
 
 
 
      
</dl>
    <script type="text/javascript">
				// &lt;![CDATA[
				var SlideDeckExamples = jQuery('#slidedeck_examples .slidedeck').slidedeck({
					hideSpines: true,
					autoPlay: true,
                                        cycle: true,
					autoPlayInterval: 60000,					
					before: function(slidedeck){
						jQuery('#slidedeck_examples .navigation a img, #slidedeck_examples .navigation a').removeClass('active');
					},
					complete: function(slidedeck){
						var navs = jQuery('#slidedeck_examples .navigation a h4');
						for(var i=0; i<navs.length; i++){
							jQuery(navs[i]).removeClass('active');
							jQuery(navs[i]).parent().removeClass('active');
							if(i == slidedeck.current - 1){
								jQuery(navs[i]).addClass('active');
								jQuery(navs[i]).parent().addClass('active');
							}
						}
					}
				});
				// ]]&gt;
			</script>
            
    <div class="navigation index"> <a class="btn_examples_prevnext prev " href="#btn_prev">Previous</a>
      <div class="pages_container">
        <div class="pages">

<div class="page"> 

<a class="thumb" href="#featured1"> <span class="arrow"></span>
<h3>Current Exhibition</h3>
<h4>Donald Weber</h4></a> 

<a class="thumb" href="#featured2"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Robert Bean</h4></a> 

<a class="thumb" href="#featured3"> <span class="arrow"></span>
<h3>Work Available</h3>
<h4>Eamon Mac Mahon</h4></a> 

<a class="thumb" href="#featured4"> <span class="arrow"></span>
<h3>Gallery News</h3>
<h4>Circuit Gallery @ Prefix ICA</h4></a> 
           
</div>
<div class="page"> 

<a class="thumb" href="#featured5"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Akihiko Miyoshi</h4></a> 

<a class="thumb" href="#featured6"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Andrew Wright</h4></a> 

<a class="thumb" href="#featured7"> <span class="arrow"></span>
<h3>New Works</h3>
<h4>Andrew Emond</h4></a>

<a class="thumb" href="#featured8"> <span class="arrow"></span>
<h3>Projects + Collaborations</h3>
<h4>Satellite Magazine</h4></a>

</div>
<div class="page"> 

<a class="thumb" href="#featured9"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Robert Canali</h4></a>

<a class="thumb" href="#featured10"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Alejandro Cartagena</h4></a>

<a class="thumb" href="#featured11"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Paulo Catrica</h4></a> 

<a class="thumb" href="#featured12"> <span class="arrow"></span>
<h3>Featured Artist</h3>
<h4>Susana Reisman</h4></a> 




</div>
</div>
</div>

      <a class="btn_examples_prevnext next" href="#btn_next">Next</a> </div>
  </div>
</div><p class="more-work"><a href="/browse-by/featured/view-featured">View More Work</a></p>

<div class="category-products">


<div class="grid-left">

<div class="page-title category-title">

        <h1>Circuit Editions</h1>

</div>


        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/abstract-photograph-101911a" title="Akihiko Miyoshi Abstract Photograph (101911a), 2011" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/0/1/013miyoshi_175h.jpg" alt="Abstract Photograph (101911a)" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/abstract-photograph-101911a" title="Abstract Photograph (101911a)">Akihiko Miyoshi</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/abstract-photograph-101911a" title="Abstract Photograph (101911a)">Abstract Photograph (1019...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1167">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/abstract-photograph-101911a?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1167/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/concussion-dust-from-the-series-inshallah" title="Dima Gavrysh Concussion Dust, from the series Inshallah, 2011" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/g/a/gavrysh07_175h_1.jpg" alt="Concussion Dust, from the series Inshallah" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/concussion-dust-from-the-series-inshallah" title="Concussion Dust, from the series Inshallah">Dima Gavrysh</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/concussion-dust-from-the-series-inshallah" title="Concussion Dust, from the series Inshallah">Concussion Dust, from the...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1337">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/concussion-dust-from-the-series-inshallah?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1337/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/untitled-viii-from-the-series-interrogations" title="Donald Weber Untitled VIII, from the  series Interrogations, 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/w/e/weber024_175h.jpg" alt="Untitled VIII, from the  series Interrogations" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/untitled-viii-from-the-series-interrogations" title="Untitled VIII, from the  series Interrogations">Donald Weber</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/untitled-viii-from-the-series-interrogations" title="Untitled VIII, from the  series Interrogations">Untitled VIII, from the  ...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1300">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/untitled-viii-from-the-series-interrogations?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1300/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/transform10" title="Wayne Dunkley TransForm10, 2011" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/d/u/dunkley_transform10_175h.jpg" alt="TransForm10" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/transform10" title="TransForm10">Wayne Dunkley</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/transform10" title="TransForm10">TransForm10</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-991">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/transform10?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/991/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/corrugated-metal-culvert-inlet-west-highland-creek" title="Andrew Emond Corrugated metal culvert inlet, West Highland Creek, 2012" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/e/m/emond019_175h.jpg" alt="Corrugated metal culvert inlet, West Highland Creek" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/corrugated-metal-culvert-inlet-west-highland-creek" title="Corrugated metal culvert inlet, West Highland Creek">Andrew Emond</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/corrugated-metal-culvert-inlet-west-highland-creek" title="Corrugated metal culvert inlet, West Highland Creek">Corrugated metal culvert ...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1243">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/corrugated-metal-culvert-inlet-west-highland-creek?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1243/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/york-university-storm-sewer-from-the-water-underground-project" title="Michael Cook York University Storm Sewer, from the Water Underground Project, 2008" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/c/o/cook008_175h.jpg" alt="York University Storm Sewer, from the Water Underground Project" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/york-university-storm-sewer-from-the-water-underground-project" title="York University Storm Sewer, from the Water Underground Project">Michael Cook</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/york-university-storm-sewer-from-the-water-underground-project" title="York University Storm Sewer, from the Water Underground Project">York University Storm Sew...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1215">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/york-university-storm-sewer-from-the-water-underground-project?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1215/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/untitled-lost-river-6-from-the-suburbia-mexicana-project" title="Alejandro Cartagena Untitled Lost River #6, from the Suburbia Mexicana Project, 2008" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/C/a/Cartagena006_175h.jpg" alt="Untitled Lost River #6, from the Suburbia Mexicana Project" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/untitled-lost-river-6-from-the-suburbia-mexicana-project" title="Untitled Lost River #6, from the Suburbia Mexicana Project">Alejandro Cartagena</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/untitled-lost-river-6-from-the-suburbia-mexicana-project" title="Untitled Lost River #6, from the Suburbia Mexicana Project">Untitled Lost River #6, f...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-475">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/untitled-lost-river-6-from-the-suburbia-mexicana-project?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/475/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/blue-window-shade" title="Dan Larkin Blue Window Shade, 2007" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/l/a/larkin004_175h.jpg" alt="Blue Window Shade" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/blue-window-shade" title="Blue Window Shade">Dan Larkin</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/blue-window-shade" title="Blue Window Shade">Blue Window Shade</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-111">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/blue-window-shade?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/111/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/wallace-avenue" title="Leanne Eisen Wallace Avenue, 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/E/i/Eisen004_175h.jpg" alt="Wallace Avenue" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/wallace-avenue" title="Wallace Avenue">Leanne Eisen</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/wallace-avenue" title="Wallace Avenue">Wallace Avenue</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-706">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/wallace-avenue?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/706/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/history" title="James Rajotte History, 2005" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/R/a/Rajotte003_175h.jpg" alt="History" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/history" title="History">James Rajotte</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/history" title="History">History</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-249">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/history?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/249/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/petalhead-portrait-17-circa-1944" title="David Grenier Petalhead Portrait 17: circa 1944, 2007" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/g/r/grenier001_175h.jpg" alt="Petalhead Portrait 17: circa 1944" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/petalhead-portrait-17-circa-1944" title="Petalhead Portrait 17: circa 1944">David Grenier</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/petalhead-portrait-17-circa-1944" title="Petalhead Portrait 17: circa 1944">Petalhead Portrait 17: ci...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-162">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/petalhead-portrait-17-circa-1944?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/162/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/the-real-thing-after-donald-judd" title="Susana Reisman The Real Thing (after Donald Judd), 2007" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/r/e/reisman003_175h_1.jpg" alt="The Real Thing (after Donald Judd)" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/the-real-thing-after-donald-judd" title="The Real Thing (after Donald Judd)">Susana Reisman</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/the-real-thing-after-donald-judd" title="The Real Thing (after Donald Judd)">The Real Thing (after Don...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-57">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/the-real-thing-after-donald-judd?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/57/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/fossil-16" title="Stefan Petranek Fossil #16, 2008" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/p/e/petranek001_175h.jpg" alt="Fossil #16" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/fossil-16" title="Fossil #16">Stefan Petranek</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/fossil-16" title="Fossil #16">Fossil #16</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-88">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/fossil-16?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/88/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/the-limits-of-language-6" title="David Clark The Limits of Language 6, 2008" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/c/l/clark006_175h.jpg" alt="The Limits of Language 6" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/the-limits-of-language-6" title="The Limits of Language 6">David Clark</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/the-limits-of-language-6" title="The Limits of Language 6">The Limits of Language 6</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-296">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/the-limits-of-language-6?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/296/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/ribbon-2" title="Robert Bean Ribbon 2, 2006" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/b/e/bean007_175h_1.jpg" alt="Ribbon 2" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/ribbon-2" title="Ribbon 2">Robert Bean</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/ribbon-2" title="Ribbon 2">Ribbon 2</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-326">
                    <span class="price">$0.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/ribbon-2?options=cart')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/326/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>

</div>




<div class="grid-right">

<div class="page-title category-title">

        <h1>Project Editions</h1>

</div>


        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/place-home" title="Jesse  Louttit From the series Place to Call Home, 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/l/o/louttit_200_2.jpg" alt="From the series Place to Call Home" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/place-home" title="From the series Place to Call Home">Jesse  Louttit</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/place-home" title="From the series Place to Call Home">From the series Place to ...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1261">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/1261/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1261/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/youth-promotion-crew-with-taxi" title="Beth Lesser Youth Promotion Crew with Taxi, 1986" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/s/a/satellitemagazine007_200.jpg" alt="Youth Promotion Crew with Taxi" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/youth-promotion-crew-with-taxi" title="Youth Promotion Crew with Taxi">Beth Lesser</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/youth-promotion-crew-with-taxi" title="Youth Promotion Crew with Taxi">Youth Promotion Crew with...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1259">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/1259/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1259/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/the-visitor" title="Tristram Landsdowne The Visitor, 2013" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/l/a/landsdowne_200.jpg" alt="The Visitor" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/the-visitor" title="The Visitor">Tristram Landsdowne</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/the-visitor" title="The Visitor">The Visitor</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1257">
                    <span class="price">$100.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/1257/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1257/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/bridge" title="Kotama Bouabane Bridge [Silver Editions 2011], 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/s/e/se2011_bouabane_175h.jpg" alt="Bridge [Silver Editions 2011]" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/bridge" title="Bridge [Silver Editions 2011]">Kotama Bouabane</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/bridge" title="Bridge [Silver Editions 2011]">Bridge [Silver Editions 2...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-939">
                    <span class="price">$1,250.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/939/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/939/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/alter-piece" title="Annie MacDonell Alter Piece, from the series &quot;To Everything There is A Season&quot;, 2009" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/g/a/gallerytpw_001_200_1.jpg" alt="Alter Piece, from the series &quot;To Everything There is A Season&quot;" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/alter-piece" title="Alter Piece, from the series &quot;To Everything There is A Season&quot;">Annie MacDonell</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/alter-piece" title="Alter Piece, from the series &quot;To Everything There is A Season&quot;">Alter Piece, from the ser...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-454">
                    <span class="price">$120.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/454/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/454/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/densite-neuter-02-neutral-density-02" title="Marie-Claire Blais Densité neuter 02 / Neutral Density 02, 2012" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/0/0/001marieclaireblais200_1.jpg" alt="Densité neuter 02 / Neutral Density 02" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/densite-neuter-02-neutral-density-02" title="Densité neuter 02 / Neutral Density 02">Marie-Claire Blais</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/densite-neuter-02-neutral-density-02" title="Densité neuter 02 / Neutral Density 02">Densité neuter 02 / Neut...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1154">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/1154/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1154/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/untitled-7" title="Cecilia Berkovic Untitled 7, 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/g/a/gallerytpw008_175h.jpg" alt="Untitled 7" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/untitled-7" title="Untitled 7">Cecilia Berkovic</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/untitled-7" title="Untitled 7">Untitled 7</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-513">
                    <span class="price">$120.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/513/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/513/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/shore-break" title="Eamon Mac Mahon Shore Break, 2006" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/a/b/abc_water001_250_1.jpg" alt="Shore Break" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/shore-break" title="Shore Break">Eamon Mac Mahon</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/shore-break" title="Shore Break">Shore Break</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-430">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/430/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/430/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/fear-power" title="Critical Art Ensemble  Fear Power, 2006" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/c/a/cae001_200_1_1.jpg" alt="Fear Power" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/fear-power" title="Fear Power">Critical Art Ensemble </a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/fear-power" title="Fear Power">Fear Power</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-416">
                    <span class="price">$30.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/416/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/416/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/double-cube-formation" title="Dawit L. Petros Double Cube Formation, No. 1 [Silver Editions 2010], 2010" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/g/a/gallerytpw002-se2010-petros_175h.jpg" alt="Double Cube Formation, No. 1 [Silver Editions 2010]" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/double-cube-formation" title="Double Cube Formation, No. 1 [Silver Editions 2010]">Dawit L. Petros</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/double-cube-formation" title="Double Cube Formation, No. 1 [Silver Editions 2010]">Double Cube Formation, No...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-943">
                    <span class="price">$1,250.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/943/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/943/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/smarties-purple" title="Christine D'Onofrio Smarties (Purple), 2004" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/d/o/donofrio003_purple_175h.jpg" alt="Smarties (Purple)" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/smarties-purple" title="Smarties (Purple)">Christine D'Onofrio</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/smarties-purple" title="Smarties (Purple)">Smarties (Purple)</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-680">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/680/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/680/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/beach-ball" title="Eamon Mac Mahon Beach Ball, 2008" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/M/a/MacMahon_abc005_175h.jpg" alt="Beach Ball" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/beach-ball" title="Beach Ball">Eamon Mac Mahon</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/beach-ball" title="Beach Ball">Beach Ball</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-699">
                    <span class="price">$200.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/699/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/699/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        
        <ul class="products-grid">

        
        
            <li class="item first">

                <a href="http://www.circuiteditions.com/electric-14" title="Thomas Kneubuhler Electric #14, 2009" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/k/n/kneubuhler200.jpg" alt="Electric #14" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/electric-14" title="Electric #14">Thomas Kneubuhler</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/electric-14" title="Electric #14">Electric #14</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-1156">
                    <span class="price">$375.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/1156/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/1156/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        

        
        
            <li class="item last">

                <a href="http://www.circuiteditions.com/untitled-1-from-the-plastikos-series" title="Susana Reisman Untitled 1, from the Plastikos series, 2002" class="product-image"><img src="http://www.circuiteditions.com/media/catalog/product/cache/1/thumbnail/9df78eab33525d08d6e5fb8d27136e95/a/b/abc014_reisman001_175h_2.jpg" alt="Untitled 1, from the Plastikos series" /></a>



                <h2 class="artist-name"><a href="http://www.circuiteditions.com/untitled-1-from-the-plastikos-series" title="Untitled 1, from the Plastikos series">Susana Reisman</a></h2>

                <h2 class="product-name"><a href="http://www.circuiteditions.com/untitled-1-from-the-plastikos-series" title="Untitled 1, from the Plastikos series">Untitled 1, from the Plas...</a></h2>

                
                

        
    <div class="price-box">
                                                            <span class="regular-price" id="product-price-672">
                    <span class="price">$150.00</span>                </span>
                        
        </div>


                <div class="actions">

                    
                        <button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('http://www.circuiteditions.com/checkout/cart/add/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/product/672/')"><span><span>Add to Cart</span></span></button>

                    
                    <ul class="add-to-links">

                        
                        
                            <li><span class="separator">|</span> <a href="http://www.circuiteditions.com/catalog/product_compare/add/product/672/uenc/aHR0cDovL3d3dy5jaXJjdWl0ZWRpdGlvbnMuY29tLw,,/" class="link-compare">Add to Compare</a></li>

                        
                    </ul>

                </div>

            </li>

        
        </ul>

        

        <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>

</div>

</div>                </div>
            </div>
        </div>
        <div class="footer-container">
    <div class="footer">
    	<div class="fcolumn-container">
    		<div class="col1">
    			<h2>Connect + Interact</h2>
    			<ul><li><a href="http://www.facebook.com/circuitgallery" target="_blank"><img src="http://www.circuiteditions.com/media//fb_icon.gif" alt="facebook" /> <span>Circuit on Facebook</span></a></li>
<li><a href="/blog"><img src="http://www.circuiteditions.com/media//blog_icon.gif" alt="wordpress" /> <span class="worpdress">Circuit Editions Blog</span></a></li>
<li><a href="http://twitter.com/circuitgallery" target="_blank"><img src="http://www.circuiteditions.com/media//twitter_icon.gif" alt="twitter" /> <span>Follow us on Twitter</span></a></li>
<li><a href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://www.circuiteditions.com/media//share_icon.gif" alt="share" /> <span>Share with friends and others</span></a></li>
<li><a href="/blog/feed/rss/" target="_blank" ><img src="http://www.circuiteditions.com/media//rss_icon.gif" alt="rss" /> <span>Subscribe to our Blog RSS</span></a></li>
<li><a href="/newsletter"><img src="http://www.circuiteditions.com/media//email_icon.gif" alt="email" /> <span>Subscribe to our monthly Newsletter</span></a></li>

</ul>
    		</div>
    		<div class="col2">
    			<h2>Explore + Buy</h2>
    			<ul><li><a href="http://www.circuiteditions.com/browse-by/artist/view-complete-list">Artist List</a></li>
<li><a href="http://www.circuiteditions.com/projectsmain">Projects + Collaborations</a></li>
<li><a href="http://www.circuiteditions.com/newsletter">News</a></li>
<li><a href="http://www.circuiteditions.com/printing">Fine Art Printing</a></li>
<li><a href="http://circuitgallery.com/circuitgallery/home">Visit Circuit Gallery</a></li>

</ul>
    		</div>
    		<div class="col3">
    			<h2>Circuit Editions</h2>
    			<ul><li><a href="http://www.circuiteditions.com/about-us">About Us</a></li>
<li><a href="http://www.circuiteditions.com/faq">FAQ</a></li>
<li><a href="http://www.circuiteditions.com/customer-support">Customer Support</a></li>
<li><a href="http://www.circuiteditions.com/contact">Contact Us</a></li>
<li><a href="http://www.circuiteditions.com/customer/account/login/">My Account</a></li>
</ul>
    		</div>
    		<div class="col4">
				<a href="/browse-by/artist/gift-certificate"><img src="http://www.circuiteditions.com/media/footer_ad.png" alt="Gift Certificates" /></a>

    		</div>

    	</div>
        <div class="footer-nav">
        	<strong>Circuit Editions</strong>, a division of <strong>Circuit Gallery</strong>, is based in Toronto, Canada | <a href="mailto:info@circuitgallery.com">info@circuitgallery.com</a>
        	<ul>
                
        	</ul>
        </div>
        <div class="copyright">
        	&copy; 2008 - 2015 | Circuit Gallery | All Rights Reserved
 			
 		</div>
    </div>
</div>
<script type="text/javascript">
jQuery(function() {
    jQuery("#btn_about_us")
        .mouseover(function() { 
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_about_us_up.gif";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_about_us_down.gif";
            if(jQuery(this).attr('class') != 'active') {jQuery(this).attr("src", src); }
        });
    jQuery("#btn_faq")
        .mouseover(function() { 
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_faq_up.gif";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_faq_down.gif";
            if(jQuery(this).attr('class') != 'active') {jQuery(this).attr("src", src); }
        });
    jQuery("#btn_customer_support")
        .mouseover(function() { 
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_customer_support_up.gif";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_customer_support_down.gif";
            if(jQuery(this).attr('class') != 'active') {jQuery(this).attr("src", src); }
        });
    jQuery("#btn_submissions")
        .mouseover(function() { 
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_submissions_up.gif";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_submissions_down.gif";
            if(jQuery(this).attr('class') != 'active') {jQuery(this).attr("src", src); }
        });                        
    jQuery("#btn_contact_us")
        .mouseover(function() { 
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_contact_us_up.gif";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = "http://www.circuiteditions.com//skin/frontend/circuitgallery/default/images/btn_contact_us_down.gif";
            if(jQuery(this).attr('class') != 'active') {jQuery(this).attr("src", src); }
        });        
});
</script>
<!--
<script type="text/javascript">
 jQuery.reject(
        options = {
        reject : { // Rejection flags for specific browsers
            all: false, // Covers Everything (Nothing blocked)
            msie5: true,msie6: true, msie7: true,msie8: true,msie9: false,// Covers MSIE 5-6 (Blocked by default)
            chrome1: true,chrome2: true,chrome3: true,chrome4: true,chrome5: true,chrome6:true,chrome7:true,chrome9:false,chrome10:false,
            safari2: true,safari3: true,safari4: false,safari5: false,
            opera: true,opera7: true,opera8: true,opera9: false, opera10: false,
            /*
                Possibilities are endless...
                
                msie: false,msie5: true,msie6: true,msie7: false,msie8: false, // MSIE Flags (Global, 5-8)
                firefox: false,firefox1: false,firefox2: false,firefox3: false, // Firefox Flags (Global, 1-3)
                konqueror: false,konqueror1: false,konqueror2: false,konqueror3: false, // Konqueror Flags (Global, 1-3)
                chrome: false,chrome1: false,chrome2: false,chrome3: false,chrome4: false, // Chrome Flags (Global, 1-4)
                safari: false,safari2: false,safari3: false,safari4: false, // Safari Flags (Global, 1-4)
                opera: false,opera7: false,opera8: false,opera9: false,opera10: false, // Opera Flags (Global, 7-10)
                gecko: false,webkit: false,trident: false,khtml: false,presto: false, // Rendering Engines (Gecko, Webkit, Trident, KHTML, Presto)
                win: false,mac: false,linux : false,solaris : false,iphone: false, // Operating Systems (Win, Mac, Linux, Solaris, iPhone)
                unknown: false // Unknown covers everything else
            */
        },
        display: ['firefox','chrome','msie','safari','opera','gcf'], // What browsers to display and their order
        browserInfo: { // Settings for which browsers to display
            firefox: {
                text: 'Firefox 4', // Text below the icon
                url: 'http://www.mozilla.com/firefox/' // URL For icon/text link
            },
            safari: {
                text: 'Safari 5',
                url: 'http://www.apple.com/safari/download/'
            },
            opera: {
                text: 'Opera 11',
                url: 'http://www.opera.com/download/'
            },
            chrome: {
                text: 'Chrome 10',
                url: 'http://www.google.com/chrome/'
            },
            msie: {
                text: 'Internet Explorer 9',
                url: 'http://www.microsoft.com/windows/Internet-explorer/'
            },
            gcf: {
                text: 'Google Chrome Frame',
                url: 'http://code.google.com/chrome/chromeframe/',
                allow: { all: false, msie: true } // This browser option will only be displayed for MSIE
            }
        },
        header: 'Did you know that your Internet Browser is out of date?', // Header of pop-up window
        paragraph1: 'Your browser is out of date, and may not be compatible with our website. A list of the most popular web browsers can be found below.', // Paragraph 1
        paragraph2: 'Just click on the icons to get to the download page', // Paragraph 2
        close: true, // Allow closing of window
        closeMessage: 'By closing this window you acknowledge that your experience on this website may be degraded', // Message displayed below closing link
        closeLink: 'Close This Window', // Text for closing link
        closeURL: '#', // Close URL
        closeESC: true, // Allow closing of window with esc key
        closeCookie: false, // If cookies should be used to remmember if the window was closed (see cookieSettings for more options)
        // Cookie settings are only used if closeCookie is true
        cookieSettings: {
            path: '/', // Path for the cookie to be saved on (should be root domain in most cases)
            expires: 0 // Expiration Date (in seconds), 0 (default) means it ends with the current session
        },
        imagePath: '/js/images/', // Path where images are located
        overlayBgColor: '#000', // Background color for overlay
        overlayOpacity: 0.8, // Background transparency (0-1)
        fadeInTime: 'fast', // Fade in time on open ('slow','medium','fast' or integer in ms)
        fadeOutTime: 'fast' // Fade out time on close ('slow','medium','fast' or integer in ms)
    });
 </script>-->            </div>
</div>
</body>
</html>
