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(170952,'Can I say it in Espanol?');
news[1] = new newsStory(137333,'Painting Lilies in Spring');
news[2] = new newsStory(137330,'A virtual studio visit');
news[3] = new newsStory(137322,'Portrait of Billy');
news[4] = new newsStory(129376,'Rushes in Winter');
news[5] = new newsStory(47813,'Movie of Path Through Trees in progress');
news[6] = new newsStory(46062,'Press Release - ‘Sea, Sky & The Square Mile’');
news[7] = new newsStory(8038,'Why I stopped making art work on the politics of identity');
news[8] = new newsStory(7173,'Selected Research, Writing & Lecturing Experience:');
news[9] = new newsStory(199936,'I was cast in the movie \'Fur\'');
news[10] = new newsStory(121905,'My letter of application for a current affairs researcher in radio job says it all ..');
news[11] = new newsStory(114488,'Calendar 2012');
news[12] = new newsStory(122076,'I am someone who relishes challenge');
news[13] = new newsStory(126482,'Dark Lilies... The Winning Pitch');
news[14] = new newsStory(121213,'Pitch for a Painting');
news[15] = new newsStory(91234,'Artist\'s Statement');
news[16] = new newsStory(46071,'Biographical Information');
news[17] = new newsStory(126499,'From Gemma.. The whole scene  radiates light and heat and I long to sit again under the shade of a big plane tree. ');
news[18] = new newsStory(126490,'From Mary O\'S');
news[19] = new newsStory(7174,'Commissions & Awards');
news[20] = new newsStory(126522,'From Magda');
news[21] = new newsStory(25514,'FUR (2006)');
news[22] = new newsStory(126507,'From Anne in Australia...');
news[23] = new newsStory(122245,'Showreel for Fur');
news[24] = new newsStory(126508,'From Frances (1st entry)');
news[25] = new newsStory(126509,'From Frances (2nd entry)');
news[26] = new newsStory(126510,'From Frances (3rd entry)');
news[27] = new newsStory(126512,'From Frances (4th entry)');
news[28] = new newsStory(126513,'From Frances (5th entry)');
news[29] = new newsStory(126514,'From Frances (6th entry)');
news[30] = new newsStory(126532,'From Vanda - After 25 years');
news[31] = new newsStory(94929,'Opening Speeches at \'Paintings from a Thousand Days\', Pat Kenny launches exhibition (2 parts)');
news[32] = new newsStory(6830,'My former work as a performance artist');
news[33] = new newsStory(119214,'from John ..For each of us there are the winter ghosts ');
news[34] = new newsStory(126520,'From Lisa C');
news[35] = new newsStory(126523,'From Peter in Florida..');
news[36] = new newsStory(114563,'Three calendars for €25');
news[37] = new newsStory(6829,'About Stories of a Body');
news[38] = new newsStory(119215,'From Noirin  I am drawn backwards to the inky grasses and such greenness and');
news[39] = new newsStory(126492,'Poached Eggs  ‘Romneya Coulteri’  from Anne...');
news[40] = new newsStory(129368,'And so, the winner is - the little girl with the pony tail');
news[41] = new newsStory(119216,'From Veronica...I like the dream like quality of the painting. ');
news[42] = new newsStory(115222,'Competition Now Closed - Win an original Mary Duffy painting');
news[43] = new newsStory(126517,'From Mary H');
news[44] = new newsStory(126497,'From Anna');
news[45] = new newsStory(126503,'From Tom');
news[46] = new newsStory(126524,'From Philip');
news[47] = new newsStory(126531,'From Cathal');
news[48] = new newsStory(126493,'From Catherine S (1st entry)');
news[49] = new newsStory(126494,'From Catherine S (2nd)');
news[50] = new newsStory(126491,'From Una .... I first met you at the Leonard Cohen concert ...');
news[51] = new newsStory(96184,'Paintings from a Thousand Days -Virtual Tour');
news[52] = new newsStory(95281,'Mary Duffy speech');
news[53] = new newsStory(126505,'From Fiona...I\'d go for the moving on from Monet..');
news[54] = new newsStory(126489,'From Michelle -Afternoon Sun');
news[55] = new newsStory(126484,'From Francesca');
news[56] = new newsStory(96333,'A Thousand Days at Tinakilly Country House Hotel');
news[57] = new newsStory(52616,'Sea, Sky & the Square Mile');
news[58] = new newsStory(51291,'The Exception to the Rule');
news[59] = new newsStory(52542,'Opening:Sea Sky & Square Mile ');
news[60] = new newsStory(126502,'From Marie');
news[61] = new newsStory(126495,'From Alice');
news[62] = new newsStory(53285,'Bray People 19 March 2008');
news[63] = new newsStory(46206,'Opening Bold Gallery, 2007');
news[64] = new newsStory(50989,'BRAY PEOPLE 20 FEB 2008');
news[65] = new newsStory(126519,'From John G');
news[66] = new newsStory(25519,'First Solo Painting Exhibition in the Bold Gallery');
news[67] = new newsStory(26763,'What are Giclée Prints & why multiple red dots?');
news[68] = new newsStory(91224,'Pricing Information');
news[69] = new newsStory(122031,'Acceptance Speech: Hon. Doctorate of Laws, NUI, 2003');


