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(203752,'Phill Hopkins to show new installation of drawings \'5am there - The Muammar Gaddafi Variations\'');
news[1] = new newsStory(194705,'Phill Hopkins in Happiness Exhibition');
news[2] = new newsStory(193781,'Phill Hopkins included in 6 Degrees');
news[3] = new newsStory(191238,'Phill Hopkins invited to show in Austria');
news[4] = new newsStory(190676,'Phill Hopkins to show \'Place\'');
news[5] = new newsStory(190675,'Phill Hopkins featured in BLANKPAGES: issue 37');
news[6] = new newsStory(185016,'Phill Hopkins - Place for a Kitchen  - an Installation');
news[7] = new newsStory(179509,'Place – an installation  & new drawings by Phill Hopkins');
news[8] = new newsStory(179191,'Phill Hopkins featured in \'Failure2011\'');
news[9] = new newsStory(172213,'Place');
news[10] = new newsStory(162912,'Phill Hopkins at HOMA');
news[11] = new newsStory(162587,'Phill Hopkins in - THE MOMENT OF PRIVACY HAS PASSED');
news[12] = new newsStory(159184,'Phill Hopkins to show 3 new pieces in Sheffield.');
news[13] = new newsStory(159183,'\'Dropping the House\' to be shown in Canada');
news[14] = new newsStory(158677,'I Value the Arts');
news[15] = new newsStory(153602,'\"Dropping the House\" to be shown as part of Leeds Light Night');
news[16] = new newsStory(149076,'Phill Hopkins to show 2 new pieces in \'Behold\' as part of the Feva Festial, Knaresborough.');
news[17] = new newsStory(143678,'14:22-33 a new installation at Pilgrimage to Hailes 2010 ');
news[18] = new newsStory(54958,'Seven Drunken Nights - Greenbelt 08');
news[19] = new newsStory(54957,'Seven Drunken Nights');
news[20] = new newsStory(54956,'Seven Drunken Nights');


