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(209821,'<strong>WHERE TO GO FOR A GOOD PICTURE!</strong>');
news[1] = new newsStory(203252,'<strong>ADDING DATA TO IMAGES</strong>');
news[2] = new newsStory(196602,'<strong>JANET, ALEX AND RAY - TOP IMAGE MAKERS 2011</strong>');
news[3] = new newsStory(196600,'<strong>RBCC COMPETITION RULES</strong>');
news[4] = new newsStory(203102,'<strong>DATES FOR 2012</strong>');
news[5] = new newsStory(196601,'<strong>IMAGE SIZE</strong>');
news[6] = new newsStory(196603,'<strong>EXTERNAL COMPETITIONS</strong>');
news[7] = new newsStory(196593,'<strong>ABOUT US</strong>');
news[8] = new newsStory(75965,'<strong>MAP & DIRECTIONS</strong><br>');
news[9] = new newsStory(15849,'<strong>PROGRAMME JAN/FEB</strong>');
news[10] = new newsStory(203251,'<strong>THIS MONTH\'S NEWSLETTER</strong>');
news[11] = new newsStory(196595,'<strong>SUBSCRIPTIONS</strong>');
news[12] = new newsStory(196611,'<strong>PRESIDENT\'S COLUMN</strong>');
news[13] = new newsStory(196615,'<strong>THE COMMITTEE</strong>');
news[14] = new newsStory(196607,'<strong>WHICH ORGANISATION?</strong>');
news[15] = new newsStory(115461,'<strong>LETTERS & DISTINCTIONS</strong>');


