// BANNER SLIDESHOW
<!-- hide script from old browsers
	//variable that will increment through the images
	var step=1
	//a variable that will keep track of the image currently being displayed.
	var whichimage=1
	
	function slider(){
	if (!document.images)
	return
	document.images.slide.src=eval("image"+step+".src")
	whichimage=step
	//must be the number of photos used
	if (step<3)
	step++
	else
	step=1
	setTimeout("slider()",6000)
	}
	slider()
	
	function productinfo(){
	if (whichimage==1)
	window.location="http://store.greengurugear.com/the-vulcar-p-1.html"
	else if (whichimage==2)
	window.location="http://store.greengurugear.com/the-cycler-p-875.html"
	else if (whichimage==3)
	window.location="http://store.greengurugear.com/blow-out-wallet-p-89.html"
	}
// end hiding script from old broswers -->