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(184386,'GREETING CARDS AND CALENDARS old');
news[1] = new newsStory(158817,'<strong>CURRENT</strong> Oriel Ty Coch');
news[2] = new newsStory(123659,'<strong>Glaciers and Icebergs in New Zealand.</strong>');
news[3] = new newsStory(187783,'<strong>CURRENT</strong> Llantarnam Grange Arts Centre');
news[4] = new newsStory(183808,'Snowdon');
news[5] = new newsStory(168525,'<strong>Mt. Cook</strong>');
news[6] = new newsStory(96768,'<strong>CURRENT</strong> Off the Wall ');
news[7] = new newsStory(201975,'<strong>CURRENT</strong> Craft Renaissance');
news[8] = new newsStory(181329,'The landscape of New Zealand');
news[9] = new newsStory(183456,'Andalusia');
news[10] = new newsStory(140466,'PREVIOUS EXHIBITIONS');
news[11] = new newsStory(98756,'PHOTOGRAPHY');
news[12] = new newsStory(98564,'IMAGES');
news[13] = new newsStory(98609,'CAMERAS');
news[14] = new newsStory(175629,'THINK');
news[15] = new newsStory(183306,'BLACK & WHITE PHOTOGRAPHY');
news[16] = new newsStory(183305,'CRITICISM OF PHOTOGRAPHY');


