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(189243,'Photo blog');
news[1] = new newsStory(184604,'Exhibition # 7 - \"Between War & Peace\", July 14 - August 14, 2011');
news[2] = new newsStory(184601,'Exhibition # 6 - \"Pixels Unlimited\", March 23 - July 3, 2011');
news[3] = new newsStory(167197,'Jan Öberg 60 år');
news[4] = new newsStory(164652,'Arielle: Miss Burundi 2011');
news[5] = new newsStory(164651,'Photos on CNN iReport and BBC');
news[6] = new newsStory(164356,'Samarbete med andra i Lund');
news[7] = new newsStory(164355,'Exhibition # 5 - \"Natural Beauties of Burundi\", October 23, 2010 - January 30, 2011 ');
news[8] = new newsStory(133965,'Exhibition # 4 - \"Digital Essays\", April 2 - October 10, 2010');
news[9] = new newsStory(128216,'Vi är på Antikmässan, Älvsjö, 18-21 februari 2010');
news[10] = new newsStory(107500,'Exhibition # 3 - \"Meantime Good Time\", September 19 - March 28, 2010');
news[11] = new newsStory(103900,'Vi är på Antikmässan, Helsingborg, 30 juli - 2 augusti');
news[12] = new newsStory(95815,'PRESS CLIPS...');
news[13] = new newsStory(98842,'\"RIVAD. Grand Old Man of Danish Photography\" opens');
news[14] = new newsStory(95822,'Exhibition # 2 - \"Rivad. Grand Old Man of Danish Photography\", June 20 - August 23, 2009');
news[15] = new newsStory(94939,'Photos of the Studio');
news[16] = new newsStory(94039,'How to find us - Vägledning till Vegagatan');
news[17] = new newsStory(98851,'Exhibition # 1 - \"No Images Here\" by Jan Oberg, May 2 - June 14, 2009');
news[18] = new newsStory(92666,'Print on demand');
news[19] = new newsStory(92345,'About this homepage');
news[20] = new newsStory(92344,'Oberg PhotoGraphics Studio is about to open !');


