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(196015,'Browston hall wedding fayre');
news[1] = new newsStory(188272,'HAPPY BIRTHDAY ! SKN photographics.');
news[2] = new newsStory(188283,'SKN Photographics attend the wedding of Adam and Vicky');
news[3] = new newsStory(183839,'SKN Photographics visit Cromer with the GT Yarmouth Photographic Society');
news[4] = new newsStory(183838,'SKN Photographics visit Lakeside Riding Centre with the Belton Digital Camera Club');
news[5] = new newsStory(183843,'SKN Photographics visit Banham Zoo');
news[6] = new newsStory(173640,'SKNphotographics at the grand Sumerleyton Hall Wedding Fayre');
news[7] = new newsStory(170135,'1st South Walsham Brownies Rockwall Climb');
news[8] = new newsStory(169139,'SKN Photographics to attend Wedding Fayre');
news[9] = new newsStory(166801,'Sue Gains Institute of Professional Photography Diploma');
news[10] = new newsStory(159310,'SKN attend the wedding of Damon and Kim');
news[11] = new newsStory(149948,'SKN Photographics attend Half Marathon');
news[12] = new newsStory(149947,'SKN Photographics attend another wedding as second camera');
news[13] = new newsStory(148116,'NEW A1 Sized Printer');
news[14] = new newsStory(148108,'Wedding Shots');
news[15] = new newsStory(144181,'The Studio is completed');
news[16] = new newsStory(143758,'Day out at The Raptor foundation');
news[17] = new newsStory(142345,'New photos added');
news[18] = new newsStory(142344,'New sections added');
news[19] = new newsStory(142341,'SKN attended wedding');
news[20] = new newsStory(118894,'working on a header');
news[21] = new newsStory(113247,'New Pictures added');
news[22] = new newsStory(113110,'NEW section added to the Gallery');
news[23] = new newsStory(112622,'New Photos');
news[24] = new newsStory(110989,'Working on the Guestbook');
news[25] = new newsStory(109733,'Web Site set up');
news[26] = new newsStory(109734,'Web site goes LIVE !');


