<!--

var useRoll='no';

var offButton = new Array()
for (i=0; i<16; i++){
offButton[i] = new Image(188,21)
}

offButton[0].src= "images/off/ct_off_01.jpg"
offButton[1].src= "images/off/ct_off_02.jpg"
offButton[2].src= "images/off/ct_off_03.jpg"
offButton[3].src= "images/off/ct_off_04.jpg"
offButton[4].src= "images/off/ct_off_05.jpg"
offButton[5].src= "images/off/ct_off_06.jpg"
offButton[6].src= "images/off/ct_off_07.jpg"

var onButton = new Array()
for (i=0; i<16; i++){
onButton[i] = new Image(188,21)
}

onButton[0].src= "images/on/ct_on_01.jpg"
onButton[1].src= "images/on/ct_on_02.jpg"
onButton[2].src= "images/on/ct_on_03.jpg"
onButton[3].src= "images/on/ct_on_04.jpg"
onButton[4].src= "images/on/ct_on_05.jpg"
onButton[5].src= "images/on/ct_on_06.jpg"
onButton[6].src= "images/on/ct_on_07.jpg"

function button_on(imageno){

	place = "button"+imageno;
	if (useRoll=="yes"){

        // for each button set the image to show for a mouse over

        document.images[place].src= onButton[imageno].src}

}
function button_off(imageno) {

	place = "button"+imageno;
        if (useRoll=="yes"){

        // for each button set the image to show when mouse is moved away

      document.images[place].src= offButton[imageno].src}
}


 function start_rollovers()
 	{
		useRoll="yes";
	}

//-->