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(188746,'Football Faces at Chesterfield FC');
news[1] = new newsStory(188015,'Wedding Photography Sheffield');
news[2] = new newsStory(188046,'Portrait Photography Sheffield');
news[3] = new newsStory(212316,'Graduation Photography Sheffield');
news[4] = new newsStory(189753,'Pet Portrait photography Sheffield');
news[5] = new newsStory(72171,'GF Smith Traditional Post bound Album Package.');
news[6] = new newsStory(72177,'Madrid Book bound Album Package.');
news[7] = new newsStory(73033,'The Acrylic Perspective.');
news[8] = new newsStory(72178,'GF Smith Book bound Album Package. ');
news[9] = new newsStory(29973,'Event Photography.');
news[10] = new newsStory(72165,'Frames.');
news[11] = new newsStory(80682,'GF Smith Reportage A4 Package.');
news[12] = new newsStory(73001,'Canvas Wrap Prints.');
news[13] = new newsStory(40938,'Actor / Model Head-shots.');
news[14] = new newsStory(73002,'12mm Acrylic Prints.');
news[15] = new newsStory(72184,'Expressions Package.');
news[16] = new newsStory(74470,'Wedding -CD Only- Package.');
news[17] = new newsStory(73003,'Box Framed Acrylic.');
news[18] = new newsStory(72159,'Baby *Daze* Photography.');
news[19] = new newsStory(163334,'Parent Albums');
news[20] = new newsStory(155646,'The Look ...Who loves you... Portrait Session');
news[21] = new newsStory(132299,'Nursery photography in Sheffield');
news[22] = new newsStory(87678,'Engagement Photography.');
news[23] = new newsStory(73006,'The Lifestyle Acrylic Range.');
news[24] = new newsStory(85922,'Pre-Wedding Photography.');
news[25] = new newsStory(73635,'Makeover Photography.');
news[26] = new newsStory(73008,'The Premier Acrylic Range.');
news[27] = new newsStory(166799,'The Gallery Print');
news[28] = new newsStory(85924,'Post-Wedding Photography - Trash the Dress.');
news[29] = new newsStory(73025,'The Glacier Artistry Range.');
news[30] = new newsStory(73207,'Photo Restoration.');
news[31] = new newsStory(73205,'Metal Edge Print.');
news[32] = new newsStory(73022,'Glacier Block.');
news[33] = new newsStory(73024,'The Glacier Magnetic.');


