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(164592,'20th December 2010 - Christmas Party');
news[1] = new newsStory(159315,'1st November 2010 - Members practical night');
news[2] = new newsStory(140578,'17th May 2010: Annual Dinner & Trophy Presentation');
news[3] = new newsStory(136044,'\"Members\' Perspectives\" Exhibition of Photography - 29thApril - 17th May 2010 Bakewell Visitor Centre');
news[4] = new newsStory(136050,'19th April 2010 Annual Competition results - Judge David Gibbins ARPS AFIAP APAGB BPE3*');
news[5] = new newsStory(129699,'1st March 2010 – The Theme competition - “Vegetables and Fruit”- Judge Ray Brightman FRPS APAGB AFIAP DPAGB BPE3*');
news[6] = new newsStory(123560,'18th January 2010: Last Bi-Monthly competition results - Judge John Jones ARPS BPE5*');
news[7] = new newsStory(122221,'10th January 2010: Bakewell Photographers start the New Year with another success story');
news[8] = new newsStory(118529,'30th November 2009 : Second Bi-Monthly Competition – Judge Bill Hall DPAGB AFIAP BPE5*');
news[9] = new newsStory(118179,'3rd to 9th December 2009: All Saints Parish Church Bakewell Festival of Christmas Trees');
news[10] = new newsStory(117878,'25th November 2009: Three-way competition results');
news[11] = new newsStory(118166,'November 2009: Bromsgrove Salon results');
news[12] = new newsStory(118163,'5th October 2009: First Bi-monthly competition - Judge Roger Parry CPAGB');
news[13] = new newsStory(118165,'May 2009: Bakewell photographers celebrate another year of success and welcome new members');


