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(155929,'I can\'t thank you enough...');
news[1] = new newsStory(155930,'Thank you for your patience and kind words...');
news[2] = new newsStory(146832,'I was so happy with how well my make up lasted...');
news[3] = new newsStory(134621,'Thank you for offering a great personal service...');
news[4] = new newsStory(113459,'You made the morning very special...');
news[5] = new newsStory(113458,'My make up didn\'t move all day...');
news[6] = new newsStory(103688,'Thank you most sincerely for the fabulous make up...');
news[7] = new newsStory(103689,'That was a nice gesture...');
news[8] = new newsStory(102051,'I will highly recommend you...');
news[9] = new newsStory(93724,'I had so many lovely comments...');
news[10] = new newsStory(90168,'The MAC products were wonderful...');
news[11] = new newsStory(90171,'The music was a nice touch...');
news[12] = new newsStory(90167,'I loved the whole experience...');
news[13] = new newsStory(90064,'A massive thank you...');
news[14] = new newsStory(90066,'At 2am in the taxi home, my make-up was still intact...');
news[15] = new newsStory(90068,'I felt totally comfortable and relaxed...');
news[16] = new newsStory(90164,'A smooth and seamless service...');
news[17] = new newsStory(90172,'I picked up lots of great tips...');
news[18] = new newsStory(90165,'I was inspired to enjoy make up...');
news[19] = new newsStory(90166,'I look forward to booking again...');


