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(134791,'Pints and Pictures/Pints and prints No1');
news[1] = new newsStory(77303,'Gigbeth 2008');
news[2] = new newsStory(77306,'Grandmaster Flash@Jazz cafe, London');
news[3] = new newsStory(69178,'Nozstock festival 2008');
news[4] = new newsStory(69179,'Buddy Guy, Birmingham @ Royal Symphony Hall.');
news[5] = new newsStory(69176,'Stills photography on \'Wasters\' film');
news[6] = new newsStory(51106,'Exhibiton at the light-house...');
news[7] = new newsStory(51753,'BBC radio, Mailbox March 2008');
news[8] = new newsStory(46327,'Seasick steve ');
news[9] = new newsStory(46326,'Joe lean and the jing jang jong');
news[10] = new newsStory(41270,'Kate Nash live in Birmingham');
news[11] = new newsStory(41271,'Gigbeth 2007');
news[12] = new newsStory(41272,'Ian Brown');
news[13] = new newsStory(69182,'The Big Chill 2007');
news[14] = new newsStory(69180,'\'Mayday\' photoshoot');
news[15] = new newsStory(26952,'DMC world championships-B\'ham heat');
news[16] = new newsStory(70148,'Kate Nash, Glee club, Birmingham, uk');
news[17] = new newsStory(70143,'The Fratellis/Example Custard factory ');
news[18] = new newsStory(70140,'Amy Winehouse / Mr. Hudson & The Library');


