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(113663,'Theresa Hye Photo Shoot');
news[1] = new newsStory(113558,'Metz 48 AF-1 Digital');
news[2] = new newsStory(110170,'Enduro Africa');
news[3] = new newsStory(95653,'US Classic Car Meeting');
news[4] = new newsStory(113555,'18-135mm f/3.5-5.6 ED-IF AF-S DX NIKKOR ');
news[5] = new newsStory(74334,'Keown Family Gathering');
news[6] = new newsStory(113287,'Fuji S3 Pro Digital Camera');
news[7] = new newsStory(54046,'New supplier found for photographic gifts');
news[8] = new newsStory(42800,'Epson Stylus Photo R265');
news[9] = new newsStory(41200,'Laura & David Melvin tie the knot');
news[10] = new newsStory(39090,'BSB final - Brands Hatch');
news[11] = new newsStory(38684,'Knockhill hosts the final Bike Trackday for 2007');
news[12] = new newsStory(32999,'SIGMA 70-300mm F4-5.6 DG Macro Lens');
news[13] = new newsStory(33035,'Ollie Bridewell');
news[14] = new newsStory(26810,'EuroMoto2007 update');
news[15] = new newsStory(25891,'Becky & Troy Bennett tie the knot');
news[16] = new newsStory(25491,'Bad Day for Les Shand');
news[17] = new newsStory(25000,'Finepix S2 Pro');
news[18] = new newsStory(24889,'Round 2 of the BSB at Thruxton');
news[19] = new newsStory(24748,'Track Days Scotland - Knockhill');
news[20] = new newsStory(24525,'Speed Sunday Pictures');
news[21] = new newsStory(24170,'BSB Round 1 pictures in Gallery');
news[22] = new newsStory(22213,'Cadwell Track Day');
news[23] = new newsStory(22212,'Brands Hatch 2007 Season Launch');
news[24] = new newsStory(20615,'Rider Listing for 2007 Season');
news[25] = new newsStory(20617,'Change of Clothes for Brigham Brothers');
news[26] = new newsStory(18262,'Jerez - 26/27 Jan');
news[27] = new newsStory(17119,'SIGMA 55-200mm F4-5.6 DC');
news[28] = new newsStory(17116,'Brigham Brothers go ECO');
news[29] = new newsStory(16062,'Trekking the Himalayas');
news[30] = new newsStory(14422,'Hot Marques Trackday - Knockhill');
news[31] = new newsStory(13461,'Hot Hatch Trackday - Knockhill');
news[32] = new newsStory(13035,'Printing problems sorted');
news[33] = new newsStory(12788,'Hot Marques - Knockhill 5/11/06');
news[34] = new newsStory(12022,'Track Days Scotland - Knockhill Trackday');
news[35] = new newsStory(11910,'Recovery of knockhill trackday files');
news[36] = new newsStory(11059,'Hot Hatch Trackday - Knockhill');
news[37] = new newsStory(10712,'NEMCRC Club Racing, East Fortune');
news[38] = new newsStory(10394,'AF-S DX 18-55 F3.5-5.6G');
news[39] = new newsStory(10393,'Nikon D50 Digital Camera');
news[40] = new newsStory(10251,'Photographic Competition win for Brigham Brothers');
news[41] = new newsStory(10236,'Brands Hatch Final');
news[42] = new newsStory(9682,'Kaffs Birthday Bash');
news[43] = new newsStory(9479,'Jobo Giga One');
news[44] = new newsStory(9478,'ZUIKO DIGITAL 40-150mm 1:4.0-5.6');
news[45] = new newsStory(9477,'ZUIKO DIGITAL 14-45mm 1:3.5-5.6');
news[46] = new newsStory(9386,'The Olympus E-500 digital SLR');
news[47] = new newsStory(9407,'Epson Stylus Photo R220 ');
news[48] = new newsStory(9387,'Olympus digital colour printer P-S100');
news[49] = new newsStory(9341,'Silverstone pictures now in gallery');
news[50] = new newsStory(9340,'Website up and running');


