<!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 profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title> Tiny Choices | Sustainable Living, DIY &amp; Eco‑Friendly Tips</title>
<meta name="description" content="Tiny Choices shares eco‑friendly lifestyle inspiration—from DIY crafts and zero‑waste tips to sustainable"/>
<meta name="robots" content="index, follow"/>

	<link rel="canonical" href="https://tinychoices.com" />
<meta name="generator" content="WordPress 3.0.1"/> <!-- leave this for stats -->
<link rel="shortcut icon" type="image/x-icon" href="wp-content/themes/ad-clerum-10/favicon.ico"/>
<link rel="stylesheet" href="wp-content/themes/ad-clerum-10/style.css" type="text/css" media="screen"/>
<link rel="pingback" href="https://tinychoices.com/xmlrpc.php" />
<!--[if !IE]><!-->
<link rel="stylesheet" href="wp-content/themes/ad-clerum-10/NONie.css" media="screen"/>
<!--<![endif]-->
	<script type="text/javascript">//<![CDATA[
	// Google Analytics for WordPress by Yoast v4.06 | http://yoast.com/wordpress/google-analytics/
	// End of Google Analytics for WordPress by Yoast v4.0
	//]]></script>
<link rel="stylesheet" id="wp-polls-css" href="wp-content/plugins/wp-polls/polls-css_ver-2.50.css" type="text/css" media="all"/>
<script type="text/javascript" src="wp-includes/js/jquery/jquery_ver-1.4.2.js"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tinychoices.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://tinychoices.com/wp-includes/wlwmanifest.xml" /> 
<link rel="index" title="Tiny Choices" href="https://tinychoices.com/" />
<meta name="generator" content="WordPress 3.0.1"/>
<script type="text/javascript" src="https://tinychoices.com/wp-content/plugins/anti-captcha/anti-captcha-0.2.js.php?ver=ff42b03a06a1bed4e936f0e04958e168"></script>
<script language="javascript" type="text/javascript">
<!--
		function collapseThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} else {
				comment.className += " collapsed";
			}
		}
		function expandThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} 
		}
		function findBody(el)
		{
			var divs = el.getElementsByTagName("div");
			var ret;
			for(var i = 0; i < divs.length; ++i) {
				if(divs.item(i).className.indexOf("body") > -1)
					return divs.item(i);
			}
			return false;
		}
		function onAddComment() {
			//checkDocumentIntegrity();
			var el = document.getElementById("commentform");
			// Future release: Check if form is filled correctly and mark the form fields.
			el.submit();
		}
		function moveAddCommentBelow(theId, threadId, collapse)
		{
			expandThread( theId );
			var addComment = document.getElementById("addcomment");
			if(!addComment)
			{
			  	alert("ERROR:\nThreaded Comments can't find the 'addcomment' div.\nThis is probably because you have changed\nthe comments.php file.\nMake sure there is a tag around the form\nthat has the id 'addcomment'"); 
				return
			}
			var comment = document.getElementById(theId);
			if(collapse)
			{
				for(var i = 0; i < comment.childNodes.length; ++i) {
					var c = comment.childNodes.item(i);
					if(typeof(c.className) == "string" && c.className.indexOf("collapsed")<0) {
						c.className += " collapsed";
					}
				}
			}
			addComment.parentNode.removeChild(addComment);
			comment.appendChild(addComment);
			if(comment.className.indexOf("alt")>-1) {
				addComment.className = addComment.className.replace(" alt", "");					
			} else {
				addComment.className += " alt";
			}
		        var replyId = document.getElementById("comment_reply_ID");
			if(replyId == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no hidden form field called\n'comment_reply_ID'. This is probably because you\nchanged the comments.php file and forgot\nto include the field. Please take a look\nat the original comments.php and copy the\nform field over.");
			}
			replyId.value = threadId;
			var reRootElement = document.getElementById("reroot");
			if(reRootElement == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no anchor tag called 'reroot' where\nthe comment form starts.\nPlease compare your comments.php to the original\ncomments.php and copy the reroot anchor tag over.");
			}
			reRootElement.style.display = "block";
			var aTags = comment.getElementsByTagName("A");
			var anc = aTags.item(0).id;
			//document.location.href = "#"+anc;
			document.getElementById("comment").focus();
		}
		function checkDocumentIntegrity()
		{
			str = "";
			str += checkElement("reroot","div tag");
			str += checkElement("addcomment", "div tag");
			str += checkElement("comment_reply_ID", "hidden form field");
			str += checkElement("content", "div tag");
			str += checkElement("comment", "textfield");
			str += checkElement("addcommentanchor", "anchor tag");
			if(str != "")
			{
				str = "Brian's Threaded Comments are missing some of the elements that are required for it to function correctly.\nThis is probably the because you have changed the original comments.php that was included with the plugin.\n\nThese are the errors:\n" + str;
				str += "\nYou should compare your comments.php with the original comments.php and make sure the required elements have not been removed.";
				alert(str);
			}
		}
		function checkElement(theId, elDesc)
		{
			var el = document.getElementById(theId);
			if(!el)
			{
				if(elDesc == null)
					elDesc = "element";
				return "- The "+elDesc+" with the ID '" +theId + "' is missing\n"; 
			}
			else 
				return "";
		}
		function reRoot()
		{
			var addComment = document.getElementById("addcomment");			
			var reRootElement = document.getElementById("reroot");
			reRootElement.style.display = "none";
			var content = document.getElementById("content");
			addComment.parentNode.removeChild(addComment);
			content.appendChild(addComment);
			addComment.className = addComment.className.replace(" alt", "");
			document.getElementById("comment").focus();				
			document.getElementById("comment_reply_ID").value = "0";
		}			
		function changeCommentSize(d)
		{
			var el = document.getElementById("comment");
			var height = parseInt(el.style.height);
			if(!height && el.offsetHeight)
				height = el.offsetHeight;
			height += d;
			if(height < 20) 
				height = 20;
			el.style.height = height+"px";
		}		
-->
</script>
<style type="text/css">
.comment 
{
	position: 				relative;
	margin:					3px;
	margin-top:				6px;
/*	border: 				1px solid #666; */
	padding:				4px 4px 4px 8px;
	background-color:		#fff;
}
.odd
{
	background-color: #f8f8f8;
}
.comment div {
	position: 				relative;
}
.comment .comment img
{
	margin: 				0px;
}
.comment .collapseicon 
{
	width: 					13px;
	height: 				13px;
	overflow:				hidden;
	background-image: 		url(wp-content/plugins/briansthreadedcomments_php-image-subthread-open.jpg);
}
.collapsed .collapseicon 
{
	background-image: 		url(wp-content/plugins/briansthreadedcomments_php-image-subthread.jpg);
}
.comment .reply {
	text-align: 			right;
	font-size: 				80%;
	padding: 				0px 6px 6px 0px;
}
.comment
{
	border: 	1px solid #ddd;
	margin-top: 			10px;
}
input#subscribe
{
	width: auto;
}
.comment .body .content
{
	padding:				0px 3px 0px 3px;
	width: 					100%;	
	overflow: 				auto; 
}
.comment .title abbr
{
	border: none;
}
.collapsed .body, .collapsed .comment
{
	display:				none;
}
/*
#addcomment small, #addcomment div
{
	padding:				3px;
}
*/
#commentform textarea {
	width: 97%;
}
</style>
<link rel="stylesheet" href="wp-content/plugins/social-dropdown/dropdown.css" type="text/css"/>
<!--[if lte IE 7]>
<link rel="stylesheet" href="http://tinychoices.com/wp-content/plugins/social-dropdown/dropie.css" />
<![endif]-->
<script type="text/javascript" src="wp-content/plugins/social-dropdown/dropdown.js"></script>
<style type="text/css">
.wp-polls .pollbar {
	margin: 1px;
	font-size: 6px;
	line-height: 8px;
	height: 8px;
	background-image: url('wp-content/plugins/wp-polls/images/default_gradient/pollbg.gif');
	border: 1px solid #339900;
}
</style>
	<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
</head>
<body>
<div id="container">
<div id="header">
<a href="/"><img src="images/logo.gif" border="0"/></a>
</div>
<!--<div id="menu">
	<ul>
		<li class="page_item"><a href="http://tinychoices.com">Home</a></li>
		<li class="page_item page-item-354"><a href="http://tinychoices.com/about-tinychoices/" title="About Tiny Choices…"><B>About Tiny Choices…</B></a></li>
<li class="page_item page-item-353"><a href="http://tinychoices.com/contact/" title="Contact Tiny Choices…"><B>Contact Tiny Choices…</B></a></li>
	</ul>
	</div>-->
<!--<div id="middlepic"></div>-->
<div id="left">
<!--<div id="lpic"></div>-->
			<div class="textwidget"><table border="0">
