var arLinkArray = new Array();
var numItems = 0;


arLinkArray[numItems] = new Array(4);
arLinkArray[numItems][0] = "The Curse of Bigness";
arLinkArray[numItems][1] = "http://www.orionmagazine.org/index.php/articles/article/5329";
arLinkArray[numItems][2] = "by Christopher Ketcham";
arLinkArray[numItems][3] = "A dark journey into the corrosive and counterintuitive ideology of "too big to fail."";
numItems++;

arLinkArray[numItems] = new Array(4);
arLinkArray[numItems][0] = "Resistance Resisters";
arLinkArray[numItems][1] = "http://www.orionmagazine.org/index.php/articles/article/5340";
arLinkArray[numItems][2] = "by Derrick Jensen";
arLinkArray[numItems][3] = "A note to those who still believe that change will come without a fight.";
numItems++;

arLinkArray[numItems] = new Array(4);
arLinkArray[numItems][0] = "Return to the Center of the World";
arLinkArray[numItems][1] = "http://www.orionmagazine.org/index.php/articles/article/5331";
arLinkArray[numItems][2] = "Photographs and Text by Carolyn Drake";
arLinkArray[numItems][3] = "A cautionary tale, inscribed in and along two of Central Asia's most storied rivers. Website exclusive: audio slide show, narrated by the photographer.";
numItems++;

arLinkArray[numItems] = new Array(4);
arLinkArray[numItems][0] = "Cloudy Is the Stuff of Stones";
arLinkArray[numItems][1] = "http://www.orionmagazine.org/index.php/articles/article/5330";
arLinkArray[numItems][2] = "by Anthony Doerr";
arLinkArray[numItems][3] = "Looking into the eyes of pebbles, in search of some immutable truth.";
numItems++;

arLinkArray[numItems] = new Array(4);
arLinkArray[numItems][0] = "Geese Police";
arLinkArray[numItems][1] = "http://www.orionmagazine.org/index.php/articles/article/5315";
arLinkArray[numItems][2] = "by Rachel Graves";
arLinkArray[numItems][3] = "";
numItems++;


;

function showRSSBox() {

document.write('<div style="width: 160px; border: #999 solid 1px; background-color: #fff;">')

document.write('<a href="http://www.orionmagazine.org/" target="new" title="Orion Magazine home"><img src="http://www.orionmagazine.org/i/offsite/RSSbox_160.gif" style="border: 0;" alt="Orion Magazine" /></a>')

for(i=0 ; i<arLinkArray.length ; i++){
				document.write('<div style="margin: 0 10px; font-family: Palatino, Georgia, serif; font-size: 15px;"><a style="color: #663; text-decoration: none;" href="' + arLinkArray[i][1] + '" target="new" title="' + arLinkArray[i][3] + '">' + arLinkArray[i][0] + '</a></div><div style="color: #666; font-family: times,Times,serif; font-size: 11px; text-transform: uppercase; margin:0 10px 10px 10px;">' + arLinkArray[i][2] + '</div>');
			}

document.write('</div>')


}