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(213364,'Cuban Vibes Salsa Photographs now online');
news[1] = new newsStory(211979,'\"Once upon a time at the Adelphi\" ');
news[2] = new newsStory(210257,'SITE UPDATE');
news[3] = new newsStory(208761,'Cuban Vibes Salsa Night - Feb 2012');
news[4] = new newsStory(206428,'HAPPY CHRISTMAS');
news[5] = new newsStory(202347,'Cuban Vibes Salsa Photographs now online');
news[6] = new newsStory(202341,'The Visit - Tring Park');
news[7] = new newsStory(201214,'Cuban Vibes Salsa');
news[8] = new newsStory(186200,'Bertex Bride offer');
news[9] = new newsStory(184690,'Congratulations Rob & Claire');
news[10] = new newsStory(184674,'The Wedding Dress Sale');
news[11] = new newsStory(182629,'Junior Dance Show - Tring Park');
news[12] = new newsStory(180323,'Tring Park Junior Dance Show');
news[13] = new newsStory(180237,'Music Show Case Tring Park');
news[14] = new newsStory(178861,'Framed Prints');
news[15] = new newsStory(178071,'wed');
news[16] = new newsStory(178064,'THE ROYAL WEDDING');
news[17] = new newsStory(173798,'Drama Workshops');
news[18] = new newsStory(169101,'Fine Art \'Natural Form\' Photographs on display in Berkhamsted - further works added');
news[19] = new newsStory(168381,'National Wedding Show');
news[20] = new newsStory(165019,'HAPPY NEW YEAR');
news[21] = new newsStory(164262,'HAPPY CHRISTMAS');
news[22] = new newsStory(163851,'Fine Art Orchid Photography on display');
news[23] = new newsStory(156977,'The Guide - Fun at Espinosa');
news[24] = new newsStory(156634,'London\'s Largest free admission Wedding Fair ');
news[25] = new newsStory(153558,'Tickets for the National Wedding Show London up for graps.');
news[26] = new newsStory(153571,'Brides at Work - 17th September 2010');
news[27] = new newsStory(152151,'Find the dress of your dreams');
news[28] = new newsStory(151761,'Antony Gormley\'s Critical Mass  - Extended');
news[29] = new newsStory(151360,'National Wedding Show');
news[30] = new newsStory(149490,'BRIDES AT WORK!');
news[31] = new newsStory(148307,'Gentle Visions Recommends Antony Gormley\'s Critical Mass ');
news[32] = new newsStory(87971,'Funny for money  rnd09');
news[33] = new newsStory(78419,'HAPPY CHRISTMAS');
news[34] = new newsStory(37394,'Image Competition Win');
news[35] = new newsStory(32028,'Album Launch');
news[36] = new newsStory(29379,'Paul\'s New Album July 2007 - featuring photography by James Gentle.');
news[37] = new newsStory(14419,'\"EXPLORING NATURAL FORM\" EXHIBITION - JANUARY 2007');
news[38] = new newsStory(17050,'Exploring Natural Form - Liz & James Gentle');
news[39] = new newsStory(13674,'TRANSINDUS PHOTOGRAPHER OF THE YEAR ');
news[40] = new newsStory(8428,'NEW WEBSITE ');
news[41] = new newsStory(210215,'Do you visit the Venue ahead of the Wedding?');
news[42] = new newsStory(210214,'Do you have insurance?');
news[43] = new newsStory(211922,'Do you have to commit to an Album / Photo book or other display materials up front?');


