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(211059,'Enter your portraits in to next years Taylor Wessing Exhibition');
news[1] = new newsStory(212698,'Reigate Photographic Society');
news[2] = new newsStory(210213,'Thinking of a break?');
news[3] = new newsStory(211055,'Butterflies');
news[4] = new newsStory(212032,'The Results are in.');
news[5] = new newsStory(211060,'Taylor Wessing @ The National Portrait Gallery');
news[6] = new newsStory(211058,'Take a View: Landscape Photographer of the Year 2011');
news[7] = new newsStory(211063,'Follow up on the opening of Honeywood Museum');
news[8] = new newsStory(211062,'More on the local exhibition ');
news[9] = new newsStory(210974,'FREE Adobe Lightroom 4');
news[10] = new newsStory(209335,'Wildlife & Travel Photography Exhibition');
news[11] = new newsStory(210327,'Exciting Exhibition Oppurtunity');
news[12] = new newsStory(210326,' BBC \'One Show\' seeks Kodak fans.');
news[13] = new newsStory(210178,'Photobox Promotional Code: Free Photobook');
news[14] = new newsStory(210126,'Another Great Talk');
news[15] = new newsStory(209863,'Tulips and Seeding');
news[16] = new newsStory(209450,'We Are The Champions!');
news[17] = new newsStory(209100,'Yul be mad to miss this!');
news[18] = new newsStory(209098,'Get your war face on!');
news[19] = new newsStory(208927,'Another Fantastic Meeting.');
news[20] = new newsStory(208839,'AV Evening');
news[21] = new newsStory(208619,'Photography Competition');
news[22] = new newsStory(207967,'The Societies 2011 Photographic Convention (SWPP)');
news[23] = new newsStory(207698,'DSLR Workshop');
news[24] = new newsStory(207579,'Tonights Meeting 4-1-12');
news[25] = new newsStory(207194,'Happy New year');
news[26] = new newsStory(207042,'Final Resolution.');
news[27] = new newsStory(206949,'Resolution 4 Possibly the hardest resolution you can do...or maybe not!');
news[28] = new newsStory(206856,'New Years resolution number 3');
news[29] = new newsStory(206779,'The second of our New Years Resolutions');
news[30] = new newsStory(206666,'Time to start thinking about New Years Resolutions.');
news[31] = new newsStory(206586,'Boxing Day');
news[32] = new newsStory(206538,'Happy Christmas ');
news[33] = new newsStory(206533,'SCOLA Courses');
news[34] = new newsStory(206295,'Sutton Wildlife Winner 2011');
news[35] = new newsStory(206180,'Free Enlarger...NOW GONE');
news[36] = new newsStory(205827,'Webmaster');
news[37] = new newsStory(205956,'Last Call for Entries for the 2012 Sony World Photography Awards!');
news[38] = new newsStory(206112,'DPI Preparation');
news[39] = new newsStory(207623,'Photo Editing');
news[40] = new newsStory(206072,'Christmas Card Idea');
news[41] = new newsStory(205925,'January 2012');
news[42] = new newsStory(205801,'EXTERNAL COMPETITIONS');
news[43] = new newsStory(207585,'Panoramic Software');
news[44] = new newsStory(205926,'February 2012');
news[45] = new newsStory(205802,'INTERNAL COMPETITIONS');
news[46] = new newsStory(207629,'Photo Organizing');
news[47] = new newsStory(205927,'March 2012');
news[48] = new newsStory(205803,'COLOUR SLIDES - 35mm FORMAT COMPETITIONS');
news[49] = new newsStory(205928,'April 2012');
news[50] = new newsStory(205804,'COLOUR SLIDES - MEDIUM FORMAT COMPETITIONS');
news[51] = new newsStory(205931,'May 2012');
news[52] = new newsStory(205805,'ENDEAVOUR CUP—SLIDES');
news[53] = new newsStory(205932,'June 2012');
news[54] = new newsStory(205806,'SLIDE OF THE YEAR');
news[55] = new newsStory(205807,'LADIES v GENTS - SLIDE COMPETITION');
news[56] = new newsStory(205808,'‘A’ GROUP v ‘B’ GROUP - SLIDES');
news[57] = new newsStory(205809,'SET SUBJECT – SLIDES AND PRINTS');
news[58] = new newsStory(205742,'A Warm Welcome');
news[59] = new newsStory(205810,'MONOCHROME PRINT COMPETITIONS');
news[60] = new newsStory(205811,'MONOCHROME PRINT OF THE YEAR');
news[61] = new newsStory(205812,'COLOUR PRINT COMPETITIONS');
news[62] = new newsStory(205813,'COLOUR PRINT OF THE YEAR');
news[63] = new newsStory(205814,'PROJECTED DIGITAL IMAGE COMPETITIONS');
news[64] = new newsStory(205815,'PROJECTED DIGITAL IMAGE OF THE YEAR');
news[65] = new newsStory(205816,'EXHIBITION COMPETITIONS');
news[66] = new newsStory(205817,'CLUB TROPHIES');
news[67] = new newsStory(205818,'ENTRIES');


