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(180845,'NOTE:  This page no longer updated . . . for news and events see my blog, or use contact form and request a newsletter.');
news[1] = new newsStory(149850,'*No longer updated; <p align=\"center\"><b> Visit my blog:<a target=_blank\" href=\"http://paintboxjournal.blogspot.com\"> <p align=\"center\">C L I C K      H E R E . . . .</a></b></p> ');
news[2] = new newsStory(152614,'Capital Area Studios Tour');
news[3] = new newsStory(152615,'Master Artist Workshop with Yolo Co. Arts Council');
news[4] = new newsStory(110415,'\"State of the Estuary\" group show');
news[5] = new newsStory(74732,'Tucson Plein Air Painters\' Society, Annual Members Juried Show');
news[6] = new newsStory(70994,'Valona Paintout Reception,  Epperson Gallery, Crockett, CA');
news[7] = new newsStory(51372,'Home Dedication, Habitat for Humanity');
news[8] = new newsStory(38254,'Little Treasures\" Holiday Show, Tubac Center for the Arts');
news[9] = new newsStory(38253,'Pence Gallery Artist Studio Tour');
news[10] = new newsStory(16560,'Yosemite Rennaisance Exhibit');
news[11] = new newsStory(25670,'Finalist, Artist-in-Residence');
news[12] = new newsStory(19273,'First Place Award, SF Bay Flyway Festival Plein Air Exhibit');


