<!--

// If adding images remember to increase the number in brackets next to array to match however many you have

	var offButton = new Array(9)

	for (i=0; i<offButton.length; i++){
		offButton[i] = new Image()
	}

offButton[0].src= "images/but-off.gif"

offButton[1].src= "images/but-off.gif"

offButton[2].src= "images/but-off.gif"

offButton[3].src= "images/but-off.gif"

offButton[4].src= "images/but-off.gif"

offButton[5].src= "images/but-off.gif"

offButton[6].src= "images/but-off.gif"

offButton[7].src= "images/but-off.gif"

offButton[8].src= "images/but-off.gif"




// If adding images remember to increase the number in brackets next to array to match however many you have

	var onButton = new Array(9)

	for (i=0; i<onButton.length; i++){
		onButton[i] = new Image()
	}


onButton[0].src= "images/but-on.gif"

onButton[1].src= "images/but-on.gif"

onButton[2].src= "images/but-on.gif"

onButton[3].src= "images/but-on.gif"

onButton[4].src= "images/but-on.gif"

onButton[5].src= "images/but-on.gif"

onButton[6].src= "images/but-on.gif"

onButton[7].src= "images/but-on.gif"

onButton[8].src= "images/but-on.gif"













function button_on(place,imageno)





    {

	if (useJS){



        // for each button set the image to show for a mouse over



        document.images[place].src= onButton[imageno].src}



}

function button_off(place,imageno)



   {

        if (useJS){



        // for each button set the image to show when mouse is moved away



      document.images[place].src= offButton[imageno].src}

}





//-->