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(198550,'\"THIS............is the sea\"');
news[1] = new newsStory(18711,'Exhibition In The Heinzel Gallery');
news[2] = new newsStory(14829,'Nominated in The Spider Awards');
news[3] = new newsStory(13271,'\"Coast\" exhibition at HMT, Aberdeen.');
news[4] = new newsStory(12260,'Holiday on Islay and Jura');
news[5] = new newsStory(5879,'A wet weekend on the Isle of Gigha!');
news[6] = new newsStory(2433,'3 experimental photographs taken 31/04/2006');
news[7] = new newsStory(2432,'5 experimental photos taken 31/04/2006');
news[8] = new newsStory(2307,' Black and White Photography magazine............my first published works!');
news[9] = new newsStory(2305,'London Photographic Awards \"Best Shot\" gold portfolio winner!');
news[10] = new newsStory(1976,'Scolty Hill in the Snow');
news[11] = new newsStory(1975,' Membership of Profotos.com ');
news[12] = new newsStory(1977,'Another Photo Trip to Loch Garten!!!');
news[13] = new newsStory(1967,'The Birthday Boy Goes to Loch Garten');
news[14] = new newsStory(1648,'My New Camera Arrives!');
news[15] = new newsStory(1964,'www.sandymenziesphotography.co.uk goes live!');
news[16] = new newsStory(1963,'Photo trip with my mate Steve Armstrong to the Uists.');
news[17] = new newsStory(1962,'5 Days holiday in Skye!');
news[18] = new newsStory(1961,'Exhibition at Lyth closes.');
news[19] = new newsStory(1960,'Opening of exhibition at Lyth Art Centre in Caithness.');
news[20] = new newsStory(1978,'Bloody Hell I\'ve Just Got Married!');


