function errorsuppressor(){return true}
window.onerror=errorsuppressor;

var slideShowSpeed3 = 6000
var j = 0;
var j3 = 0;
var p = Pic.length;
var p3 = Pic3.length;
var preLoad = new Array();
var preLoad3 = new Array();
for (var i = 0; i <p; i++){preLoad[i] = new Image();}
for (var i = 0; i <p3; i++){preLoad3[i] = new Image();}
preLoad[0].src = Pic[0];
preLoad3[0].src = Pic3[0];

function WaitForImageIsComplete(objImage){if(!objImage.complete){setTimeout('WaitForImageIsComplete(objImage)',100)}}

function runGalleryShow(){
   if (document.all){     
      document.images.SlideShow3.style.filter="blendTrans(duration=2)"
      document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow3.filters.blendTrans.Apply()      
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow3.src = preLoad3[j3].src
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow3.filters.blendTrans.Play();
      document.images.SlideShow.filters.blendTrans.Play();
   }
   if(document.getElementById('didas')) document.getElementById('didas').innerHTML= Did[j3];
   if(document.getElementById('bla')) document.getElementById('bla').innerHTML= Did2[j3];
   j = j + 1
   if (j > (p-1)) j=0
   preLoad[j].src = Pic[j];
   
   j3 = j3 + 1
   if (j3 > (p3-1)) j3=0
   preLoad3[j3].src = Pic3[j3];
   
   t = setTimeout('runGalleryShow()', slideShowSpeed3);
}

