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(202104,'International Contemporary Artists Vol. III (Released)');
news[1] = new newsStory(180336,'International Contemporary Artists Vol. II Release');
news[2] = new newsStory(160285,'International Contemporary Artists Vol. I (Released)');
news[3] = new newsStory(180756,'O\'Hoski in Semi-Finals for Charlatan Ink Prize 2011');
news[4] = new newsStory(150079,'Hypnagogia Comes to Hamilton');
news[5] = new newsStory(137988,'\"Correction\" hits a nerve');
news[6] = new newsStory(121981,'Words from the Artist, A 2009 Reflection');
news[7] = new newsStory(116400,'Bach Project Austria 2011');
news[8] = new newsStory(116401,'About U \"Halloween Contest\" Online Exhibit');


