/* Scripty pro prvni stranu  */
if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4)
{ ukazovatel = "hand" }
else
{ ukazovatel = "pointer" };

function over (box, im)
{
box.style.cursor= ukazovatel;
box.src=im;
return true;
}
function out (box, im)
{
box.src=im;
return true;
}
