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(	"Report from 40th anniversary of Bloody Sunday March",
						"Despite the opposition of the governing SInn Fein  ...",
						"Ireland / Britain",
						"Community struggles",
						"News Report",
						"F2 5:56pm",
						"http://www.anarkismo.net/article/21868");
				stories[1] = new Story(	"Ongoing resistance to Shell in Erris Co Mayo, Ireland in January 2012",
						"The latest action report from protestors engaged i ...",
						"Ireland / Britain",
						"Community struggles",
						"Other libertarian press",
						"F2 5:41pm",
						"http://www.anarkismo.net/article/21867");
				stories[2] = new Story(	"Why American \'democracy promotion\' rings hollow in the Middle East",
						"Egypt\'s crackdown on Republican and Democratic org ...",
						"International",
						"Imperialism / War",
						"Non-anarchist press",
						"F1 9:33pm",
						"http://www.anarkismo.net/article/21860");
				stories[3] = new Story(	"Oaxaca: David Venegas Reyes freed!",
						"Yesterday afternoon, David Venegas Reyes, a member ...",
						"North America / Mexico",
						"Repression / prisoners",
						"News Report",
						"F1 8:42pm",
						"http://www.anarkismo.net/article/21859");
				stories[4] = new Story(	"Interview with Alan MacSimóin of the Irish Anarchist History Archive",
						"Alan MacSim&oacute;in talks to the KSL about the new onli ...",
						"Ireland / Britain",
						"History of anarchism",
						"Interview",
						"F1 4:58pm",
						"http://www.anarkismo.net/article/21855");
				stories[5] = new Story(	"New publication: \"Free Society : A German exile in revolutionary Spain\" by Werner Droescher",
						"New publication from the Kate Sharpley Library&lt;br /&gt;&lt;br /&gt; ...",
						"Iberia",
						"History of anarchism",
						"Review",
						"F1 4:55pm",
						"http://www.anarkismo.net/article/21854");
				stories[6] = new Story(	"Amandla! Ngawethu!",
						"Disclaimer: These are some impressions of life, po ...",
						"Southern Africa",
						"Miscellaneous",
						"Other libertarian press",
						"F1 2:29pm",
						"http://www.anarkismo.net/article/21852");
				stories[7] = new Story(	"Putting the record straight on Mikhail Bakunin (1976)",
						"This text was a translation from the French, and w ...",
						"International",
						"Anarchist movement",
						"Opinion / Analysis",
						"F1 12:45am",
						"http://www.anarkismo.net/article/21843");
				stories[8] = new Story(	"Palestine-Israel, The only sure thing about the joint struggle is the Tsumud (Persistence)",
						"Both the Palestinians and the anarchists against t ...",
						"Mashriq / Arabia / Iraq",
						"Community struggles",
						"News Report",
						"F1 12:35am",
						"http://www.anarkismo.net/article/21842");
				stories[9] = new Story(	"Interview with José Antonio Gutiérrez by the Kurdish News Agency Rojhelat",
						"Rojhelat: We have interviewed Mr. Jos&eacute; Antonio Gut ...",
						"Greece / Turkey / Cyprus",
						"Imperialism / War",
						"Interview",
						"J31 7:40pm",
						"http://www.anarkismo.net/article/21839");
			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("Anarkismo");
	    	document.write("</th></tr>");
            	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>");
        }
