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(64792,'Artist\'s Writings and Publications');
news[1] = new newsStory(64160,'\"\'Seeing the World Through a Lens,\' Says Photographer,\'Sharpens the Vision\'\"');
news[2] = new newsStory(64159,'\"\'Seeing the World Through a Lens,\' Says Photographer,?\'Sharpens the Vision\'\"?');
news[3] = new newsStory(64158,'\"He Finds Beauty in What Others Overlook\"');
news[4] = new newsStory(64157,'\"Snapshots: Not as Simple as it Sounds\"');
news[5] = new newsStory(64075,'\"Monasticism Through the Camera\'s Lens: One Convert\'s Pilgrimage\"');


