function writeLink()
	{
		document.write("<a href='"+this.url+"' title='"+this.summary+". "+this.region+"-"+this.topic+"-"+this.type+"'>"+this.title+"</a> <small><i>"+this.time+"</i></small>");
	}
	function Story(title,summary,region,topic,type,time,url,imageTags)
	{
		this.title=title;
		this.summary=summary;
		this.region=region;
		this.topic=topic;
		this.type=type;
		this.time=time;
		this.url=url;
		this.writeLink=writeLink;
	}
	stories = new Array(10);
			stories[0] = new Story(	"No Olympics on Stolen Native Land Speaking Tour",
						"As you may be aware, in February 2010, Vancouver ( ...",
						"",
						"",
						"",
						"N3 8:45am",
						"http://www.anarkismo.net/article/14885");
				stories[1] = new Story(	"Solidaridad con Peru en Miami",
						"Aproximadamente veinte personas se reunieron en la ...",
						"",
						"",
						"",
						"J9 5:14am",
						"http://www.anarkismo.net/article/13689");
				stories[2] = new Story(	"Report back on Peru Solidarity Action",
						"Miami Autonomy and Solidarity took part in a solid ...",
						"",
						"",
						"",
						"J9 5:12am",
						"http://www.anarkismo.net/article/13688");
				stories[3] = new Story(	"Protestare contro la repressione dello Stato del Chiapas, Messico",
						"Altri otto attivisti sono stati illegalmente impri ...",
						"",
						"",
						"",
						"M12 3:57pm",
						"http://www.anarkismo.net/article/13050");
				stories[4] = new Story(	"Alcen la voz contra las represiones del Estado de Chiapas, México",
						"Les escribimos para solicitar un fuerte apoyo de s ...",
						"",
						"",
						"",
						"M6 12:19am",
						"http://www.anarkismo.net/article/12985");
				stories[5] = new Story(	"Raise your voices against repressions by the state of Chiapas, Mexico",
						"8 other campaign activists have been unjustly and  ...",
						"",
						"",
						"",
						"M5 8:03pm",
						"http://www.anarkismo.net/article/12984");
				stories[6] = new Story(	"&#921;&#963;&#964;&#959;&#961;&#943;&#949;&#962; &#947;&#953;&#945; &#964;&#959;&#965;&#962; &#945;&#957;&#952;&#961;&#974;&#960;&#959;&#965;&#962; &#964;&#959;&#965; &#954;&#945;&#955;&#945;&#956;&#960;&#959;&#954;&#953;&#959;&#973;",
						"&amp;#925;&amp;#941;&amp;#959; &amp;#946;&amp;#953;&amp;#946;&amp;#955;&amp;#943;&amp; ...",
						"",
						"",
						"",
						"A12 1:30pm",
						"http://www.anarkismo.net/article/12702");
				stories[7] = new Story(	"Zapotec Indigenous People in Mexico Demand Transparency from U.S. Scholar",
						"By Saulo Araujo&lt;br /&gt;January 22nd, 2009&lt;br /&gt;&lt;br /&gt;The Union of O ...",
						"",
						"",
						"",
						"J28 10:16pm",
						"http://www.anarkismo.net/article/11639");
				stories[8] = new Story(	"New Documentary on Oaxaca - \"From the Edge of the Blade\"",
						"&quot;From the Edge of the Blade&quot; tells the story about ...",
						"",
						"",
						"",
						"S16 1:50am",
						"http://www.anarkismo.net/article/9880");
				stories[9] = new Story(	"Residential School Apology",
						"an Anarchist View&lt;br /&gt;Residential schools, as part of  ...",
						"",
						"",
						"",
						"A19 8:03pm",
						"http://www.anarkismo.net/article/9658");
			function writeStoryMarquee(width, height, direction, style)
	{
		document.write("<marquee onMouseOver='stop()' onMouseOut='start()'");
		if(style!=null) document.write(" style='"+style+"'");
		if(width!=null) document.write(" width='"+width+"'");
		if(height!=null) document.write(" height='"+height+"'");
		if(direction!=null) document.write(" direction='"+direction+"'");
		document.write(">");
		for(i=0;i<stories.length;i++)
		{
			stories[i].writeLink();
			if(direction=="up" || direction=="down") document.write("<br><br>");
			else document.write("&nbsp;&nbsp;&nbsp;");
		}
		document.write("</marquee>");
	}
	function writeStoryTable(width, height, align, style)
	{
        	document.write("<table ");		
        	if(style!=null) document.write(" style='"+style+"'");		
        	if(width!=null) document.write(" width='"+width+"'");		
        	if(height!=null) document.write(" height='"+height+"'");		
        	if(align!=null) document.write(" align='"+align+"'");		
        	document.write(">");		
            	document.write("<tr><th>");			
            	document.write(" /  / ");
	    	document.write("</th></tr>");
        	for(i=0;i<stories.length;i++)		
        	{			
            		document.write("<tr><td>");			
            		stories[i].writeLink();
	    		document.write("</td></tr>");
        	}
		document.write("</table>");
        }