
// Memorabilia Album (c)2006 Fredrik Breggren
	
	document.onkeypress = kpress;

	var iPic = 0;
	var iMax = aPics.length;
	
	
	function slideshow() {
	
		var s = document.frmAlbum.slideorama;
		var b = document.slideButton;
		
		if (s.value == 'Y') {
			s.value = 'N';
			b.src = 'memorabilia/play.gif';
		} else {
			s.value = 'Y';
			b.src = 'memorabilia/stop.gif';
			timer();
		}
	
	
	}
	
	
	function timer(){
		setTimeout('FlipPhoto(1)',2000);
	}				
	
	function kpress(e)
	{
		iKey = (document.layers)?e.which:window.event.keyCode
		sKey = String.fromCharCode(iKey)
	
		if (sKey == 'z') 
		{
			FlipPhoto(-1);
		}
		
		if (sKey == 'x') 
		{
			FlipPhoto(1);
		}
		
	}
	
	
	
	function FlipPhoto(inp)	{
	
		var s = document.frmAlbum.slideorama;
	
		iPic = iPic + inp;
		
		if (iPic < 0) 
		{
			iPic = iMax - 1
		}
							
		if (iPic > (iMax - 1))
		{
			iPic = 0
		}
	
		if (s.value == 'Y') timer();
	
		document.all.picNumber.innerHTML = iPic + 1 + '/' + iMax;
		document.pic.src = sPicPath + aPics[iPic];
	
		document.all.picInfo.innerHTML = aTexts[iPic];
		
		if (document.all.picInfo.innerHTML.length > 1) {
			document.all.picInfo.style.visibility = 'visible';
		} else {
			document.all.picInfo.style.visibility = 'hidden';
		};
		
		
		
	}
		
		
	function SetPhoto(inp)	{
	
		var s = document.frmAlbum.slideorama;
	
		iPic = inp;
		
		if (inp < 0) 	iPic = iMax - 1;
		if (inp > iMax) iPic = iMax;
		
		document.all.picNumber.innerHTML = iPic + 1 + '/' + iMax;
		document.pic.src = sPicPath + aPics[iPic];

		document.all.picInfo.innerHTML = aTexts[iPic];
		
		if (document.all.picInfo.innerHTML.length > 1) {
			document.all.picInfo.style.visibility = 'visible';
		} else {
			document.all.picInfo.style.visibility = 'hidden';
		};
		

	}
	
	function thumbnails()	{
		var tn = '';
		
		for (var x = 0; x <= iMax - 1; x++) {
			tn = tn + '<img onMouseUp="SetPhoto(' + x + ');" src="' + sPicPath + aPics[x] + '" width="35" align="middle" class="thumb" />';
		};


		document.all.thumbnails.innerHTML = tn;

		// ../photo/2006-05-20 På lyran på riktigt/thumbnails/P5200068.jpg"
		
	}
	
