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(200563,'April Banbury wears Ilda Di Vico');
news[1] = new newsStory(190629,'Wedding Testimonial from Nicky and Dave');
news[2] = new newsStory(188401,'Graham photographs celebrities in Guernsey and Herm Island');
news[3] = new newsStory(188402,'...the colours of the rainbow, so pretty in the sky.....');
news[4] = new newsStory(188395,'Rebecca does ballet in and around the pool');
news[5] = new newsStory(129184,'Valentine\'s Free Photo shoot Offer');
news[6] = new newsStory(166375,'April Rides on Freckles in the Snow');
news[7] = new newsStory(161912,'Tiger Lilly 2011 Calendar Photo-Shoot');
news[8] = new newsStory(152818,'Alexandra Burke at the Mobo nominations');
news[9] = new newsStory(152674,'Tiger-Lilly Music Video Launch');
news[10] = new newsStory(152421,'Ruby at Amika');
news[11] = new newsStory(151966,'Couple Photo-shoots');
news[12] = new newsStory(151923,'Miss Great Britain celebrates 65 years');
news[13] = new newsStory(151441,'Happy bride!');
news[14] = new newsStory(151385,'Emma');
news[15] = new newsStory(149780,'Shooting Stars');
news[16] = new newsStory(150266,'Harriet and the poppy field');
news[17] = new newsStory(149783,'Chelsey Baker');
news[18] = new newsStory(151129,'Recent Testimonial');
news[19] = new newsStory(137616,'Dirty Oil');
news[20] = new newsStory(150515,'Bikini girl in the snow');
news[21] = new newsStory(133131,'Lady of the Lake');
news[22] = new newsStory(150505,'Mr T and Mr R');
news[23] = new newsStory(151444,'Recent testimonial from a satisified bride');
news[24] = new newsStory(150508,'Lewis Hamilton helps Great Ormond Street Hospital as reported by The Sun');


