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(148170,'Imelda May shots on the Universal Jazz, Germany website.');
news[1] = new newsStory(141970,'HARLEES OPENS ON POOLE QUAY WITH LOCAL PHOTOGRAPHY');
news[2] = new newsStory(118023,'Classic Boat shoot with Griff Rhys Jones in Cannes');
news[3] = new newsStory(117613,'Featured in Classic Yacht Mag');
news[4] = new newsStory(84401,'\"Wander through\" gallery site');
news[5] = new newsStory(108189,'Sean interviews Terry O\'Neill ');
news[6] = new newsStory(112120,'Urban Reef Restaurant selects my photos to show beauty of surrounding area. . .');
news[7] = new newsStory(112139,'FJB The Chine Hotel selects local photographs by Sean for reception and entrance hall');


