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(138999,'An Excellent \"Normal\" Lens Alternative for The M8 - Voigtlander Ultron 28mm f2 Review');
news[1] = new newsStory(115487,'Hasselblad\'s Most Famous Lens?');
news[2] = new newsStory(115154,'The Optimal Photo Competition Judging Process');
news[3] = new newsStory(91177,'Why enter competitions? It\'s about not knowing what you don\'t know!');
news[4] = new newsStory(57548,'Hasselblad - Where It All Began - The Remarkable 1600F');
news[5] = new newsStory(45397,'Why Medium Format?');
news[6] = new newsStory(43331,'Lessons from a trip to the Hunter Valley\'s Eaglereach wilderness resort.');
news[7] = new newsStory(33541,'Leica, the Steinway of photography?');
news[8] = new newsStory(32106,'Photographers prefer film');
news[9] = new newsStory(10349,'Lens Reviews and Recommendations');
news[10] = new newsStory(8496,'How to Clean Camera Lenses');
news[11] = new newsStory(8412,'Eight Items Permanently in My Kit - Good \"Fook\"!');
news[12] = new newsStory(8302,'Anti-Digital? No, but not my first choice.');
news[13] = new newsStory(5740,'Don\'t Discard The Elderly - Like most things in life, the Canon LTM 50mm f1.2 has much to offer!');
news[14] = new newsStory(5732,'UV Filters & Lens Hoods - Tips & Traps!');
news[15] = new newsStory(5598,'Can I help? - Need to hire a photographer?');
news[16] = new newsStory(5295,'Film, Glorious Film - the film I prefer to use');
news[17] = new newsStory(5239,'Photographic Equipment - Different horses for different courses!');
news[18] = new newsStory(5071,'The \"Standard\" is Not Always The \"Normal\" - The overlooked 50mm lens');
news[19] = new newsStory(4906,'Polarising Filter & Rangefinder Cameras - A simple solution');
news[20] = new newsStory(4870,'Photography Coaching & Teaching Sessions - One-to-one or small group');
news[21] = new newsStory(4867,'Photography Help - Single issue coaching help');
news[22] = new newsStory(4854,'Photography Coaching & Teaching Services - Fees');
news[23] = new newsStory(4816,'Hasselblad Lens Performance - Which is best?');
news[24] = new newsStory(4815,'Why Film Today?');
news[25] = new newsStory(4814,'New Lows in Attacks on Photography');
news[26] = new newsStory(4811,'Classic 120 Roll Film Cameras - Enduring technology');
news[27] = new newsStory(4810,'Selecting a Medium Format System - A structured approach');
news[28] = new newsStory(4809,'Leica\'s Newest Opportunity - Its greatest risk?');
news[29] = new newsStory(4808,'Multiple Photographic Formats - Why?');
news[30] = new newsStory(4759,'The perfect panoramic companion - Hasselblad XPan II');
news[31] = new newsStory(4758,'My Preferred System - The sublime Hasselblad 6x6 500 Series.');


