<!--
if(document.images){
 var onimg=new Array("images/botton/1-2.gif","images/botton/2-2.gif","images/botton/3-2.gif","images/botton/4-2.gif","images/botton/5-2.gif","images/botton/6-2.gif","images/botton/7-2.gif","images/botton/8-2.gif","images/botton/9-2.gif","images/botton/10-2.gif")
 var offimg=new Array("images/botton/1.gif","images/botton/2.gif","images/botton/3.gif","images/botton/4.gif","images/botton/5.gif","images/botton/6.gif","images/botton/7.gif","images/botton/8.gif","images/botton/9.gif","images/botton/10.gif")
 var onsel=new Array();
 var offsel=new Array();
 for (i=0; i<onimg.length; i++){
 onsel[i]=new Image();
 offsel[i]=new Image();
 onsel[i].src=onimg[i];
 offsel[i].src=offimg[i];
}
}
function onSelect(n){
 if(document.images){
     document.images["imge" + n].src=onsel[n].src;
}
}
function offSelect(n){
 if(document.images){
     document.images["imge" + n].src=offsel[n].src;
}
}
// -->