<tbody><tr align="left">
<td align="left"><a href="http://feeds.feedburner.com/tinychoices" target="_blank"><img src="images/subscribe_rss.jpg" border="0" align="center"/></a></td>
<!--<td align="center"><B>Subscribe via RSS:</B>  
<a href="http://feeds.feedburner.com/tinychoices" target="_blank"><img src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png" border="0" align="center" width="25" height="25"></a></td>-->
</tr>
<tr align="left">
<td align="left"><form style="border:0px solid #ccc;padding:3px;text-align:left;" action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open(&#39;http://www.feedburner.com&#39;, &#39;popupwindow&#39;, &#39;scrollbars=yes,width=550,height=520&#39;);return true">
<b><!--<img src="http://tinychoices.com/images/emailsubscribe.jpg">--><img src="images/emailposts.jpg"/><br/><input type="text" style="width:120px" name="email"/><br/><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=1000150" name="url"/><input type="hidden" value="Tiny Choices" name="title"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Yes Please!"/>
</b></form></td>
</tr>
</tbody></table>
<!--<P><a href="http://tinychoices.com/category/easy-tips/"><img src="http://www.tinychoices.com/images/easypeasytips.gif" border="0"></a>-->
<p></p><table border="0">
<tbody><tr>
<td><a href="category/easy-tips/"><img src="images/tips2.gif" border="0" align="center" width="65" height="65"/></a></td>
<td><a href="category/tc-survey/"><img src="images/survey2.gif" border="0" align="center" width="65" height="65"/></a></td>
</tr>
</tbody></table>
<!--<P><iframe src="http://rcm.amazon.com/e/cm?t=tinychoi-20&amp;o=1&amp;p=21&amp;l=ur1&amp;category=green&amp;banner=0W3BBZMQZ1ZKRQZY2502&amp;f=ifr" width="125" height="125" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>-->
<p><script type="text/javascript"><!--
/* 120x240, created 1/19/09 */
//-->
</script>
<!--<P><a href="http://tinychoices.com/category/interviews/"><img src="http://www.tinychoices.com/images/qaarchives.gif" border="0"></a>--></p></div>
		<h2>Tiny Choices Archives:</h2><div id="calendar_wrap"><table id="wp-calendar" summary="Calendar">
	<caption>May 2016</caption>
	<thead>
	<tr>
		<th scope="col" title="Monday">M</th>
		<th scope="col" title="Tuesday">T</th>
		<th scope="col" title="Wednesday">W</th>
		<th scope="col" title="Thursday">T</th>
		<th scope="col" title="Friday">F</th>
		<th scope="col" title="Saturday">S</th>
		<th scope="col" title="Sunday">S</th>
	</tr>
	</thead>
	<tfoot>
	<tr>
		<td colspan="3" id="prev"><a href="2012/03/" title="View posts for March 2012">« Mar</a></td>
		<td class="pad"> </td>
		<td colspan="3" id="next" class="pad"> </td>
	</tr>
	</tfoot>
	<tbody>
	<tr>
		<td colspan="6" class="pad"> </td><td>1</td>
	</tr>
	<tr>
		<td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td><td>8</td>
	</tr>
	<tr>
		<td>9</td><td>10</td><td>11</td><td id="today">12</td><td>13</td><td>14</td><td>15</td>
	</tr>
	<tr>
		<td>16</td><td>17</td><td>18</td><td>19</td><td>20</td><td>21</td><td>22</td>
	</tr>
	<tr>
		<td>23</td><td>24</td><td>25</td><td>26</td><td>27</td><td>28</td><td>29</td>
	</tr>
	<tr>
		<td>30</td><td>31</td>
		<td class="pad" colspan="5"> </td>
	</tr>
	</tbody>
	</table></div>			<div class="textwidget"><p><br/></p><div style="width: 140px !important; height: 180px !important; background:white !important; border: 1px solid #999999 !important; overflow: hidden !important; text-align: center !important;">

    <!-- Google CSE Search Box Begins  -->
<form action="http://www.supernaturalrecipes.com/html/super_natural_recipe_results.html" id="cse-search-box" style="margin:0px;padding:0px;">
 <div>
   <input type="hidden" name="cx" value="000057685605792404932:jmqtovms5uo"/>
   <input type="hidden" name="cof" value="FORID:11"/>
   <input type="hidden" name="ie" value="UTF-8"/>
   <input type="text" name="q" size="15"/>
   <input type="submit" name="sa" value="Search"/>
 </div>
</form>
<script type="text/javascript" src="https://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script> </div>
   <!-- Google CSE Search Box Ends -->
<p><a href="http://www.bestgreenblogs.com/" target="_blank"><img src="images/bgblogo6.jpg" border="0"/></a>
</p><p></p><h2>Green Reads</h2>
<ul>
<li>AT: Green Home</li>
<li>EcoGeek</li>
<li>Green Brooklyn</li>
<li><a href="http://myplasticfreelife.com./" target="_blank&#34;">My Plastic-Free Life</a></li>
<li><a href="http://www.greendrinks.org/" target="_blank">Green Drinks</a></li>
<li><a href="http://greenlagirl.com/" target="_blank">Green LA Girl</a></li>
<li><a href="http://www.greenopia.com/" target="_blank">Greenopia</a></li>
<li><a href="http://www.grist.org/" target="_blank">Grist</a></li>
<li><a href="http://lighterfootstep.com/" target="_blank">Lighter Footstep</a></li>
<li>Living Without Plastic</li>
<li>No Impact Man</li>
<li>Search For Me</li>
<li><a href="https://sewgreen.blogspot.com/" target="_blank">Sew Green</a></li>
<li>Sparks in the Soil</li>
<li><a href="http://www.treehugger.com/" target="_blank">Treehugger</a></li>
<li>The Sustainable Cities Blog</li>
<li><a href="http://organicmania.com/" target="_blank">Organic Mania</a></li>
</ul>
<h2>Green Choices</h2>
<ul>
<li><a href="http://aardvarkem.co.uk/" target="_blank">Aardvark UK</a></li>
<li><a href="http://www.acornhost.com/" target="_blank">Acorn Host</a></li>
</ul>
<h2>Shop Concious</h2>
<ul>
<li><a href="http://www.theokobox.com/" target="_blank">The Oko Box</a>
</li><li>3R Living</li>
<li>Etsy</li>
<li><a href="http://www.freecycle.org/" target="_blank">Freecycle</a></li>
<li>minusbags</li>
</ul>
<h2>True Loves</h2>
<ul>
<li>Yoga: San Miguel de Allende</li>
<li><a href="http://www.dhamma.org/" target="_blank">Vipassana Meditation</a></li><a href="http://www.dhamma.org/" target="_blank">
</a><li><a href="http://www.dhamma.org/" target="_blank"></a><a href="http://enidcrow.com/" target="_blank">Enid Crow</a></li>
<li>Get Crafty</li>
<li>Kaystarr</li>
<li><a href="http://lindamade.wordpress.com/" target="_blank">Lindamade</a></li>
<li><a href="http://www.mickeyz.net/" target="_blank">Mickey Z</a></li>
<li><a href="http://www.notmartha.org/" target="_blank">Not Martha</a></li>
<li><a href="http://paperdollygirl.livejournal.com/" target="_blank">Paperdolly Girl</a></li>
<li>Stellargirl</li>
<li><a href="http://www.supernaturale.com/" target="_blank">SuperNaturale</a></li>
<li><a href="http://www.thisisloveforever.com/" target="_blank">This is Love Forever</a></li>
<li><a href="http://westcoastcrafty.wordpress.com/" target="_blank">West Coast Crafty</a></li>
<li><a href="http://veganhodgepodge.wordpress.com/" target="_blank">Vegan Hodgepodge</a></li>
</ul></div>
</div>
<div id="right">
<!--<div id="rpic"></div>-->
<h2>Search</h2>
<div id="searchdiv">
 <form id="searchform" method="get" action="index_php/">
  <input type="text" name="s" id="s" size="22" value="type, hit enter" onblur="setTimeout(&#39;closeResults()&#39;,2000); if (this.value == &#39;&#39;) {this.value = &#39;&#39;;}" onfocus="if (this.value == &#39;type, hit enter&#39;) {this.value = &#39;&#39;;}"/>
<div style="visibility:hidden"> <input name="sbutt" type="submit" value="Find" alt="Submit"/></div>
</form></div>
<h2>Tiny Choices:</h2>		<ul>
			<li class="page_item page-item-354"><a href="about-tinychoices/" title="About Tiny Choices…"><b>About Tiny Choices…</b></a></li>
<li class="page_item page-item-353"><a href="contact/" title="Contact Tiny Choices…"><b>Contact Tiny Choices…</b></a></li>
		</ul>
					<div class="textwidget"><!--<h2>...<a href="http://tinychoices.com/about-tinychoices/">About Tiny Choices</a>...</h2>-->
<!--<P><a href="http://tinychoices.com/category/tc-survey/"><img src="http://tinychoices.com/images/survey.jpg" border="0"></a>-->
<script charset="utf-8" type="text/javascript" src="https://ws.amazon.com/widgets/q?ServiceVersion=20070822&amp;MarketPlace=US&amp;ID=V20070822/US/tinychoi-20/8001/74553246-409b-4131-8100-7fa97418ffc2"> </script> <noscript>Amazon.com Widgets</noscript>
<p><script type="text/javascript"><!--
/* 120x90, created 1/19/09 */
//-->
</script>
</p></div>
		<h2>Categories</h2><select name="cat" id="cat" class="postform">
	<option value="-1">Select Category</option>
	<option class="level-0" value="27">Activism</option>
	<option class="level-0" value="24">All-Star Interviews</option>
	<option class="level-0" value="476">aspirations</option>
	<option class="level-0" value="25">Crafts/DIY</option>
	<option class="level-0" value="14">Easy Peasy Tips</option>
	<option class="level-0" value="433">Favorite Green Places</option>
	<option class="level-0" value="12">FieldTrips</option>
	<option class="level-0" value="18">Food</option>
	<option class="level-0" value="1">General</option>
	<option class="level-0" value="471">Happy Eco-News</option>
	<option class="level-0" value="28">Health</option>
	<option class="level-0" value="15">Home</option>
	<option class="level-0" value="7">Media</option>
	<option class="level-1" value="8">   Books</option>
	<option class="level-1" value="9">   Movies</option>
	<option class="level-1" value="10">   Music</option>
	<option class="level-0" value="20">Q&amp;A</option>
	<option class="level-0" value="26">Quotes</option>
	<option class="level-0" value="477">Repurpose!</option>
	<option class="level-0" value="23">Surveys</option>
	<option class="level-0" value="22">Transportation</option>
	<option class="level-0" value="13">Waste</option>
	<option class="level-0" value="19">Work &amp; Politics</option>
	<option class="level-0" value="46">Yoga &amp; Fitness</option>
</select>
<script type="text/javascript">
/* <![CDATA[ */
	var dropdown = document.getElementById("cat");
	function onCatChange() {
		if ( dropdown.options[dropdown.selectedIndex].value > 0 ) {
			location.href = "http://tinychoices.com/?cat="+dropdown.options[dropdown.selectedIndex].value;
		}
	}
	dropdown.onchange = onCatChange;
/* ]]> */
</script>
				<h2>Recent Posts</h2>		<ul>
				<li><a href="2012/03/12/ask-me-your-questions/" title="Ask me your questions!">Ask me your questions!</a></li>
				<li><a href="2012/02/13/product-review-jr-liggett-shampoo-bars/" title="Product Review: JR Liggett Shampoo Bars">Product Review: JR Liggett Shampoo Bars</a></li>
				<li><a href="2012/02/11/easy-peasy-tip-craft-your-valentines/" title="Easy Peasy Tip: Craft your Valentines!">Easy Peasy Tip: Craft your Valentines!</a></li>
				<li><a href="2012/02/06/traveling-choices/" title="Traveling Choices">Traveling Choices</a></li>
				<li><a href="2012/01/30/our-new-furnace/" title="Our New Furnace">Our New Furnace</a></li>
				<li><a href="2012/01/27/repurpose-jars-edition/" title="Repurpose! Jars Edition!">Repurpose! Jars Edition!</a></li>
				<li><a href="2012/01/23/new-shower-curtains/" title="New Shower Curtains!">New Shower Curtains!</a></li>
				<li><a href="2012/01/21/easy-peasy-tip-remake-it/" title="Easy Peasy Tip: Remake It">Easy Peasy Tip: Remake It</a></li>
				<li><a href="2012/01/20/repurpose-pallet-edition/" title="Repurpose! Pallet edition.">Repurpose! Pallet edition.</a></li>
				<li><a href="2012/01/14/easy-peasy-tip-try-a-teleconference/" title="Easy Peasy Tip: Try a teleconference!">Easy Peasy Tip: Try a teleconference!</a></li>
				</ul>
		<h2>Recent Comments</h2><ul id="recentcomments"><li class="recentcomments">Jane on <a href="2009/03/25/using-up-all-the-bar-soap/#comment-304899">Using up ALL the bar soap</a></li><li class="recentcomments">Angela Shephard on <a href="2010/02/03/tiny-choices-qa-what-to-do-with-mesh-produce-bags/#comment-301608">Tiny Choices Q&amp;A: What to do with Mesh Produce Bags?</a></li><li class="recentcomments">Cory for Organic Papaya Soap on <a href="2009/03/25/using-up-all-the-bar-soap/#comment-299828">Using up ALL the bar soap</a></li><li class="recentcomments">Tanmi on <a href="2007/11/14/do-we-really-need-deodorant/#comment-297519">Do we really need deodorant?</a></li><li class="recentcomments">Jacki on <a href="2012/03/12/ask-me-your-questions/#comment-294559">Ask me your questions!</a></li><li class="recentcomments">Blessed Mama on <a href="2008/05/07/is-vinegar-made-from-petroleum/#comment-292604">Is Vinegar made from petroleum?</a></li><li class="recentcomments"><a href="http://greenglobaltravel.com/" rel="external nofollow" class="url">Mary @Green Global Travel</a> on <a href="2012/01/27/repurpose-jars-edition/#comment-289058">Repurpose! Jars Edition!</a></li><li class="recentcomments">Eco-Friendly Cleansers: Safe For the Environment, Healthy For Every Body « Liberated Family on <a href="2008/05/07/is-vinegar-made-from-petroleum/#comment-288681">Is Vinegar made from petroleum?</a></li><li class="recentcomments">Lavi on <a href="2011/06/07/homemade-oat-milk/#comment-286515">Homemade Oat Milk</a></li><li class="recentcomments">gloria on <a href="2008/03/25/living-large-in-small-spaces/#comment-284854">Living Large In Small Spaces</a></li></ul>			<div class="textwidget"> <!--<li><h2>Most Popular Posts</h2>
   <ul>
   <?php akpc_most_popular(); ?>
   </ul>
</li>-->
<p><a href="http://www.reuseit.com/" title="Reuseit.com Ambassadors"><img src="images/reuseit.jpg" alt="Reuseit.com Ambassadors"/></a></p>
<p><a href="http://greendrinks.org/" target="_blank"><img src="images/greendrinksnyc.gif" border="0"/></a></p>
</div>
</div>
<div id="content">
				<h2 id="post-4261"><a href="2012/03/12/ask-me-your-questions/" rel="bookmark" title="Permanent Link to Ask me your questions!">Ask me your questions!</a></h2>
	<p><b>By Karina</b> | March 12, 2012 </p>
		<div class="postspace2">
	</div>	
					<p>Hi there friends!</p>
<p>It’s been a couple-a-three weeks since any new content has come up here at TinyChoices.com. I’m sorry about that! I had a busy couple of weeks and have been a touch ill as well. When I tell you that the last six days straight have involved me stumbling upstairs and climbing into bed by 9PM I am not exaggerating.</p>
<p>But! I want to write more about Tiny Choices, and I want to hang out with this neat community a little more frequently.</p>
<p>Now, a LONG time ago we had a regular (irregular?) <a href="category/interviews/">Q&amp;A feature on the site</a>. People would post questions and Jenn and I would do our very best to answer them. I’d love to do that again!</p>
<p><img class="alignnone" style="margin: 10px;" src="images/qa.gif" alt="" width="116" height="61"/> <strong>so let’s try this again: leave a question about anything - really! but especially environmentally related or with respect to tiny choosing - and we will do our best to answer them for you!</strong></p>
<p><em>now my job is to go back and double check<a href="2007/08/03/tiny-choice-question-carnival/"> the original questions post</a> for any that haven’t been answered yet… whoo hoo!</em></p>
				<p><b>Topics:</b> <a href="category/interviews/" title="View all posts in Q&amp;A" rel="category tag">Q&amp;A</a> |   <a href="2012/03/12/ask-me-your-questions/#comments" title="Comment on Ask me your questions!">1 Comment »</a></p><div id="dropdown4261" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4261&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4261&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4261&#39;), event, menu4261, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4261&#39;))" style="display: none;" id="closelink4261" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4261&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
<li><a href="https://www.progettomarzotto.org/">Casino Non Aams Sicuri</a></li><li><a href="https://uk-sobs.org.uk/">Non Gamstop Casinos</a></li><li><a href="https://www.clintoncards.co.uk/">Non Gamstop Casinos</a></li><li><a href="https://tescobagsofhelp.org.uk/">Non Gamstop Casinos</a></li><li><a href="https://www.bankingstandardsboard.org.uk/">UK Casinos Not On Gamstop</a></li></ul>
<div class="content">
<div class="bookmarks" id="bookmark4261">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4261&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/03/12/ask-me-your-questions/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4261&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4261">
</div>
<div class="options">
<div class="info" id="dropinfo4261"></div>
<div class="more"><span class="evenmore" id="evenmore4261"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4261');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;Title=Ask me your questions!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;Title=Ask me your questions!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Ask me your questions!&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Ask me your questions!&amp;bookmark_url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;new_comment=Ask me your questions!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;t=Ask me your questions!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Ask me your questions!&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Ask me your questions!&amp;u=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;t=Ask me your questions!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Ask me your questions!&amp;edit[url]=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Ask me your questions!&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;bm_description=Ask me your questions!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;t=Ask me your questions!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;T=Ask me your questions!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;tttl=Ask me your questions!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Ask me your questions!&amp;href=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/03/12/ask-me-your-questions/&amp;title=Ask me your questions!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Ask me your questions!&amp;link_href=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Ask me your questions!&amp;url=http://tinychoices.com/2012/03/12/ask-me-your-questions/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4261');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4261\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/03/12/ask-me-your-questions/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4261');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4261';
itemobj = document.getElementById(itemid);
var menu4261 = new Array();
menu4261[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4261\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4261'), event, menu4261, '400px', document.getElementById('bookdropbutton4261'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4261\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4261'), event, menu4261, '400px', document.getElementById('bookdropbutton4261'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4257"><a href="2012/02/13/product-review-jr-liggett-shampoo-bars/" rel="bookmark" title="Permanent Link to Product Review: JR Liggett Shampoo Bars">Product Review: JR Liggett Shampoo Bars</a></h2>
	<p><b>By Karina</b> | February 13, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="#"></a>I’ve written before about <a href="2008/07/21/survey-of-shampoos/" target="_blank">my love of solid shampoos</a> - since writing that post,<a href="2009/08/17/toxic-shampoo/"> I’ve started to use JR Liggett’s shampoo bars </a>almost exclusively for about three and a half years! (For the record, this product review was not sponsored in any way and the products I am discussing were purchased by myself for my own personal use.)</p>
<p>I used to see JR Liggett’s in the awesome Pittsburgh Food Co-op and marveled at the old fashioned packaging - but I didn’t start using it then, for whatever reason. I think because I was still hung up on using <a href="2007/08/27/on-personal-hygine/" target="_blank">baking soda and vinegar</a>, and also because it was perhaps not fancy enough for me. I hate to say it, but it’s hard to believe that something so “traditional” could honestly be made of such simple ingredients. I spent some time reading about the Appalachian Trail in 2008, though, and it turns out that several journals (that I wish I could find now to link to!) wrote about how JR Liggett’s is the secret workhorse of the trail - because it’s biodegradable and doesn’t have any of the nastys that more conventiaonl soaps and detergents do. It also doesn’t have any SLS and comes in a plain paper wrapper (recyclable!).</p>
<p>All that is great, though, but how does it work?</p>
<p>I have pretty resilient hair type. It’s wavy-straight, fairly thick, and has lots and lots of it, so I don’t have to worry about it flattening out. The JR Liggett’s bars keep my hair clean and I don’t have to worry about using it every day (I’m on an every two or three day wash schedule for shampooing). I follow up sometimes with a mild conditioner and sometimes without.</p>
<p>My partner, on the other hand, has a thinner and more curly hair type and when I asked him what he would describe his hair as he said “oh, you know, high maintenance and greasy.” When pressed he said that was using traditional shampoos, and with the Liggett’s bars, it’s much less so - his hair is much more controllable and it doesn’t feel as dirty as quickly after shampooing as it does with traditional shampoos. He doesn’t use conditioner at all, and he doesn’t have any problems with his hair drying out or being tangled.</p>
<p>The Liggett’s shampoo bars are also long-lasting - we bought four bars of shampoo in August, and have used them exclusively since then (between two people - we tell the boys to wash their hair with them but they are only with us for showers every other week [it&#39;s just the way their schedule works out] and I’m pretty sure they dodge the scary shampoo bars). We just ran out of shampoo this week. That’s not a bad track record! Certainly long lasting, even with my partners predilection for making lots of soap foam when he bathes.</p>
<p>You can also use it as a body soap in a pinch, and boy is it nice body soap.</p>
<p>The convenience is really important to us too. We try to travel light, and my partner in particular has had long stints of one-carry-on-bag plane travel and loved having a slice of the Liggett’s bar with him (without worry of violating TSA requirements). I like that it’s biodegradable, because there’s nothing I like better than taking a nice outdoor shower at the beach and using soap without worrying that I’m impacting downstream waterways.</p>
<p>The one big problem is that I can’t get JR Liggett’s locally, so every few months I make a big on-line purchase. It is pretty easy to come by coupons at their blog, but it’s kind of a hassle when you run out of something and have to buy it quick and hope it arrives before that big dinner party! (*cough* not speaking from experience or anything…)</p>
<p><strong>Any other JR Liggett Lovers out there? Do you have a personal favorite shampoo bar?</strong></p>
				<p><b>Topics:</b> <a href="category/homediy/" title="View all posts in Home" rel="category tag">Home</a> |   <a href="2012/02/13/product-review-jr-liggett-shampoo-bars/#comments" title="Comment on Product Review: JR Liggett Shampoo Bars">8 Comments »</a></p><div id="dropdown4257" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4257&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4257&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4257&#39;), event, menu4257, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4257&#39;))" style="display: none;" id="closelink4257" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4257&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4257">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4257&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4257&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4257">
</div>
<div class="options">
<div class="info" id="dropinfo4257"></div>
<div class="more"><span class="evenmore" id="evenmore4257"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4257');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;Title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;Title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Product Review: JR Liggett Shampoo Bars&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Product Review: JR Liggett Shampoo Bars&amp;bookmark_url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;new_comment=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;t=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Product Review: JR Liggett Shampoo Bars&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Product Review: JR Liggett Shampoo Bars&amp;u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;t=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Product Review: JR Liggett Shampoo Bars&amp;edit[url]=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Product Review: JR Liggett Shampoo Bars&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;bm_description=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;t=Product Review: JR Liggett Shampoo Bars\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;T=Product Review: JR Liggett Shampoo BarsC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;tttl=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Product Review: JR Liggett Shampoo Bars&amp;href=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/&amp;title=Product Review: JR Liggett Shampoo Bars\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Product Review: JR Liggett Shampoo Bars&amp;link_href=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Product Review: JR Liggett Shampoo Bars&amp;url=http://tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4257');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4257\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/02/13/product-review-jr-liggett-shampoo-bars/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4257');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4257';
itemobj = document.getElementById(itemid);
var menu4257 = new Array();
menu4257[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4257\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4257'), event, menu4257, '400px', document.getElementById('bookdropbutton4257'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4257\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4257'), event, menu4257, '400px', document.getElementById('bookdropbutton4257'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4253"><a href="2012/02/11/easy-peasy-tip-craft-your-valentines/" rel="bookmark" title="Permanent Link to Easy Peasy Tip: Craft your Valentines!">Easy Peasy Tip: Craft your Valentines!</a></h2>
	<p><b>By tinychoices</b> | February 11, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/4675069083_fce156aff9_m.jpg"><img class="alignleft size-full wp-image-4254" style="margin-top: 10px; margin-bottom: 10px; margin-left: 20px; margin-right: 20px;" title="valentines_cookies" src="images/4675069083_fce156aff9_m.jpg" alt="" width="180" height="240"/></a>Valentines Day is, arguably, a holiday designed by greeting card manufacturers to make some extra bucks in card sales. However, what’s to hate about a day to remind those around you that you love them and value their presence? This year skip the high-cost and high-energy gifts, and take some time this weekend to make a few things.</p>
<ul>
<li><a href="2011/02/14/homemade-valentines/" target="_blank">Valentines Day Cards</a> are easy to craft and can be quite fancy with multi-material collages using scraps from around the house.</li>
<li>Chocolate <a href="http://www.cookingforengineers.com/recipe/195/Chocolate-Truffles" target="_blank">truffles</a> or homemade <a href="http://www.joyofbaking.com/SugarCookies.html">cookies</a> are always an easy and thoughtful way to say “Sweets to the Sweet!”</li>
<li>If you want to go the extra mile, make up some gift certificates or coupons for things your sweetheart could always use - backrubs, free pass on bathroom cleaning responsibilities, or a nice homemade dinner.</li>
</ul>
<p>It’s easy to get in the habit of feeling like we have to spend money to prove we care. This year, though, create a new paradigm. Make something special and assure your loved one that you thought of them through the entire process.</p>
<p><strong>If you can, share your V-Day plans!</strong></p>
<p><em>[[Photo from flickr user <a href="http://www.flickr.com/photos/bymeeni/4675069083/in/photostream/" target="_blank">meeni2010</a> via creative commons license.]]</em></p>
				<p><b>Topics:</b> <a href="category/easy-tips/" title="View all posts in Easy Peasy Tips" rel="category tag">Easy Peasy Tips</a> |   <span>Comments Off</span></p><div id="dropdown4253" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4253&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4253&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4253&#39;), event, menu4253, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4253&#39;))" style="display: none;" id="closelink4253" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4253&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4253">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4253&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4253&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4253">
</div>
<div class="options">
<div class="info" id="dropinfo4253"></div>
<div class="more"><span class="evenmore" id="evenmore4253"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4253');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;Title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;Title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Easy Peasy Tip: Craft your Valentines!&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Easy Peasy Tip: Craft your Valentines!&amp;bookmark_url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;new_comment=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;t=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Easy Peasy Tip: Craft your Valentines!&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Easy Peasy Tip: Craft your Valentines!&amp;u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;t=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Easy Peasy Tip: Craft your Valentines!&amp;edit[url]=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Easy Peasy Tip: Craft your Valentines!&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;bm_description=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;t=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;T=Easy Peasy Tip: Craft your Valentines!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;tttl=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Easy Peasy Tip: Craft your Valentines!&amp;href=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/&amp;title=Easy Peasy Tip: Craft your Valentines!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Easy Peasy Tip: Craft your Valentines!&amp;link_href=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Easy Peasy Tip: Craft your Valentines!&amp;url=http://tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4253');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4253\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/02/11/easy-peasy-tip-craft-your-valentines/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4253');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4253';
itemobj = document.getElementById(itemid);
var menu4253 = new Array();
menu4253[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4253\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4253'), event, menu4253, '400px', document.getElementById('bookdropbutton4253'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4253\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4253'), event, menu4253, '400px', document.getElementById('bookdropbutton4253'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4249"><a href="2012/02/06/traveling-choices/" rel="bookmark" title="Permanent Link to Traveling Choices">Traveling Choices</a></h2>
	<p><b>By Karina</b> | February 6, 2012 </p>
		<div class="postspace2">
	</div>	
					<p>I flew out to San Diego last week for a conference on Sustainable Remediation. It was great! I love this group of experts who are so committed and engaged in implementing sustainable protocols and methodologies into remediation projects. I had a few observations while I was traveling and thought I would share them with you all!</p>
<ul>
<li>Firstly, San Diego is beautiful. It was in the 70s during the day and in the 40s and 50s at night. Sunny every single day! It’s hard to believe that EVERYONE doesn’t live there. I guess it’s good that they don’t, though, because it is a desert ecology and it couldn’t support people with local food.</li>
<li>There were a few motorcyclists and bicyclists, but not as many of either group as I expected. With amazing temperatures and fair weather I thought everyone would be out of cars and onto two wheels, but I guess that’s not the case. Lane splitting is legal in California, and I think the major reason people ride motorcycles out there isn’t the efficiency, but the ability to get through highway traffic quickly.</li>
<li>There WERE lots of runners and surfers out there. I would like to think that I would be super fit if I lived out there as well! There’s really no weather-related excuses for not getting out and being active.</li>
<li>I normally just bring my travel mug with me on trips and avoid having to carry both a mug and a water bottle, but I brought the water bottle this time and was happy I did. The 5-6 hour flights were really dehydrating and it was lovely to be able to drink water whenever I wanted to (and to not worry about a plastic cup).</li>
<li>I also brought some food with me for the plane ride. Partly it’s because I’m trying to eat a little better, and I didn’t think I’d be able to get a good-for-me snack on the airplane. Partly it’s because I’m incredibly stubborn and I just can’t believe that they will lock us into a flying box for five or six hours and not feed us as part of the ticket price. I refuse to buy food on the airplane if I have a reasonable way to avoid it. On the way out I packed up some leftover indian food into <a href="2009/12/09/review-and-giveaway-citizenpip-lunch-kits/" target="_blank">a small profile container</a> and was enjoying it with <a href="https://www.amazon.com/gp/product/B000FAFGRW/ref=as_li_ss_tl?ie=UTF8&amp;tag=tinychoi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000FAFGRW">my handy spork</a><img style="border: none !important; margin: 0px !important;" src="e/ir-t-tinychoi-20-l-as2-o-1-a-B000FAFGRW.jpg" border="0" alt="" width="1" height="1"/> and a guy leaned across the aisle and said: “oh, you brought your own food? that is really smart.” This post and this post gave me the courage to do so, though. On the way back I used that same container to pack up leftover beans and rice from a dinner out and I had that for breakfast once I landed at JFK.</li>
<li>How strange is it that I can watch the sun set in San Diego, hop on a plane, and arrive at JFK before the sun does?</li>
<li>I need to figure out compostable containers. The University of California -San Diego, where the conference was hosted, uses compostable stuff - but there’s no separate collection bins, so does it just get landfilled? That’s not cool. I was not sure what to do with my foodstuffs. Happily I could stick to the reusables I brought with me.</li>
<li>Pro-tip at conferences: if you bring your coffee mug, you may not be able to refill it from the large containers of coffee because of limited clearance under the spigot unless you do this: Slide the container to the edge of the container. Make jokes with your fellow conference goers about busting the place up (make some friends). Fill your mug. Slide the container back just to be friendly. Enjoy your coffee.</li>
</ul>
<p><strong><em>Do you have any tips or insights from a recent trip?</em></strong></p>
				<p><b>Topics:</b> <a href="category/food/" title="View all posts in Food" rel="category tag">Food</a>, <a href="category/transportation/" title="View all posts in Transportation" rel="category tag">Transportation</a> |   <a href="2012/02/06/traveling-choices/#comments" title="Comment on Traveling Choices">2 Comments »</a></p><div id="dropdown4249" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4249&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4249&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4249&#39;), event, menu4249, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4249&#39;))" style="display: none;" id="closelink4249" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4249&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4249">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4249&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/02/06/traveling-choices/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4249&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4249">
</div>
<div class="options">
<div class="info" id="dropinfo4249"></div>
<div class="more"><span class="evenmore" id="evenmore4249"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4249');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;Title=Traveling Choices\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;Title=Traveling Choices\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Traveling Choices&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Traveling Choices&amp;bookmark_url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;new_comment=Traveling Choices\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/02/06/traveling-choices/&amp;t=Traveling Choices\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Traveling Choices&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Traveling Choices&amp;u=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/02/06/traveling-choices/&amp;t=Traveling Choices\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Traveling Choices&amp;edit[url]=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Traveling Choices&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;bm_description=Traveling Choices\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/02/06/traveling-choices/&amp;t=Traveling Choices\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/02/06/traveling-choices/&amp;T=Traveling ChoicesC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/02/06/traveling-choices/&amp;tttl=Traveling Choices\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Traveling Choices&amp;href=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/02/06/traveling-choices/&amp;title=Traveling Choices\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Traveling Choices&amp;link_href=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Traveling Choices&amp;url=http://tinychoices.com/2012/02/06/traveling-choices/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4249');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4249\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/02/06/traveling-choices/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4249');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4249';
itemobj = document.getElementById(itemid);
var menu4249 = new Array();
menu4249[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4249\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4249'), event, menu4249, '400px', document.getElementById('bookdropbutton4249'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4249\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4249'), event, menu4249, '400px', document.getElementById('bookdropbutton4249'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4240"><a href="2012/01/30/our-new-furnace/" rel="bookmark" title="Permanent Link to Our New Furnace">Our New Furnace</a></h2>
	<p><b>By Karina</b> | January 30, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/oldfurnace.jpg"><img class="alignleft size-full wp-image-4244" style="margin: 10px;" title="oldfurnace" src="images/oldfurnace.jpg" alt="" width="240" height="179"/></a>We have finally gotten a new furnace installed! For the record, this is a photograph of our old furnace. Scary, right?</p>
<p>We’ve been meaning to do this for AGES. We were heating our house with fuel oil, which was expensive and dirty, plus, it’s super smelly and actually exactly the same thing as diesel fuel, really. Every year the furnace would need service because of sludge clogging the lines (algae grows in the fuel oil because of the low sulfur formulation - which is good for emissions! but was a real hassle every year when we had to replace the filter). The furnace was old, too - I live in the 845 area code, and the “call for service” number on the side of the furnace was a 914 area code - which changed about 12 years ago to 845. We estimate the furnace was about 20 years old. And old means, in general, inefficient - especially when it comes to heating equipment that runs on fossil fuels. We also had a hot water heater that was over 10 years old (and those tank heaters are known to kind of randomly explode into a mess of hot water at any time over 10 years) that ran on propane, and was also wildly inefficient. It was time to replace both of them.</p>
<p>So, once we had enough money saved up, we found someone to come out and put in a new furnace and hot water heater! It was a multi-step process.</p>
<p>We decided to go with natural gas because it met several of our criteria: it was available, it was possible for us to install with a minimum of expensive infrastructure upgrades, we had the money on-hand, and as a bonus, there were several rebates we were eligible for. By going to natural gas, we can get rid of the fuel oil AND the propane tanks and rely on only one formulation of fossil fuels to heat our house and our hot water, cook our food, and dry our clothes.<a href="images/trenchinggas.jpg"><img class="alignright size-full wp-image-4242" style="margin: 10px;" title="trenchinggas" src="images/trenchinggas.jpg" alt="" width="240" height="179"/></a></p>
<p>First, however, we had to have a gas line installed to our house. This was pretty expensive, because we had to pay $40 a foot over the first 100 feet. It added up to just over $1,700. It looked kind of like this — we absolutely got our moneys worth, by the way. The gas company usually is able to use a horizontal boring machine to drill sideways under the homeowners lawn, and install the gas line without disruption and fairly quickly. We live on top of a granite outcropping, however, so they had to go the old fashioned way with bulldozers and diggers. I’m glad they had to do that work, and not me.</p>
<p>Then we waited a few months and saved more money.</p>
<p>Next we found a local contractor. The fellow we did find was pretty wonderful - he gave us lots of options that included ways to make our entire home more efficient, including rerouting the ducting downstairs and creating a dual zone system so we could have different heats set for both the downstairs and the upstairs, insulating all the ducting, and changing the locations of some of the heat registers for more effectiveness. We also wanted to install a tankless hot water heater, which would heat up the water right when we need it instead of keeping a bunch of water hot all day long when we are not even home. Unfortunately, we found ourselves with restricted funds so we told this nice fellow that we would have to wait on the extra efficiencies and we went ahead with the efficient furnace and a standard natural gas water heater — but we look forward to working with him in the future when we’re able to afford fixing up the forced hot air system and putting in a tankless hot water heater system.</p>
<p>And from the realm of incredible, the night before the furnace installation we ran out of fuel oil! It “clunked” off at about 11 at night and we put an extra blanket on the bed. What stupendous timing!</p>
<p><a href="images/newfurnace.jpg"><img class="alignleft size-full wp-image-4243" style="margin: 10px;" title="newfurnace" src="images/newfurnace.jpg" alt="" width="179" height="240"/></a>We now have a new furnace that is 95% efficient. I can’t even hazard a guess as to how efficient our old fuel oil furnace is, but according to the energy.gov page all about heating systems, we probably had a furnace that was between 70% and 80% efficient. The new furnace and a new hot water heater (also a natural gas version, though not the super efficient one we wanted - we didn’t save that much money!) was $6,400.</p>
<p>The new furnace runs on natural gas and is still a forced hot-air model like we had before. The major differences, though, besides the fuel source, are the electric ignition, the variable speed blower motor (which starts up slowly while the air is heating and ramps down as the furnace shuts off, so there’s less time where the furnace is burning and no air is moving).</p>
<p>Of course we still have lots to do. The next thing (which we can do ourselves) is to <a href="http://energystar.supportportal.com/ics/support/kbAnswer.asp?deptID=23018&amp;task=knowledge&amp;questionID=15088" target="_blank">insulate the ducts</a> in the basement. Middle-long-term is to get a new direct-contact/tankless hot water heater. And the long term plan is still to put some solar panels on the roof and further evaluate a geothermal system.</p>
<p>But for now, I’m so happy that we don’t have to buy any more fuel oil. We haven’t gotten the prices in on running the natural gas yet, but we are hopeful that it will be cheaper for us to run. We’re not keeping the house any warmer than we did before, but it *seems* warmer because we know we have a new furnace. Plus we were able to give away the two above ground oil tanks in the basement to people who really needed them, which is pretty great as well!</p>
<p>Clearly, upgrading our old farmhouse without going into debt is a long process. <a href="2010/12/15/finally-insulation/" target="_blank">It was last year that we put in new insulation in the attic.</a> We still have a long list of things to do, including finding a way to reinsulate all the house walls (either with or without taking off the siding) - their thermal value, is, well, suspect. There are a few cosmetic things (and functional things) too - like finishing the attic so we can use it as a family room, and redoing our incredibly ugly bathroom. And painting! so much painting to do. It’s nice, though, to do this as we’re able to, and to know that we’re tackling some big ticket items that are making a real difference both to the environment, and to our pocketbooks!</p>
<p>And as soon as we can calculate our payback you can bet I’ll be telling you all about it!</p>
				<p><b>Topics:</b> <a href="category/homediy/" title="View all posts in Home" rel="category tag">Home</a> |   <a href="2012/01/30/our-new-furnace/#comments" title="Comment on Our New Furnace">2 Comments »</a></p><div id="dropdown4240" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4240&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4240&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4240&#39;), event, menu4240, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4240&#39;))" style="display: none;" id="closelink4240" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4240&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4240">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4240&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/30/our-new-furnace/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4240&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4240">
</div>
<div class="options">
<div class="info" id="dropinfo4240"></div>
<div class="more"><span class="evenmore" id="evenmore4240"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4240');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;Title=Our New Furnace\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;Title=Our New Furnace\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Our New Furnace&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Our New Furnace&amp;bookmark_url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;new_comment=Our New Furnace\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;t=Our New Furnace\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Our New Furnace&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Our New Furnace&amp;u=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;t=Our New Furnace\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Our New Furnace&amp;edit[url]=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Our New Furnace&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;bm_description=Our New Furnace\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;t=Our New Furnace\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;T=Our New FurnaceC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;tttl=Our New Furnace\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Our New Furnace&amp;href=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/30/our-new-furnace/&amp;title=Our New Furnace\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Our New Furnace&amp;link_href=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Our New Furnace&amp;url=http://tinychoices.com/2012/01/30/our-new-furnace/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4240');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4240\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/30/our-new-furnace/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4240');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4240';
itemobj = document.getElementById(itemid);
var menu4240 = new Array();
menu4240[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4240\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4240'), event, menu4240, '400px', document.getElementById('bookdropbutton4240'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4240\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4240'), event, menu4240, '400px', document.getElementById('bookdropbutton4240'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4236"><a href="2012/01/27/repurpose-jars-edition/" rel="bookmark" title="Permanent Link to Repurpose! Jars Edition!">Repurpose! Jars Edition!</a></h2>
	<p><b>By tinychoices</b> | January 27, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><em><a href="images/glassjars1.jpg"><img class="alignnone size-full wp-image-4237" style="margin: 10px;" title="glassjars" src="images/glassjars1.jpg" alt="" width="160" height="240"/></a>Let’s take a quick internet tour of some interesting  repurpose projects. Maybe y’all will find some weekend project  inspiration!</em></p>
<p><strong>We love JARS. glass jars! they’re hefty and heavy, sure, but they are super durable and you can be positive that the jar itself (though perhaps not the cap) is chemical-free. How can we keep showing jars the love after we’ve exhausted their original contents? Here are some neat ideas from the internet!</strong></p>
<ul>
<li>Over here at Team Tiny Choices, we’ve used them to <a href="2011/09/12/packing-waste-free-lunches/" target="_blank">pack waste-free lunches</a> and to <a href="2008/02/05/you-sick-of-bisphenol-a-posts-yet/" target="_blank">fill with delicious beverages</a> (cold OR hot, thanks to a <a href="2010/05/05/glass-jar-cozies/" target="_blank">tiny jar cozy!</a>).</li>
<li>If you are interested in the craft of glass etching (note: chemicals involved) check out these <a href="http://www.instructables.com/id/Repurposed-Etched-Glass-Spice-Jars/" target="_blank">neat etched spice jars</a>!</li>
<li>With some simple glass cutting and polishing wine bottles become wind chimes!</li>
<li>This <a href="https://lizmariegalvanblog.blogspot.com/2011/01/mason-jar-love.html" target="_blank">mason jar storage technique</a> is gorgeous and practical. You could use this in any room of the house!</li>
<li>Use for outdoor lighting, or even a chandelier!</li>
<li>What what! <a href="http://www.thebrainybuyer.com/2011/10/06/frugal-fun-repurpose-jars-into-reusable-pumpkins/" target="_blank">make a glass jar into a reusable pumpkin</a>! you could do any number of different motifs for every holiday you love to decorate for.</li>
<li>Use as flower vases! You can even tint the glass using glass paint.</li>
</ul>
<p><em>[[Photo from flickr user <a href="http://www.flickr.com/photos/chiotsrun/4521593249/" target="_blank">Chiot&#39;s Run</a> via creative commons license.]]</em></p>
				<p><b>Topics:</b> <a href="category/repurpose/" title="View all posts in Repurpose!" rel="category tag">Repurpose!</a>, <a href="category/waste/" title="View all posts in Waste" rel="category tag">Waste</a> |   <a href="2012/01/27/repurpose-jars-edition/#comments" title="Comment on Repurpose! Jars Edition!">5 Comments »</a></p><div id="dropdown4236" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4236&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4236&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4236&#39;), event, menu4236, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4236&#39;))" style="display: none;" id="closelink4236" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4236&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4236">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4236&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4236&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4236">
</div>
<div class="options">
<div class="info" id="dropinfo4236"></div>
<div class="more"><span class="evenmore" id="evenmore4236"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4236');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;Title=Repurpose! Jars Edition!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;Title=Repurpose! Jars Edition!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Repurpose! Jars Edition!&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Repurpose! Jars Edition!&amp;bookmark_url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;new_comment=Repurpose! Jars Edition!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;t=Repurpose! Jars Edition!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Repurpose! Jars Edition!&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Repurpose! Jars Edition!&amp;u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;t=Repurpose! Jars Edition!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Repurpose! Jars Edition!&amp;edit[url]=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Repurpose! Jars Edition!&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;bm_description=Repurpose! Jars Edition!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;t=Repurpose! Jars Edition!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;T=Repurpose! Jars Edition!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;tttl=Repurpose! Jars Edition!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Repurpose! Jars Edition!&amp;href=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/&amp;title=Repurpose! Jars Edition!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Repurpose! Jars Edition!&amp;link_href=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Repurpose! Jars Edition!&amp;url=http://tinychoices.com/2012/01/27/repurpose-jars-edition/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4236');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4236\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/27/repurpose-jars-edition/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4236');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4236';
itemobj = document.getElementById(itemid);
var menu4236 = new Array();
menu4236[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4236\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4236'), event, menu4236, '400px', document.getElementById('bookdropbutton4236'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4236\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4236'), event, menu4236, '400px', document.getElementById('bookdropbutton4236'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4224"><a href="2012/01/23/new-shower-curtains/" rel="bookmark" title="Permanent Link to New Shower Curtains!">New Shower Curtains!</a></h2>
	<p><b>By Karina</b> | January 23, 2012 </p>
		<div class="postspace2">
	</div>	
					<p>It’s no secret that for several years <a href="2009/04/29/shower-curtain-shame/" target="_blank">I have struggled with unsightly shower curtains.</a> In my last apartment the curtain was in tatters by the time I moved away but I didn’t want to buy a new one! The house I live in now requires two shower curtains - one to protect the unfinished window sills in the tub, and one to protect the rest of the bathroom from the shower splatter - and they were also both held together with duct tape and getting incredibly disgusting with mold and soap scum. The last time we washed the curtains they started to split, so they were also held together with duct tape.</p>
<p>Now for nearly four years I’ve been <a href="2008/03/22/easy-peasy-tips-learn-to-sew/" target="_blank">publicly announcing my intentions to sew my own curtains</a>. The way I see it: cloth curtains could be washed without concern of shattering or shredding. Plus by sewing curtains I would be avoiding the purchase of new shower curtains that would be either PVC or another plastic, heavily treated cotton, or incredibly expensive.</p>
<p>So this weekend when I had a free hour I sat down and made two shower curtains.</p>
<p><a href="images/showerwindowcurtain.jpg"><img class="alignnone size-full wp-image-4225" style="margin: 10px;" title="showerwindowcurtain" src="images/showerwindowcurtain.jpg" alt="" width="374" height="500"/></a></p>
<p>I know! So exciting, right? The first photo is the curtain that protects the window - my partner already had this fabric in his stash. I had to hem the top and the bottom to make a neat seam.</p>
<p><a href="images/showercurtaingreen.jpg"><img class="alignnone size-full wp-image-4226" style="margin: 10px;" title="showercurtaingreen" src="images/showercurtaingreen.jpg" alt="" width="500" height="374"/></a></p>
<p>The second is from an old sheet we had stashed in the fabric closet. It was just about the right width, and all we had to do was cut it shorter on the bottom (so it doesn’t soak up all the water from the bottom of the tub. That was just one hem.</p>
<p>And then I put in grommets - which is not the best or most fun thing to do. I have a grommet tool already and we just had to buy some extra grommets to complete the job.</p>
<p><a href="images/showerwindowcurtainclose.jpg"><img class="alignnone size-full wp-image-4228" style="margin: 10px;" title="showerwindowcurtainclose" src="images/showerwindowcurtainclose.jpg" alt="" width="500" height="374"/></a></p>
<p>and Hey Presto! Finally we have new and beautiful shower curtains. I am so thrilled about this! And further, it’s really improved the quality of shower I can take. The water is so quiet when it hits the cloth that there is no comparison to the old plastic curtains we’d used for so long.</p>
<p>And I especially like that we had the majority of the materials ready at home to make the curtains!</p>
<p><strong>What kind of shower curtain are you using in your home?</strong></p>
				<p><b>Topics:</b> <a href="/" title="View all posts in Crafts/DIY" rel="category tag">Crafts/DIY</a>, <a href="category/homediy/" title="View all posts in Home" rel="category tag">Home</a> |   <a href="2012/01/23/new-shower-curtains/#comments" title="Comment on New Shower Curtains!">4 Comments »</a></p><div id="dropdown4224" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4224&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4224&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4224&#39;), event, menu4224, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4224&#39;))" style="display: none;" id="closelink4224" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4224&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4224">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4224&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/23/new-shower-curtains/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4224&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4224">
</div>
<div class="options">
<div class="info" id="dropinfo4224"></div>
<div class="more"><span class="evenmore" id="evenmore4224"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4224');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;Title=New Shower Curtains!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;Title=New Shower Curtains!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=New Shower Curtains!&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=New Shower Curtains!&amp;bookmark_url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;new_comment=New Shower Curtains!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;t=New Shower Curtains!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=New Shower Curtains!&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=New Shower Curtains!&amp;u=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;t=New Shower Curtains!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=New Shower Curtains!&amp;edit[url]=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=New Shower Curtains!&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;bm_description=New Shower Curtains!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;t=New Shower Curtains!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;T=New Shower Curtains!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;tttl=New Shower Curtains!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=New Shower Curtains!&amp;href=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/23/new-shower-curtains/&amp;title=New Shower Curtains!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=New Shower Curtains!&amp;link_href=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=New Shower Curtains!&amp;url=http://tinychoices.com/2012/01/23/new-shower-curtains/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4224');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4224\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/23/new-shower-curtains/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4224');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4224';
itemobj = document.getElementById(itemid);
var menu4224 = new Array();
menu4224[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4224\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4224'), event, menu4224, '400px', document.getElementById('bookdropbutton4224'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4224\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4224'), event, menu4224, '400px', document.getElementById('bookdropbutton4224'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4220"><a href="2012/01/21/easy-peasy-tip-remake-it/" rel="bookmark" title="Permanent Link to Easy Peasy Tip: Remake It">Easy Peasy Tip: Remake It</a></h2>
	<p><b>By tinychoices</b> | January 21, 2012 </p>
		<div class="postspace2">
	</div>	
					<p>Sometimes by changing something small, we can get a second life out of things we already own:</p>
<ul>
<li>Love the pendant but hate the necklace?  Buy new cord and restring it…</li>
<li>Love the yarn but hate the sweater?  Unravel it, find a pattern you love, and knit up something new…</li>
<li>Perfectly good greens and beans but unimpressive soup?  Cook it down, spice it up, add some tofu and make a new dish…</li>
<li>Don’t need the backyard doghouse any longer?  Take it apart and use the wood to <a href="http://www.composting101.com/building-a-bin-article.html" target="_blank">build a compost bin…</a></li>
<li>Love the fabric but hate the bedspread/blanket/shirt?  Make pillows…</li>
</ul>
<p><strong>Have you remade anything lately?</strong></p>
				<p><b>Topics:</b> <a href="category/easy-tips/" title="View all posts in Easy Peasy Tips" rel="category tag">Easy Peasy Tips</a>, <a href="category/waste/" title="View all posts in Waste" rel="category tag">Waste</a> |   <a href="2012/01/21/easy-peasy-tip-remake-it/#comments" title="Comment on Easy Peasy Tip: Remake It">1 Comment »</a></p><div id="dropdown4220" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4220&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4220&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4220&#39;), event, menu4220, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4220&#39;))" style="display: none;" id="closelink4220" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4220&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4220">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4220&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4220&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4220">
</div>
<div class="options">
<div class="info" id="dropinfo4220"></div>
<div class="more"><span class="evenmore" id="evenmore4220"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4220');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;Title=Easy Peasy Tip: Remake It\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;Title=Easy Peasy Tip: Remake It\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Easy Peasy Tip: Remake It&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Easy Peasy Tip: Remake It&amp;bookmark_url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;new_comment=Easy Peasy Tip: Remake It\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;t=Easy Peasy Tip: Remake It\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Easy Peasy Tip: Remake It&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Easy Peasy Tip: Remake It&amp;u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;t=Easy Peasy Tip: Remake It\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Easy Peasy Tip: Remake It&amp;edit[url]=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Easy Peasy Tip: Remake It&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;bm_description=Easy Peasy Tip: Remake It\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;t=Easy Peasy Tip: Remake It\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;T=Easy Peasy Tip: Remake ItC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;tttl=Easy Peasy Tip: Remake It\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Easy Peasy Tip: Remake It&amp;href=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/&amp;title=Easy Peasy Tip: Remake It\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Easy Peasy Tip: Remake It&amp;link_href=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Easy Peasy Tip: Remake It&amp;url=http://tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4220');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4220\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/21/easy-peasy-tip-remake-it/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4220');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4220';
itemobj = document.getElementById(itemid);
var menu4220 = new Array();
menu4220[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4220\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4220'), event, menu4220, '400px', document.getElementById('bookdropbutton4220'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4220\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4220'), event, menu4220, '400px', document.getElementById('bookdropbutton4220'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4217"><a href="2012/01/20/repurpose-pallet-edition/" rel="bookmark" title="Permanent Link to Repurpose! Pallet edition.">Repurpose! Pallet edition.</a></h2>
	<p><b>By Karina</b> | January 20, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><em><a href="images/pallets.jpg"><img class="alignnone size-full wp-image-4218" style="margin: 10px;" title="SONY DSC" src="images/pallets.jpg" alt="" width="240" height="166"/></a>Instead of happy econews, let’s take a quick internet tour of some interesting repurpose projects. Maybe y’all will find some weekend project inspiration!</em></p>
<p><strong>I love wooden pallets. It turns out they’re good for all kinds of things:</strong></p>
<ul>
<li>Hang them vertically for shallow shelving [here and here]</li>
<li>Stack them for <a href="http://remodelista.com/posts/diy-olabisi-wine-tasting-room-pallet-shelving" target="_blank">wide and deep shelving</a> - perfect for papers or small stacks of things!</li>
<li>Make a shed! or <a href="http://www.tinypallethouse.com/" target="_blank">a tiny house!</a></li>
<li><a href="http://www.homedit.com/21-ways-of-turning-pallets-into-unique-pieces-of-furniture/" target="_blank">So clever</a>: chaise lounges for your yard, rolling tables, benches and desks</li>
<li><a href="https://momandherdrill.blogspot.com/2011/02/wall-reveal.html" target="_blank">An entire wall covered in pallets</a>. It looks amazing!</li>
</ul>
<p><strong>Have you used wooden pallets for anything around your house? What are your favorite examples of pallet repurpose?</strong><em><br/>
</em></p>
<p><em>[[Photo from flickr user <a href="http://www.flickr.com/photos/eclipseawards/5961088833/in/photostream/" target="_blank">Eclipse Awards</a> via creative commons license.]]</em></p>
				<p><b>Topics:</b> <a href="category/repurpose/" title="View all posts in Repurpose!" rel="category tag">Repurpose!</a> |   <a href="2012/01/20/repurpose-pallet-edition/#comments" title="Comment on Repurpose! Pallet edition.">2 Comments »</a></p><div id="dropdown4217" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4217&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4217&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4217&#39;), event, menu4217, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4217&#39;))" style="display: none;" id="closelink4217" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4217&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4217">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4217&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4217&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4217">
</div>
<div class="options">
<div class="info" id="dropinfo4217"></div>
<div class="more"><span class="evenmore" id="evenmore4217"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4217');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;Title=Repurpose! Pallet edition.\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;Title=Repurpose! Pallet edition.\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Repurpose! Pallet edition.&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Repurpose! Pallet edition.&amp;bookmark_url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;new_comment=Repurpose! Pallet edition.\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;t=Repurpose! Pallet edition.\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Repurpose! Pallet edition.&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Repurpose! Pallet edition.&amp;u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;t=Repurpose! Pallet edition.\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Repurpose! Pallet edition.&amp;edit[url]=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Repurpose! Pallet edition.&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;bm_description=Repurpose! Pallet edition.\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;t=Repurpose! Pallet edition.\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;T=Repurpose! Pallet edition.C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;tttl=Repurpose! Pallet edition.\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Repurpose! Pallet edition.&amp;href=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/&amp;title=Repurpose! Pallet edition.\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Repurpose! Pallet edition.&amp;link_href=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Repurpose! Pallet edition.&amp;url=http://tinychoices.com/2012/01/20/repurpose-pallet-edition/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4217');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4217\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/20/repurpose-pallet-edition/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4217');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4217';
itemobj = document.getElementById(itemid);
var menu4217 = new Array();
menu4217[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4217\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4217'), event, menu4217, '400px', document.getElementById('bookdropbutton4217'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4217\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4217'), event, menu4217, '400px', document.getElementById('bookdropbutton4217'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4209"><a href="2012/01/14/easy-peasy-tip-try-a-teleconference/" rel="bookmark" title="Permanent Link to Easy Peasy Tip: Try a teleconference!">Easy Peasy Tip: Try a teleconference!</a></h2>
	<p><b>By Karina</b> | January 14, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/teleconf.jpg"><img class="alignnone size-full wp-image-4210" style="margin: 10px 50px;" title="teleconf" src="images/teleconf.jpg" alt="" width="375" height="234"/></a></p>
<p>These days it can be really hard to collaborate with other people. We all live far away we have busy lives, and lordy, what a lot of gas to drive between places. So if you have to go to a meeting, try collaborating with a teleconference! If you ‘ve got a good group of people, it can be a wonderful experience. It’s easy to set up with free tools like wiggio for conference calls, or skype or google hangouts for video. Not only will you be saving on time and fossil fuels, but you can also have your slippers on, enjoy a cup of hot tea, and even slurp down some dinner while you’re meeting.</p>
<p>Just be warned - the cat WILL jump right in front of the table, the kids WILL scream even more before bed, and you will probably feel shortly after starting the call that maybe you should have taken off your funny hat and puffy vest to be a little more professional. And use the restroom before you start!</p>
<p><em>Photo from Karina’s recent google+ hangout to discuss exciting Cooper Union things!</em></p>
<p><strong>Have you used online collaboration tools? Do you have any favorites? What about hilarious goofy stories during the collaboration?</strong></p>
				<p><b>Topics:</b> <a href="category/easy-tips/" title="View all posts in Easy Peasy Tips" rel="category tag">Easy Peasy Tips</a> |   <a href="2012/01/14/easy-peasy-tip-try-a-teleconference/#comments" title="Comment on Easy Peasy Tip: Try a teleconference!">2 Comments »</a></p><div id="dropdown4209" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4209&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4209&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4209&#39;), event, menu4209, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4209&#39;))" style="display: none;" id="closelink4209" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4209&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4209">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4209&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4209&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4209">
</div>
<div class="options">
<div class="info" id="dropinfo4209"></div>
<div class="more"><span class="evenmore" id="evenmore4209"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4209');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;Title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;Title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Easy Peasy Tip: Try a teleconference!&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Easy Peasy Tip: Try a teleconference!&amp;bookmark_url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;new_comment=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;t=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Easy Peasy Tip: Try a teleconference!&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Easy Peasy Tip: Try a teleconference!&amp;u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;t=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Easy Peasy Tip: Try a teleconference!&amp;edit[url]=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Easy Peasy Tip: Try a teleconference!&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;bm_description=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;t=Easy Peasy Tip: Try a teleconference!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;T=Easy Peasy Tip: Try a teleconference!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;tttl=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Easy Peasy Tip: Try a teleconference!&amp;href=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/&amp;title=Easy Peasy Tip: Try a teleconference!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Easy Peasy Tip: Try a teleconference!&amp;link_href=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Easy Peasy Tip: Try a teleconference!&amp;url=http://tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4209');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4209\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/14/easy-peasy-tip-try-a-teleconference/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4209');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4209';
itemobj = document.getElementById(itemid);
var menu4209 = new Array();
menu4209[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4209\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4209'), event, menu4209, '400px', document.getElementById('bookdropbutton4209'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4209\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4209'), event, menu4209, '400px', document.getElementById('bookdropbutton4209'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4205"><a href="2012/01/13/happy-eco-news-fridays-48/" rel="bookmark" title="Permanent Link to Happy Eco-News Fridays!">Happy Eco-News Fridays!</a></h2>
	<p><b>By tinychoices</b> | January 13, 2012 </p>
		<div class="postspace2">
	</div>	
					<ul>
<li><a href="http://www.treehugger.com/sustainable-product-design/recycled-lighting-allison-patrick-zipper-8.html" target="_blank">Glowing Artichoke Lamps, Made From Recycled Book Pages</a></li>
<li><a href="http://www.treehugger.com/style/can-we-all-join-grandmother-heidemarie-schwermer-living-without-money.html" target="_blank">Can We All Join Grandmother Heidemarie Schwermer in Living Without Money?</a></li>
<li><a href="http://www.mnn.com/food/recipes/stories/recipe-kale-chips" target="_blank">Recipe: Kale chips</a></li>
<li><a href="http://www.mnn.com/your-home/remodeling-design/blogs/thrifting-101-how-to-find-great-furniture" target="_blank">Thrifting 101: How to find great furniture</a></li>
<li><a href="http://www.mnn.com/lifestyle/natural-beauty-fashion/blogs/thrifting-101-how-to-find-the-best-clothes?hpt=hp_bn12" target="_blank">Thrifting 101: How to find the best clothes </a></li>
<li><a href="http://www.treehugger.com/green-architecture/built-stilts-tom-kundigs-sol-duc-cabin.html" target="_blank">Built on Stilts: Tom Kundig’s Sol Duc Cabin</a></li>
<li><a href="html/" target="_blank">Semi-Veganism is Nonsense (But It’s Still a Good Idea)</a></li>
<li>Weekday Vegetarian: Baked Polenta</li>
<li><a href="http://www.treehugger.com/sustainable-product-design/industrial-piping-recycled-into-shelving-stella-bleu.html" target="_blank">Industrial Piping, Recycled Into One of a Kind Shelving</a></li>
<li><a href="http://www.treehugger.com/green-home/tiny-electricity-free-home-nurtures-inner-peace.html" target="_blank">Tiny, Electricity-Free Home Nurtures Inner Peace</a></li>
<li><a href="http://www.mnn.com/health/fitness-well-being/blogs/howard-stern-goes-pescetarian" target="_blank">Howard Stern goes pescetarian</a></li>
</ul>
				<p><b>Topics:</b> <a href="category/happy-eco-news/" title="View all posts in Happy Eco-News" rel="category tag">Happy Eco-News</a> |   <span>Comments Off</span></p><div id="dropdown4205" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4205&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4205&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4205&#39;), event, menu4205, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4205&#39;))" style="display: none;" id="closelink4205" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4205&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4205">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4205&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4205&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4205">
</div>
<div class="options">
<div class="info" id="dropinfo4205"></div>
<div class="more"><span class="evenmore" id="evenmore4205"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4205');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Happy Eco-News Fridays!&amp;bookmark_url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;new_comment=Happy Eco-News Fridays!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Happy Eco-News Fridays!&amp;u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Happy Eco-News Fridays!&amp;edit[url]=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;bm_description=Happy Eco-News Fridays!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;t=Happy Eco-News Fridays!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;T=Happy Eco-News Fridays!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;tttl=Happy Eco-News Fridays!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Happy Eco-News Fridays!&amp;href=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Happy Eco-News Fridays!&amp;link_href=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4205');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4205\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/13/happy-eco-news-fridays-48/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4205');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4205';
itemobj = document.getElementById(itemid);
var menu4205 = new Array();
menu4205[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4205\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4205'), event, menu4205, '400px', document.getElementById('bookdropbutton4205'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4205\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4205'), event, menu4205, '400px', document.getElementById('bookdropbutton4205'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4199"><a href="2012/01/09/palisades-park-commission/" rel="bookmark" title="Permanent Link to Palisades Park Commission">Palisades Park Commission</a></h2>
	<p><b>By Karina</b> | January 9, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/palisadescliffs.jpg"><img class="alignnone size-full wp-image-4201" style="margin: 10px;" title="palisadescliffs" src="images/palisadescliffs.jpg" alt="" width="475" height="356"/></a></p>
<p>We’ve been enjoying the unseasonably warm weather with some nice weekend hikes lately - <a href="2011/12/31/easy-peasy-tip-find-your-nature/" target="_blank">we’ve been finding spots of nature</a> and taking advantage of it wherever we can!. This weekend, we went for a ramble through the Palisades Park - and stumbled upon some ruins called “Millionaires Row” which really piqued our interest. One of the Ringling Brothers used to have a summer home! Giant hotel resorts! There were bunches of big mansions all along the cliffs - until they made the park and knocked them all down.</p>
<p>What’s really interesting is<a href="http://www.nycroads.com/roads/palisades/" target="_blank"> the history of the Palisades Park</a> - after large quarries were found destroying the cliffs of the Palisades citizens and regulators banded together to stop them - lead by women’s clubs.</p>
<blockquote><p>To respond to this threat, the Palisades  Interstate Park Commission (PIPC) was formed in 1900 by the New York and  New Jersey state legislatures “to provide for the selection, location,  appropriation and management of the certain lands along the Palisades of  the Hudson River for an interstate park”. The park stretched along the  cliffs for 14 miles between Fort Lee, New Jersey and Piermont, New York.  The first step in this preservation effort was the acquisition of the  Carpenter Brothers trap rock quarry in Fort Lee, New Jersey for  $132,500, most of which was donated by J.P. Morgan.</p></blockquote>
<p>The Palisades were cobbled together through a bunch of (generally rich) conservationists who bought up land and <a href="http://www.palisadesparksconservancy.org/about/">donated it to the Commission</a>:</p>
<blockquote><p>The unwavering backing of  benefactors has been critical in almost every major Park undertaking  since then: the first 10,000 acres of today’s Harriman State Park were  donated (along with $1 million) by Mary Harriman in 1910; the Palisades  Interstate Parkway became possible when the Rockefeller family, in the  1930s, donated key parcels for the project; dozens of citizens’ groups  raised the funds necessary to purchase High Tor in 1943; Archer  Huntington donated land adjacent to Little Tor the same year; in 1998,  the lands that form Sterling Forest State Park were purchased, in part,  with funds from private land trusts such as Scenic Hudson and the Open  Space Institute; the visitor center at Sterling Forest was completed in  2003 thanks to a generous gift from U.S. Senator Frank R. Lautenberg of  New Jersey.</p></blockquote>
<p>Of course, the Palisades Park was also created, in part, because of the <a href="http://www.nycroads.com/roads/palisades/" target="_blank">Palisades Interstate Parkway</a>. This highway was designed and built by <a href="https://en.wikipedia.org/wiki/Robert_Moses">Robert Moses</a> - who was kind of the highway constructor of rich guys who wanted to get their way by knocking down everything in their path. So as much as the Palisades Interstate Parkway was created with a seed grant of land from John D. Rockefeller (700 acres over a 13 mile stretch of land along the tops of the cliffs) - that was probably acquired through generally acceptable land sales (like this one) — much of the parkway was “paved,” so to speak, with condemnation of properties that people actually didn’t want to turn over. (Like this compelling story of the Elephant house - and this kind of less compelling story of the Riviera. And the families who lived at Cape Fly-Away.)</p>
<p>The Palisades Park is an interesting look into US History - a time when a group of people had kind of the right idea, but then, it was kind of steamrolled through by the “right people,” and if you weren’t with them, you were kicked out. But now we all have access to a beautiful park that celebrates a section of the Hudson River that really shouldn’t be blocked off for the use of those with special access. These days, when issues of <a href="https://en.wikipedia.org/wiki/Kelo_v._City_of_New_London" target="_blank">eminent domain has been bolstered to support the rights of corporations over the individuals</a> - these questions are still present. So not to be a downer, but how do we watch for this kind of thing? How do we make sure that all of the stakeholders are properly represented, and somehow build consensus to protect land and open access to all?</p>
<p><strong>I got no ideas, but I would love to hear some! Do you have any examples of this in your own area?</strong></p>
<p><em>[[Photo from flickr user <a href="http://www.flickr.com/photos/26091994@N00/102644029/in/photostream/" target="_blank">ladymay79</a> via creative commons license.]]</em></p>
				<p><b>Topics:</b> <a href="category/favorite-green-places/" title="View all posts in Favorite Green Places" rel="category tag">Favorite Green Places</a>, <a href="category/transportation/" title="View all posts in Transportation" rel="category tag">Transportation</a> |   <a href="2012/01/09/palisades-park-commission/#comments" title="Comment on Palisades Park Commission">2 Comments »</a></p><div id="dropdown4199" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4199&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4199&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4199&#39;), event, menu4199, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4199&#39;))" style="display: none;" id="closelink4199" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4199&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4199">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4199&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/09/palisades-park-commission/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4199&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4199">
</div>
<div class="options">
<div class="info" id="dropinfo4199"></div>
<div class="more"><span class="evenmore" id="evenmore4199"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4199');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;Title=Palisades Park Commission\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;Title=Palisades Park Commission\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Palisades Park Commission&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Palisades Park Commission&amp;bookmark_url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;new_comment=Palisades Park Commission\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;t=Palisades Park Commission\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Palisades Park Commission&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Palisades Park Commission&amp;u=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;t=Palisades Park Commission\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Palisades Park Commission&amp;edit[url]=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Palisades Park Commission&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;bm_description=Palisades Park Commission\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;t=Palisades Park Commission\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;T=Palisades Park CommissionC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;tttl=Palisades Park Commission\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Palisades Park Commission&amp;href=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/09/palisades-park-commission/&amp;title=Palisades Park Commission\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Palisades Park Commission&amp;link_href=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Palisades Park Commission&amp;url=http://tinychoices.com/2012/01/09/palisades-park-commission/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4199');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4199\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/09/palisades-park-commission/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4199');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4199';
itemobj = document.getElementById(itemid);
var menu4199 = new Array();
menu4199[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4199\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4199'), event, menu4199, '400px', document.getElementById('bookdropbutton4199'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4199\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4199'), event, menu4199, '400px', document.getElementById('bookdropbutton4199'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4195"><a href="2012/01/07/easy-peasy-tip-make-some-soup/" rel="bookmark" title="Permanent Link to Easy Peasy Tip: Make some Soup!">Easy Peasy Tip: Make some Soup!</a></h2>
	<p><b>By Karina</b> | January 7, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/soupcauldron.jpg"><img class="alignnone size-full wp-image-4196" style="margin: 10px;" title="soupcauldron" src="images/soupcauldron.jpg" alt="" width="180" height="240"/></a>During the long cold days of winter, there’s nothing better than a bowl of soup. And soup is one of the most perfect foods - better than <a href="2010/11/22/wintertime-local-foods-and-pickling/" target="_blank">pickles</a> or <a href="2009/07/18/easy-peasy-tip-learn-to-love-cabbage/" target="_blank">cabbage</a>, even! Because it is not only warm and filling, but it can be super affordable to make, and also can use up lots of leftovers and <a href="2009/01/10/easy-peasy-tip-eat-your-pantry/" target="_blank">odds and ends from your pantry</a> and leave you with <a href="2011/11/19/easy-peasy-tip-make-an-extra-big-pot-of-food/" target="_blank">lots of leftovers</a> to put up.</p>
<p>What’s probably best about soup is that you can make a big pot, it will make your kitchen smell delicious, and you can invite people over for a wonderful party. Have someone else bring some bread and another person the salad or dessert, and you’ve got an instant dinner party with friends without making too much mess, fuss, or trouble for any one person. <a href="2011/12/14/my-vegetable-soup/" target="_blank">Take it from Jenn</a> - it’s perfect! And if you’re not sure where to start, Karina highly recommends this delicious and easy curried lentil soup.</p>
<p><strong>Do you have a favorite soup recipe to share? Leave it in the comments!</strong></p>
<p><em>[[Photo from flickr user <a href="http://www.flickr.com/photos/slowping/1463533895/in/photostream/" target="_blank">slowping</a> via creative commons license.]]</em></p>
				<p><b>Topics:</b> <a href="category/easy-tips/" title="View all posts in Easy Peasy Tips" rel="category tag">Easy Peasy Tips</a>, <a href="category/food/" title="View all posts in Food" rel="category tag">Food</a> |   <a href="2012/01/07/easy-peasy-tip-make-some-soup/#comments" title="Comment on Easy Peasy Tip: Make some Soup!">1 Comment »</a></p><div id="dropdown4195" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4195&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4195&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4195&#39;), event, menu4195, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4195&#39;))" style="display: none;" id="closelink4195" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4195&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4195">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4195&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4195&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4195">
</div>
<div class="options">
<div class="info" id="dropinfo4195"></div>
<div class="more"><span class="evenmore" id="evenmore4195"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4195');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;Title=Easy Peasy Tip: Make some Soup!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;Title=Easy Peasy Tip: Make some Soup!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Easy Peasy Tip: Make some Soup!&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Easy Peasy Tip: Make some Soup!&amp;bookmark_url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;new_comment=Easy Peasy Tip: Make some Soup!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;t=Easy Peasy Tip: Make some Soup!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Easy Peasy Tip: Make some Soup!&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Easy Peasy Tip: Make some Soup!&amp;u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;t=Easy Peasy Tip: Make some Soup!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Easy Peasy Tip: Make some Soup!&amp;edit[url]=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Easy Peasy Tip: Make some Soup!&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;bm_description=Easy Peasy Tip: Make some Soup!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;t=Easy Peasy Tip: Make some Soup!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;T=Easy Peasy Tip: Make some Soup!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;tttl=Easy Peasy Tip: Make some Soup!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Easy Peasy Tip: Make some Soup!&amp;href=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/&amp;title=Easy Peasy Tip: Make some Soup!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Easy Peasy Tip: Make some Soup!&amp;link_href=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Easy Peasy Tip: Make some Soup!&amp;url=http://tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4195');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4195\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/07/easy-peasy-tip-make-some-soup/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4195');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4195';
itemobj = document.getElementById(itemid);
var menu4195 = new Array();
menu4195[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4195\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4195'), event, menu4195, '400px', document.getElementById('bookdropbutton4195'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4195\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4195'), event, menu4195, '400px', document.getElementById('bookdropbutton4195'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4192"><a href="2012/01/06/happy-eco-news-fridays-47/" rel="bookmark" title="Permanent Link to Happy Eco-News Fridays!">Happy Eco-News Fridays!</a></h2>
	<p><b>By tinychoices</b> | January 6, 2012 </p>
		<div class="postspace2">
	</div>	
					<ul>
<li><a href="http://www.mnn.com/health/fitness-well-being/blogs/mike-tyson-inspires-alan-cumming-to-go-vegan" target="_blank">Mike Tyson inspires Alan Cumming to go vegan</a></li>
<li>14 Best DIY Gadget Projects of 2011</li>
<li><a href="http://www.mnn.com/lifestyle/recycling/blogs/this-weekend-nyc-celebrates-the-magic-of-mulching" target="_blank">This weekend, NYC celebrates the magic of mulching</a></li>
<li>Why you should run outdoors this winter - and how to enjoy it</li>
<li><a href="http://www.treehugger.com/slideshows/bikes/bike-share-bikes-around-the-world-10-sleekest-designs/" target="_blank">Bike Share Bikes Around the World</a></li>
<li><a href="http://www.treehugger.com/sustainable-product-design/real-life-flintstones-house-lures-tourists-in-portugal.html" target="_blank">Real Life Flintstones House Lures Tourists in Portugal</a></li>
<li><a href="http://www.treehugger.com/clean-technology/diy-solar-powered-cockroach-toy-is-a-perfect-kids-project.html" target="_blank">DIY Solar Powered Cockroach Toy Is A Perfect Kids’ Project</a></li>
<li><a href="http://www.treehugger.com/gadgets/ces-2012-travel-charger-shuts-power-when-your-battery-full.html" target="_blank">Travel Charger Shuts Off Power When Your Battery Is Full</a></li>
<li><a href="http://www.treehugger.com/green-architecture/living-less-229-square-foot-lofts-have-everything-you-need-live.html" target="_blank">Living with Less: 229 square foot lofts have everything you need to live</a></li>
<li><a href="http://www.treehugger.com/culture/should-billboards-be-banned-look-sao-paulo-brazil.html" target="_blank">Should Billboards Be Banned? A Look at São Paulo</a></li>
</ul>
				<p><b>Topics:</b> <a href="category/happy-eco-news/" title="View all posts in Happy Eco-News" rel="category tag">Happy Eco-News</a> |   <span>Comments Off</span></p><div id="dropdown4192" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4192&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4192&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4192&#39;), event, menu4192, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4192&#39;))" style="display: none;" id="closelink4192" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4192&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4192">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4192&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4192&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4192">
</div>
<div class="options">
<div class="info" id="dropinfo4192"></div>
<div class="more"><span class="evenmore" id="evenmore4192"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4192');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Happy Eco-News Fridays!&amp;bookmark_url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;new_comment=Happy Eco-News Fridays!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Happy Eco-News Fridays!&amp;u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Happy Eco-News Fridays!&amp;edit[url]=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;bm_description=Happy Eco-News Fridays!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;t=Happy Eco-News Fridays!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;T=Happy Eco-News Fridays!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;tttl=Happy Eco-News Fridays!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Happy Eco-News Fridays!&amp;href=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Happy Eco-News Fridays!&amp;link_href=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4192');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4192\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/06/happy-eco-news-fridays-47/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4192');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4192';
itemobj = document.getElementById(itemid);
var menu4192 = new Array();
menu4192[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4192\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4192'), event, menu4192, '400px', document.getElementById('bookdropbutton4192'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4192\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4192'), event, menu4192, '400px', document.getElementById('bookdropbutton4192'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4187"><a href="2012/01/04/mexican-water-bottle-gourds/" rel="bookmark" title="Permanent Link to Mexican Water Bottle Gourds">Mexican Water Bottle Gourds</a></h2>
	<p><b>By Jenn (TinyChoices.com)</b> | January 4, 2012 </p>
		<div class="postspace2">
	</div>	
					<p><a href="images/gourdwater.jpg"><img class="alignleft size-full wp-image-4188" style="margin: 10px;" title="gourdwater" src="images/gourdwater.jpg" alt="" width="235" height="176"/></a>It’s been awhile since we’ve had a water bottle post here at Tiny Choices, but some of you may remember that we used to write them fairly often- trying to avoid disposable plastic water bottles meant there was some thought going in to which option worked best for our lifestyles.</p>
<p>Well, I was recently told about a type of water bottle I’d never heard about before- and, talk about being green!  Turns out that the traditional way of carrying water in Mexico is in a “Mexican Water Bottle Gourd” (<em>Lagenaria siceraria)!</em></p>
<p>It’s impossible to get more eco-friendly than these: it’s a gourd.  With a corn-cob stopper.  And if you want to get fancy, a piece of rope tied onto it as a handle.</p>
<p>So while we debate the merits of <a href="2007/08/23/reusable-water-bottles-options/" target="_self">stainless steel</a> vs. <a href="2009/09/08/revealed-sigg-liners-contain-bpa/" target="_self">aluminum</a> vs. <a href="2008/02/05/you-sick-of-bisphenol-a-posts-yet/" target="_self">glass</a>, and worry over the type of paint used in the pretty design, and whether the bottles are made in the US or China… we could all instead be carrying around these awesome gourd water bottles and call it a day.</p>
<p>If you want to DIY one yourself, you can buy a Mexican water bottle gourd online for about $5 and <a href="http://www.ehow.com/how_5372154_make-gourd-canteens.html" target="_blank">make your own canteen</a>… and whittle yourself a corncob stopper after a nice homecooked dinner.</p>
<p>[Image by Mixtec.org]</p>
				<p><b>Topics:</b> <a href="category/food/" title="View all posts in Food" rel="category tag">Food</a>, <a href="category/waste/" title="View all posts in Waste" rel="category tag">Waste</a> |   <a href="2012/01/04/mexican-water-bottle-gourds/#comments" title="Comment on Mexican Water Bottle Gourds">1 Comment »</a></p><div id="dropdown4187" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4187&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4187&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4187&#39;), event, menu4187, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4187&#39;))" style="display: none;" id="closelink4187" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4187&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4187">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4187&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4187&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4187">
</div>
<div class="options">
<div class="info" id="dropinfo4187"></div>
<div class="more"><span class="evenmore" id="evenmore4187"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4187');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;Title=Mexican Water Bottle Gourds\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;Title=Mexican Water Bottle Gourds\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Mexican Water Bottle Gourds&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Mexican Water Bottle Gourds&amp;bookmark_url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;new_comment=Mexican Water Bottle Gourds\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;t=Mexican Water Bottle Gourds\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Mexican Water Bottle Gourds&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Mexican Water Bottle Gourds&amp;u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;t=Mexican Water Bottle Gourds\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Mexican Water Bottle Gourds&amp;edit[url]=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Mexican Water Bottle Gourds&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;bm_description=Mexican Water Bottle Gourds\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;t=Mexican Water Bottle Gourds\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;T=Mexican Water Bottle GourdsC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;tttl=Mexican Water Bottle Gourds\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Mexican Water Bottle Gourds&amp;href=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/&amp;title=Mexican Water Bottle Gourds\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Mexican Water Bottle Gourds&amp;link_href=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Mexican Water Bottle Gourds&amp;url=http://tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4187');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4187\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/04/mexican-water-bottle-gourds/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4187');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4187';
itemobj = document.getElementById(itemid);
var menu4187 = new Array();
menu4187[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4187\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4187'), event, menu4187, '400px', document.getElementById('bookdropbutton4187'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4187\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4187'), event, menu4187, '400px', document.getElementById('bookdropbutton4187'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4182"><a href="2012/01/02/tractor-trailer-aerodynamics/" rel="bookmark" title="Permanent Link to Tractor Trailer Aerodynamics">Tractor Trailer Aerodynamics</a></h2>
	<p><b>By Karina</b> | January 2, 2012 </p>
		<div class="postspace2">
	</div>	
					<p>I drove to Ohio and back again this weekend with my partner and the little dudes to ring in the New Year at Aunt Kate with my partner’s aunts and uncles - and on the way, cruising on Rt 80, there were a few tractor trailers with lots of modifications. I’ve seen many of them before - the <a href="http://www.freightwing.com/gap_fairing.php" target="_blank">gap closures</a> and the <a href="http://www.freightwing.com/aeroflex.php" target="_blank">trailer skirts</a> - but for the first time we saw a trailer with an added back that narrowed down - to smooth the air as it goes around the trailer and to reduce drag.</p>
<p>All of this got me interested in how, exactly, people were improving the efficiency of these tractor trailers.</p>
<p>Apparently, there are four major places where air drag can slow down these vehicles and waste fuel:</p>
<p><a href="images/aero.jpg"><img class="alignnone size-full wp-image-4183" title="aero" src="images/aero.jpg" alt="" width="450" height="130"/></a></p>
<p>So it makes sense to evaluate some simple fixes to improve the drag. And apparently it’s also a USEPA initiative called SmartWay, which is a program to implement, measure, and track the effectiveness of these options, offer grants, and help to sift through the techologies available.</p>
<p>For example, to reduce tractor trailer drag, there are the following options:</p>
<ul>
<li>Trailer Gap Reducer  (should be used with side skirts) - estimated fuel       savings 1 percent or greater;</li>
<li>Trailer Boat Tails (this or the gap reducer should be used with side skirts)       — estimated fuel savings 1 percent or greater;</li>
<li>Trailer Side Skirts (should be used with gap reducer       or boat tail) —      estimated fuel savings 4 percent or greater;</li>
<li>Advanced Trailer End Fairing  (this can be used with or without other       fairings) — estimated fuel savings : 5 percent; and</li>
<li>Advanced Trailer Skirt  (this can be used with or without other fairings)       — estimated fuel savings 5 percent.</li>
</ul>
<p>Some of these fuel efficiencies don’t look like much, but when you consider that over the course of the year, you can save thousands of dollars on fuel costs using these retrofits, it looks a lot better. For the owner-operator of a truck, that might represent profit or needed repair funds where there was little before as they tried to keep up with escalating gas prices. For the fleet owner, that might make the difference between expansion or contraction of their fleet. One manufacturer estimates that the advanced trailer end faring would be paid back in fuel savings in six to twenty-four months.</p>
<p>And you know, even if the environment isn’t the first thing on the minds of the long haul trucker (or fleet owner), moving goods is a necessary in this culture we’ve got, and I’m so excited that these retrofits are available to make this kind of transportation a little greener.</p>
<p><strong>What kind of crazy aerodynamic mods have you seen out there on the road?</strong></p>
<dl>
<dd></dd>
<dd></dd>
</dl>
				<p><b>Topics:</b> <a href="category/transportation/" title="View all posts in Transportation" rel="category tag">Transportation</a> |   <a href="2012/01/02/tractor-trailer-aerodynamics/#comments" title="Comment on Tractor Trailer Aerodynamics">2 Comments »</a></p><div id="dropdown4182" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4182&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4182&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4182&#39;), event, menu4182, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4182&#39;))" style="display: none;" id="closelink4182" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4182&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4182">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4182&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4182&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4182">
</div>
<div class="options">
<div class="info" id="dropinfo4182"></div>
<div class="more"><span class="evenmore" id="evenmore4182"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4182');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;Title=Tractor Trailer Aerodynamics\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;Title=Tractor Trailer Aerodynamics\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Tractor Trailer Aerodynamics&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Tractor Trailer Aerodynamics&amp;bookmark_url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;new_comment=Tractor Trailer Aerodynamics\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;t=Tractor Trailer Aerodynamics\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Tractor Trailer Aerodynamics&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Tractor Trailer Aerodynamics&amp;u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;t=Tractor Trailer Aerodynamics\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Tractor Trailer Aerodynamics&amp;edit[url]=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Tractor Trailer Aerodynamics&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;bm_description=Tractor Trailer Aerodynamics\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;t=Tractor Trailer Aerodynamics\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;T=Tractor Trailer AerodynamicsC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;tttl=Tractor Trailer Aerodynamics\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Tractor Trailer Aerodynamics&amp;href=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/&amp;title=Tractor Trailer Aerodynamics\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Tractor Trailer Aerodynamics&amp;link_href=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Tractor Trailer Aerodynamics&amp;url=http://tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4182');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4182\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2012/01/02/tractor-trailer-aerodynamics/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4182');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4182';
itemobj = document.getElementById(itemid);
var menu4182 = new Array();
menu4182[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4182\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4182'), event, menu4182, '400px', document.getElementById('bookdropbutton4182'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4182\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4182'), event, menu4182, '400px', document.getElementById('bookdropbutton4182'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4179"><a href="2011/12/31/easy-peasy-tip-find-your-nature/" rel="bookmark" title="Permanent Link to Easy Peasy Tip: Find your Nature!">Easy Peasy Tip: Find your Nature!</a></h2>
	<p><b>By tinychoices</b> | December 31, 2011 </p>
		<div class="postspace2">
	</div>	
					<p>This week, take a look around your community and Find your Nature - no, we’re not getting personal here! not YOUR nature. But the nature spot that you have closest to your house. Is there a park you can walk or bicycle to? Is there a small community garden nearby? Do you have a surprise hidden state park that you can go to and hike away the afternoon?</p>
<p>One way to do this easily is to zoom in with Google Maps and use both the map and the aerial photograph to find interesting looking places to investigate.</p>
<p>It’s important to know what kind of great natural resources you have near by because it’s much harder, when you’ve got a hankering for a park, to find something right then and there and head out. If you’ve already got an inventory of awesome spots to go to, it’s a lot easier to get yourself moving to visit and utilize them! Also once you know about them, you’ll be able to volunteer and help out. In the spring there will probably be park clean-up days that you can pitch in at. You’ll get to know your community better, in number of ways.</p>
<p><strong>Do you have natural spaces nearby? Do you get creative in any way?</strong></p>
				<p><b>Topics:</b> <a href="category/easy-tips/" title="View all posts in Easy Peasy Tips" rel="category tag">Easy Peasy Tips</a> |   <a href="2011/12/31/easy-peasy-tip-find-your-nature/#comments" title="Comment on Easy Peasy Tip: Find your Nature!">1 Comment »</a></p><div id="dropdown4179" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4179&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4179&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4179&#39;), event, menu4179, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4179&#39;))" style="display: none;" id="closelink4179" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4179&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4179">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4179&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4179&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4179">
</div>
<div class="options">
<div class="info" id="dropinfo4179"></div>
<div class="more"><span class="evenmore" id="evenmore4179"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4179');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;Title=Easy Peasy Tip: Find your Nature!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;Title=Easy Peasy Tip: Find your Nature!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Easy Peasy Tip: Find your Nature!&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Easy Peasy Tip: Find your Nature!&amp;bookmark_url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;new_comment=Easy Peasy Tip: Find your Nature!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;t=Easy Peasy Tip: Find your Nature!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Easy Peasy Tip: Find your Nature!&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Easy Peasy Tip: Find your Nature!&amp;u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;t=Easy Peasy Tip: Find your Nature!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Easy Peasy Tip: Find your Nature!&amp;edit[url]=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Easy Peasy Tip: Find your Nature!&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;bm_description=Easy Peasy Tip: Find your Nature!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;t=Easy Peasy Tip: Find your Nature!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;T=Easy Peasy Tip: Find your Nature!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;tttl=Easy Peasy Tip: Find your Nature!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Easy Peasy Tip: Find your Nature!&amp;href=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/&amp;title=Easy Peasy Tip: Find your Nature!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Easy Peasy Tip: Find your Nature!&amp;link_href=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Easy Peasy Tip: Find your Nature!&amp;url=http://tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4179');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4179\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2011/12/31/easy-peasy-tip-find-your-nature/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4179');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4179';
itemobj = document.getElementById(itemid);
var menu4179 = new Array();
menu4179[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4179\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4179'), event, menu4179, '400px', document.getElementById('bookdropbutton4179'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4179\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4179'), event, menu4179, '400px', document.getElementById('bookdropbutton4179'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4175"><a href="2011/12/28/bottled-water-making-a-comeback/" rel="bookmark" title="Permanent Link to Bottled Water Making A Comeback?">Bottled Water Making A Comeback?</a></h2>
	<p><b>By Jenn (TinyChoices.com)</b> | December 28, 2011 </p>
		<div class="postspace2">
	</div>	
					<p><img class="alignleft size-full wp-image-4176" style="margin: 10px;" title="waterfaucet" src="images/waterfaucet.jpg" alt="" width="160" height="240"/>Something strange has happened in the past few weeks, and it’s so odd that it’s made me take notice.  While dining in restaurants (which, as you know, <a href="2011/07/19/the-tiny-choices-meal-list-revisited/" target="_self">I do an awful lot</a>) and asking for water to drink, I’m brought a bottle of water instead of a glass of tap water.  Which is very troubling.</p>
<p>For the past few years it seemed like many restaurants were more amenable to serving customers tap water, even though they make a huge markup on selling bottled water.  With all of the environmental pressure against the bottled stuff, I’d noticed that there was less of a hassle getting a plain ol’ glass of water, which I really appreciated.</p>
<p>But now it seems like things may be shifting back to bottled, and I’m wondering why.  My first thought is that since more businesses are struggling to stay afloat in this economy, eateries are trying to make extra dollars any way they can- and refusing to serve tap water and only providing bottled water is one sure-fire way to do just that.</p>
<p>And they’re sneaky about it, too!  Perhaps knowing that some patrons are anti-bottled, the waiter will bring the bottle to the table and crack it open as they approach, leaving me no time to cry, “No!  No bottled water!”  And of course there are times I’m incredibly thirsty and need that water, so it’s either bottled or nothing.  If I can hold out until after dinner I do, but given my history of dehydration sometimes it’s a little difficult to do.</p>
<p>Of course, when this situation has happened recently I’ve talked to the restaurant managers, telling them the <a href="2010/06/08/bottled-water-is-still-everywhere/" target="_self">reasons people prefer tap water and the arguments against bottled water</a>.  They listen politely and I can only hope I’ve helped them to think about this issue in a way that goes beyond the few extra dollars in their pockets.  And it goes without saying that I won’t patronize those restaurants again, and I’ll let the owners know the reason why.</p>
<p><strong>Have you had to make an unexpected eco-decision lately?  How’d it go?</strong></p>
<p>[Image by <a href="http://www.flickr.com/photos/dottiemae/5202454566/" target="_blank">Dottie Mae</a> via Creative Commons]</p>
				<p><b>Topics:</b> <a href="category/food/" title="View all posts in Food" rel="category tag">Food</a>, <a href="category/waste/" title="View all posts in Waste" rel="category tag">Waste</a> |   <a href="2011/12/28/bottled-water-making-a-comeback/#comments" title="Comment on Bottled Water Making A Comeback?">2 Comments »</a></p><div id="dropdown4175" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4175&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4175&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4175&#39;), event, menu4175, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4175&#39;))" style="display: none;" id="closelink4175" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4175&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4175">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4175&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4175&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4175">
</div>
<div class="options">
<div class="info" id="dropinfo4175"></div>
<div class="more"><span class="evenmore" id="evenmore4175"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4175');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;Title=Bottled Water Making A Comeback?\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;Title=Bottled Water Making A Comeback?\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Bottled Water Making A Comeback?&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Bottled Water Making A Comeback?&amp;bookmark_url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;new_comment=Bottled Water Making A Comeback?\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;t=Bottled Water Making A Comeback?\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Bottled Water Making A Comeback?&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Bottled Water Making A Comeback?&amp;u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;t=Bottled Water Making A Comeback?\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Bottled Water Making A Comeback?&amp;edit[url]=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Bottled Water Making A Comeback?&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;bm_description=Bottled Water Making A Comeback?\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;t=Bottled Water Making A Comeback?\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;T=Bottled Water Making A Comeback?C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;tttl=Bottled Water Making A Comeback?\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Bottled Water Making A Comeback?&amp;href=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/&amp;title=Bottled Water Making A Comeback?\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Bottled Water Making A Comeback?&amp;link_href=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Bottled Water Making A Comeback?&amp;url=http://tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4175');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4175\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2011/12/28/bottled-water-making-a-comeback/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4175');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4175';
itemobj = document.getElementById(itemid);
var menu4175 = new Array();
menu4175[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4175\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4175'), event, menu4175, '400px', document.getElementById('bookdropbutton4175'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4175\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4175'), event, menu4175, '400px', document.getElementById('bookdropbutton4175'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4173"><a href="2011/12/23/happy-eco-news-fridays-46/" rel="bookmark" title="Permanent Link to Happy Eco-News Fridays!">Happy Eco-News Fridays!</a></h2>
	<p><b>By tinychoices</b> | December 23, 2011 </p>
		<div class="postspace2">
	</div>	
					<ul>
<li><a href="http://www.grist.org/list/2011-12-21-the-worlds-first-solar-menorah" target="_blank">The world’s first solar menorah</a></li>
<li>Grand Canyon Reconsidering Plastic Water Bottle Ban, Could Be Implemented By Springtime</li>
<li><a href="http://www.treehugger.com/endangered-species/rare-footage-wildlife-thailand-forests-shows-anti-poaching-efforts-work-video.html" target="_blank">Rare Footage of Wildlife in Thailand’s Forests Shows That Anti-Poaching Efforts Work</a> (Video)</li>
<li><a href="http://www.grist.org/list/2011-10-07-this-amazing-off-grid-hobbit-house-cost-less-than-5000-to-build" target="_blank">This amazing off-grid hobbit house cost less than $5,000 to build</a></li>
<li><a href="http://www.treehugger.com/sustainable-product-design/flat-pack-christmas-tree-made-corrugated-cardboard-keeper.html" target="_blank">Flat-Pack Christmas Tree Made of Corrugated Cardboard is a Keeper</a></li>
<li><a href="http://www.grist.org/food/2011-12-21-the-big-apple-takes-a-bite-out-of-childhood-obesity" target="_blank">The Big Apple takes a bite out of childhood obesity</a></li>
<li><a href="http://www.treehugger.com/slideshows/endangered-species/10-fascinating-new-species-discovered-2011/" target="_blank">10 Fascinating New Species Discovered in 2011</a></li>
<li><a href="http://www.treehugger.com/bikes/building-3000-mile-bike-trail-maine-florida.html" target="_blank">Building a 3,000 Mile Bike Trail From Maine to Florida</a></li>
<li><a href="http://www.treehugger.com/renewable-energy/google-ends-2011-with-94-million-solar-power-investment.html" target="_blank">Google Ends 2011 With a $94 Million Investment in Solar Power</a></li>
</ul>
				<p><b>Topics:</b> <a href="category/happy-eco-news/" title="View all posts in Happy Eco-News" rel="category tag">Happy Eco-News</a> |   <span>Comments Off</span></p><div id="dropdown4173" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4173&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4173&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4173&#39;), event, menu4173, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4173&#39;))" style="display: none;" id="closelink4173" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4173&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4173">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4173&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4173&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4173">
</div>
<div class="options">
<div class="info" id="dropinfo4173"></div>
<div class="more"><span class="evenmore" id="evenmore4173"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4173');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;Title=Happy Eco-News Fridays!\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Happy Eco-News Fridays!&amp;bookmark_url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;new_comment=Happy Eco-News Fridays!\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Happy Eco-News Fridays!&amp;u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;t=Happy Eco-News Fridays!\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Happy Eco-News Fridays!&amp;edit[url]=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;bm_description=Happy Eco-News Fridays!\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;t=Happy Eco-News Fridays!\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;T=Happy Eco-News Fridays!C=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;tttl=Happy Eco-News Fridays!\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Happy Eco-News Fridays!&amp;href=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/&amp;title=Happy Eco-News Fridays!\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Happy Eco-News Fridays!&amp;link_href=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Happy Eco-News Fridays!&amp;url=http://tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4173');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4173\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2011/12/23/happy-eco-news-fridays-46/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4173');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4173';
itemobj = document.getElementById(itemid);
var menu4173 = new Array();
menu4173[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4173\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4173'), event, menu4173, '400px', document.getElementById('bookdropbutton4173'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4173\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4173'), event, menu4173, '400px', document.getElementById('bookdropbutton4173'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
				<h2 id="post-4166"><a href="2011/12/21/lighter-impact-vacations/" rel="bookmark" title="Permanent Link to Lighter-Impact Vacations">Lighter-Impact Vacations</a></h2>
	<p><b>By Jenn (TinyChoices.com)</b> | December 21, 2011 </p>
		<div class="postspace2">
	</div>	
					<p><img class="alignleft size-full wp-image-4170" style="margin: 10px;" title="surf board 2" src="images/surfboard.jpg" alt="" width="161" height="240"/>I’m the luckiest duck around- surf trip for the holidays!</p>
<p>But when it comes to being green, outdoor sports can be a tricky thing.  While riding your bike through the woods or hiking along a treeline ridge are close to no-impact activities, all of the bits around the sport itself can sometimes be incredibly impactful.</p>
<p>First, there’s the gear: bikes made in foreign lands, the metal mined to make them, and the shipping involved in getting them to us (not to mention the paints, waxes and plastic bits); clothing made out of “performance fabrics” are mostly made from petroleum, and it turns out, <a href="http://www.grist.org/living/2011-12-07-how-microplastics-cause-macro-problems-for-the-ocean" target="_blank">shed microscopic plastic fibers every time you wash them, which end up in the ocean and on beaches</a> (which is one reason Team Tiny Choices advocates <a href="2010/08/16/wool-for-the-win/" target="_self">wool clothing</a>).  And surfing?  <a href="2010/08/31/surfboard-snowboard-wax-oops/" target="_blank">Petroleum-based sticky wax goes right from my board and into the mouths of fishies</a>.</p>
<p>Then, there’s the arriving: for those lucky enough to live close to their activity of choice their transportation footprint is small, but many of us need to drive (or, worse, fly) to get to the mountain or crag or surf break.  So while enjoying the great outdoors is most certainly a green activity itself, as usual, we humans can make it more impactful than it needs to be.</p>
<p>So, how did I make this trip as green as possible?</p>
<ul>
<li>Instead of renting a car and driving, I took public transportation to get here.  That entailed an overnight bus ride, and then a local city bus to get to my hotel.  And since I didn’t have to fly, I managed to avoid the single most polluting part of many vacations.</li>
<li>I’m hooking up with a group each day, and we all pile in to a large van to drive to the break together. This means fewer cars on the road and less wear and tear on those small winding roads themselves.</li>
<li>I’m renting a surfboard for the week, instead of buying my own.  Since I only generally surf for a total of a few weeks per year, this makes more sense financially and resourcefully.  And trying to travel with a longboard would mean large rental cars instead of buses and taxis, so avoiding this is a fairly significant choice.</li>
<li>I chose a hotel within walking distance of the nearby town, so no taxis needed to get around.</li>
<li>I am drinking local beer!  That counts, right?</li>
</ul>
<p><strong>Have you taken or planned a trip lately?  What considerations did you take to green it up?</strong></p>
				<p><b>Topics:</b> <a href="category/general/" title="View all posts in General" rel="category tag">General</a>, <a href="category/yoga-fitness/" title="View all posts in Yoga &amp; Fitness" rel="category tag">Yoga &amp; Fitness</a> |   <span>Comments Off</span></p><div id="dropdown4166" class="dropcontainer">
<div class="drop" onmouseout="javascript:ShowDescription(this,&#39;dropinfo4166&#39;)">
<div class="dropminioptions">
?
<a href="javascript:void();" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4166&#39;)" onclick="return dropdownmenu(document.getElementById(&#39;bookbutton4166&#39;), event, menu4166, &#39;400px&#39;, document.getElementById(&#39;bookdropbutton4166&#39;))" style="display: none;" id="closelink4166" title="Close">X</a></div>
<ul class="nav">
<li class="selected"><a onmouseover="javascript:ShowDescription(this,&#39;dropinfo4166&#39;)" href="javascript:void(0)" title="Bookmark this post">Bookmarks</a></li>
</ul>
<div class="content">
<div class="bookmarks" id="bookmark4166">
<p><a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4166&#39;)" rel="nofollow" title="Facebook" href="https://www.facebook.com/share.php?u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/"><img alt="Facebook" src="wp-content/plugins/social-dropdown/icons/facebook.png"/></a>
<img alt="Del.icio.us" src="wp-content/plugins/social-dropdown/icons/delicious.png"/>
<img alt="Digg" src="wp-content/plugins/social-dropdown/icons/digg.png"/>
<img alt="BlogLines" src="wp-content/plugins/social-dropdown/icons/bloglines.png"/>
<img alt="Google" src="wp-content/plugins/social-dropdown/icons/google.png"/>
<img alt="Reddit" src="wp-content/plugins/social-dropdown/icons/reddit.png"/>
<img alt="Squidoo" src="wp-content/plugins/social-dropdown/icons/squidoo.png"/>
<img alt="Newsvine" src="wp-content/plugins/social-dropdown/icons/newsvine.png"/>
<a class="link" onmouseover="javascript:ShowDescription(this,&#39;dropinfo4166&#39;)" rel="nofollow" title="SlashDot" href="http://www.slashdot.org/slashdot-it.pl?op=basic&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/"><img alt="SlashDot" src="wp-content/plugins/social-dropdown/icons/slashdot.png"/></a>
<img alt="StumbleUpon" src="wp-content/plugins/social-dropdown/icons/stumbleupon.png"/>
<img alt="Technorati" src="wp-content/plugins/social-dropdown/icons/technorati.png"/>
<img alt="Yahoo" src="wp-content/plugins/social-dropdown/icons/yahoo.png"/>
</p>
</div>
<div class="extrabookmarks" id="extrabookmark4166">
</div>
<div class="options">
<div class="info" id="dropinfo4166"></div>
<div class="more"><span class="evenmore" id="evenmore4166"></span>More »</div>
</div>
</div></div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//To prevent what Google says is hidden content
extrabookmarks = document.getElementById('extrabookmark4166');
extrabookmarks.innerHTML = "<p><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Blinkbits\" href=\"http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;Title=Lighter-Impact Vacations\"><img alt=\"Blinkbits\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinkbits.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"BlinkLists\" href=\"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;Title=Lighter-Impact Vacations\"><img alt=\"BlinkLists\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blinklist.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Blogmarks\" href=\"http://www.blogmarks.net/my/new.php?mini=1&amp;title=Lighter-Impact Vacations&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Blogmarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/blogmarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Buddymarks\" href=\"http://www.buddymarks.com/add_bookmark.php?bookmark_title=Lighter-Impact Vacations&amp;bookmark_url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Buddymarks\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/buddymarks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"BumpZee\" href=\"http://www.bumpzee.com/bump.php?u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"BumpZee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/bumpzee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"CiteULike\" href=\"http://www.citeulike.org/posturl?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"CiteULike\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/citeulike.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Co.mments\" href=\"http://co.mments.com/track?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Co.mments\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/comments.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Diigo\" href=\"http://www.diigo.com/post?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"Diigo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/diigo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Fark\" href=\"http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;new_comment=Lighter-Impact Vacations\"><img alt=\"Fark\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/fark.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Faves\" href=\"http://www.faves.com/Authoring.aspx?u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;t=Lighter-Impact Vacations\"><img alt=\"Faves\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/faves.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Feed Me Links\" href=\"http://www.feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Lighter-Impact Vacations&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Feed Me Links\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/feedmelinks.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Furl\" href=\"http://www.furl.net/storeIt.jsp?t=Lighter-Impact Vacations&amp;u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Furl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/furl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Gravee\" href=\"http://www.gravee.com/account/bookmarkpop?u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;t=Lighter-Impact Vacations\"><img alt=\"Gravee\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/gravee.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Hugg\" href=\"http://www.hugg.com/node/add/storylink?edit[title]=Lighter-Impact Vacations&amp;edit[url]=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Hugg\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/hugg.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Jeqq\" href=\"http://www.jeqq.com/submit.php?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"Jeqq\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/jeqq.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Windows Live\" href=\"http://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-sg&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations&amp;top=0\"><img alt=\"Windows Live\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/live.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Linkagogo\" href=\"http://www.linkagogo.com/go/AddNoPopup?title=Lighter-Impact Vacations&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Linkagogo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/linkagogo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"ma.gnolia\" href=\"http://ma.gnolia.com/bookmarklet/add?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"ma.gnolia\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/magnolia.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Mister Wong\" href=\"http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;bm_description=Lighter-Impact Vacations\"><img alt=\"Mister Wong\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/misterwong.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Netvouz\" href=\"http://www.netvouz.com/action/submitBookmark?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations&amp;popup=no\"><img alt=\"Netvouz\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/netvouz.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"OnlyWire\" href=\"http://www.onlywire.com/b/?u=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;t=Lighter-Impact Vacations\"><img alt=\"OnlyWire\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/onlywire.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Propeller\" href=\"http://www.propeller.com/submit/?U=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;T=Lighter-Impact VacationsC=\"><img alt=\"Propeller\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/propeller.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Rawsugar\" href=\"http://rawsugar.com/home/extensiontagit/?turl=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;tttl=Lighter-Impact Vacations\"><img alt=\"Rawsugar\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rawsugar.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Rojo\" href=\"http://www.rojo.com/add-subscription/?resource=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Rojo\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/rojo.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Simpy\" href=\"http://www.simpy.com/simpy/LinkAdd.do?note=Lighter-Impact Vacations&amp;href=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Simpy\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/simpy.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Sphinn\" href=\"http://www.sphinn.com/submit.php?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"Sphinn\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/sphinn.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Spurl\" href=\"http://www.spurl.net/spurl.php?url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/&amp;title=Lighter-Impact Vacations\"><img alt=\"Spurl\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/spurl.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Tailrank\" href=\"http://www.tailrank.com/share/?title=Lighter-Impact Vacations&amp;link_href=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Tailrank\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tailrank.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Taggly\" href=\"http://www.taggly.com/bookmarks.php/pass?action=add&amp;address=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Taggly\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/taggly.png\" /></a><a class=\"link\" onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" rel=\"nofollow\" title=\"Tagtooga\" href=\"http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&amp;b=fx&amp;title=Lighter-Impact Vacations&amp;url=http://tinychoices.com/2011/12/21/lighter-impact-vacations/\"><img alt=\"Tagtooga\" src=\"http://tinychoices.com/wp-content/plugins/social-dropdown/icons/tagtooga.png\" /></a></p>";
evenmore = document.getElementById('evenmore4166');
evenmore.innerHTML = "<a onmouseover=\"javascript:ShowDescription(this,\'dropinfo4166\')\" href=\"http://www.tevine.com/social/?url=tinychoices.com/2011/12/21/lighter-impact-vacations/\" title=\"Even More Bookmarks\">Even More</a> | ";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var iscallout = false;
closelinkobj = document.getElementById('closelink4166');
closelinkobj.style.display = 'inline';
var itemid = 'dropdown4166';
itemobj = document.getElementById(itemid);
var menu4166 = new Array();
menu4166[0] = itemobj.innerHTML;
itemobj.innerHTML = ''; //clear off to avoid other errors
var droptext = "<p class=\"taskbuttoncontainer\"><span class=\"booktaskbutton\"><a class=\"bookbutton\" id=\"bookbutton4166\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4166'), event, menu4166, '400px', document.getElementById('bookdropbutton4166'))\" onmouseout=\"\" title=\"Bookmarking options\">Bookmark This</a><a class=\"dropdownbutton\" id=\"bookdropbutton4166\" href=\"javascript:void(0);\" onclick=\"return dropdownmenu(document.getElementById('bookbutton4166'), event, menu4166, '400px', document.getElementById('bookdropbutton4166'))\" onmouseout=\"\" title=\"Bookmarking options\">&nbsp;</a></span> </p>";
document.write(droptext);
//--><!]]>
</script>
	<div class="postspace">
	</div>		
		<br/>
                <a href="page/2/">« Previous Entries</a>				
</div>
<div style="text-align:center"><h2>Worth exploring</h2><ul style="list-style:none;padding-left:0"><li><a href="https://www.thistimeimvoting.eu/">Casino Online Non Aams</a></li><li><a href="https://www.face-online.org.uk/">Non Gamstop Casino UK</a></li><li><a href="https://nva.org.uk/">Best Non Gamstop Casinos</a></li><li><a href="https://gdalabel.org.uk/">Non Gamstop Casino Sites UK</a></li><li><a href="https://ethni-formation.com/">Meilleur Casino En Ligne</a></li><li><a href="https://occupylondon.org.uk/">Sports Betting Sites Not On Gamstop UK</a></li><li><a href="https://levelsixstudios.co.uk/">Online Betting Sites Not On Gamstop</a></li><li><a href="https://www.ypdbooks.com/">Non Gamstop Casino UK</a></li><li><a href="https://mindfulnessteachersuk.org.uk/">Slots Not On Gamstop</a></li><li><a href="https://www.wildlifetrust.org.uk/">Sites Not On Gamstop</a></li><li><a href="https://www.instantcasino.com/">Fastest Payout Online Casino</a></li><li><a href="https://energypost.eu/">Casinos Not On Gamstop</a></li><li><a href="https://stallion-theme.co.uk/">Non Gamstop Casinos UK</a></li><li><a href="https://www.wycombewanderers.co.uk/">Casino Sites Not On Gamstop</a></li><li><a href="https://www.unearthedsounds.co.uk/">Non Gamstop Casino UK</a></li><li><a href="https://1828uk.com/casinos-not-on-gamstop/">Casinos Not On Gamstop</a></li><li><a href="https://www.trada.co.uk/">Non Gamstop Casino Sites UK</a></li><li><a href="https://www.wtc2019.com/">Casino Non AAMS</a></li><li><a href="https://www.lindro.it/">Casino Online Non Aams</a></li><li><a href="https://essay-writing-service.co.uk/">Casino Sites Not On Gamstop</a></li><li><a href="https://thegoodhub.com/">Meilleur Casino En Ligne 2025</a></li><li><a href="https://www.fishisthedish.co.uk/non-gamstop-casinos">UK Online Casinos Not On Gamstop</a></li><li><a href="https://www.contextis.co.uk/">Casinos Not On Gamstop</a></li><li><a href="https://whatworks-csc.org.uk/">UK Casinos Not On Gamstop</a></li><li><a href="https://sharengo.it/">Migliori Casino Non Aams</a></li><li><a href="https://www.gmcuk.org/">Uk Sports Betting Sites Not On Gamstop</a></li><li><a href="https://www.cnrm-game.fr/">Crypto Casino</a></li><li><a href="https://www.alloplombiers.com/">Casino En Ligne Belge</a></li><li><a href="https://www.ami2030.eu/">Casino Non Aams Sicuri</a></li><li><a href="https://www.sondages-en-france.fr/">Parier Sur Ufc</a></li><li><a href="https://www.peopleslovie.eu/">українські онлайн казіно</a></li><li><a href="https://www.open-diplomacy.eu/">Meilleur Casino En Ligne 2026</a></li><li><a href="https://degicagames.com/">카지노 사이트</a></li><li><a href="https://www.edmaster.it/">Migliori Siti Scommesse Bitcoin</a></li><li><a href="https://the-drone.com/">Meilleur Casino En Ligne France</a></li><li><a href="https://eafb.fr/">Casino En Ligne Paiement Rapide</a></li><li><a href="https://euregionsweek2020-video.eu/">Nuovi Casino Italiani</a></li><li><a href="https://www.riennevaplus.org/">Nouveaux Casinos En Ligne</a></li><li><a href="https://operazionematogrosso.org/">Casino Italiani Non Aams</a></li><li><a href="https://www.be-wizard.com/">Crypto Casino Italia</a></li><li><a href="https://www.instantsbenevoles.fr/">Site De Casino En Ligne</a></li><li><a href="https://www.destinazionemarche.it/">Casinò Online Non Aams</a></li><li><a href="https://www.milanofoodweek.com/">Casino Nuovi Online</a></li></ul></div><div id="footer">
<script src="https://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2725489-1";
urchinTracker();
</script>
<!-- Please do not delete the credit lines, this theme is released for free under the GNU General Public License (GPL) requiring that the credits must stay intact. Thanks for understanding. -->
		<p><strong>Tiny Choices</strong> is proudly powered by <a href="http://wordpress.org/">WordPress</a> - Designed by <a href="http://refueled.net/">RFDN</a><br/>
		<a href="/">Entries (RSS)</a> and <a href="/">Comments (RSS)</a></p>
		<!-- 29 queries. 0.664 seconds. -->
		<div id="sk2-footer" style="color:#FFF; background-color:#444; padding: 3px 2px 3px 2px; border-top: #888 solid 1px;">This blog is protected by <a href="http://unknowngenius.com/blog/" title="Dave">Dave</a>&#39;s <strong><a href="http://unknowngenius.com/blog/wordpress/spam-karma/" title="SK2">Spam Karma 2</a></strong>: <strong>738949</strong>  Spams eaten and counting...</div><script type="text/javascript">
/* <![CDATA[ */
var pollsL10n = {
	ajax_url: "/",
	text_wait: "Your last request is still being processed. Please wait a while ...",
	text_valid: "Please choose a valid poll answer.",
	text_multiple: "Maximum number of choices allowed: ",
	show_loading: "1",
	show_fading: "1"
};
/* ]]> */
</script>
<script type="text/javascript" src="wp-content/plugins/wp-polls/polls-js_ver-2.50.js"></script>
		</div>
</div><br/>

</body></html>