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(212308,'Image featured in magazine article');
news[1] = new newsStory(209766,'I\'m going to be archived...');
news[2] = new newsStory(209393,'Work now available from Artisan Gallery in Dorchester');
news[3] = new newsStory(206034,'January cover shoot for Dorset magazine');
news[4] = new newsStory(201931,'Feature in December issue of Dorset magazine');
news[5] = new newsStory(201473,'Kingston Maurward - thank you');
news[6] = new newsStory(199794,'Published in Bookazine');
news[7] = new newsStory(199503,'Many Thanks');
news[8] = new newsStory(193417,'Thanks to all my Surminster Cheese fest customers.');
news[9] = new newsStory(192527,'Dorset Life Magazine September centre spread');
news[10] = new newsStory(192181,'Thanks to all my Kafe Fontana customers');
news[11] = new newsStory(182693,'3 month exhibition of framed prints');
news[12] = new newsStory(190917,'Receiving award from Prince Charles');
news[13] = new newsStory(189414,'My 2012 calendar \'Atmospheric Dorset\' is now available');
news[14] = new newsStory(188560,'Article in Dorset Echo');
news[15] = new newsStory(186765,'Overall winner in the National Countryside Photography competition');
news[16] = new newsStory(185985,'Dorset Life magazine July cover');
news[17] = new newsStory(185222,'Regional winner in National Countryside Photography competition');
news[18] = new newsStory(179312,'Deer image in  the Telegraph, Independent and Metro');
news[19] = new newsStory(178553,'Dorset Life Magazine May cover');
news[20] = new newsStory(176289,'Book signing @ Waterstones Dorchester');
news[21] = new newsStory(175816,'Dorset Life Magazine April centre spread');
news[22] = new newsStory(172902,'Article published in the Telegraph online');
news[23] = new newsStory(172901,'Article published in the Mail online');
news[24] = new newsStory(171614,'Dorset Life Magazine March centre spread');
news[25] = new newsStory(168023,'Dorset Life magazine February cover');
news[26] = new newsStory(165045,'Dorset Life Magazine January cover');
news[27] = new newsStory(155309,'Dorset Life Magazine October Cover');
news[28] = new newsStory(153223,'Sturminster Newton Cheese Festival');
news[29] = new newsStory(150677,'Buckham Fair');
news[30] = new newsStory(150049,'2011 Calendar available now');
news[31] = new newsStory(149616,'Swanage Rotary Club Summer fair');
news[32] = new newsStory(145551,'Yetminster Summer Fair');
news[33] = new newsStory(144837,'Sutton Poyntz Fayre');
news[34] = new newsStory(143511,'Two new photos added');
news[35] = new newsStory(142582,'Images to appear in Dorset Life magazine ');
news[36] = new newsStory(142573,'New greetings cards outlet');
news[37] = new newsStory(119183,'Dorset Art Weeks 2010');
news[38] = new newsStory(140216,'Images chosen for Dorset Life magazine');
news[39] = new newsStory(140215,'Images chosen for This England calendar');
news[40] = new newsStory(139168,'Dorset Art Weeks brochures');
news[41] = new newsStory(135178,'Two more images published');
news[42] = new newsStory(134643,'Dorset Arts & Crafts - Dorchester');
news[43] = new newsStory(133801,'Southern Scenic Photography on Facebook');
news[44] = new newsStory(132565,'Another image published');
news[45] = new newsStory(131851,'Heroes Welcome');
news[46] = new newsStory(130481,'Channel 4 - Grand Designs entries');
news[47] = new newsStory(127390,'Image Published in magazine');
news[48] = new newsStory(127387,'Image published in magazine');
news[49] = new newsStory(117942,'Seasonal offer on 2010 calendars');
news[50] = new newsStory(115941,'New product released');
news[51] = new newsStory(115940,'Two new cards for Christmas');
news[52] = new newsStory(115474,'Highly Commended');
news[53] = new newsStory(106921,'2010 Calendars Now Available');
news[54] = new newsStory(104476,'Shortlisted in major competition');
news[55] = new newsStory(100169,'Another new outlet');
news[56] = new newsStory(98786,'Southern Scenic is now Chip and Pin enabled');
news[57] = new newsStory(97320,'Another new outlet announced');
news[58] = new newsStory(95330,'New Canvas range now available');
news[59] = new newsStory(95325,'Image featured in magazine');
news[60] = new newsStory(92762,'Prints hung in new Dorset Fire & Rescue headquarters');
news[61] = new newsStory(83580,'Bespoke framing now available');
news[62] = new newsStory(81844,'Photo Chosen for Paris Exhibition');
news[63] = new newsStory(79175,'Grace charity update');
news[64] = new newsStory(78201,'Another new retail outlet - Dorchester');
news[65] = new newsStory(77353,'Highly Commended in National Competition');
news[66] = new newsStory(76554,'New retail outlets - Wareham & Bridport');
news[67] = new newsStory(75958,'Chilfrome Christmas Bazaar');
news[68] = new newsStory(75956,'Dorchester Market');
news[69] = new newsStory(70412,'SSP helps sponsor new school in the Sudan');
news[70] = new newsStory(69423,'Dorset Moods 2009 calendar now available');
news[71] = new newsStory(47761,'Work on display');
news[72] = new newsStory(45718,'Dorchester Exhibition');
news[73] = new newsStory(45717,'Exhibition');
news[74] = new newsStory(203736,'Dorset Art Weeks 2012');
news[75] = new newsStory(204441,'Kingston Maurward Christmas Craft and Gourmet Food Show');
news[76] = new newsStory(204442,'Martinstown Christmas fair');


