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