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(206183,'Newsletter');
news[1] = new newsStory(201279,'Breaking New Ground');
news[2] = new newsStory(201278,'Connections North');
news[3] = new newsStory(193839,'Exhibition now open at the Mercer Gallery, Harrogate');
news[4] = new newsStory(186286,'Drawing on the Past: A Journey');
news[5] = new newsStory(181325,'Artist in Residence at Alfresco!');
news[6] = new newsStory(176941,'Printmaking at Hackfall');
news[7] = new newsStory(175351,'Exciting New Project!');
news[8] = new newsStory(157442,'Hester\'s solo exhibition \'Home\' at the Gallery , Masham, will run until 31st January 2011');
news[9] = new newsStory(154382,'ArtisOn Opens!');
news[10] = new newsStory(138643,'Printmaking at The Dutch House');
news[11] = new newsStory(138642,'Taking printmaking on the road!');
news[12] = new newsStory(133232,'ArtsBank opening!');
news[13] = new newsStory(133569,'Artist in Residence at Nidderdale Museum');
news[14] = new newsStory(95209,'Open Studios in June');
news[15] = new newsStory(87002,'Landscape Collagraph Printmaking Workshop');
news[16] = new newsStory(87001,'Art for Youth North 2009');
news[17] = new newsStory(78039,'Solo show at the Arts Cafe, Brewery Arts Centre, Kendal');
news[18] = new newsStory(71695,'At last a new hare print!');
news[19] = new newsStory(70822,'2-Day Collagraph Printmaking Workshop');
news[20] = new newsStory(67388,'Nest Exhibition at the Dales Countryside Museum');
news[21] = new newsStory(63903,'Coastlines Exhibition');
news[22] = new newsStory(58093,'New Work to be shown at the Coast exhibition');
news[23] = new newsStory(47217,'Collagraph Printmaking Workshop at Old Sleningford Farm, 19th & 20th April 2008');
news[24] = new newsStory(46018,'Gleichzeitig');
news[25] = new newsStory(206197,'Collagraph Printmaking Course');
news[26] = new newsStory(206184,'Knicker Printing For Your Valentine! ');
news[27] = new newsStory(206185,'Printing Without a Press');
news[28] = new newsStory(206186,'Printmaking For Painters');
news[29] = new newsStory(206189,'Collage and Print');
news[30] = new newsStory(206192,'Combining Printmaking & Ceramics');
news[31] = new newsStory(206195,'Collagraph Printmaking');
news[32] = new newsStory(206196,'Block Printing on Fabric');


