/* galerie */

function setBackgroundPosition(object, position)
{
  object.style.backgroundPosition = "center "+position;
}

function ukazObrazek(src, width, height)
{
  var okno = open("", "_blank", "width="+(width+40)+",height="+(height+60)+",scrollbars");
  okno.document.open();
  okno.document.writeln('<html>');
  okno.document.writeln('<head>');
  okno.document.writeln('<title>UNIma spol s r.o.</title>');
  okno.document.writeln('<meta http-equiv="imagetoolbar" content="no" />');
  okno.document.writeln('</head>');
  okno.document.writeln('<link rel="stylesheet" type="text/css" href="style/imgstyle.css" /><body>');
  okno.document.writeln('<img alt="" src="'+src+'" />');
  okno.document.writeln('<div>UNIma spol s r.o.</div>');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');
  okno.document.close();
  return false;
}


/* animace display */


animaceZastavena = false;

function animujText(faze)
{
  var obj = document.getElementById("obsahJezdce");
  obj.style.left = (faze+710)+"px";
  if(faze < -5.7*710)
  {
    faze = 1;
  }
  if(!animaceZastavena)
  {
    faze -= 2;
  }
  setTimeout("animujText("+faze+")", 20);
}


function ukazStranku(src, width, height)
{
  var okno = open(src, "_blank", "width="+(width+60)+",height="+(height+40)+",scrollbars");
  return false;
}

function start()
{

}

