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(43430,'Let us know what you think of the site via the contact link.');
news[1] = new newsStory(58115,'Surf and Snowkiting......');
news[2] = new newsStory(58117,'Sailing, sailing -Dee Caffari and some extreme moth sailing.');
news[3] = new newsStory(73691,'Loads of new images uploaded');
news[4] = new newsStory(84585,'January Boys surf / kite tour to the canaries.');
news[5] = new newsStory(89332,'South Downs Way - 110 miles off road by bike');
news[6] = new newsStory(101976,'New VW images now on the site');
news[7] = new newsStory(109429,'Invited to shoot APNIA - a heavy heavy band!');
news[8] = new newsStory(155055,'Great Gorilla Run 2010');


