var slidepic = new Array('image1.png','image2.png','image3.png','image4.png','image5.png','image6.png','image7.png','image8.png');
var thispic = 0;

for (i=0; i<slidepic.length; i++)
	{
		whichopac = (i == 0) ? 'opacity100' : 'opacity0';
		document.write('<div style="position:absolute; padding-left:0px; padding-top:0px;"><img id="image' + i + '" name="image' + i + '" src="images/' + slidepic[i] + '" width="726" height="380" border="0" alt="Ithaca Beer Company" class="' + whichopac + '"></div>');
	}

function runSlideShow() {
	lastpic = thispic;
	nextpic = thispic + 1;
	if (nextpic > slidepic.length - 1)
	{
		nextpic = 0;
	}
	thispic = nextpic;

	fadeOut('image'+lastpic);
	fadeIn('image'+nextpic);
	}

setInterval('runSlideShow()', 3000);
	