var testObj;
var foto;


function dalsiFoto(foto)
{
  testObj = document.getElementById("pohled");

  if( foto > 7 ) foto = 1; 

  testObj.src = "img/pokoje/"+foto+".jpg";
  foto = foto+1;
  window.setTimeout("dalsiFoto(" + foto + ")", 5000);
  //initFade();
}

function initFade() {
	testObj = document.getElementById("pohled");

	for (var i=0;i<11;i++)
		setTimeout('setOpacity('+i+')',100*i);

	
}

function setOpacity(value)
{
	testObj.style.opacity = value/10;
	testObj.style.filter = 'alpha(opacity=' + value*10 + ')';
}