function initFade() {
	setOpacity(0);
	targetPHOTO.style.display = '';
	for (var i=0;i<11;i++)
		setTimeout('setOpacity('+i+')',100*i);
	return false;
}

function setOpacity(value)
{
	// Safari<1.2, Konqueror
	targetPHOTO.style.KHTMLOpacity = value/10;
	// Older Mozilla and Firefox
	targetPHOTO.style.MozOpacity = value/10;
	// Safari 1.2, newer Firefox and Mozilla, CSS3
	targetPHOTO.style.opacity = value/10;
	// IE/Win
	targetPHOTO.style.filter = 'alpha(opacity=' + value*10 + ')';
}

