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(	"Liberté pour les ôtages de Khimki!",
						"Appel &agrave; des Journ&eacute;es d’action internationales pour ...",
						"",
						"",
						"",
						"S1 1:41pm",
						"http://www.anarkismo.net/article/17444");
				stories[1] = new Story(	"¡Cafredrático! Un cuento de terrorismo académico",
						"En las aulas de la Universidad de Georgetown. ...",
						"",
						"",
						"",
						"A20 4:59pm",
						"http://www.anarkismo.net/article/17376");
				stories[2] = new Story(	"La CGT ne tolère pas de personnes d’idéologie néo fasciste en son sein",
						"(10.08.10) LA CGT a d&eacute;tect&eacute; la pr&eacute;sence de plusieu ...",
						"",
						"",
						"",
						"A20 7:27am",
						"http://www.anarkismo.net/article/17371");
				stories[3] = new Story(	"Comisión de acusaciones de La Cámara archivó proceso contra Uribe Vélez, continúa la impunidad",
						"En el d&iacute;a de ayer, 17 de agosto de 2010, la Plenar ...",
						"",
						"",
						"",
						"A18 8:16pm",
						"http://www.anarkismo.net/article/17364");
				stories[4] = new Story(	"[Colombia] La firma",
						"CON EL ZURRIAGAZO A LA CORTE suprema, la adjudicac ...",
						"",
						"",
						"",
						"A12 5:12pm",
						"http://www.anarkismo.net/article/17311");
				stories[5] = new Story(	"El trance del mando indígena de Santos: un ejemplo del país vasallo",
						"Leemos en el diario El Tiempo de Colombia (agosto  ...",
						"",
						"",
						"",
						"A11 5:25pm",
						"http://www.anarkismo.net/article/17303");
				stories[6] = new Story(	"¡El Otoño del Señor P…!",
						"Bogot&aacute;, agosto 4 de 2010&lt;br /&gt;El oto&ntilde;o le lleg&oacute; ent ...",
						"",
						"",
						"",
						"A11 2:45pm",
						"http://www.anarkismo.net/article/17298");
				stories[7] = new Story(	"\"¿Neonazis en CGT para captar obreros ? o el periodismo amarillo de Público\"",
						"&iquest;CU&Aacute;L ES EL OBJETIVO DE LA PUBLICACI&Oacute;N? ...",
						"",
						"",
						"",
						"A11 12:47pm",
						"http://www.anarkismo.net/article/17297");
				stories[8] = new Story(	"CGT No Tolera Personas De Ideología Neofascista En Su Seno",
						"El sindicato CGT aplica tolerancia cero con las pe ...",
						"",
						"",
						"",
						"A10 10:00pm",
						"http://www.anarkismo.net/article/17288");
				stories[9] = new Story(	"Refugiados colombianos en Asturias: Declaración ante la posesión de Juan Manuel Santos",
						"Declaraci&oacute;n de Asturias&lt;br /&gt;“Esta generaci&oacute;n est&aacute;  ...",
						"",
						"",
						"",
						"A10 2:37pm",
						"http://www.anarkismo.net/article/17281");
			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>");
        }