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(102850,'<strong>What are the charges for Wedding Photography?</strong>');
news[1] = new newsStory(171056,'Tuition & Studio shoots for Portrait Photography');
news[2] = new newsStory(171049,'Wedding Story Books');
news[3] = new newsStory(171054,'Collectors Books - Portraits & People');
news[4] = new newsStory(102865,'What areas of the country do you cover?');
news[5] = new newsStory(171055,'Collectors Book - Landscape & Travel Photography');
news[6] = new newsStory(208326,'Winnie & Frank Tovey recall their experiences of China & India.');
news[7] = new newsStory(102871,'Can we see examples of your wedding photography and story book albums?');
news[8] = new newsStory(102873,'Do you supply DVD images and/or reprints?');
news[9] = new newsStory(110784,'HOW DOES PHOTOBOX WORK? What do you charge for reprints & how do I order them?');
news[10] = new newsStory(170005,'Portrait Tutorial for Invicta Photographic Club');
news[11] = new newsStory(145396,'Illustrated talk to The Medway GEOGRAPHICAL SOCIETY. Oct 2010');
news[12] = new newsStory(101420,'<strong>National Portrait Gallery Photographic Portrait Prize 2010</strong>');
news[13] = new newsStory(103427,'Devolution Christmas Party  Nov 28th 2009 in Reading');
news[14] = new newsStory(22301,'<strong>david tovey at Leaf Galleries in Maidstone</strong>');
news[15] = new newsStory(45218,'<strong>David Tovey Exhibiting fine art prints at the Arthouse Gallery</strong>');
news[16] = new newsStory(32010,'<strong>National Portrait Gallery.  David Tovey\'s entries for the Photographic Portrait Prize 2007</strong>');
news[17] = new newsStory(76954,'Corridor Art at Marlowe Theatre Canterbury');
news[18] = new newsStory(52114,'<strong>Exhibition of photography at Bewl Water Visitor Centre</strong>');
news[19] = new newsStory(19183,'<strong>Some examples from the 2007 Exhibition of photography at Bewl Water Visitor Centre</strong>');
news[20] = new newsStory(117985,'CHIPS - CINDERELLA 2010');
news[21] = new newsStory(118991,'Devolution Christmas Party 2009');


