<!--
var imagePath = "";
if (admin) {imagePath = "../";}

	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[0].src= "images/Left-Menu_05.gif";
offButton[1].src= "images/Left-Menu_08-2.gif";
offButton[2].src= "images/Left-Menu_11.gif";
offButton[3].src= "images/Left-Menu_14.gif";
offButton[4].src= "images/Left-Menu_17.gif";
offButton[5].src= "images/Left-Menu_20.gif";
offButton[6].src= "images/button-raceteam-off.gif";
offButton[7].src= "images/button-contact-off.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[0].src= "images/Left-Menu-aboutmotrac-on.gif";
onButton[1].src= "images/Left-Menu-enginework-on.gif";
onButton[2].src= "images/Left-Menu-dynojet-on.gif";
onButton[3].src= "images/Left-Menu-racesupport-on.gif";
onButton[4].src= "images/Left-Menu-cylinder-on.gif";
onButton[5].src= "images/Left-Menu-products-on.gif";
onButton[6].src= "images/button-raceteam-on.gif";
onButton[7].src= "images/button-contact-on.gif";






function button_on(place,imageno)


    {
	if (useJS){

        // for each button set the image to show for a mouse over

        document.images[place+imageno].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+imageno].src= offButton[imageno].src}
}


//-->