function viewPhoto(which)
{
	location = '/shop.php?cmd=view&product=' + photoID[which][currentPhoto[which]];
}

function fadePhoto(which)
{
	currentOpac[which] -= 10;
	document.getElementById('homePhoto'+which).className = 'opacity' + currentOpac[which];
	if (currentOpac[which] > 0)
	{
		setTimeout('fadePhoto('+which+')', 50);
	}
	else
	{
		currentPhoto[which]++;
		if (currentPhoto[which] > 9)
		{
			currentPhoto[which] = 0;
		}
		document.getElementById('homePhoto'+which).src = '/viewimage-large.php?portrait=1&path=' + photoID[which][currentPhoto[which]];
		setTimeout('showPhoto('+which+')', 1000);
	}
}

function showPhoto(which)
{
	currentOpac[which] += 10;
	document.getElementById('homePhoto'+which).className = 'opacity' + currentOpac[which];
	if (currentOpac[which] < 100)
	{
		setTimeout('showPhoto('+which+')', 50);
	}
	else
	{
		setTimeout('fadePhoto('+which+')', 8000);
	}
}

