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(209018,'Grand Canyon National Park ');
news[1] = new newsStory(209021,'Christmas card sales');
news[2] = new newsStory(201057,'Guardian \'Weekend in Pictures\' exhibition');
news[3] = new newsStory(199991,'Another press shoot for \'First Touch\'');
news[4] = new newsStory(199990,'Book cover shoot');
news[5] = new newsStory(199989,'Cornish Traditional Cottages');
news[6] = new newsStory(199994,'U.S.A. trip');
news[7] = new newsStory(192513,'Photography in Greenwich');
news[8] = new newsStory(192504,'New greeting cards added to collection');
news[9] = new newsStory(192501,'Shortlisted for \'Cornwall Cottages\'');
news[10] = new newsStory(188727,'The \'Magic 1,000\'');
news[11] = new newsStory(188725,'Now stocked in Waterstones');
news[12] = new newsStory(188839,'\'First Touch\' photography shoot');
news[13] = new newsStory(185801,'\'Wanderlust\' runner up');
news[14] = new newsStory(184390,'Local greeting cards');
news[15] = new newsStory(183963,'Royal Photographic Society');
news[16] = new newsStory(181337,'Facebook page');
news[17] = new newsStory(180661,'BBC Wildlife magazine');
news[18] = new newsStory(179187,'First on-line advertisement');
news[19] = new newsStory(178991,'First place in \'Buy from Britain\' photographic competition');
news[20] = new newsStory(177431,'Distinctions Workshop');
news[21] = new newsStory(176706,'The Big One!');
news[22] = new newsStory(173563,'Guardian \'Weekend in Pictures\' ');
news[23] = new newsStory(168898,'The Royal Photographic Society');
news[24] = new newsStory(167838,'Sales at LatitudeStock and Alamy');
news[25] = new newsStory(167839,'eFrame article');
news[26] = new newsStory(167837,'Sales at Alonglines');
news[27] = new newsStory(158201,'ArtsRichmond Biannual Photographic exhibition');
news[28] = new newsStory(158198,'First International Exhibition');
news[29] = new newsStory(158199,'First Touch Christmas cards');
news[30] = new newsStory(145777,'Runner-up in \'The Guardian\' photography competition');
news[31] = new newsStory(145750,'UK finalist in the \'Tourism Authority of Thailand photographic competition\'');
news[32] = new newsStory(145746,'\'First Touch\' Christmas card 2010');
news[33] = new newsStory(145787,'Travel Ink being rebranded');
news[34] = new newsStory(134343,'Photographer for Travel Ink');
news[35] = new newsStory(134344,'Alamy acceptance');
news[36] = new newsStory(131103,'Lonely Planet magazine - June edition');
news[37] = new newsStory(131102,'The Guardian - Saturday 13 March 2010');
news[38] = new newsStory(118674,'\'First Touch\' Christmas cards ');
news[39] = new newsStory(106498,'In print at last!');
news[40] = new newsStory(104826,'Shortlisted for publication');
news[41] = new newsStory(104604,'Winning entry!');
news[42] = new newsStory(104603,'Cards go to press...');
news[43] = new newsStory(100570,'Runner-up in \'The Guardian\' photography competition');
news[44] = new newsStory(99818,'New Canon camera');
news[45] = new newsStory(95269,'Heading out West in August');
news[46] = new newsStory(95263,'Trip to Krakow');
news[47] = new newsStory(90964,'Photographic Shoot');
news[48] = new newsStory(95264,'Venice Carnival');
news[49] = new newsStory(90957,'St George\'s Neonatal Unit Christmas card');
news[50] = new newsStory(90956,'Selected for exhibition');
news[51] = new newsStory(91000,'New photographer for Brighton Company');
news[52] = new newsStory(91102,'South West Coast Path photographic competition');


