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(42133,'Workshops for Guilds and Groups');
news[1] = new newsStory(150152,' Felt making with Marietta Alker');
news[2] = new newsStory(113799,'Precious Mica Amulets');
news[3] = new newsStory(113801,' Inspired by Hundertwasser with Angie');
news[4] = new newsStory(113800,'Christmas Cards');
news[5] = new newsStory(143427,' Buds and Blooms – textural surfaces with Angie');
news[6] = new newsStory(150154,'Hats with Attitude - Feltmaking with Marietta Alker');
news[7] = new newsStory(113810,' Shimmering Landscapes with Angie');
news[8] = new newsStory(143429,'Exploring Velvet with Angie');
news[9] = new newsStory(113808,'Eureka Day');
news[10] = new newsStory(150156,'Machine Embroidery for Beginners');
news[11] = new newsStory(113809,'Illuminated Icons ');
news[12] = new newsStory(150160,'Brilliant Buttons');
news[13] = new newsStory(113805,'Altered Books with Angie');
news[14] = new newsStory(150161,'Tantalising Textile Tag Books with Angie');
news[15] = new newsStory(113803,'Indian Block Printing with a Difference with Angie');
news[16] = new newsStory(143428,'Transfers, Stencils and Stitch with Angie');
news[17] = new newsStory(150162,'Further Explorations with Velvet with Angie');
news[18] = new newsStory(150163,'Machine Embroidery for Beginners with Angie');
news[19] = new newsStory(150164,'Inspired by Klimt with Angie');


