<!-- //
var descriptions=new Array()

descriptions[0]="Indoor #1: We have a neat and clean play area where the children can sit down and play with their favourite toys or get together for other indoor activities"

descriptions[1]="Indoor #2: In the evening the children can sit back, relax and watch their favourite children TV programmes"

descriptions[2]="Backyard #1: Children love to spend time playing pretend tea parties games"

descriptions[3]="Backyard #2: Children get together and this gives them an opportunity to talk to each other and develop their communications skills"

descriptions[4]="Outdoor #1: We have a fair size communal garden which is all fenced up and access to it, is through the back of our premises. The children can run around and have fun while being secure and safe"

descriptions[5]="Outdoor#2: Not only will the children enjoy the outdoors by exploring the garden, they will also learn about plants, birds, insects and nature"

descriptions[6]="Outdoor #3: Young children love to run around and play games, this gives them the chance to develop their muscles while having a fun time"

descriptions[7]="Drawing and Colouring: Children love to draw and we encourage it as well. This being a quiet activity we do this with the children in afternoon"

descriptions[8]="Storytime: Later in the afternoon after snacks the children enjoy storytime, We have a good range of picture and easy to follow story books"

var rotate_delay = 5000;
current = 0;

function next() 
	{
	if (document.slideForm.slide[current+1]) 
		{
		document.images.show.src = document.slideForm.slide[current+1].value;
		document.all("titleMessage").innerText = descriptions[current+1];
		document.all("titleMessage").textContent = descriptions[current+1];
		document.slideForm.slide.selectedIndex = ++current;
   		}
	else first();
	}

function previous() 
	{
	if (current-1 >= 0) 
		{
		document.images.show.src = document.slideForm.slide[current-1].value;
		document.all("titleMessage").innerText = descriptions[current-1];
		document.all("titleMessage").textContent = descriptions[current-1];
		document.slideForm.slide.selectedIndex = --current;
   		}
	else last();
	}

function first() 
	{
	current = 0;
	document.images.show.src = document.slideForm.slide[0].value;
	document.all("titleMessage").innerText = descriptions[0];
	document.all("titleMessage").textContent = descriptions[0];
	document.slideForm.slide.selectedIndex = 0;
	}

function last() 
	{
	current = document.slideForm.slide.length-1;
	document.images.show.src = document.slideForm.slide[current].value;
	document.all("titleMessage").innerText = descriptions[current];
	document.all("titleMessage").textContent = descriptions[current];
	document.slideForm.slide.selectedIndex = current;
	}

function ap(text) 
	{
	document.slideForm.slideButton.value = (text == "Stop") ? "Start" : "Stop";
	rotate();
	}

function change() 
	{
	current = document.slideForm.slide.selectedIndex;
	document.images.show.src = document.slideForm.slide[current].value;
	document.all("titleMessage").innerText = descriptions[current];
	document.all("titleMessage").textContent = descriptions[current];
	}

function rotate() 
	{
	if (document.slideForm.slideButton.value == "Stop") 
		{
		current = (current == document.slideForm.slide.length-1) ? 0 : current+1;
		document.images.show.src = document.slideForm.slide[current].value;
		document.all("titleMessage").innerText = descriptions[current];
		document.all("titleMessage").textContent = descriptions[current];
		document.slideForm.slide.selectedIndex = current;
		window.setTimeout("rotate()", rotate_delay);
   		}
	}
// -->