
//Petit Menú 2
window.name = 'petitmenu'; 
if (document.images) {
  version = "n3";

  // Preload rolloff
  home = new Image(79,26);
  home.src = "images/home.png";
  what = new Image(145,26);
  what.src = "images/what.png";
  steps = new Image(180,26);
  steps.src = "images/steps.png";
  costs = new Image(124,26);
  costs.src = "images/costs.png";
  apply = new Image(139,26);
  apply.src = "images/apply.png";

  // Preload rollover
  home_ = new Image(79,26);
  home_.src = "images/home_.png";
  what_ = new Image(145,26);
  what_.src = "images/what_.png";
  steps_ = new Image(180,26);
  steps_.src = "images/steps_.png";
  costs_ = new Image(124,26);
  costs_.src = "images/costs_.png";
  apply_ = new Image(139,26);
  apply_.src = "images/apply_.png";
}

// función rollover
function lux(imgName) {
  if (document.images) {
    document.images[imgName].src = eval(imgName + "_.src");
  }
}

// función rollout
function mork(imgName) {
  if (document.images) {
    document.images[imgName].src = eval(imgName + ".src");
  }
}


