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(186823,'It\'s a tough job, but a girl\'s got to rise to the challenge!!');
news[1] = new newsStory(180417,'Delamere Forest is a great place for photographs...');
news[2] = new newsStory(177030,'Do you want training & inspiration in spades...?');
news[3] = new newsStory(152661,'5th September 2010...truly a day to remember');
news[4] = new newsStory(156728,'A photographer\'s dream family...for a special birthday');
news[5] = new newsStory(142619,'A pure eye lets sunshine into your soul...');
news[6] = new newsStory(142431,'22nd May was the hottest day of the year...');
news[7] = new newsStory(142430,'The power of prayer ensured the rain held off!');
news[8] = new newsStory(119388,'Even the weather couldn\'t dampen spirits...');
news[9] = new newsStory(114640,'It\'s good to give something back...');
news[10] = new newsStory(114476,'More exciting news...');
news[11] = new newsStory(109671,'Mark Cleghorn - Monkey Business 3 - what a revelation!');
news[12] = new newsStory(103835,'Exciting News - I\'ve earned my LBIPP!');
news[13] = new newsStory(101684,'Ashfield Images Photography - Time For A New Look');


