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(	"Consternados, rabiosos",
						"“As&iacute; estamos.&lt;br /&gt;Consternados. Rabiosos.&lt;br /&gt;Aunque esta  ...",
						"",
						"",
						"",
						"A31 2:05pm",
						"http://www.anarkismo.net/article/17441");
				stories[1] = new Story(	"Francia - Contro le politiche razziste di Stato: solidarietà!",
						"Campagne antiRom, limitazioni della nazionalit&agrave; fr ...",
						"",
						"",
						"",
						"A29 5:51pm",
						"http://www.anarkismo.net/article/17433");
				stories[2] = new Story(	"\'Ground Zero Mosque\' Controversy: America\'s Dreyfus Affair?",
						"Sometimes public policy disputes become transforme ...",
						"",
						"",
						"",
						"A25 9:31pm",
						"http://www.anarkismo.net/article/17414");
				stories[3] = new Story(	"Contre la politique du racisme d’Etat : solidarité !",
						"Campagne antiRoms, d&eacute;ch&eacute;ance de la nationalit&eacute; fra ...",
						"",
						"",
						"",
						"A22 4:03am",
						"http://www.anarkismo.net/article/17382");
				stories[4] = new Story(	"Hablan los rumanos y los nómadas de Francia",
						"Alternative Libertaire presenta una serie de v&iacute;deo ...",
						"",
						"",
						"",
						"A15 3:39pm",
						"http://www.anarkismo.net/article/17285");
				stories[5] = new Story(	"Een oplossing: vrijheid van beweging voor immigranten",
						"Internationale campagne van Europese organisaties  ...",
						"",
						"",
						"",
						"A3 11:31pm",
						"http://www.anarkismo.net/article/17231");
				stories[6] = new Story(	"Une solution : la liberté de circulation pour les migrant-e-s",
						"Une campagne internationale des organisations euro ...",
						"",
						"",
						"",
						"A2 11:33am",
						"http://www.anarkismo.net/article/17115");
				stories[7] = new Story(	"&#924;&#953;&#945; &#951; &#955;&#973;&#963;&#951;: &#949;&#955;&#949;&#973;&#952;&#949;&#961;&#951; &#954;&#965;&#954;&#955;&#959;&#966;&#959;&#961;&#943;&#945; &#964;&#969;&#957; &#956;&#949;&#964;&#945;&#957;&#945;&#963;&#964;&#974;&#957;",
						"&amp;#916;&amp;#953;&amp;#949;&amp;#952;&amp;#957;&amp;#942;&amp;#962; &amp;#949;&amp; ...",
						"",
						"",
						"",
						"J31 2:18pm",
						"http://www.anarkismo.net/article/17205");
				stories[8] = new Story(	"Svobodu pohybu pro imigranty",
						"Prohl&aacute;šen&iacute; evropsk&yacute;ch organizac&iacute; na s&iacute;ti Anarkismo ...",
						"",
						"",
						"",
						"J29 4:57pm",
						"http://www.anarkismo.net/article/17189");
				stories[9] = new Story(	"Bevegelses frihet for migranter",
						"Fulle rettigheter for papirl&oslash;se arbeidere&lt;br /&gt;I de sis ...",
						"",
						"",
						"",
						"J26 1:09pm",
						"http://www.anarkismo.net/article/17159");
			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>");
        }