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(152929,'Lizzie Mary Cullen\'s First Solo Show');
news[1] = new newsStory(151861,'STOP PRESS - OVERALL WINNER LAUDERDALE HOUSE COMPETITION');
news[2] = new newsStory(151667,'Lauderdale House 25th Annual Photography Competition');
news[3] = new newsStory(144792,'The Magic \'If\' - book now published');
news[4] = new newsStory(142491,'Reprieve \'Laughter/Pain\' comedy benefit gig at the Lyceum Theatre');
news[5] = new newsStory(141685,'Twiggy names the Seabourn Sojourn, Greenwich, London, 4.6.10.');
news[6] = new newsStory(140891,'Kew Gardens Summer Festival opens');
news[7] = new newsStory(135449,'Britain\'s Got Bhangra!');
news[8] = new newsStory(134664,'Screening at BAFTA of \'Buck Diablo Is Dead\'');
news[9] = new newsStory(125333,'Interview with Rankin');
news[10] = new newsStory(124232,'\"I\'m a photographer, not a terrorist\" rally in Trafalgar Square, London.');
news[11] = new newsStory(123724,'Interview with Nadav Kander at the Sony World Photography Awards 09');
news[12] = new newsStory(122244,'Unit stills photography commission for \'Opera Singer\', a short film by Nadaav Soudry.');
news[13] = new newsStory(120015,'connectingvibes performing \'Connecting You\' at the N7 theatre');
news[14] = new newsStory(118838,'\"The Wave\" breaks in London, pre-Copenhagen summit');
news[15] = new newsStory(118841,'Martin Parr speaks at \'Vision\'');
news[16] = new newsStory(117229,'Coverage from NUJ ADM');
news[17] = new newsStory(114710,'If it\'s good enough for you, it\'s good enough for me.....');
news[18] = new newsStory(114200,'Wildlife Photographer of the Year');
news[19] = new newsStory(113263,'Comic Strip Presents.....');
news[20] = new newsStory(113068,'Exhibition of Jim Goldberg\'s and Sara Ramo\'s work at the Photographers\' Gallery');
news[21] = new newsStory(112178,'Jim Naughten\'s \'Re-enactors\' at the HotShoe Gallery');
news[22] = new newsStory(110805,'London Fashion Weekend');
news[23] = new newsStory(110481,'London Fashion Week');
news[24] = new newsStory(109399,'Published three times in a fortnight....');
news[25] = new newsStory(106118,'I don\'t know how I feel about this.....');
news[26] = new newsStory(105561,'Want to know how make up artists on Casualty create injuries?');
news[27] = new newsStory(105354,'National Photography Competition Finalist');


