﻿function slideshow1 () {
	num = Math.round(Math.random()*5) + 1;
	document.getElementById('slide1').src='img/slide/l'+num+'.jpg';	
}


window.setInterval("slideshow1()", 3000);
