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(210033,'Open Art Exhibition success...');
news[1] = new newsStory(203717,'37th Smethwick International...');
news[2] = new newsStory(203113,'Wrekin International Salon...');
news[3] = new newsStory(200603,'Swansea Internation Salon...');
news[4] = new newsStory(176095,'MidPhot exhibition 2011 success...');
news[5] = new newsStory(166964,'Highly Commended print...');
news[6] = new newsStory(163940,'Telford Journal article...');
news[7] = new newsStory(158501,'Landscape Photographer of the Year 2010 comptition...');
news[8] = new newsStory(163943,'Telford Journal article...');
news[9] = new newsStory(149231,'Shropshire Star article...');
news[10] = new newsStory(147669,'Forthcoming Exhibition - November 2010 - \"Fleeting Moments\"...');
news[11] = new newsStory(123657,'2nd prize in Open Art Exhibition...');
news[12] = new newsStory(123653,'Telford & Wrekin Open Art Exhibition...');
news[13] = new newsStory(116177,'1st prize in Taylor Wimpey competiton...');
news[14] = new newsStory(113676,'Landscape Photographer of the Year book 2009...');
news[15] = new newsStory(76340,'Site content update');
news[16] = new newsStory(99937,'MCPF Photofolio award...');
news[17] = new newsStory(99940,'Austrian Super Circuit acceptances...');
news[18] = new newsStory(76339,'Midphot Exhibition success...');
news[19] = new newsStory(99960,'PAGB Inter Club Slide Championship...');
news[20] = new newsStory(99945,'Midphot 2008 award...');
news[21] = new newsStory(99953,'Shropshire Star Engagements Calendar...');
news[22] = new newsStory(99972,'FIAP award...');
news[23] = new newsStory(99968,'MCPF Slide Championships...');
news[24] = new newsStory(99956,'Shropshire Magazine article...');


