<!-- Image rollover
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com
// Script edited by Espen Klem to work with CSSP-layers

image1= new Image();
image1.src = "graphics/grey_info_index.gif";
image1on = new Image();
image1on.src = "graphics/red_info_index.gif";

image2= new Image();
image2.src = "graphics/grey_net_index.gif";
image2on = new Image();
image2on.src = "graphics/red_net_index.gif";

image3= new Image();
image3.src = "graphics/grey_project_index.gif";
image3on = new Image();
image3on.src = "graphics/red_project_index.gif";

image4= new Image();
image4.src = "graphics/grey_tech_index.gif";
image4on = new Image();
image4on.src = "graphics/red_tech_index.gif";

image5= new Image();
image5.src = "graphics/grey_prod_index.gif";
image5on = new Image();
image5on.src = "graphics/red_prod_index.gif";

function on(name)  {
  document[name].src = eval(name + "on.src");
}
function off(name)  {
  document[name].src = eval(name + ".src");
}
// -->