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(	"“Third world scenes” among Australian Aborigines",
						"&quot;In the heart of this first world I found scen ...",
						"International",
						"Rights and Freedoms",
						"Other Press",
						"N20 11:37pm",
						"http://www.indymedia.ie/article/94859");
				stories[1] = new Story(	"Narrative Arts Club: Adventures and Misadventures",
						"Dublin\'s most innovative storytelling club welcome ...",
						"Dublin",
						"Arts and Media",
						"Event Notice",
						"N20 8:43pm",
						"http://www.indymedia.ie/article/94858");
				stories[2] = new Story(	"Scéalaíocht le Máirín Mhic Lochlainn cois tine i gClub na nGael",
						"Seansc&eacute;alta traidisi&uacute;nta &oacute; Chonamara&lt;br /&gt; Sc&eacute;ala&iacute;ocht  ...",
						"Galway",
						"Arts and Media",
						"Event Notice",
						"N20 8:33pm",
						"http://www.indymedia.ie/article/94857");
				stories[3] = new Story(	"Fur Free Friday Protests",
						"Hi,&lt;br /&gt;&lt;br /&gt;We\'ll be having 3 protests on 27th Nov., as p ...",
						"Dublin",
						"Animal Rights",
						"Event Notice",
						"N20 8:22pm",
						"http://www.indymedia.ie/article/94856");
				stories[4] = new Story(	"Bolivian Peasant leader comes to Ireland to demand IRMS investigation",
						"A leader of the Bolivian Confederation of Peasant  ...",
						"Mayo",
						"Environment",
						"News Report",
						"N20 4:29pm",
						"http://www.indymedia.ie/article/94855");
				stories[5] = new Story(	"NUJ  Condemns UK Police Indymedia Server Seizure",
						"The national Union of Journalists have voted to su ...",
						"International",
						"Arts and Media",
						"News Report",
						"N20 4:03pm",
						"http://www.indymedia.ie/article/94854");
				stories[6] = new Story(	"Fingal Community TV (FCTV) Begins Production with ‘The Q’",
						"FCTV is a new station for the Fingal area that is  ...",
						"Dublin",
						"Arts and Media",
						"News Report",
						"N20 3:24pm",
						"http://www.indymedia.ie/article/94853");
				stories[7] = new Story(	"SWP member and CWU president  Jane Loftus votes for sell-out of postal workers strike",
						"Dave Isaacson criicises leading SWP members who ha ...",
						"International",
						"Workers Issues",
						"Other Press",
						"N20 12:13pm",
						"http://www.indymedia.ie/article/94852");
				stories[8] = new Story(	"Response to Obama Statement \"Guantanamo will not close by January 2010\"",
						"Justice Delayed, Justice Denied&lt;br /&gt;Witness Against To ...",
						"International",
						"Rights and Freedoms",
						"Press Release",
						"N20 10:04am",
						"http://www.indymedia.ie/article/94851");
				stories[9] = new Story(	"11am today, Bolivian citizens request Irish Government to investigate Irish security firm, IRMS",
						"Bolivian citizens request Irish Government to inve ...",
						"Dublin",
						"Crime and Justice",
						"Event Notice",
						"N20 9:47am",
						"http://www.indymedia.ie/article/94850");
			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("Indymedia Ireland");
	    	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>");
        }