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) {
	debug('Showing links for story ' + 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';
		}
		
	}
}


news = new Array();
news[0] = new newsStory(70787,'DOUBLE SEATER DISCOVERED ON GRAND CANYON');
news[1] = new newsStory(70790,'NO LOO VIEW FROM EMPIRE STATE BUILDING');
news[2] = new newsStory(70821,'ELEPHANTS SPOTTED FROM LOO IN ZAMBIA');
news[3] = new newsStory(68226,'<em>A LOO WITH A VIEW</em> PUBLISHED IN THE UN INTERNATIONAL YEAR OF SANITATION');
news[4] = new newsStory(68227,'\"COCK-A-DOODLE... LOO?\"');
news[5] = new newsStory(70743,'NOVEMBER 2008');

