<!--
var ImgArr,ImgLen;
function preload(imgname) {
 if (document.images) {
   if(!ImgArr) {
     ImgArr=new Array();
     ImgLen=0;
   }
   ImgArr[ImgLen]=new Image();
   ImgArr[ImgLen].src=imgname;
   ImgLen++;
 }   
}
function chimage(x,y){
  var s="";
  if (document.images && ImgArr) {
    with (document) {
        s=images[x].src;
        images[x].src=ImgArr[y].src
        ImgArr[y].src=s;
    }
  }
}
preload ('/img/menu/1.gif');
preload ('/img/menu/2.gif');
preload ('/img/menu/3.gif');
preload ('/img/menu/4.gif');
preload ('/img/menu/5.gif');
preload ('/img/menu/6.gif');
preload ('/img/menu/7.gif');
//-->
