
var slidesmax=78;


var slidehely='honlapok/';
function runSlideShow()
{
var slim=Math.round(Math.random()*(slidesmax-1)+10);
if (document.all)
{
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()', 8500);
} ;

