<!--


	var offButton = new Array();
offButton[0] = new Image();
offButton[1] = new Image();
offButton[2] = new Image();
offButton[3] = new Image();
offButton[4] = new Image();
offButton[5] = new Image();
offButton[6] = new Image();
offButton[7] = new Image();
offButton[8] = new Image();

offButton[0].src= "images/coolblue-menu-homeoff.gif";
offButton[1].src= "images/coolblue-menu-whatisoff.gif";
offButton[2].src= "images/coolblue-menu-techdetailoff.gif";
offButton[3].src= "images/coolblue-menu-benefitsoff.gif";
offButton[4].src= "images/coolblue-menu-missionoff.gif";
offButton[5].src= "images/coolblue-menu-carbonoff.gif";
offButton[6].src= "images/coolblue-menu-downloadsoff.gif";
offButton[7].src= "images/coolblue-menu-enquiriesoff.gif";
offButton[8].src= "images/coolblue-menu-contactsoff.gif";


var onButton = new Array();
onButton[0] = new Image();
onButton[1] = new Image();
onButton[2] = new Image();
onButton[3] = new Image();
onButton[4] = new Image();
onButton[5] = new Image();
onButton[6] = new Image();
onButton[7] = new Image();
onButton[8] = new Image();

onButton[0].src= "images/coolblue-menu-homeon.gif";
onButton[1].src= "images/coolblue-menu-whatison.gif";
onButton[2].src= "images/coolblue-menu-techdetailon.gif";
onButton[3].src= "images/coolblue-menu-benefitson.gif";
onButton[4].src= "images/coolblue-menu-missionon.gif";
onButton[5].src= "images/coolblue-menu-carbonon.gif";
onButton[6].src= "images/coolblue-menu-downloadson.gif";
onButton[7].src= "images/coolblue-menu-enquirieson.gif";
onButton[8].src= "images/coolblue-menu-contactson.gif";






function button_on(place,imageno)


    {
	if (isIMG){

        // 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 (isIMG){

        // for each button set the image to show when mouse is moved away

      document.images[place].src= offButton[imageno].src}
}


//-->