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(211600,'Show your Face promoted in Cellardoor Magazine');
news[1] = new newsStory(201369,'Work featured on Art Clvb Page');
news[2] = new newsStory(200360,'Press release: Abort, Retry, Fail?');
news[3] = new newsStory(198440,'Press Release: Vanguard Exhibition');
news[4] = new newsStory(197014,'Contemporary Experimental Art Archive');
news[5] = new newsStory(193046,'Young Tate Showcase');
news[6] = new newsStory(188569,'Work showcased by Trisickle Magazine ');
news[7] = new newsStory(180974,'Review: Ambition Dream Nothing  ');
news[8] = new newsStory(180977,'Press Release: Ambitions Dream Nothing');
news[9] = new newsStory(163780,'Featured in Yuck and Yum Magazine ');
news[10] = new newsStory(138573,'Feature Promotional Page');
news[11] = new newsStory(134199,'Feature Cover Artist in BlankPages Magazine');
news[12] = new newsStory(112362,'Show & Tell. Urbis Creatives Art Group.');


