// 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<10)
	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="/category/green-guru-gear-blog/news"
	else if (whichimage==3)
	window.location="http://store.greengurugear.com/billboard-series-c-1.html"
	else if (whichimage==4)
	window.location="http://store.greengurugear.com/blow-out-wallet-p-89.html"
	else if (whichimage==5)
	window.location="http://store.greengurugear.com/billboard-series-large-deluxe-messenger-bag-c-1_2.html"
	else if (whichimage==6)
	window.location="http://store.greengurugear.com/billboard-series-shoulder-tote-c-1_9.html"
	else if (whichimage==7)
	window.location="http://store.greengurugear.com/climbing-rope-series-rope-bracelet-c-34_35.html"
	else if (whichimage==8)
	window.location="http://store.greengurugear.com/billboard-series-c-1.html"
	else if (whichimage==9)
	window.location="http://store.greengurugear.com/climbing-rope-chalk-bag-p-81.html"	
	else if (whichimage==10)
	window.location="http://store.greengurugear.com/alternative-clothing-c-23.html"
	}
// end hiding script from old broswers -->