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(201331,'Progression');
news[1] = new newsStory(185500,'Painting & Photography exhibition in Brixton');
news[2] = new newsStory(126033,'About me....');
news[3] = new newsStory(164266,'Winter Workshop');
news[4] = new newsStory(175529,'3rd to the series');
news[5] = new newsStory(162559,'And another WORKSHOP');
news[6] = new newsStory(158103,'PHOTOGRAPHY WORKSHOP');
news[7] = new newsStory(145767,'Internship, Volunteering and exhibitions');
news[8] = new newsStory(154777,'EXHIBITION BERLIN 2010');
news[9] = new newsStory(121767,'My C.V. - should you need to know what I have been up to.');
news[10] = new newsStory(136386,'PRESS RELEASE for Exhibition \'Guilty Pleasure\'');
news[11] = new newsStory(121133,'Concepts...all those thoughts but no pictures');


