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(	"[South Africa] Eskom: Time to Support Appropriation from Below",
						"For as long as Eskom continues to see public utili ...",
						"",
						"",
						"",
						"F5 1:25pm",
						"http://www.anarkismo.net/article/15758");
				stories[1] = new Story(	"Mine occupations in South Africa",
						"The artcile looks at two recent mine occupations i ...",
						"",
						"",
						"",
						"F4 8:43am",
						"http://www.anarkismo.net/article/15744");
				stories[2] = new Story(	"Far funzionare i Mondiali del 2010 a favore della classe povera e lavoratrice",
						"Volantino&lt;br /&gt;Testo di un volantino distribuito da mil ...",
						"",
						"",
						"",
						"J28 1:23pm",
						"http://www.anarkismo.net/article/15685");
				stories[3] = new Story(	"&#915;&#953;&#945; &#964;&#959;&#965;&#962; &#966;&#964;&#969;&#967;&#959;&#973;&#962; &#954;&#945;&#953; &#964;&#951;&#957; &#949;&#961;&#947;&#945;&#964;&#953;&#954;&#942; &#964;&#940;&#958;&#951;...",
						"...&amp;#964;&amp;#959; &amp;#928;&amp;#945;&amp;#947;&amp;#954;&amp;#972;&amp;#96 ...",
						"",
						"",
						"",
						"J28 11:35am",
						"http://www.anarkismo.net/article/15683");
				stories[4] = new Story(	"Faire travailler la Coupe du monde 2010 pour les classes populaires et ouvrières",
						"Le tract suivant a &eacute;t&eacute; distribu&eacute; par les membres d ...",
						"",
						"",
						"",
						"J28 3:01am",
						"http://www.anarkismo.net/article/15680");
				stories[5] = new Story(	"South Africa: A Tool to Understand the way Things Are and the Way Things Change",
						"Statement from the Unemployed People\'s Movement&lt;br /&gt;A  ...",
						"",
						"",
						"",
						"J27 10:29am",
						"http://www.anarkismo.net/article/15668");
				stories[6] = new Story(	"Making the 2010 World Cup work for the poor and working class",
						"The following leaflet was distributed by members o ...",
						"",
						"",
						"",
						"J26 4:13pm",
						"http://www.anarkismo.net/article/15661");
				stories[7] = new Story(	"South Africa: Shack Dwellers Strike at National Print, Pinetown",
						"Press Statement 25 January 2009&lt;br /&gt;150 contract worke ...",
						"",
						"",
						"",
						"J25 11:39am",
						"http://www.anarkismo.net/article/15641");
				stories[8] = new Story(	"South Africa: \"Struggle Continues\" newsletter available in PDF",
						"The November 2009 issue of &quot;Struggle Continues&quot;, t ...",
						"",
						"",
						"",
						"J22 4:46pm",
						"http://www.anarkismo.net/article/15619");
				stories[9] = new Story(	"South Africa: APF & EarthLife Activists Assaulted & Arrested",
						"Press Alert  Thursday, 21st January: 14:30&lt;br /&gt;This mo ...",
						"",
						"",
						"",
						"J22 3:32pm",
						"http://www.anarkismo.net/article/15618");
			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>");
        }