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(172059,'Check out our new slideshow to see a few samples of our work!');
news[1] = new newsStory(167036,'Book Now For Special Upgrades!');
news[2] = new newsStory(160000,'Thankyou!!');
news[3] = new newsStory(128108,'New Promotional Video');
news[4] = new newsStory(78917,'Seasons Greetings From Us At Avalon Photography...');
news[5] = new newsStory(114922,'Join Us On Facebook!');
news[6] = new newsStory(107435,'Now Taking Bookings For 2010');
news[7] = new newsStory(103439,'Gift Vouchers now available!');
news[8] = new newsStory(92385,'New for summer 2009 \"Trash The Dress\" Photo Shoot');
news[9] = new newsStory(86335,'Ready For 2009 Season..New Credit Crunch Wedding Package!!');
news[10] = new newsStory(80898,'Going On Our Holidays!!');


