  image1on = new Image();

  image1on.src = "i/util_en_on.gif";

  

  image2on = new Image();

  image2on.src = "i/util_fr_on.gif";

  

  image3on = new Image();

  image3on.src = "i/util_nl_on.gif";

  

  image4on = new Image();

  image4on.src = "i/util_contact_on.gif";

  

  image5on = new Image();

  image5on.src = "i/util_links_on.gif";

  

  arrow_left_on = new Image();

  arrow_left_on.src = "../i/arrow_left_on.gif";  



  arrow_right_on = new Image();

  arrow_right_on.src = "../i/arrow_right_on.gif";   

  

  

  

  image1off = new Image();

  image1off.src = "i/util_en_off.gif";

  

  image2off = new Image();

  image2off.src = "i/util_fr_off.gif";

  

  image3off = new Image();

  image3off.src = "i/util_nl_off.gif";

  

  image4off = new Image();

  image4off.src = "i/util_contact_off.gif";

  

  image5off = new Image();

  image5off.src = "i/util_links_off.gif";

  

  arrow_left_off = new Image();

  arrow_left_off.src = "../i/arrow_left_off.gif";



  arrow_right_off = new Image();

  arrow_right_off.src = "../i/arrow_right_off.gif";       







function changeImages() {

  if (document.images) {

    for (var i=0; i<changeImages.arguments.length; i+=2) {

      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");

    }

  }

}





//popup



 function newWindow(link, width, height, name) {

   var swidth = screen.width;

   var sheight = screen.height;

   var popup = null;

   var left = (swidth/2) - (width/2);

   var top = (sheight/2) - (height/2);

   var over = "";





popup=window.open("",name,"scrollbars=no,height="+height+",width="+width+",left="+left+",top="+top); 

   if (popup != null) { 

      if (popup.opener == null) { 

         popup.opener = self;     

      } 

      popup.location.href = link;

   }  

}



//scrollit function & declarations



var x = 0;

var dest = 0;

var distance = 0;

var step = 0;

var destination = 0;

var maxWidth = 11800;



function scrollit(destination) {

		step = 1;

		dest = destination;

		if (x < dest) {

			while (x < dest) {

				step += (step / 500);

				x += step;

				top.main.scroll(x,0);

			} 

			top.main.scroll(dest,0);

			x = dest;

		}

    	if (x > dest)  {

			while (x > dest) {

				step += (step / 500);

                if(x >= (0+step))

				  {

				    x -= step; 

					top.main.scroll(x,0);

                  }

				    else { break;  }

			} 

			if(dest >= 0) { top.main.scroll(dest,0); }

			x = dest;

		}

		if (x < 1) { x = 1 }

		if (x > maxWidth) { x = maxWidth }

}

