var cMenuFallTimeout=50;
var gTimers=new Array();
var gHomeTimers=new Array();
var gHomeSliders=new Array();
var gHomeOutSliders=new Array();

var home1=new Array();
home1[1]=new Image();
home1[1].src="images/layout/home/loto1_en.jpg";
home1[2]=new Image();
home1[2].src="images/layout/home/loto2_en.jpg";
home1[3]=new Image();
home1[3].src="images/layout/home/loto3_en.jpg";


var home2=new Array();
home2[1]=new Image();
home2[1].src="images/layout/home/home10_en.jpg";
home2[2]=new Image();
home2[2].src="images/layout/home/home20_en.jpg";
home2[3]=new Image();
home2[3].src="images/layout/home/home30_en.jpg";


function showSub(numero){
  setVV("submnu"+numero);
  getEl("nav"+(numero<10?"0"+numero:numero)).lastChild.style.backgroundPosition="0 -21px";
}


function hideSub(numero){
  gTimers[numero]=setTimeout("killSub("+numero+")",cMenuFallTimeout);
}


function saveSub(numero){
  clearTimeout(gTimers[numero]);
}


function killSub(numero){
  setVH("submnu"+numero);
  getEl("nav"+(numero<10?"0"+numero:numero)).lastChild.style.backgroundPosition="0 0";
}



function clipHome(par,numero){
  clipEl("inhome"+numero,0,0,0,310-par);
}


function clipHome2(par,numero){
  clipEl("inhome"+numero,0,0,0,par);
}

function clipHomeL(par,numero){
  clipEl("inhome"+numero,0,0,0,310-par);
}


function clipHome2L(par,numero){
  clipEl("inhome"+numero,0,0,0,par);
  var imgs=getEl("homecol"+numero).getElementsByTagName("img");
  imgs[0].src=home1[numero].src;
  imgs[0].style.top="100px";
}




function showHome(numero){
  var imgs=getEl("homecol"+numero).getElementsByTagName("img");
  if(imgs[0].src!=home2[numero].src){
    imgs[0].src=home2[numero].src;
    imgs[0].style.top="0";
    gHomeSliders[numero]=new Slider("gHomeSliders["+numero+"]",0,310,10,5,clipHome,clipHomeL,numero);
    gHomeSliders[numero].run();
  }
}


function saveHome(numero){
  clearTimeout(gHomeTimers[numero]);
}


function killHome(numero){
  gHomeTimers[numero]=setTimeout("hideHome("+numero+")",50);
}






function hideHome(numero){
  gHomeOutSliders[numero]=new Slider("gHomeOutSliders["+numero+"]",0,310,10,5,clipHome2,clipHome2L,numero);
  gHomeOutSliders[numero].run();

}


//opens window with image
function picWin(im,wi,he,titl,mess,winpars){
	var wL = (screen.width-wi) / 2;
	var wT = (screen.height-he) / 2;
	var wp;
	var img=new Image();
	img.src=im;
	wp="width="+wi+",height="+he+",left="+wL+",top="+wT+(typeof(winpars)=="undefined"?"":winpars);
	var vokno=window.open("","",wp);
	vokno.document.open();
	vokno.document.write('<html><head><title>'+(typeof(titl)=="undefined"?"":titl)+'</title><meta http-equiv="content-type" content="text/html; charset=iso-8859-2"></head><body style="margin:0;padding:0;background:#fff"><img src="'+im+'" alt="'+(typeof(mess)=="undefined"?"Kliknutím zavøete okno":mess)+'" onclick="window.close()" style="display:block;cursor:pointer;cursor:hand"></body></html>');
	vokno.document.close();
	return typeof(vokno)=="object"?true:false;
}

