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(209514,'Art of 7 Exhibition - February 2012');
news[1] = new newsStory(193605,'Wandsworth Artist\'s Open House 2011');
news[2] = new newsStory(192031,'Show at Cork Street 2011');
news[3] = new newsStory(181097,'new work at Cannizaro');
news[4] = new newsStory(175760,'The Future is Social Symposium');
news[5] = new newsStory(171731,'MA Interim Show. Opening Night: March 3rd 2011');
news[6] = new newsStory(166863,'Salad Al Fresco');
news[7] = new newsStory(158007,'Starting an MA in Fine Art');
news[8] = new newsStory(147418,'Mapping the Internal Landscape solo show . . . .');
news[9] = new newsStory(139395,'Dulwich Artists Open Event 2010');
news[10] = new newsStory(134647,'\'Living with Autism\' Art Project');
news[11] = new newsStory(125482,'sublime magazine feature');
news[12] = new newsStory(125324,'BATTERSEA AFFORDABLE ART FAIR SPRING 2010');
news[13] = new newsStory(119971,'On-line \'Experimental Art\' e-course');
news[14] = new newsStory(118929,'SEW FUNKY');
news[15] = new newsStory(115667,'Cannizaro House Hotel Art & Cocktails Evening');
news[16] = new newsStory(109028,'NEW BLOG and PLANET BLOKE');
news[17] = new newsStory(108155,'Freedom living');
news[18] = new newsStory(107952,'Ghosts');
news[19] = new newsStory(107379,'Getting on Top');
news[20] = new newsStory(107108,'Creating Art');
news[21] = new newsStory(106822,'Being Grateful for What I Have');
news[22] = new newsStory(106663,'Passions and Creativity');
news[23] = new newsStory(106637,'link');
news[24] = new newsStory(106596,'Musings in Antibes');
news[25] = new newsStory(105480,'Postcard Project');
news[26] = new newsStory(105479,'11 Reasons Why It Is Good Being A Single Parent:');
news[27] = new newsStory(105344,'Wednesday 12th August 2009');
news[28] = new newsStory(105188,'The Big Chill');
news[29] = new newsStory(104764,'Thursday 6th August 2009');
news[30] = new newsStory(104729,'Wednesday 5th August 2009');


