<!--

var imgPath = "../";

if (isHome){imgPath = "";}

//alert ("imgPath = *"+imgPath+"*");

	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[0].src= imgPath+"images/menu-home-off.gif";
offButton[1].src= imgPath+"images/menu-aboutus-off.gif";
offButton[2].src= imgPath+"images/menu-whatwedo-off.gif";
offButton[3].src= imgPath+"images/menu-learningzone-off.gif";
offButton[4].src= imgPath+"images/menu-getinvolved-off.gif";
offButton[5].src= imgPath+"images/menu-shop-off.gif";
offButton[6].src= imgPath+"images/menu-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[0].src= imgPath+"images/menu-home-on.gif";
onButton[1].src= imgPath+"images/menu-aboutus-on.gif";
onButton[2].src= imgPath+"images/menu-whatwedo-on.gif";
onButton[3].src= imgPath+"images/menu-learningzone-on.gif";
onButton[4].src= imgPath+"images/menu-getinvolved-on.gif";
onButton[5].src= imgPath+"images/menu-shop-on.gif";
onButton[6].src= imgPath+"images/menu-contact-on.gif";






function button_on(place,imageno)


    {
	if (isIMG){

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

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

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


//-->