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(207242,'Print Competition');
news[1] = new newsStory(207240,'Photo Lecture');
news[2] = new newsStory(207239,'Print Competition');
news[3] = new newsStory(207237,'Club Night ');
news[4] = new newsStory(207234,'Projected Image Competition ');
news[5] = new newsStory(207233,'“Something interactive”');
news[6] = new newsStory(207231,'Club Night ');
news[7] = new newsStory(207230,'Print Competition ');
news[8] = new newsStory(207223,'“Facing It - Shooting Commercial Portraits on Location”');
news[9] = new newsStory(207220,'Projected Image Competition');
news[10] = new newsStory(207219,'Club Night. Photoshop workshop');
news[11] = new newsStory(207217,'Print Competition ');
news[12] = new newsStory(207215,'\"Know Your Camera\"');
news[13] = new newsStory(183252,'Projected Image Competition');
news[14] = new newsStory(183255,'Club Night ');
news[15] = new newsStory(183254,'Projected Image Competition');
news[16] = new newsStory(183251,'\"Bring your camera evening\"');
news[17] = new newsStory(183253,'Annual General Meeting');
news[18] = new newsStory(183250,'Print Competition');
news[19] = new newsStory(183249,'Lecture by Richard Poyntner');
news[20] = new newsStory(183248,'Projected Image Competition');
news[21] = new newsStory(183247,'Annual Print Competition');
news[22] = new newsStory(183245,'Print Annual Competition - CANCELLED');
news[23] = new newsStory(183244,'Annual Projected Image Competition');
news[24] = new newsStory(183243,'Image and Illusion');
news[25] = new newsStory(183241,'Club outing  to Henry Moore Foundation');
news[26] = new newsStory(164902,'Competition rules effective February 2011');
news[27] = new newsStory(164900,'\"Twilight Photography Evening\" & South Woodford Art Benches Project');
news[28] = new newsStory(164899,'Print Competition');
news[29] = new newsStory(164898,'“Wood”');
news[30] = new newsStory(164897,'Projected Image Competition');
news[31] = new newsStory(164896,'“Landscape photography”');
news[32] = new newsStory(164895,'Print Competition');
news[33] = new newsStory(164894,'Digital Projected Image Competition ');
news[34] = new newsStory(163721,'\"Natural Focus\"');
news[35] = new newsStory(163720,'\"Close-up and Macro Nature Photography\"');
news[36] = new newsStory(163707,'Portfolio workshop');
news[37] = new newsStory(163706,'\"How I use photoshop\"');
news[38] = new newsStory(163703,'Digital Projected Image Competition ');
news[39] = new newsStory(163702,'\"The oldest Air Force in the World - North Pacific\" ');
news[40] = new newsStory(141435,'Christmas Party');
news[41] = new newsStory(141434,'Presentation by Wildlife Officer : Barry Kaufman-Wright');
news[42] = new newsStory(141433,'The Villages of East London - Part 1');
news[43] = new newsStory(141432,'To be advised');
news[44] = new newsStory(141431,'Club Outing - Wildlife Photography Exhibition ');
news[45] = new newsStory(141430,'Portrait Evening');
news[46] = new newsStory(141429,'Annual General Meeting');
news[47] = new newsStory(141426,'Digitally Projected Competition');
news[48] = new newsStory(141422,'Presentation of annual prints trophy and discussion');
news[49] = new newsStory(141427,'Club Outing - Location to be decided');
news[50] = new newsStory(141421,'Club Laptop Discussion Evening');
news[51] = new newsStory(141419,'Prints - Title \"An evening with Bob Norris\" APAGB, EFIAP');
news[52] = new newsStory(141425,'Club Outing - Rainham Marshes');
news[53] = new newsStory(141417,'Annual Print Competition');
news[54] = new newsStory(141415,'Compact versus SLR - can you tell the difference ?');
news[55] = new newsStory(141412,'Print Competition');


