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(155964,'<font color=\"#FF000\">Red Frog Christmas Promotion!</font color=\"#FF000\">');
news[1] = new newsStory(174300,'Fairy in the Park - Cutest Fairy Competition');
news[2] = new newsStory(131762,'<font color=\"#FF0000\">Rascals Play Centre Photo Shoot</font color=\"FF0000\">');
news[3] = new newsStory(134481,'Terms & Conditions');
news[4] = new newsStory(121655,'JANUARY OFFERS');
news[5] = new newsStory(104435,'<font color=\"#FF0000\">Red Frog Gift Vouchers</font color=\"#FF0000\">');
news[6] = new newsStory(93739,'Win a FREE sitting fee voucher worth £100');
news[7] = new newsStory(87180,'<font color=\"#FF0000\">half price homeshoot sitting fee</font color=\"#FF0000\">');
news[8] = new newsStory(80733,'Clown Around Play Centre Eccleston');
news[9] = new newsStory(98542,'<font color=\"#FF0000\">Homeshoot Print Price</font color=\"#FF0000\">');
news[10] = new newsStory(82519,'<font color=\"#FF0000\">Home Photo Shoots</font color=\"#FF0000\">  ');
news[11] = new newsStory(80724,'Children\'s Centres Leyland and Bamber Bridge');
news[12] = new newsStory(133901,'<font color=\"#FF0000\">Red Frog Fusion Art</font color=\"#FF0000\">  ');
news[13] = new newsStory(90417,'Giddy Kids Play Centre Photo Shoot');
news[14] = new newsStory(79896,'Wade Hall Children\'s Centre Photo Shoot');
news[15] = new newsStory(85593,'<font color=\"#FF0000\">Capture and Cherish</font color=\"#FF0000\">  ');
news[16] = new newsStory(82745,'<font color=\"#FF0000\">canvas price list</font color=\"#FF0000\">');
news[17] = new newsStory(90281,'<font color=\"#FF0000\">framed prints</font color=\"#FF0000\">  ');
news[18] = new newsStory(98543,'<font color=#FF0000\">Bump and Babe</font color=#FF0000\">');
news[19] = new newsStory(80732,'Clown Around Play Centre photo shoot');
news[20] = new newsStory(82731,'<font color=\"#FF0000\">photo shoots when we are out and about</font color=\"#FF0000\">');
news[21] = new newsStory(138015,'<font color=\"#FF0000\">Farmers Little Helpers Competition</font color=\"#FF0000\">');
news[22] = new newsStory(131763,'<font color=\"#FF0000\">Rascals Play Centre Photo Shoot</font color=\"FF0000\">');
news[23] = new newsStory(81376,'<font color=\"#FF0000\">Buddy\'s Play Centre Photo Shoot</font color=\"#FF0000\"> ');
news[24] = new newsStory(92323,'<font color=\"#FF0000\">Wellfield Children\'s Centre Photo Shoot</font color=\"#FF0000\">');
news[25] = new newsStory(81479,'Pharaohs Play Centre photo shoot');
news[26] = new newsStory(83345,'<font color=\"#FF0000\">Pamper and Pose Skin Deep Photo Shoot</font color=\"#FF0000\">');
news[27] = new newsStory(84791,'<font color=\"#FF0000\">Playmates Play Centre Photo shoot</font color=\"#FF0000\">');
news[28] = new newsStory(92322,'<font color=\"#FF0000\">Bamber Bridge Children\'s Centre Photo Shoot</font color=\"#FF0000\">');
news[29] = new newsStory(131764,'<font color=\"#FF0000\"> Rascals Play Centre Photo Shoot</font color=\"#FF0000\">');
news[30] = new newsStory(121879,'<font color=\"#FF0000\">Buddy\'s Play Centre Photo Shoot</font color=\"#FF0000\">');
news[31] = new newsStory(80725,'Children\'s Centres - Preston');
news[32] = new newsStory(80729,'Tiny Talk - baby sign language');


