// Oly 4x4 SlideShow

var New;
var imageCounter=1;
	window.onload = function (){
		swapImage()
	}
	function swapImage(){
			document.getElementById('show').src="prodthumb/small_"+productimg[imageCounter];
			
			if(imageCounter==7){
				imageCounter=1;
			}
			document.getElementById('part').innerHTML=productname[imageCounter];
			
			imageCounter+=1;
			New=.1;
			transition();
			setTimeout('swapImage()', 8000);
		//}
	}
	
	function transition(){	
		document.getElementById('show').style.opacity=New;
		New=New+.1;
		t=setTimeout('transition()', 70);
		if (New>=1){
			clearTimeout(t);
		}		
	}