var intCounter = 0;
var Timer;
var bolReset = 0;
slideshow();
function slideshow()
{
	if (bolReset == 0)	
	{
		if (intCounter == 3)
		{
			intCounter = 1;
		}
		else 
		{
			intCounter += 1;
		}
	}
	bolReset = 0;
	document.getElementById('divSlide').style.backgroundImage = 'url(images/bliz_'+intCounter+'.jpg)';
	Timer = setTimeout('slideshow()',6000);
}
function changeimage (intImg)
{
	clearTimeout(Timer);
	intCounter = intImg;
	bolReset = 1;
	slideshow();
}