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(129141,'Updated profile on websites');
news[1] = new newsStory(194465,'Wrestling with the Image: Caribbean Interventions - January - March 2011');
news[2] = new newsStory(194463,'Invited keynotes, lectures, publications, exhibitions and presentations (2011)');
news[3] = new newsStory(194460,'Just submitted writings, visual essay and journal article');
news[4] = new newsStory(61155,'Curricula Vitae (Selected from 2001 - present)');
news[5] = new newsStory(128146,'Format Women\'s Picture Agency at NPG - January - July 2010');
news[6] = new newsStory(128145,'Selected Group Exhibitions');
news[7] = new newsStory(67163,'Presentations (2007 - 2008)');
news[8] = new newsStory(61150,'Selected One Woman exhibitions');
news[9] = new newsStory(163705,'Nalini Mohabir interviews Roshini Kempadoo');
news[10] = new newsStory(3104,'Current Lecturing and Scholar Positions');
news[11] = new newsStory(128141,'Selected Artist and Academic Presentations (2002 - ) International');
news[12] = new newsStory(3113,'Selected Artist and Academic Presentations (2002 - ) National');
news[13] = new newsStory(3116,'Selected advisory, committee and honorary positions');
news[14] = new newsStory(3107,'Artist and Academic Publications');
news[15] = new newsStory(128158,'Work in Progress - Domino Effects (2012)');
news[16] = new newsStory(146658,'Limited Edition Prints');
news[17] = new newsStory(146666,'The Table - Photographs from Jamaica 2008');
news[18] = new newsStory(146667,'Order Publications');
news[19] = new newsStory(210691,'State of Play in 28 Days: Reimagining Black History Month');
news[20] = new newsStory(78474,'Forthcoming talks and presentations - 2010');
news[21] = new newsStory(1804,'Virtual Exiles (2000 - 2008) goes offline July 2008');
news[22] = new newsStory(157322,'Invited keynotes, lectures, publications, exhibitions and presentations');


