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(201032,'Calendar signing');
news[1] = new newsStory(197140,'2012 Calendar now available');
news[2] = new newsStory(193668,'New Calendar for 2012 coming shortly');
news[3] = new newsStory(190400,'Cathedral view used on banner.');
news[4] = new newsStory(186037,'More New Prints');
news[5] = new newsStory(185715,'Portfolio Sessions for your Facebook Album');
news[6] = new newsStory(185710,'New Prints in Another Place Gallery');
news[7] = new newsStory(170416,'New Liverpool Photo Tours');
news[8] = new newsStory(169315,'January Travels');
news[9] = new newsStory(167319,'New Year News');
news[10] = new newsStory(164370,'Christmas Greetings');
news[11] = new newsStory(162427,'New Pictures to be added shortly');
news[12] = new newsStory(159728,'Talk at Botanic Gardens Museum, Churchtown, 11/11/10');
news[13] = new newsStory(158984,'National Photographic Awards 2010');
news[14] = new newsStory(155880,'Ireland\'s VIP Magazine Wedding Feature');
news[15] = new newsStory(151885,'2011 Calendar Now Available');
news[16] = new newsStory(147358,'Queen Victoria joins the Iron Men');
news[17] = new newsStory(144002,'Sefton Coast Workshops');
news[18] = new newsStory(142944,'Workshops Now Available');
news[19] = new newsStory(141508,'Liverpool Magazine Cover');
news[20] = new newsStory(141259,'Postcards described in my blog.');
news[21] = new newsStory(136291,'Artwork on display');
news[22] = new newsStory(136288,'Picture of the Month');
news[23] = new newsStory(134540,'Albert Dock Display');
news[24] = new newsStory(134539,'New Another Place Postcard Collection');
news[25] = new newsStory(131512,'February Travels and a Marvellous Wedding');
news[26] = new newsStory(123677,'Picture of the Month - January 2010');
news[27] = new newsStory(119915,'Christmas Card');
news[28] = new newsStory(118437,'Picture of the Month - December');
news[29] = new newsStory(116987,'Picture of the Month - November');
news[30] = new newsStory(115717,'Recent Visit of Queen Mary 2');
news[31] = new newsStory(114212,'Merseytravel Art in the Network 2009 Award');
news[32] = new newsStory(111786,'Date for Calendar Signings');
news[33] = new newsStory(68345,'New 2010 Calendar Launched');
news[34] = new newsStory(107128,'New Exhibition in Sefton');
news[35] = new newsStory(107204,'2009 Exhibitions');
news[36] = new newsStory(68344,'Exhibitions');


