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(210540,'20/21 INTERNATIONAL ART FAIR FEBRUARY 2012');
news[1] = new newsStory(199608,'The Art Agency Group Show');
news[2] = new newsStory(193083,'Windsor Contemporary Art Fair 2011');
news[3] = new newsStory(193004,'Battersea Affordable Art Fair 2011');
news[4] = new newsStory(184701,'Landmark Autumn Art Fair');
news[5] = new newsStory(183506,'Featured artist at the Skylark Gallery');
news[6] = new newsStory(168698,'Ephemeral Beauty- Solo Exhibition');
news[7] = new newsStory(168912,'The Art Agency Spring Show');
news[8] = new newsStory(168688,'LOVE IS 3rd - 6th February 2011');
news[9] = new newsStory(142784,'WINDSOR CONTEMPORARY ART FAIR 12th - 14th November 2010');
news[10] = new newsStory(114503,'FEATURED ARTIST IN SKYLARK 2 GALLERY ');
news[11] = new newsStory(54779,'WEEKEND GALLERY');
news[12] = new newsStory(141704,'GALLERY@OXO - <em>SUMMER SIZZLE</em> 28th July -15th August');
news[13] = new newsStory(148327,'The Cork Street Open Exhibition August 2010');
news[14] = new newsStory(106817,'GUEST ARTIST IN SKYLARK 1 ');
news[15] = new newsStory(84848,'ONGOING EXHIBITION @ SKYLARK 2 GALLERY ');
news[16] = new newsStory(131160,'SKYLARK SUMMER EXHIBITION 24th- 30th May 2010 ');
news[17] = new newsStory(131158,'BATTERSEA CONTEMPORARY ART FAIR 14th - 16th May 2010');
news[18] = new newsStory(106811,'THE AFFORDABLE ART FAIR, BATTERSEA 22nd - 25th October 2009');
news[19] = new newsStory(106865,'THE ISLINGTON CONTEMPORARY ART & DESIGN FAIR 2009 ');
news[20] = new newsStory(92259,'Exhibition -The Art of Calm 21st April - 4th May');
news[21] = new newsStory(54784,'NON-TOXIC - NOTTINGHAM SOCIETY OF ARTISTS GALLERY');
news[22] = new newsStory(65139,'SOLO EXHIBITION AT THE HEPSIBAH GALLERY 2008');
news[23] = new newsStory(64367,'MARY PENLEY FINE ARTISTS /AUDI SHOWCASE');
news[24] = new newsStory(65008,' LETCHWORTH ARTS CENTRE 2nd June - 15th July 2008');


