<!-- 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_level2_info_en.gif";
image1on = new Image();
image1on.src = "../../../graphics/red_level2_info_en.gif";
image1alt = new Image();
image1alt.src = "../../../graphics/sub4.gif";
image1alton = new Image();
image1alton.src = "../../../graphics/sub1.gif";

image2= new Image();
image2.src = "../../../graphics/grey_level2_net_en.gif";
image2on = new Image();
image2on.src = "../../../graphics/red_level2_net_en.gif";
image2alt = new Image();
image2alt.src = "../../../graphics/sub4.gif";
image2alton = new Image();
image2alton.src = "../../../graphics/sub2.gif";

image3= new Image();
image3.src = "../../../graphics/grey_level2_project_en.gif";
image3on = new Image();
image3on.src = "../../../graphics/red_level2_project_en.gif";
image3alt = new Image();
image3alt.src = "../../../graphics/sub4.gif";
image3alton = new Image();
image3alton.src = "../../../graphics/sub3.gif";

image4= new Image();
image4.src = "../../../graphics/white_level2_tech_en.gif";
image4on = new Image();
image4on.src = "../../../graphics/red_level2_tech_en.gif";
image4alt = new Image();
image4alt.src = "../../../graphics/sub4_en.gif";
image4alton = new Image();
image4alton.src = "../../../graphics/sub4_en.gif";

image5= new Image();
image5.src = "../../../graphics/grey_level2_prod_en.gif";
image5on = new Image();
image5on.src = "../../../graphics/red_level2_prod_en.gif";
image5alt = new Image();
image5alt.src = "../../../graphics/sub4.gif";
image5alton = new Image();
image5alton.src = "../../../graphics/sub5.gif";


function on(name)  {
  document[name].src = eval(name + "on.src");
  document["altimg"].src = eval(name + "alton.src");
}
function off(name)  {
  document[name].src = eval(name + ".src");
  document["altimg"].src = eval(name + "alt.src");
}
// -->
