//<!--

function over(section) {
 if (goodBrowser) {
  imgOn = eval(section + "1.src");
  document[section].src = imgOn;
 }
}

function out(section) {
 if (section != current) {
  if (goodBrowser) {
   imgOff = eval(section + "0.src");
   document[section].src = imgOff;
  }
 }
}

if (document.images) {

 var i,j;
 var sections = new Array('dossier','timeline','infrastructure','experts','library','museum','equipment', 'culture007', 'terrorism', 'specnaz', 'forum', 'l01', 'l02', 'l05', 'l06', 'l07', 'l08', 'l09', 'l10', 'l11', 'l13', 'l15', 'l16', 'l17', 'l18', 'l19', 'l20', 'l21', 'l23', 'l24', 'l25', 'l26','is0','is1','is2','is3','is4');
 var onoff = new Array('0','1');
 for (i in sections) {
  for (j in onoff) {
   eval(sections[i] + j + ' = new Image();');
   eval(sections[i] + j + '.src = "/sys/i' + j + sections[i] + '.gif";');
   if (sections[i] == current) {
    eval(sections[i] + j + '.src = "/sys/i2' + sections[i] + '.gif";');
//    eval('document[current].src = "/sys/i2' + sections[i] + '.gif";');
//    document[i].src = eval('"/sys/i2' + sections[i] + '.gif";');
    }
  }
 }
}

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) || (bName == "Opera" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4))
 goodBrowser = true;
else
 goodBrowser = false;

//-->
