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(167481,'Travel Blog');
news[1] = new newsStory(165511,'SALE ANNOUNCED');
news[2] = new newsStory(159875,'PRICES REDUCED');
news[3] = new newsStory(135507,'Born Free Charity Donation - Update');
news[4] = new newsStory(122095,'Deborah Wins Photography Competition');
news[5] = new newsStory(118620,'Deborah contributes to Picture Business Digital Art Article');
news[6] = new newsStory(106307,'Picture Business Article');
news[7] = new newsStory(97716,'Silver Award for Samburu Dancers');
news[8] = new newsStory(97715,'Silver Award for Blue Boats');
news[9] = new newsStory(90723,'Picture Business Cover Photo');
news[10] = new newsStory(97714,'Silver Award for Goa Beach Sunset');
news[11] = new newsStory(89064,'Deborah to exhibit at Leeds Art Fair');
news[12] = new newsStory(82616,'Blue Iceberg to join Joe Cornish Gallery');
news[13] = new newsStory(82613,'Gold award for Fine Art Image');
news[14] = new newsStory(77273,'BIPP invites Deborah to talk...');
news[15] = new newsStory(68366,'BIPP invites Deborah to add her work to their website');
news[16] = new newsStory(64929,'Deborah has been shortlisted in a major photography competition');
news[17] = new newsStory(64926,'Deborah is interviewed by F2 Freelance Photographer Magazine');
news[18] = new newsStory(57634,'Deborah writes article for Digital Camera Magazine');
news[19] = new newsStory(54857,'Gold Award for Architecture image');
news[20] = new newsStory(53763,'Yorkshire Evening Post Article');
news[21] = new newsStory(51019,'British Institute of Professional Photography Qualification');
news[22] = new newsStory(43376,'Travel Photographer of the Year - Showcase');
news[23] = new newsStory(43374,'Gold Award for Fine Art image');
news[24] = new newsStory(43375,'Gold Award for Landscape image');
news[25] = new newsStory(43372,'Gold Award for Architecture image');
news[26] = new newsStory(43370,'Licentiateship in Photography qualification');
news[27] = new newsStory(43371,'Gold Award for Landscape image');


