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(211550,'Panufnik Variation for the LSO');
news[1] = new newsStory(211549,'Aldeburgh Premiere date');
news[2] = new newsStory(192786,'New work for 2012 Presteigne Festival');
news[3] = new newsStory(190011,'In Flanders Fields \'Commended\' in 2011 Recital Music Choral Competition');
news[4] = new newsStory(184719,'Notes from the shed - and beyond...');
news[5] = new newsStory(176203,'Britten-Pears Contemporary Composition Course ');
news[6] = new newsStory(176197,'London Premiere of \'Evening Voluntary\' at JAM Concert');
news[7] = new newsStory(167975,'New work for ROH2 Exposure series');
news[8] = new newsStory(164190,'Coda - LSO Discovery Blog Post No. 5');
news[9] = new newsStory(164192,'LSO Discovery Panufnik Young Composers Workshop 2011');
news[10] = new newsStory(164194,'New work for Royal Opera House VOX2 Project');
news[11] = new newsStory(164197,'Image Unfolding for Solo Violin - Peter Sheppard Skaerved Première ');
news[12] = new newsStory(164196,'Playing with Destiny Première');
news[13] = new newsStory(158896,'Image Unfolding (Solo Violin)');
news[14] = new newsStory(154140,'And it\'s all over - LSO Discovery Blog Post No. 4');
news[15] = new newsStory(154139,'Playing with Destiny (Wind Orchestra)');
news[16] = new newsStory(150525,'Halfway Point - LSO Discovery Blog Post No. 3');
news[17] = new newsStory(150523,'Stop and think - LSO Discovery Blog Post No. 2');
news[18] = new newsStory(150522,'Precomposition - LSO Discovery Blog Post No. 1');
news[19] = new newsStory(139331,'LSO Discovery Panufnik Young Composers Scheme 2010 Blog');
news[20] = new newsStory(133902,'Playing with Destiny - new work for Lambeth Wind Orchestra');
news[21] = new newsStory(133900,'LSO Discovery Panufnik Young Composers Scheme 2010 - Update!');
news[22] = new newsStory(123022,'Evening Voluntary (Solo Organ)');
news[23] = new newsStory(120316,'LSO Discovery Panufnik Young Composers Scheme 2010');
news[24] = new newsStory(118755,'2009 British Composer Award Winner!');
news[25] = new newsStory(113832,'The Serious Side of Madness shortlisted for 2009 British Composer Award');
news[26] = new newsStory(113830,'2009 Alessio Monti International Competition for Guitar Composition');
news[27] = new newsStory(112526,'Circles of Fire (Brass Dectet)');
news[28] = new newsStory(112525,'PRSF and Bliss Trust Bursary');
news[29] = new newsStory(112523,'Arcomis Online Publishing');
news[30] = new newsStory(103143,'BBC Radio 3 \'Hear & Now\' Broadcast');
news[31] = new newsStory(94378,'Scores available at BMIC');
news[32] = new newsStory(89588,'OperaGenesis Project');
news[33] = new newsStory(87908,'Lake District Residency 25 - 30 May 2009');
news[34] = new newsStory(85256,'\'Ghost Dances\' - New Work for Alto Flute and Guitar');
news[35] = new newsStory(85255,'Farnham Festival Premiere');
news[36] = new newsStory(70672,'<em>The Serious Side of Madness</em> - Radio 3 Broadcast - October 1st 2008');
news[37] = new newsStory(66792,'<em>The Serious Side of Madness</em> to be performed by the BBC Philharmonic ');
news[38] = new newsStory(66797,'New Work for Carla Rees and David Black');
news[39] = new newsStory(66795,'New Work for 2009 Farnham Festival');
news[40] = new newsStory(66794,'Broadcast of <em>The Everlasting Voices</em> on BBC Radio 3');
news[41] = new newsStory(66796,'Adopt a Composer Premiere to be recorded for broadcast on BBC Radio 3');
news[42] = new newsStory(66793,'2008 Liverpool Capital of Culture New Composer Competition Winner');
news[43] = new newsStory(66963,'Jubilate Premiere at St Paul\'s Cathedral');
news[44] = new newsStory(66870,'<em>The Everlasting Voices</em> selected for JAM 2008 Concerts');
news[45] = new newsStory(46412,'Adopt a Composer Scheme Preview');
news[46] = new newsStory(46311,'<em>Ding Dong Bell</em> - Premiere 3 February - The Space, London');
news[47] = new newsStory(45262,'ORCHESTRAL/LARGE ENSEMBLE');
news[48] = new newsStory(45263,'CHAMBER MUSIC');
news[49] = new newsStory(117626,'INSTRUMENTAL SOLO/DUO');
news[50] = new newsStory(44661,'CHORAL/VOCAL');
news[51] = new newsStory(136164,'WIND BAND');
news[52] = new newsStory(80297,'EDUCATIONAL');
news[53] = new newsStory(103225,'A Pilgrim\'s Tale (Educational Project)');
news[54] = new newsStory(103224,'Ding Dong Bell (Bass Clarinet & Piano)');
news[55] = new newsStory(103223,'Ghost Dances (Alto Flute & Guitar)');
news[56] = new newsStory(103226,'Give Rest O Christ (SSATB Choir)');
news[57] = new newsStory(103227,'God on us thy mercy show (SSAATTBB Choir)');
news[58] = new newsStory(103228,'Heaven which never night makes black (SATB Choir & Organ)');
news[59] = new newsStory(103229,'Returning (Octet)');
news[60] = new newsStory(103230,'The Everlasting Voices (SSAATTBB Choir)');
news[61] = new newsStory(103220,'The Serious Side of Madness (Chamber Orchestra)');
news[62] = new newsStory(103231,'The Silken Thread (Chamber Ensemble)');


