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(190846,'Blog');
news[1] = new newsStory(189556,'NATURA: REGARDS CRÉATIFS SUR LA NATURE');
news[2] = new newsStory(69231,'COPIAS EN EDICION LIMITADA');
news[3] = new newsStory(56066,'ARCHIVOS DIGITALES PARA PUBLICACIÓN');
news[4] = new newsStory(99909,'Exposiciones colectivas');
news[5] = new newsStory(99852,'Wildlife Photographer of the year 2009 - Semifinalista.');
news[6] = new newsStory(99506,'Revistas especializadas');
news[7] = new newsStory(99505,'Revistas especializadas');
news[8] = new newsStory(99195,'Glanzlichter 2009 - Semifinalista.');
news[9] = new newsStory(99508,'Otras publicaciones');
news[10] = new newsStory(99191,'Wildlife Photographer  of the Year 2008 - Semifinalista.');
news[11] = new newsStory(99196,'Glanzlichter 2008 - Finalista y Semifinalista.');
news[12] = new newsStory(99192,'Wildlife Photographer  of the Year 2007 - Semifinalista.');
news[13] = new newsStory(99856,'Wildlife photographer of the year 2006 - Semifinalista.');
news[14] = new newsStory(99860,'Wildlife photographer of the year 2005 - Semifinalista.');
news[15] = new newsStory(99857,'Wildlife photographer of the year 2004 - Semifinalista.');
news[16] = new newsStory(99858,'Wildlife photographer of the year 2003 - Semifinalista.');
news[17] = new newsStory(99859,'Wildlife photographer of the year 2002 - Semifinalista.');
news[18] = new newsStory(77359,'Exposiciones colectivas');
news[19] = new newsStory(60024,'PORTFOLIO NATURAL');
news[20] = new newsStory(49488,'Decoración de oficinas');
news[21] = new newsStory(14187,'2007Humedal');
news[22] = new newsStory(49502,'Wildlife Photographer of the year 2002 - Semifinalista');
news[23] = new newsStory(4533,'Juan Santos Navarro.');
news[24] = new newsStory(112739,'LAS AVES IBÉRICAS DE PRESA');


