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) {
	debug('Showing links for story ' + 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';
		}
		
	}
}


news = new Array();
news[0] = new newsStory(55184,'New B&W and Colour images for 2008');
news[1] = new newsStory(55185,'Wedding Photography');
news[2] = new newsStory(54035,'Black and White fine art photography');
news[3] = new newsStory(44166,'\"New\" section added');
news[4] = new newsStory(29391,'New Ireland Images uploaded');
news[5] = new newsStory(28376,'Updates to Website');
news[6] = new newsStory(28138,'Schweppe and Ball Photographic website is launched');
news[7] = new newsStory(28139,'APUG day out at Rock of Cashel tomorrow (June 2nd)');
news[8] = new newsStory(27982,'Portraiture - People');
news[9] = new newsStory(27983,'Portraiture - Pets and Animals');
news[10] = new newsStory(27984,'Event Photography');
news[11] = new newsStory(27986,'Corporate Photography');
news[12] = new newsStory(27987,'Record Photography');
news[13] = new newsStory(27988,'Interior Design');
news[14] = new newsStory(27989,'Awards - Photographer of the Year at Cork Camera Group');
news[15] = new newsStory(27570,'Prints');
news[16] = new newsStory(27573,'Prints');
news[17] = new newsStory(27574,'Digital Files');
news[18] = new newsStory(27575,'Canvas Prints');
news[19] = new newsStory(27035,'New photo stocks coming soon!');
news[20] = new newsStory(26284,'Cork Camera Group Annual Exhibition Opens Monday 14th May 2007');
news[21] = new newsStory(24410,'Schweppe&Ball Photographic website launch date announced!');
news[22] = new newsStory(28375,'About Schweppe and Ball ');

