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(201584,'Exhibition: NEVER EXPRESS YOURSELF MORE CLEARLY  THAN YOU ARE ABLE TO THINK ');
news[1] = new newsStory(200861,'Green Is Gold Studio');
news[2] = new newsStory(186107,'POSSIBLE REALITIES 4 - TECHNOLOGIE, JOIE DE VIVRE!-BINAURAL BIG BANG');
news[3] = new newsStory(166051,'Teaching at Krabbesholm Højskole');
news[4] = new newsStory(156928,'WE JUST LIVE HERE/ Exhibition at the Forgotten Bar/ Berlin');
news[5] = new newsStory(152652,'POSSIBLE REALITIES 3 - DARK CASTLE');
news[6] = new newsStory(139801,'www.morgenrøde.dk');
news[7] = new newsStory(139804,'Hóll - The Birgir Andresson Residency, Iceland');
news[8] = new newsStory(117891,'Possible Realities, One Night Only presents...');
news[9] = new newsStory(109523,'Spark at Alt_Cph 2009');
news[10] = new newsStory(108484,'2009 Exhibition, One Night Only, Oslo');
news[11] = new newsStory(86786,'Group Exhibition Mexico, July 2009');
news[12] = new newsStory(86785,'MV Inspires, Japan - Denmark - Germany, Exhibition  ');
news[13] = new newsStory(86776,'Interview with Ditte Knus Tønensen in the magazine \'Billedkunstneren\'');
news[14] = new newsStory(86045,'Ostsee Zietung, German Newspaper article about us and the Residences program');
news[15] = new newsStory(79751,'‘Art at the Baltic Sea - International Artist in Residence Program’');
news[16] = new newsStory(79750,'Though The Looking Glass, picture reportage on Kopenhagen.dk');
news[17] = new newsStory(77316,'ANONYMOUS DRAWINGS N°9, Kunstraum Kreuzberg / Bethanien, Berlin.');
news[18] = new newsStory(70553,'Catalyst Arts 2008 Student Show, Belfast - Ireland');
news[19] = new newsStory(77574,'Solo exhibition at Ard Bia, Ireland');
news[20] = new newsStory(69724,'Through the Looking Glass, Studio Warehouse Glasgow');
news[21] = new newsStory(62354,'Artistit? [3]');
news[22] = new newsStory(62353,'Degree Show 2008');
news[23] = new newsStory(51438,'Online Art Auction..');
news[24] = new newsStory(52951,'\'A Psycho Piece – the Dragons and the Shed\' ');
news[25] = new newsStory(52952,'\'Homesick\'');
news[26] = new newsStory(52954,'RSA Show');
news[27] = new newsStory(52957,'I TELL YOU TELL ME');


