<!--
currentslide=47; 
maxslides=54; 
slide = new Array(maxslides+1);
speed=3000
ssTimerID = null

function preloadSlideshow()
{
if(document.images) { 

		for(var n=1;n<=maxslides;n++) { 
			slide[n]=new Image(200,133); 
			slide[n].src='index_slides/slide_'+n+'.jpg'; 
		} 
	}
}

function playSlideShow()
	{
	window.clearTimeout(ssTimerID);

	if(currentslide>maxslides) currentslide=1; 
	document.images['slide'].src=slide[currentslide].src; 
	currentslide++; 
	ssTimerID = setTimeout("playSlideShow()",speed);
	}

function pauseSlideShow()
{
	window.clearTimeout(ssTimerID);
}

function popup1()
{ 
window.open("popup_news.html","popup1","width=400,height=450,locationbar=no,resizable=no,menubar=no,toolbar=no,scrollbars=no"); 
}

function popup2()
{ 
window.open("popup_storefront.html","popup2","width=400,height=450,locationbar=no,resizable=no,menubar=no,toolbar=no,scrollbars=no"); 
}

-->