var slidesmax=16
var slidehely='slideshow/'  //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=3)"
document.images.SlideShow.style.filter="blendTrans(duration=5)"
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()', 6000)
}
