<!--


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


//-->