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(203273,'Cheetah Trophy goes to Keith Beverley');
news[1] = new newsStory(203272,'A home win at the King Billy');
news[2] = new newsStory(203271,'A pleasing first result at the YENRIC');
news[3] = new newsStory(203268,'Dyer knaa the way te Rothbury ?');
news[4] = new newsStory(203262,'Dessie takes the Rose Bowl');
news[5] = new newsStory(193399,'Andrea - f4\'s Own Cover Girl ');
news[6] = new newsStory(203261,'New rooms for the f4 Group in Cottingham');
news[7] = new newsStory(172157,'Image of the Year 2010');
news[8] = new newsStory(172156,'YENRIC Competitions');
news[9] = new newsStory(172155,'BBC Countryfile');
news[10] = new newsStory(172151,'The Cheetah Trophy 2010');
news[11] = new newsStory(163633,'Photographer of the Year 2010');
news[12] = new newsStory(163632,'f4 Annual Outing goes to North Wales');
news[13] = new newsStory(163631,'Rose & Crown Rosebowl goes to Dave Robson');
news[14] = new newsStory(131175,'Success - Success !!');
news[15] = new newsStory(129590,'YCPG Trophy - Innovative Images');
news[16] = new newsStory(129587,'The end of an era - now onward & upwards for those Dpi Aces');
news[17] = new newsStory(129585,'2009 Photographer/s of the Year ');
news[18] = new newsStory(129582,'2009 Landlord\'s Cheetah Trophy');
news[19] = new newsStory(129578,'2009 Best of the Summer Outings');
news[20] = new newsStory(88329,'Getting into our stride with Digital');
news[21] = new newsStory(88322,'Image of the Year 2008 - won by Alan Luckraft');
news[22] = new newsStory(88319,'Bill Straw wins Trophy for Innovative Images');
news[23] = new newsStory(79982,'Photographers of the Year - yes - 2 of them !');
news[24] = new newsStory(75837,'The Landlord\'s CHEETAH Trophy');
news[25] = new newsStory(75100,'f4 Group takes the high road to the Isle of Skye');
news[26] = new newsStory(71907,'Bill Straw takes home the f4 Rose Bowl');
news[27] = new newsStory(70545,'YPU Annual Exhibition 2008');
news[28] = new newsStory(70276,'Image of the Year 2007');
news[29] = new newsStory(43608,'Summer Views of Herm Island');
news[30] = new newsStory(43607,'Photographers of the Year');
news[31] = new newsStory(43609,'Rose & Crown Rose Bowl');
news[32] = new newsStory(43606,'Landlord\'s Cheetah Trophy');
news[33] = new newsStory(43604,'f4 Annual Trip 2007');
news[34] = new newsStory(21540,'Slide of the Year 2006');
news[35] = new newsStory(21539,'f4 PHOTOGRAPHER OF THE YEAR 2006');
news[36] = new newsStory(21542,'WIN !  WIN !  WIN !');
news[37] = new newsStory(21541,'Photo of the Year 2006');
news[38] = new newsStory(16531,'f4 Photographer of the Year 2006');
news[39] = new newsStory(16530,'f4 Photographer of the Year 2006');
news[40] = new newsStory(14284,'Dessie takes the Cheetah back home .....');
news[41] = new newsStory(14118,'Another win for f4 Group');
news[42] = new newsStory(14121,'Great slide lecture by Derry Brabbs');
news[43] = new newsStory(14119,'Great slide lecture from Derry Brabbs');
news[44] = new newsStory(14120,'Brigg Trophy comes home to f4 Group');
news[45] = new newsStory(14125,'f4 Group Annual Expedition');
news[46] = new newsStory(14099,'Bill Straw wins Rose Bowl Trophy');
news[47] = new newsStory(14122,'Results from the YPU Annual Competition');


