<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gilbert Guerrero</title>
	<atom:link href="http://www.gilbertguerrero.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilbertguerrero.com</link>
	<description>User Experience Design. Interaction Design. *Design* for Interactive Media.</description>
	<lastBuildDate>Tue, 18 Oct 2011 18:08:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Leonardo—The International Society for the Arts, Sciences and Technology</title>
		<link>http://www.gilbertguerrero.com/2009/07/07/leonardo%e2%80%94the-international-society-for-the-arts-sciences-and-technology/</link>
		<comments>http://www.gilbertguerrero.com/2009/07/07/leonardo%e2%80%94the-international-society-for-the-arts-sciences-and-technology/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 16:21:13 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[client work]]></category>
		<category><![CDATA[nonprofit]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=126</guid>
		<description><![CDATA[I worked with the staff of the International Society for the Arts, Sciences and Techonolgy (ISAST), publishers of the Leonardo journal, to redesign their site. During the project I performed a full scale design process from stakeholder interviews to getting reactions on moodboards to presenting a variety of page comps to finally building and producing [...]]]></description>
			<content:encoded><![CDATA[<p>I worked with the staff of the International Society for the Arts, Sciences and Techonolgy (ISAST), publishers of the Leonardo journal, to redesign their site. During the project I performed a full scale design process from stakeholder interviews to getting reactions on moodboards to presenting a variety of page comps to finally building and producing the site. Many thanks to the staff at Leonardo for working closely with me every step of the way. Visit <a href="http://leonardo.info">leonardo.info</a>.</p>
<p><img class="size-medium wp-image-129" title="leonardo-home" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2009/07/leonardo-home-640x453.png" alt="Leonardo website" width="640" height="453" /></p>
<p><img class="alignnone size-medium wp-image-132" title="leonardo-sub-about" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2009/07/leonardo-sub-about1-640x675.png" alt="leonardo-sub-about" width="640" height="675" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2009/07/07/leonardo%e2%80%94the-international-society-for-the-arts-sciences-and-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prototype + Script.aculo.us Slideshow</title>
		<link>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/</link>
		<comments>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 03:23:27 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=58</guid>
		<description><![CDATA[Here&#8217;s a snippet of code I put together for my animation and interactivity class.  It&#8217;s a slideshow that uses Prototype and script.aculo.us. View a demo Here&#8217;s the JavaScript that appears in the header: &#60;script language="JavaScript" type="text/javascript"&#62; var i = 0; var slide; function SlideShow() { $( slide[i] ).fade({ duration:5 }); i++; if (i == slide.length) [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a snippet of code I put together for my animation and interactivity class.  It&#8217;s a slideshow that uses <a href="http://www.prototypejs.org">Prototype</a> and <a href="http://script.aculo.us">script.aculo.us</a>.</p>
<p><a href="/blog/wp-content/uploads/2008/slideshow">View a demo</a></p>
<p>Here&#8217;s the JavaScript that appears in the header:</p>
<p><code >&lt;script language="JavaScript" type="text/javascript"&gt;<br />
var i = 0;<br />
var slide;</p>
<p>function SlideShow() {<br />
	$( slide[i] ).fade({ duration:5 });<br />
	i++;<br />
	if (i == slide.length) i = 0;<br />
	$( slide[i] ).appear({ duration:5, afterFinish: function () { SlideShow(); } });<br />
} </p>
<p>document.observe(`dom:loaded`, function () {<br />
	$$(`#myslideshow img`).each(function(image){<br />
		$(image).hide();<br />
	});<br />
	slide =  $(`myslideshow`).childElements();<br />
	$( slide[0] ).appear({ duration:1, afterFinish: function () { SlideShow(); } });<br />
});<br />
&lt;/script&gt;</code></p>
<p>Some basic CSS also appears in the header to place the images in the right location on the page:</p>
<p><code >&lt;style type="text/css"&gt;<br />
<!--<br />
#myslideshow img {<br />
	position: absolute;<br />
	z-index: 10;<br />
}</p>
<p>#myslideshow {<br />
	position: relative;<br />
	height: 450px;<br />
	width: 600px;<br />
	background-color: #000000;<br />
}<br />
--><br />
&lt;/style&gt;</code></p>
<p>This basic HTML appears in the body to load the images for the slideshow.  Any number of images can be added here:</p>
<p><code >&lt;div id="myslideshow"&gt;<br />
	&lt;img src="images/IMG_0350.jpg" width="600" height="450" /&gt;<br />
	&lt;img src="images/IMG_0351.jpg" width="600" height="450" /&gt;<br />
	&lt;img src="images/IMG_0352.jpg" width="600" height="450" /&gt;<br />
	&lt;img src="images/IMG_0353.jpg" width="600" height="450" /&gt;<br />
	&lt;img src="images/IMG_0354.jpg" width="600" height="450" /&gt;<br />
&lt;/div&gt;</code></p>
<p>This slideshow uses several Prototype and script.aculo.us functions.  It uses two basic combination effects, Fade and Appear. Other functions:</p>
<p><strong>$document.observe()</strong> keeps the functions from starting until the page has loaded.  For instance, if the images haven&#8217;t been quite loaded and the scripts start to run, things could go wrong or nothing could happen at all.</p>
<p><code >document.observe('dom:loaded', function () {<br />
    //place scripts here<br />
});</code></p>
<p><strong>$(&#8216;element&#8217;).childElements()</strong> allows us to grab all the items nested inside of an object on the page.  In this case we want to grab all the images that are in the &#8220;myslideshow&#8221; div to use in the slideshow.  The items are then stored in an array which we called &#8220;slide&#8221;.</p>
<p><code >slide =  $('myslideshow').childElements();</code></p>
<p><strong>afterFinish</strong> is used in the appear function in several places.  It allows us to call a function after the current slide has faded in.  In the SlideShow function notice that in the appear function for afterFinish we actually call the function itself&#8211;SlideShow refers to itself.  This is what&#8217;s called a <em>recursive function</em>.  This causes the slideshow to loop.</p>
<p><code >$( slide[i] ).appear({ duration:5, afterFinish: function () { SlideShow(); } });</code></p>
<ul>
<li><a href='http://www.gilbertguerrero.com/blog/wp-content/uploads/2008/09/slideshow.zip'>Download Slideshow Files (.zip)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Protected: Bachelor Weekend</title>
		<link>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:12:06 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=54</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.gilbertguerrero.com/wp/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-54">Password:<br />
<input name="post_password" id="pwbox-54" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Swing Dancing + Pizza</title>
		<link>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 02:50:07 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/?p=35</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.gilbertguerrero.com/wp/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-35">Password:<br />
<input name="post_password" id="pwbox-35" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp SF 2008</title>
		<link>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 00:53:34 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/?p=24</guid>
		<description><![CDATA[Finally made it out to WordCamp in San Francisco. Some interestingness that I encountered today: Chris Lea from Media Temple pitched NGINX. Apparently, it blows away Apache in performance.  Whereas Apache uses forking, NGINX is asynchronous. Joseph Scott pitched the Open Source WordPress iPhone App. Sam Bauers on maintaining WordPress using SVN. You can now [...]]]></description>
			<content:encoded><![CDATA[<p>Finally made it out to WordCamp in San Francisco.</p>
<p><a href="http://2008.sf.wordcamp.org/"><img class="alignnone size-full wp-image-23" title="WordCamp 2008" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/wordcamp2008.png" alt="" width="254" height="209" /></a></p>
<p>Some interestingness that I encountered today:</p>
<ul>
<li><a href="http://www.chrislea.com">Chris Lea</a> from Media Temple pitched <a href="http://nginx.net/">NGINX</a>. Apparently, it blows away Apache in performance.  Whereas Apache uses forking, NGINX is asynchronous.</li>
<li><a href="http://joseph.randomnetworks.com/">Joseph Scott</a> pitched the <em>Open Source</em> <a href="http://iphone.wordpress.org/">WordPress iPhone App</a>.</li>
<li><a href="http://unlettered.org/">Sam Bauers</a> on maintaining WordPress using SVN. You can now <a href="http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content">move the content directory</a> outside of the WordPress directory. Symlink to plugins that you want SVN to maintain, like Akismet.</li>
<li><a href="http://jcksn.com/">Noel Jackson</a> used the <a href="http://digital-photography-school.com/blog/rule-of-thirds/">Rule of Thirds</a>, PHP, and JavaScript to get colors from photos in a blog to create a monochromatic theme, <a href="http://eight6.com/2008/05/14/automattic-monotone/">Monotone</a>.</li>
</ul>
<p>Also got a free t-shirt, lunch, and tons of coffee!</p>
<div id="attachment_30" class="wp-caption alignleft" style="width: 310px"><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0373.jpg"><img class="size-medium wp-image-30" title="Lunch!" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0373-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">Lunch!</p></div>
<div id="attachment_31" class="wp-caption alignleft" style="width: 310px"><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0375.jpg"><img class="size-medium wp-image-31" title="Computers" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0375-300x225.jpg" alt="Sea of computers.  Are there more computers than people in this picture?" width="300" height="225" /></a><p class="wp-caption-text">Sea of computers.  Are there more computers than people in this picture? Taken at the beginning of Matt Mullenweg&#39;s talk</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Kathleen&#8217;s Birthday Bash</title>
		<link>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 20:37:33 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=52</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.gilbertguerrero.com/wp/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-52">Password:<br />
<input name="post_password" id="pwbox-52" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternative Exposure</title>
		<link>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 07:23:26 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[client work]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[nonprofit]]></category>
		<category><![CDATA[Southern Exposure]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/27/alternative-exposure/</guid>
		<description><![CDATA[Southern Exposure&#8217;s granting program Alternative Exposure released its grantees website this month. I worked with Southern Exposure to create the look and feel based on printed materials, brochures, and a set of logos.Â  I built the site using WordPress for content management and user account management. Grantees can login and update their project pages, post [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/soex-altex_640px.png" alt="Alternative Exposure (smaller image)" /></p>
<p>Southern Exposure&#8217;s granting program <em><strong>Alternative Exposure  </strong></em>released its grantees website this month.  I worked with Southern Exposure to create the look and feel based on printed materials, brochures, and a set of logos.Â  I built the site using WordPress for content management and user account management. Grantees can login and update their project pages, post an image, and post events.  The site will also auto-archive the list of grantees each year as their granting program progresses.</p>
<p>Southern Exposure is a nonprofit art exhibition space in San Francisco.</p>
<ul>
<li>Alternative Exposure website &#8211; <a href="http://www.soex.org/alternativeexposure/">http://www.soex.org/alternativeexposure</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Strange Weather Launches Today!</title>
		<link>http://www.gilbertguerrero.com/2008/03/13/strange/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/13/strange/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 17:14:08 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/13/strange/</guid>
		<description><![CDATA[Strange Weather is on view at Eyebeam (http://www.eyebeam.org) in New York City. http://www.strangeweatherproject.net]]></description>
			<content:encoded><![CDATA[<p class="postie-image-div">Strange Weather is on view at Eyebeam (<a href="http://www.eyebeam.org">http://www.eyebeam.org</a>) in New York City.</p>
<p class="postie-image-div"><a href="&gt; &gt; Strange Weather is on view at Eyebeam (http://www.eyebeam.org) in &gt; New York City. &gt; &gt; http://www.strangeweatherproject.net">http://www.strangeweatherproject.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/13/strange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Bootcamp: Post-workshop files</title>
		<link>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 16:23:29 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[Teaching]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[DVC]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/11/web-design-bootcamp-post-workshop-files/</guid>
		<description><![CDATA[Thank you to all the people who attended the Web Design Bootcamp at DVC last weekend! I had a brilliant time.Â  It was great to work with you and share a whole lot of knowledge about Web Design.Â  I&#8217;ve made the presentation and project files available for you to download. Downloads: Web Design Bootcamp Presentation [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you to all the people who attended the Web Design Bootcamp at DVC last weekend!  I had a brilliant time.Â  It was great to work with you and share a whole lot of knowledge about Web Design.Â  I&#8217;ve made the presentation and project files available for you to download.</p>
<p>Downloads:<a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/webdesignbootcamp_spr08.pdf" title="Web Design Bootcamp Presentation File (PDF, 1MB)"></a></p>
<ul>
<li><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/webdesignbootcamp_spr08.pdf" title="Web Design Bootcamp Presentation File (PDF, 1MB)">Web Design Bootcamp Presentation</a> (PDF, 1MB)</li>
<li><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/web-project.zip" title="Web Design Bootcamp Project Files (.zip 2.2MB)">Web Design Bootcamp Project Files</a> (.zip 2.2MB)</li>
</ul>
<p>Also, links to sites that were referred to in this class:</p>
<ul>
<li><a href="http://del.icio.us/chiliberto/webdesign+workshop?settagview=cloud&amp;setcount=50">http://del.icio.us/chiliberto/webdesign+workshop</a></li>
</ul>
<p>Best of luck to you in your future Web Design projects!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ATA&#8217;s Auction at Receiver Gallery</title>
		<link>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/</link>
		<comments>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 17:00:44 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Artists' Television Access]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[group show]]></category>
		<category><![CDATA[Receiver Gallery]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/wp/?p=1</guid>
		<description><![CDATA[A rather mysterious drawing that I made is in a group show at Receiver Gallery. The show is only up for a few days, January 23-26, 2008. It&#8217;s a benefit for Artists&#8217; Television Access. Please come by and bid on my drawing! The auction closing party is on Saturday. Title: Portrait (Overworked) Ink on Arches [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/01/portrait-overworked.jpg" title="2008, Gilbert Guerrero, â€œPortrait (Overworked)â€, Ink on Arches Paper"><img src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/01/portrait-overworked.thumbnail.jpg" alt="2008, Gilbert Guerrero, â€œPortrait (Overworked)â€, Ink on Arches Paper" style="margin: 0pt 1em 1em 0pt; float: left" /></a>A rather mysterious drawing that I made is in a group show at Receiver Gallery.  The show is only up for a few days, January 23-26, 2008.  It&#8217;s a benefit for Artists&#8217; Television Access.  Please come by and bid on my drawing! The auction closing party is on Saturday.</p>
<p>Title: <em>Portrait (Overworked)</em><br />
Ink on Arches paper, 2008, Gilbert Guerrero.</p>
<p style="clear: both">Receiver Gallery:<br />
1415 Valencia St. @ 25th St <a href="http://receivergallery.com/">http://receivergallery.com/</a></p>
<p>Preview &amp; Silent Auction<br />
Wed-Friday, January 23-25<br />
10 am-6 pm, free</p>
<p><strong>Reception &amp; Auction Closing Party</strong><br />
Saturday, January 26, 2008<br />
7 &#8211; 10pm (auction concludes at 8:30 pm)<br />
$10 admission (may be applied towards a purchase); Admission is free for <a href="http://www.atasite.org/membership/">Members</a>.</p>
<p>More info: <a href="http://www.atasite.org/calendar/?x=2741">http://www.atasite.org/calendar/?x=2741</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
