// JavaScript Document

function NewsStory(ID, info){
	this.news_id = ID; 	
	this.info = info;
}

stories = new Array();

//begin_data
stories[0] = new NewsStory(1, '<a href="news_1.html">4Tors Website Now Features Online Newsletter</a> - 5/13/2003')
stories[1] = new NewsStory(6, '<a href="news_6.html">Visit us at the National Coaching conference in Charlotte from Jan. 14th - 17th.</a> - 12/5/2003')
stories[2] = new NewsStory(7, '<a href="news_7.html">NSCAA Coaching Convention Highlights</a> - 1/26/2004')
stories[3] = new NewsStory(8, '<a href="news_8.html">2006 World Cup Ticket ON SALE</a> - 2/9/2005')
stories[4] = new NewsStory(9, '<a href="news_9.html">California Team wins Valtellina Cup Title</a> - 8/5/2005')
stories[5] = new NewsStory(10, '<a href="news_10.html">World Cup ticket Sales re-open</a> - 11/8/2005')
stories[6] = new NewsStory(13, '<a href="news_13.html">Tidal Wave SC takes Dana Cup by Storm</a> - 12/8/2006')
stories[7] = new NewsStory(14, '<a href="news_14.html">4 Tors adds new programs for 2007.</a> - 12/8/2006')
stories[8] = new NewsStory(15, '<a href="news_15.html">Greenwave SC Boys U12, first to enter Donosti Cup</a> - 1/12/2007')
stories[9] = new NewsStory(17, '<a href="news_17.html">Miami Columbus High School set to Travel to The Pacific Northwest in June of 2007</a> - 5/31/2007')
stories[10] = new NewsStory(20, '<a href="news_20.html">Tidal Wave takes home the Dana Cup G-16 Trophy</a> - 8/1/2007')
stories[11] = new NewsStory(43, '<a href="news_43.html">Soccer, kangaroos…and dinner. St Thomas takes home the Kanga Cup Trophy</a> - 8/18/2008')
stories[12] = new NewsStory(50, '<a href="news_50.html">Port Moody Bandits Soccer Club travel to Jamaica </a> - 4/3/2009')
stories[13] = new NewsStory(49, '<a href="news_49.html">Argentinean team travels to Florida for football Tour</a> - 4/4/2009')//end_data

function writeStories(ID){
	document.write('<ul>');
	for(i=0;i<stories.length;i++){
		if(stories[i].news_id!=ID){
			document.write('<li>' + stories[i].info)
		}
	}
	document.write('</ul>');
}

