//konfiguracja glodera - warstwy tylko od góry - moze byc kilka warstw
function initStatLyr() {
	// args: id, left, top, w, h, duration of glide to location onscroll, acceleration factor
  // acceleration factor should be -1 to 1. -1 is full deceleration
//od dolu dla dolnej ramki
var  toppos = document.body.clientHeight - 29;

	var statLyr1 = new Glider("toolmenudown",0,toppos,null,null,1,0);
	var statLyr2 = new Glider("listmenu",0,toppos-40,null,null,100,-1);

//	var statLyr2 = new Glider("leftmenu",35,220,null,null,1600,-2);
  statLyr1.show();
  statLyr2.show();
}

