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(29775,'CANVAS PRINTS ---- NEW');
news[1] = new newsStory(87765,'CAMERA CLUB PHOTOGRAPHIC SEMINARS');
news[2] = new newsStory(72668,'<strong>ONE DAY PHOTOGRAPHIC COURSES WITH CHRIS. 1-to-1</strong>');
news[3] = new newsStory(200566,'<strong>ONE DAY PHOTOGRAPHIC COURSES - SMALL GROUP (max 4 people)</strong>');
news[4] = new newsStory(72671,'<strong>2 NIGHT/3 DAY RESIDENTIAL COURSES ON THE YORKSHIRE COAST</strong>');
news[5] = new newsStory(72672,'<strong>2 NIGHT/3 DAY RESIDENTIAL COURSES IN THE BEAUTIFUL LAKE DISTRICT</strong>');
news[6] = new newsStory(188862,'<strong>7 DAY RESIDENTIAL PHOTO WORKSHOP ON THE ISLE OF SKYE </strong>');
news[7] = new newsStory(72675,'<strong>ONE DAY BEGINNERS WORKSHOPS AT CASTLE HOWARD. Group days</strong>');


