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(199495,'NURSERIES');
news[1] = new newsStory(176879,'BUSINESS  PORTRAITS');
news[2] = new newsStory(176878,'FAMILY PORTRAIT SESSIONS');
news[3] = new newsStory(4204,'abc Event Photography');
news[4] = new newsStory(45506,'ABC Photography Launch - Mussel Inn Exhibition');
news[5] = new newsStory(41998,'Mussel Inn Gallery - 157 Hope St, Glasgow');
news[6] = new newsStory(33902,'Bristol Balloon Fiesta 2007');
news[7] = new newsStory(32594,'My Wife returns from Peru');
news[8] = new newsStory(1776,'Reid Kerr College Prospectus');
news[9] = new newsStory(2688,'Silver Award BIPP');
news[10] = new newsStory(126788,'<b>School Proms & Dances</B>');
news[11] = new newsStory(34016,'<b><big strong>Bronze Package £650</big /strong></b>');
news[12] = new newsStory(71950,'Nursery Photography Proof Card System');
news[13] = new newsStory(126901,'Friendship Photos');
news[14] = new newsStory(126433,'Nursery Graduation Photography');
news[15] = new newsStory(34017,'<b><big strong>Silver Package £825</big /strong></b>');
news[16] = new newsStory(126909,'<b>Events</b>');
news[17] = new newsStory(101212,'Dance School Proof Card System');
news[18] = new newsStory(34021,'<b><big strong>Gold Package £1050</big /strong></b>');
news[19] = new newsStory(34020,'<b><big strong>Optional Extras</big /strong></b>');


