var contor=0;
var s;
function slideShow()
{
 if (contor%3==0){
   document.getElementById('slideshow').src = "img/i/i1.png";
 }
 if (contor%3==1){
   document.getElementById('slideshow').src = "img/i/i2.png";
 }
 if (contor%3==2){
   document.getElementById('slideshow').src = "img/i/i3.png";
 }
 contor=(contor+1)%3;
 s=setTimeout("slideShow()",3000);
}

function init()
{
	var today = new Date();
	var year = today.getYear();
	if(year<2000) 
	{
		year = year + 1900;
	}
	document.getElementById( "ftrTxt" ).innerHTML = "&copy; " + year + " Sawdust Specialties &amp; More";
}