function newsStory(id,headline) {
	this.id = id;
	this.headline = headline;
}

function nextNews(newsID) {

	for (j = 0; j < news.length; j++) {
		if (news[j].id == newsID) {
			break;
		}
	}
	if (j + 1 < news.length ) {
		window.location = 'news_' + news[j + 1].id + '.html';
	}
	else {
		alert('No more stories');
	}
}

function ShowNewsLinks(newsID) {
		
	
	if (!basic) {
		for (j = 0; j < news.length; j++) {  
			if (news[j].id == newsID) {  
				break;
			}
		}
		if (j == (news.length -1)) {   
			document.all.nextlink.style.visibility = 'hidden';
		}
		
	}
}


var news = new Array();
news[0] = new newsStory(169470,'I\'m a writer.');
news[1] = new newsStory(169466,'Internet Disconnection');
news[2] = new newsStory(169460,'Half-year School Break');
news[3] = new newsStory(155635,'Storm damages New Classroom');
news[4] = new newsStory(141680,'Street Children');
news[5] = new newsStory(141679,'Support');
news[6] = new newsStory(141675,'They say this is the romantic age...');
news[7] = new newsStory(141672,'Jenny\'s Pea Snack');
news[8] = new newsStory(141275,'URGENT: This child needs a sponsor!  Can you help?');
news[9] = new newsStory(139304,'Making magic happen: books for Ethiopian children');
news[10] = new newsStory(139299,'Gedelitu gives birth: it\'s a girl!');
news[11] = new newsStory(139279,'Child Sponsorship');
news[12] = new newsStory(139087,'Kate helps Cancer Victim');
news[13] = new newsStory(139084,'School Construction Underway');
news[14] = new newsStory(139098,'UK Charity supports Empress Mentewab School');
news[15] = new newsStory(136584,'Happiness is the Way');
news[16] = new newsStory(141692,'Medical check-ups for registered schoolchildren');
news[17] = new newsStory(131093,'\"A good writer always works at the impossible.\"');
news[18] = new newsStory(129956,'School Registration Day');
news[19] = new newsStory(124858,'The thrill of launching into a new field of study...');
news[20] = new newsStory(122303,'Primate Rescue: Bonk and Leoul');
news[21] = new newsStory(124554,'School Building Work Begins');
news[22] = new newsStory(122296,'To support Sebkana Farm...');
news[23] = new newsStory(122294,'To support Empress Mentewab School...');
news[24] = new newsStory(122588,'Blind Donkey Rescue: Gedelitu');
news[25] = new newsStory(121948,'Empress Mentewab School links with Welsh School');
news[26] = new newsStory(121940,'To cover the school fees for a poor child...');
news[27] = new newsStory(122601,'Tara Centre Closure');
news[28] = new newsStory(122299,'Triple Whammy');
news[29] = new newsStory(122293,'Cancer Donkey Rescue: Chilot');
news[30] = new newsStory(122280,'Feseha Gebru');
news[31] = new newsStory(77108,'Vets at Work');
news[32] = new newsStory(77107,'Days to Remember');
news[33] = new newsStory(77105,'Play Equipment');
news[34] = new newsStory(77104,'Animal Birth Control');
news[35] = new newsStory(52109,'What Kate needs for Empress Mentewab School...');
news[36] = new newsStory(52108,'What Kate needs for the office...');
news[37] = new newsStory(52107,'To make a financial donation to support Kate\'s work...');
news[38] = new newsStory(52113,'What Kate needs for the veterinary clinic...');
news[39] = new newsStory(52115,'Special Appeal 2010: 58 Days to Remember');
news[40] = new newsStory(97885,'Animal Rescue: Monkey and Baboon Rescue and Release to the Wild');
news[41] = new newsStory(141842,'More than 1,000 Dogs in Gondar City');
news[42] = new newsStory(40701,'My New Face');
news[43] = new newsStory(141697,'Dusty');
news[44] = new newsStory(141696,'Megal');
news[45] = new newsStory(40103,'Where is the school located?');
news[46] = new newsStory(40220,'How is a child selected to join the school?');
news[47] = new newsStory(40219,'How many children attend the school?');
news[48] = new newsStory(40221,'Are there school fees?');
news[49] = new newsStory(55296,'Do the children go on educational outings?');
news[50] = new newsStory(169455,'How is the school organised?');
news[51] = new newsStory(40223,'Can I send books and toys to the school?');


