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(187413,'National Geographic Traveler Competition Editors Choice!');
news[1] = new newsStory(187412,'\'A Shot in the Park\' Photography Competition Winner');
news[2] = new newsStory(161014,'READ ALL ABOUT IT!');
news[3] = new newsStory(161013,'\'A Shot in the Park\' Photography Competition');
news[4] = new newsStory(161012,'RoscoPhotographic hits Bolam Lake ');
news[5] = new newsStory(157791,'ROSCOPHOTOGRAPHIC WINS AGAIN!');
news[6] = new newsStory(154757,'ROSCOPHOTOGRAPHIC NOW ON SALE IN WHITLEY BAY!');
news[7] = new newsStory(154134,'SHORTLISTED');
news[8] = new newsStory(154131,'NOW SHOWING ON A WALL NEAR YOU...');
news[9] = new newsStory(152551,'Scots Magazine Calendar 2011');
news[10] = new newsStory(152550,'Island Incidents');
news[11] = new newsStory(135750,'RoscoPhotographic now on Amateur Photographer\'s Website!');
news[12] = new newsStory(135749,'Journal Extra \"Your View\" Thursday 1 April 2010');
news[13] = new newsStory(108708,'Corporate Work');
news[14] = new newsStory(107759,'ROSCOPHOTOGRAPHIC IN OCTOBER\'S DIGITAL SLR PHOTOGRAPHY MAGAZINE!');
news[15] = new newsStory(107749,'The Scots Magazine Calendar 2010');
news[16] = new newsStory(98365,'See my new flickr site');
news[17] = new newsStory(97794,'Photographer\'s pictures in the frame twice  ');
news[18] = new newsStory(96719,'Scots Magazine June Cover and Culross Feature');
news[19] = new newsStory(95833,'Inside Knowledge: Edinburgh');
news[20] = new newsStory(86924,'In Full Swing');
news[21] = new newsStory(86926,'Wish You Were Here');
news[22] = new newsStory(84567,'Beauty of Britain Calendar 2010');
news[23] = new newsStory(83298,'Canon EOS 5D MKII');
news[24] = new newsStory(80877,'Inspirations');
news[25] = new newsStory(80878,'ERSKINE CHEQUE PRESENTATION');
news[26] = new newsStory(78139,'Front Cover');
news[27] = new newsStory(79862,'A tale of two cities');
news[28] = new newsStory(75886,'Take A View 2008: \'Classic View\' Commended Image');
news[29] = new newsStory(75287,'Classic View Commended: Cramond Causeway');
news[30] = new newsStory(73065,'Come home to Scotia');
news[31] = new newsStory(73055,'The Canon EOS 20D');
news[32] = new newsStory(72968,'Seeing the Light');
news[33] = new newsStory(63013,'Gallery');
news[34] = new newsStory(58291,'Cover Shot & Portfolio');
news[35] = new newsStory(55990,'Inverclyde Extra');
news[36] = new newsStory(49511,'Exhibition');
news[37] = new newsStory(51738,'Beginner\'s Guide');
news[38] = new newsStory(73064,'Celtic Chic');
news[39] = new newsStory(49507,'Portfolio');
news[40] = new newsStory(45721,'Inspirations');
news[41] = new newsStory(43517,'Northern Light');
news[42] = new newsStory(43516,'Language of Landscape');
news[43] = new newsStory(42179,'NORTHSCAPE Guest Gallery');
news[44] = new newsStory(35975,'Photographer of the Year 2007: Coastal Landscapes 3rd Place');
news[45] = new newsStory(33938,'In case you were wondering...');
news[46] = new newsStory(33935,'Digital Photographer of the Year 2007, Round 6 Third Place: Black & White');
news[47] = new newsStory(33934,'Practical Photography Photographer of the Year 2007, Round 5 Runner-Up: The Elements');
news[48] = new newsStory(6632,'Winner of Digital Photo Magazine\'s Digital Photographer of the Year 2006 Black and White Round');
news[49] = new newsStory(35978,'BBC A Digital Picture of Britain');


