﻿var slidesmax=7
var slidehely='http://www.lakasfelujitas1.hu/picshow/'  //a végén kell a /
function runSlideShow()
{
var slim=Math.round(Math.random()*(slidesmax-1));
if (document.all)
{
document.images.SlideShow.style.filter="blendTrans(duration=1)"
document.images.SlideShow.style.filter="blendTrans(duration=1)"
document.images.SlideShow.filters.blendTrans.Apply()
}
document.images.SlideShow.src=slidehely+[slim]+".jpg";
if (document.all)
{
document.images.SlideShow.filters.blendTrans.Play()
}
t=setTimeout('runSlideShow()', 3000)
}
