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(211733,'Keadeen Hotel Wedding Fare Sunday 5th February 2012');
news[1] = new newsStory(211732,'The Three Musketeers Panto Images');
news[2] = new newsStory(209900,'Why choose a Professional Wedding Photographer for your most important day?');
news[3] = new newsStory(208126,'Like Us on Facebook!');
news[4] = new newsStory(156546,'Buy Photos Online!');
news[5] = new newsStory(155457,'Gift Vouchers ');


