window.defaultStatus='Galerie-Harfa';

function spusteni_animace(smer) {
	var rychlost = 30; 	// rychlost posunu v milisekundach
	var velikost = 12;		// velikost posunu v px
	var sirka = -3400;		// šířka divu
	var marginLeft = parseInt(document.getElementById("prezentace").style.marginLeft);
	switch(smer){
		case "vlevo":
			document.getElementById("prezentace").style.marginLeft = marginLeft-velikost+"px";
			if (marginLeft < sirka) smer = "vpravo";
			break;
		case "vpravo":
			document.getElementById("prezentace").style.marginLeft = marginLeft+velikost+"px";
			if (marginLeft > 0) smer = "vlevo";
			break;
	}
	casovac = setTimeout("spusteni_animace('"+smer+"')",rychlost);
}

function prezentace_log() {
	var rychlost = 30; 	// rychlost posunu v milisekundach
	var velikost = 2;		// velikost posunu v px
	var marginLeft = parseInt(document.getElementById("prezentace").style.marginLeft);
	if (marginLeft < -4200) {
		document.getElementById("prezentace").style.marginLeft = "0px";
	}
	else {
		document.getElementById("prezentace").style.marginLeft = marginLeft-velikost+"px";
	}
	casovac = setTimeout("prezentace_log()",rychlost);
}

function zastaveni_animace() {
	clearTimeout(casovac);
}

function zobrazeni_patra(cislo) {
	var pocet = 0;
	while (document.getElementById("patro"+(pocet+1))) {
		pocet++;
	}
	for (i=0; i<=pocet; i++) {
		document.getElementById("patro"+i).style.display = "none";
	}
	document.getElementById("patro"+cislo).style.display = "block";
}
