var step = 0;
var step2 = 1;

function sliderfade()
{

   if (!document.images)
      return;
      
if (step2 == 1)
{    
   if (document.all)
      slide1.filters.blendTrans.apply();    
   document.images.slide1.src = document.image[step].src;
   if (document.all)
      slide1.filters.blendTrans.play();
}
if (step2 == 2)
{    
   if (document.all)
      slide2.filters.blendTrans.apply();    
   document.images.slide2.src = document.image[step].src;
   if (document.all)
      slide2.filters.blendTrans.play();
}

   if (step<document.image.length-1)
      step++;
   else
      step=0;
      
   step2++; 
   if (step2 == 3)
     step2 = 1;
        
   setTimeout("sliderfade()",6000);
}

function sliderfade_preload()
{

  var a=sliderfade_preload.arguments;

  if(document.images)
  {
     if(!document.image) 
	    document.image=new Array();

		for(var i=0; i<a.length; i++)
		{
          document.image[i]=new Image; 
	 	  document.image[i].src=a[i];
		}
			
	setTimeout("sliderfade()",7000);		
	
   }
}