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(154433,'Get to the Anchor in Garelochead');
news[1] = new newsStory(154154,'Minogues Rock Stirling Wedding Show.');
news[2] = new newsStory(151032,'EFSLI Conference - Radisson SAS Hotel in Glasgow');
news[3] = new newsStory(150333,'Minogues at The Inchyra Grange Hotel');
news[4] = new newsStory(130271,'Stirling Wedding Band Rockin\' The Drovers Inn for Hogmanay!');
news[5] = new newsStory(128491,'Stirling Wedding Band to Headline Stirling\'s biggest, best and most fun Wedding Show LIVE!');
news[6] = new newsStory(123364,'Camphill Blair Drummond Charity Fund Raising Night....');
news[7] = new newsStory(118196,'2010 Wedding Show now booked');
news[8] = new newsStory(118195,'Minogues new website goes \"live\" today!');


