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(204177,'Indian Dance Series');
news[1] = new newsStory(195214,'Splitgraphic');
news[2] = new newsStory(195212,'Pushing Print');
news[3] = new newsStory(188243,'Debut Contemporary');
news[4] = new newsStory(188241,'Print & Design NOW!');
news[5] = new newsStory(188239,'BITE: Artists Making Prints');
news[6] = new newsStory(188238,'Head and Whole');
news[7] = new newsStory(185687,'Lloyd Gill Gallery');
news[8] = new newsStory(179356,'Portraiture Unraveled');
news[9] = new newsStory(177167,'Guanlan International Print Prize');
news[10] = new newsStory(176344,'Parallax Art Fair');
news[11] = new newsStory(176343,'London Original Print Fair');
news[12] = new newsStory(163125,'Press Freedom, Richmond, Yorkshire');
news[13] = new newsStory(163124,'Pushing Print');
news[14] = new newsStory(163123,'ING Discerning Eye Exhibition');
news[15] = new newsStory(156599,'Finalist Art of Giving Art Competition at Saatchi Gallery');
news[16] = new newsStory(153203,'Penang International Print Exhibition');
news[17] = new newsStory(137396,'Show at Caxton Contemporary');
news[18] = new newsStory(125799,'Work bought by the Guangdong Museum of Art, China');
news[19] = new newsStory(121279,'Selected for International Print Triennial Oldenburg 2010');
news[20] = new newsStory(119653,'Selected for Print Now at the London Art Fair');
news[21] = new newsStory(118339,'Ashman at Hepsibah     <strong>SOLO SHOW DECEMBER 2009</strong>');
news[22] = new newsStory(111589,'International Print Triennial Krakow 2009');
news[23] = new newsStory(104968,'Selected for International Print Triennial Krakow 2009 and the International Print Triennial Vienna 2010');
news[24] = new newsStory(101480,'Qijiang International Prints Exhibition and Festival');
news[25] = new newsStory(71201,'7th International Biennial of Engraving (Liège) 2009');
news[26] = new newsStory(73355,'The Americas Biennial Exhibition and Archive 2008');
news[27] = new newsStory(58288,'Through The Lens, RWA 2008');
news[28] = new newsStory(49475,'Solo Exhibition at Hepsibah Gallery 2008');
news[29] = new newsStory(64452,'Hepsibah Showcase 2008');
news[30] = new newsStory(64450,'Mary Penley Fine Artists 2008');
news[31] = new newsStory(54731,'Caxton Contemporary, Whitstable 2008');
news[32] = new newsStory(48264,'Printmakers Council Show at Letchworth 2008');
news[33] = new newsStory(53134,'RE Exchange Exhibition at RaMoMa 2008');
news[34] = new newsStory(42067,'Education');
news[35] = new newsStory(84543,'China Residency');
news[36] = new newsStory(51562,'Harlow Residency');
news[37] = new newsStory(42030,'Hepsibah Gallery Solo Show 2006');
news[38] = new newsStory(42048,'Harrow Contemporary 2006');
news[39] = new newsStory(42043,'Under One Sky Solo Show 2006');
news[40] = new newsStory(42069,'Awards and Competitions');
news[41] = new newsStory(42047,'Show in St Albans Cathedral 2004');
news[42] = new newsStory(42046,'Solo Show at the Fovea Gallery 2003');
news[43] = new newsStory(42082,'Collections');
news[44] = new newsStory(42068,'Membership');
news[45] = new newsStory(42083,'Publications, Catalogues, Blogs');


