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(192288,'Humanity Photo Awards 2011 Sept 16-22');
news[1] = new newsStory(131612,'Current Projects');
news[2] = new newsStory(163861,'Beijing Exhibition 17th December 2010');
news[3] = new newsStory(141467,'Shanghai Exhibition 25th May 10th June');
news[4] = new newsStory(131609,'Global Times Photo Features');
news[5] = new newsStory(131610,'Insiders Guide to Beijing');
news[6] = new newsStory(131607,'Global Times Photo Features');
news[7] = new newsStory(110866,'I Love Beijing Exhibition');
news[8] = new newsStory(109357,'Beijing in the eyes of Foreigners an exhibition and competition organised by the Beijing Government ');
news[9] = new newsStory(109354,'Exhibition Portraits and Performances');
news[10] = new newsStory(102914,'Lecture on Contemporary Photography');
news[11] = new newsStory(101340,'Portraits and Performances an Exhibition of Photographs by Matthew Kelly');
news[12] = new newsStory(98466,'Photographic Tours of Beijing');
news[13] = new newsStory(52335,'Matthews Beijing work is featured in the books \"One Night in Beijing\" and \"Insiders Guide to Beijing\"');


