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(183731,'Exposition de groupe');
news[1] = new newsStory(179142,'The Marmite Prize for Painting III ');
news[2] = new newsStory(160365,'Scope Art Fair Miami 2010');
news[3] = new newsStory(156034,'Superunknown');
news[4] = new newsStory(188648,'Show Off Art Fair - (im)possibility through the (in)finite...');
news[5] = new newsStory(140939,'Bright Lights of London Painting');
news[6] = new newsStory(118784,'Paint ');
news[7] = new newsStory(118781,'Ultramegaok');
news[8] = new newsStory(118782,'The Florence Trust Summer Exhibition');
news[9] = new newsStory(85530,'Fenton Arts Trust Studio Bursary Award');
news[10] = new newsStory(54315,'Florence Trust Residency');
news[11] = new newsStory(73007,'Scope Art Fair - London');
news[12] = new newsStory(118780,'Saatchi\'s online Critic\'s choice by Rebecca Wilson ');
news[13] = new newsStory(67933,'One08 Festival');
news[14] = new newsStory(51069,'Biennale of Young Artists from Europe and the Mediterranean XIII Edition');
news[15] = new newsStory(51068,'UAMO Art Festival ');
news[16] = new newsStory(51067,'NOWhere');
news[17] = new newsStory(49361,'Triangle France Residency');
news[18] = new newsStory(42209,'SHORTLISTED');
news[19] = new newsStory(40222,'Pipe Dream');
news[20] = new newsStory(35614,'Miniature Art Show');
news[21] = new newsStory(34011,'Graduates 2007');
news[22] = new newsStory(31088,'Salon 07');
news[23] = new newsStory(30467,'Private Prop');
news[24] = new newsStory(30465,'Biennale of Young Artists from Europe and the Mediterranean XIII Edition');
news[25] = new newsStory(23974,'Celeste Art Prize');
news[26] = new newsStory(23973,'Celeste Art Prize ');
news[27] = new newsStory(23979,'Mercury art prize ');


