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(58327,'Set Subjects for 2011-12 season');
news[1] = new newsStory(177304,'Presentation Evening');
news[2] = new newsStory(176506,'Digital Landscape Photography and post Processing Techniques');
news[3] = new newsStory(175596,'Image of the Year 2011');
news[4] = new newsStory(174889,'Print Critique');
news[5] = new newsStory(174559,'Eddie\'s a Winner');
news[6] = new newsStory(174560,'Wigan 10 Fotoclub slide show');
news[7] = new newsStory(172564,'A Dawlish Duo and The Teignmouth Two');
news[8] = new newsStory(171613,'AV Extravaganza');
news[9] = new newsStory(170713,'Second Print Competition');
news[10] = new newsStory(172490,'A 25 Year Career as a Non-professional Photographer');
news[11] = new newsStory(168896,'New Projected Image Competition');
news[12] = new newsStory(168236,'Auction Night');
news[13] = new newsStory(167492,'Annual Panel Competition, 19th January 2011');
news[14] = new newsStory(166591,'Chairman\'s Evening featuring The Wilson Rose Bowl');
news[15] = new newsStory(165684,'X-Factor');
news[16] = new newsStory(57687,'OUR LOCATION.');
news[17] = new newsStory(43774,'THE COMMITTEE.');
news[18] = new newsStory(71509,'CONSTITUTION');
news[19] = new newsStory(43772,'CLUB HISTORY.');
news[20] = new newsStory(43775,'CHILD PROTECTION POLICY');


