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(197440,'Patricia at the Compass Theatre: <strong>Amy Winehouse</strong>');
news[1] = new newsStory(169454,'Reflections');
news[2] = new newsStory(159558,'“Col – lure”\t');
news[3] = new newsStory(125729,'Patricia At The Tabernacle, Notting Hill');
news[4] = new newsStory(124030,'Exhibition at the Compass Theatre');
news[5] = new newsStory(124029,'Exhibition at the Compass Theatre');
news[6] = new newsStory(124023,'Exhibition at the Compass Theatre');
news[7] = new newsStory(118462,'Exhibition');
news[8] = new newsStory(110003,'‘Four at Five’ ');
news[9] = new newsStory(104421,'Exhibition at the CowByre');
news[10] = new newsStory(104422,'Painting Exhibition opens at the Cow Byre');
news[11] = new newsStory(103481,'Press Release');
news[12] = new newsStory(95995,'Life Class');
news[13] = new newsStory(95317,'Life Drawing Session');
news[14] = new newsStory(95316,'Life Drawing Session');
news[15] = new newsStory(66507,'Press Release');
news[16] = new newsStory(66505,'Press Release/ Five at 5');
news[17] = new newsStory(66468,'Five at Gallery 5');
news[18] = new newsStory(78032,'News Paper Article on Patricia Ogundero');
news[19] = new newsStory(61625,'Press Release');
news[20] = new newsStory(77260,'Guests at the PV: Five at 5');
news[21] = new newsStory(77261,'Guests at the PV: Five at 5');
news[22] = new newsStory(77262,' Guests at the PV: Five at 5');
news[23] = new newsStory(77259,' Guests at the PV: Five at 5');
news[24] = new newsStory(77258,'Guests at the PV: Five at 5');
news[25] = new newsStory(78031,' Guests at the PV: Five at 5');
news[26] = new newsStory(78036,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[27] = new newsStory(78042,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[28] = new newsStory(78043,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[29] = new newsStory(78044,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[30] = new newsStory(78045,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[31] = new newsStory(78046,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[32] = new newsStory(78047,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[33] = new newsStory(78048,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[34] = new newsStory(78049,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[35] = new newsStory(78051,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[36] = new newsStory(78052,'Preparing Installation titled : The Inside out house; Home of the Anglo Saxon');
news[37] = new newsStory(116968,'Hillingdon Artists at the Gayton Gallery in Gayton  Library Harrow');
news[38] = new newsStory(116951,'Painting Exhibition');
news[39] = new newsStory(169448,'Reflections');


