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(212449,'The Sentinel Project Opens Christ Church Cathedral, Dublin at 7pm February 9th 2012');
news[1] = new newsStory(205365,'Law Library, Church St. Dublin, Christmas group exhibition runs until December 23rd');
news[2] = new newsStory(205358,'Open Season at The Dock, Carrick On Shannon, Co. Leitrim. Runs until 4th February.');
news[3] = new newsStory(205357,'Mullan Gallery Christmas Exhibition runs until 21st December');
news[4] = new newsStory(199273,'Sean Campbell wins Robinson McIlwaine Architects original vision prize at the RUA 130th Annual Exhibition. ');
news[5] = new newsStory(196570,'Three x 3 exhibition, Flowerfield Arts Centre, portstewart, Northern Ireland, 3rd October - 29th October ');
news[6] = new newsStory(190099,'Illuminate, Contemporary Irish Glass, The kenny Gallery, Galway. 6th August - 1st September 2011 ');
news[7] = new newsStory(190098,'Engaging with Glass at the Solstice Arts Center July 2011');
news[8] = new newsStory(190097,'Mullan Gallery 10th Anniversary Show July - Mid September 2011');
news[9] = new newsStory(145901,'RUA RED, Dublin, Ireland. Summer show opens 3 - 5pm Saturday 17th July');
news[10] = new newsStory(144364,'Wednesday 7th July: Kiln Formed Glass and Glass Enamelling Course with Sean Campbell and Mary Mackey');
news[11] = new newsStory(144137,'NLA Irish Museum of Contemporary Art');
news[12] = new newsStory(144130,'three x 3');
news[13] = new newsStory(141940,'Summer Exhibition at the Mullan Gallery, Belfast. Opens 19th June.');
news[14] = new newsStory(141939,'Through the Looking Glass Exhibition Opens 6th June in Chill Rialaig, Co. Kerry, Ireland');
news[15] = new newsStory(141938,'Sean Campbell selected for Remarkable Glass Exhibition, CAA, London, England. Opens 18th June.');
news[16] = new newsStory(141936,'Sean Campbell Art Donation raises £1500 for the Prince\'s Trust');
news[17] = new newsStory(122572,'On the Edge Opens at Triskel, ESB Substation, Caroline Street, Cork. 7 July – 31 July 2010');
news[18] = new newsStory(132740,'E-merge 2010 Opens in the Bullseye Gallery, Portland, Oregon, USA');
news[19] = new newsStory(130818,'View Sean Campbells Latest Catalogue A selection of Works');
news[20] = new newsStory(128261,'SHOW OVER three x 3 an exhibition in glass and light  Signal art Center, Bray, Ireland, Opening Reception is on Friday 5th March from 7pm - 9pm');
news[21] = new newsStory(120217,'Review of On the Edge by Dan Klein');


