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) {
	debug('Showing links for story ' + 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';
		}
		
	}
}


news = new Array();
news[0] = new newsStory(65153,'IMAGE USED FOR NATIONAL STAMP');
news[1] = new newsStory(65248,'SABORES DELA ARAUCANIA: FOTOGRAFIA Y DEGUSTACION');
news[2] = new newsStory(31718,'EXHIBITION');
news[3] = new newsStory(32764,'EXHIBITION');
news[4] = new newsStory(65151,'Exhibitions');
news[5] = new newsStory(65152,'EXHIBITION');

