function preloadImages(konc){
  var images=new Array();
  var els=document.getElementsByTagName("img");
  for(var i=0; i < els.length; i++){
    images.push(new Image());
    images[i].src=els[i].src;
    if(els[i].name=='image_roll'){
      pom=els[i].src;
      images[i].src=pom.substring(0,pom.length-4)+konc+pom.substring(pom.length-4,pom.length);
    }
  }
}

