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(164289,'Wordle');
news[1] = new newsStory(131774,'<big>Never been a fan of wedding videos, but....</big>');
news[2] = new newsStory(104356,'<big>Planning - Using an online mood board </big>');
news[3] = new newsStory(104354,'Mood Boards online');
news[4] = new newsStory(92688,'<big>Choosing a photographer</big><br>');
news[5] = new newsStory(91086,'<big>Your Guide to Booking a Party Band</big>- provided by Matt from <a href=\"http://www.warble-entertainment.com/\"> Warble Entertainment</a>.');


