var BImgAlt = new Array("Главная страница", "Продукция", "Прайс-лист", "Предложение", "Гарантия", "Адрес");
var BImgAltE = new Array("home", "product", "price", "offer", "warranty", "adress");
var BImgDir = "images/";
var BImgExt = "_on.gif";
function load(location) {
  return image; }
function show(where) {
  BName = where;
  BImgName  = BImgDir + BName + BImgExt;
  stored = where;
  storedLocation = document.images[where].src;
  document.images[where].src = BImgName; 
  for (var i = 0; i < BImgAlt.length; i++) {
    if (BName == BImgAltE[i]) {
      window.status = BImgAlt[i]; } }
  return true; }
function hide() {
  document.images[stored].src = storedLocation;
  window.status = ''; 
  return true; }
