function changez()
{ var foto_small = document.small.src;
  var foto_large = document.large.src;
  var pos_small = foto_small.indexOf("small");
  var pos_large = foto_large.indexOf("large");
  foto_small_new  = foto_large.substring(0, pos_large);
  foto_small_new += "small";
  foto_small_new += foto_large.substring(pos_large + 5);
  foto_large_new  = foto_small.substring(0, pos_small);
  foto_large_new += "large";
  foto_large_new += foto_small.substring(pos_small + 5);
  eval('document.small.src = "' + foto_small_new + '"');
  eval('document.large.src = "' + foto_large_new + '"');
}
function wissel()
{ changez();
}
