<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>The Digital Snowshop &mdash; News and Stuff</title>
	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
	<meta http-equiv="Content-Language" content="en-us" />
	<link href="/products.rss" rel="alternate" title="Products RSS Feed" type="application/rss+xml" />
	<link href="http://cache0.bigcartel.com/theme_stylesheets/2223111/styles.css" media="screen" rel="Stylesheet" type="text/css" />
	<script src="http://cache1.bigcartel.com/themes/blocks/javascripts/prototype.js?20090929" type="text/javascript"></script>
	<script src="http://cache1.bigcartel.com/themes/blocks/javascripts/effects.js?20090929" type="text/javascript"></script>
	<script src="http://cache0.bigcartel.com/themes/blocks/javascripts/store.js?20090929" type="text/javascript"></script>
	<script src="http://cache0.bigcartel.com/themes/blocks/javascripts/fancyzoom.js?20090929" type="text/javascript"></script>
	<script src="http://cache1.bigcartel.com/themes/api.js?20090929" type="text/javascript"></script>
	<script type="text/javascript" charset="utf-8">
		Store.currency_sign	= "$";
		Store.item_singular	= "item";
		Store.item_plural	= "items";
		Store.discount_off	= "% off";
		Store.show_shipping = false;
	</script>
	<meta name="generator" content="Big Cartel" />
</head>

<body id="news-and-stuff" class="custom">
	
	
	<div id="website">
		<a href="http://www.eric-hancock.com" id="website_back" class="button" title="Back to Site">Back to Site</a>
	</div>
	
	
	<div id="store" class="clearfix">
					
		<div id="minicart">
			<a href="/cart" title="View Cart"><span id="minicart_count">0 items</span> <span id="minicart_view">&raquo; view cart</span></a>
		</div>
		
		<div id="header">
		
			<h2 id="logo" class="image"><a href="/" id="store_home" title="The Digital Snowshop"><span class="store_name">The Digital Snowshop</span><img src="http://cache0.bigcartel.com/theme_images/627091/header.png" /></a></h2>
			
			
			
			<ul id="nav">
				<li class="first"><a href="/products" title="All Products">All</a></li><li><a href="/category/prints" title="View Prints">Prints</a></li>
			</ul>
			
		</div>
		
		
		<div id="main" class="clearfix">
			
			<h1 id="page_name">News and Stuff</h1>
			
			
			
			
			<style type="text/css" media="screen">
 
  ul#entries {
    padding: 0 !important;
    }
 
  ul#entries li {
    clear: both;
    float: left;
    width: 100%;
    list-style: none !important;
    margin-bottom: 2.5em;
    }
 
  ul#entries li.loading {
    margin-bottom: 0;
    }
 
  ul#entries li h3 {
    margin: 0 0 .25em 0 !important;
    }
 
  ul#entries li p.blog_date {
    margin-bottom: 1.5em !important;
    }
 
</style>
<ul id="entries"><li class="loading">Loading...</li></ul>
 
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
 
  // ================================================
  // Your info here
  // ================================================
  var feedURL   = 'feed://www.thedeliciousness.com/?feed=rdf';
  var numEntries  = 5;
  var blogURL   = 'http://www.thedeliciousness.com';
  var blogLink  = 'View full blog &raquo;';
  // ================================================
 
  google.load("feeds", "1");
 
  function formatDate(d, f) {
    var d = new Date(d);
    var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
    var days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
    return f.replace(/(yyyy|mmmm|mmm|mm|dddd|ddd|dd|hh|nn|ss|a\/p)/gi,
          function($1) {
              switch ($1.toLowerCase()) {
              case 'yyyy': return d.getFullYear();
              case 'mmmm': return months[d.getMonth()];
              case 'mmm':  return months[d.getMonth()].substr(0, 3);
              case 'mm':   return (d.getMonth() + 1);
              case 'dddd': return days[d.getDay()];
              case 'ddd':  return days[d.getDay()].substr(0, 3);
              case 'dd':   return d.getDate();
              case 'hh':   return ((h = d.getHours() % 12) ? h : 12);
              case 'nn':   return d.getMinutes();
              case 'ss':   return d.getSeconds();
              case 'a/p':  return d.getHours() < 12 ? 'a' : 'p';
              }
          }
      );
  }
 
  function initialize() {
    var feed = new google.feeds.Feed(feedURL);
        feed.setNumEntries(numEntries);
        feed.load(function(result) {
 
          if(result.error) return;
 
          var list = document.getElementById('entries');
              list.removeChild(list.firstChild);
 
          for(var i = 0; i < result.feed.entries.length; i++) {
            var entry = result.feed.entries[i];
            var link = document.createElement('a');
                link.setAttribute('href', entry.link);
                link.appendChild(document.createTextNode(entry.title));
            var title = document.createElement('h3');
                title.appendChild(link);
            var date = document.createElement('p');
                date.setAttribute('class', 'blog_date');
                date.appendChild(document.createTextNode(formatDate(entry.publishedDate, 'mmmm dd, yyyy')));
            var content = document.createElement('div');
                content.innerHTML = entry.content;
            var li = document.createElement('li');
                li.appendChild(title);
                li.appendChild(date);
                li.appendChild(content);
            list.appendChild(li);
          }
 
          if(blogLink && blogURL) {
            var link = document.createElement('a');
              link.setAttribute('href', blogURL);
              link.innerHTML = blogLink;
            var li = document.createElement('li');
              li.appendChild(link);
            list.appendChild(li);
          }
      });
  }
 
  google.setOnLoadCallback(initialize);
 
</script>

			
		
		</div>
		
		
		<div id="footer">
		
			<div id="pod_pages" class="pod">
				<h4>Pages</h4>
				<ul>
					<li><a href="/" title="View Home">Home</a></li><li><a href="/news-and-stuff" title="View News and Stuff">News and Stuff</a></li><li><a href="/contact" title="View Contact">Contact</a></li>
				</ul>
			</div>
			
			<div id="pod_categories" class="pod">
				<h4>Products</h4>
				<ul>
					<li class="first"><a href="/products" title="All Products">All</a></li><li><a href="/category/prints" title="View Prints">Prints</a></li>
				</ul>
			</div>
			
			
			
			
			<div id="pod_rss" class="pod">
				<h4><a href="/products.rss" title="RSS Feed"><em class="link_icon"></em>Grab our feed</a></h4>
				<p>Hear about new products with our <a href="/products.rss" title="Product RSS Feed"><span>Product RSS Feed</span></a>.</p>
			</div>
			
			
		</div>
		
		<div id="badge"><a href="http://bigcartel.com" title="Check out Big Cartel">Powered by Big Cartel</a></div>
		
	</div>

</body>
</html>