// v tom zustava content cont_{$cont.id}
// foto_{$cont.id} v tom je foto
var isin = false;
function go_to(id, src){
	if(!isin){
		var target = document.getElementById('foto_' + id);
		target.style.backgroundImage = 'url(' + src + ')';
		target.innerHTML = "";
		isin = true;
	}
}

function go_out(id, txt){
	if(isin){
		var target = document.getElementById('foto_' + id);
		target.style.backgroundImage = 'none';
		target.innerHTML = txt;
		isin = false;
	}
}
