/* 

 -= JavaScript ImageSlide-Menu v1.0 =-

   (c) 2000 by wattweb medienagentur

  "you are not allow to copy or use this script without permission."

*/



var imgcnt = 6;

var imgact = 0;

function imgslide(img, file) {

 if (img != imgact && document.images) {document.images[img].src = "pics/" +  file + ".gif"}

}



function imgactive(img, file) {

 if (img != imgact && document.images) {

  document.images[img].src = "pics/" + file + ".gif";

  imgact = img;

  for (var t = 1; t < imgcnt; t++) {

   if (t != img) {document.images[t].src =  "pics/img_" + t + ".gif"}

  }

 }

}
