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(205852,'Merry Christmas. ');
news[1] = new newsStory(195742,'TEAM GB dominant as Cav wins World Championship');
news[2] = new newsStory(193887,'USAIN BOLT PAINTING');
news[3] = new newsStory(193029,'Mark Cavendish in Green and Sunflower Yellow ORIGINAL NOW AVAILABLE');
news[4] = new newsStory(191594,'FREE WORLDWIDE SHIPPING');
news[5] = new newsStory(191248,'Geraint Thomas Team Sky gets his painting');
news[6] = new newsStory(191027,'Cadel Evans Painting now available');
news[7] = new newsStory(190884,'Picture Framing Service now available');
news[8] = new newsStory(188083,'LIMITED EDITION T SHIRTS NOW AVAILABLE');
news[9] = new newsStory(149034,'NEXT EXHIBITION SEPT');
news[10] = new newsStory(144826,'Art work now available at the SAATCHI GALLERY ONLINE');
news[11] = new newsStory(144592,'Work now available to view  at the Saatchi Gallery online');
news[12] = new newsStory(138445,'Revolutions and Cycling Art Exhibition');
news[13] = new newsStory(137680,'NEXT EXHIBITION');
news[14] = new newsStory(137135,'Orleans House Gallery Exhibition');
news[15] = new newsStory(118363,'Rob Jebb Gets his painting');
news[16] = new newsStory(114996,'Alistair Brownlee World Champion Triathlete 2009 Gets His Painting');
news[17] = new newsStory(110475,'Cyclng Resources');
news[18] = new newsStory(109712,'Alison Shanks World Champion Track Cyclist');
news[19] = new newsStory(103064,'Adrian Timmis Tour De France Rider gets his painting');
news[20] = new newsStory(103065,'Alistair Brownlee World Champion Triathlete 2009');


