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(175568,'New 40 page book containing short story and work');
news[1] = new newsStory(192891,'Chimp and nurses with torn uniforms and syringes.');
news[2] = new newsStory(160151,'The  Boy with the cadmium blues');
news[3] = new newsStory(103606,'\"Animals\" by Chris Burns');
news[4] = new newsStory(146955,'Nurse with syringe');
news[5] = new newsStory(134438,'amwell street shop window');
news[6] = new newsStory(114828,'Tragic Painting Gallery');
news[7] = new newsStory(103607,'Recent exhibition');
news[8] = new newsStory(114308,'portrait of the arist as a baby in a run-away pram and animals on a washing line');
news[9] = new newsStory(103608,'Joint show');
news[10] = new newsStory(105387,'group show at the L-13 gallery london');
news[11] = new newsStory(143554,'Amwell st. shop front.');
news[12] = new newsStory(109358,'Ulysses and the sirens');
news[13] = new newsStory(147574,'cat in a shop');
news[14] = new newsStory(119487,'Animals 40 page book');
news[15] = new newsStory(103702,'last exhibition 2008');


