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(212761,'ACTIVE DARTMOOR WEEK');
news[1] = new newsStory(212762,'Amanda joins Moorland Guides');
news[2] = new newsStory(202292,'The Art of Walking : Walking as Art');
news[3] = new newsStory(199726,'Green Entrepreneurship in Action  ');
news[4] = new newsStory(184088,'British Art Show Fringe Exhibition');
news[5] = new newsStory(184087,'Open Studio ');
news[6] = new newsStory(184086,'Art Exhibition Opening Duchy Square');
news[7] = new newsStory(177214,'Creative Women Do Business  ');
news[8] = new newsStory(147532,'Working Landscapes');
news[9] = new newsStory(129295,'FREE Eco Taster Workshops');
news[10] = new newsStory(122548,'ART, ECOLOGY AND ECONOMY ');
news[11] = new newsStory(122540,'C WORDS at Arnolfini');
news[12] = new newsStory(174784,'Curriculum Vitae');
news[13] = new newsStory(66253,'Devon Open Studios 08');
news[14] = new newsStory(202293,'One-to-One and Group Tutorials');
news[15] = new newsStory(174785,'Research Reading');
news[16] = new newsStory(95246,'A Peripatetic Investigation of Place');
news[17] = new newsStory(202295,'Demonstrations');
news[18] = new newsStory(56766,'Community of Ivybridge Project');
news[19] = new newsStory(202299,'Work Placement');
news[20] = new newsStory(110445,' Junk Sculpture of the River Erme');
news[21] = new newsStory(111790,'How green is Erme Valley? Two Moors Festival');
news[22] = new newsStory(102047,'Eco-Erme Primary School!');
news[23] = new newsStory(95254,'Princetown to Ivybridge with Ivybridge Walking Club');
news[24] = new newsStory(129289,'Ivybridge to Mothercombe Walk 1st May');
news[25] = new newsStory(97975,'Earth Walk in the Ivybridge Festival');


