preload_img=['menu_l_2.gif','tytul_kon_2.gif']
function ustaw(){d=document;w=window
	d.h=function (){return (w.innerHeight!=null)?innerHeight:d.body.clientHeight}
	d.w=function (){return (w.innerWidth!=null)?innerWidth:d.body.clientWidth}

	obrazek_d=document.getElementById('gl')
	tytul_d=document.getElementById('tytul')
	menu_d=document.getElementById('menu')
	tasma_d=document.getElementById('tasma')
	poz_x=((d.w()<895?895:d.w())-3366)/2
	poz_y=(d.h()-490)/2;poz_y=poz_y<80?80:poz_y
	obrazek_d.style.left=poz_x+"px"
	obrazek_d.style.top=poz_y+"px"
	tasma_d.style.top=poz_y+"px"
	tasma_d.style.width=(d.w()<895?905:(d.w()+10))+"px"
	tytul_d.style.top=(poz_y-70)+"px"
	tytul_d.style.width=(d.w()<895?895:d.w())+"px"
	menu_d.style.top=(poz_y-25)+"px"
	if(poz_x<0){
		poz_abs=Math.abs(poz_x)
		wid=poz_abs+d.w()
		wid=(d.w()<895)?(895+poz_abs):wid
		obrazek_d.style.width=wid+"px"
	}
}
function init(txt){txt=''
	ustaw()
	preload_div=d.getElementById('preload')
	for(i=0;i<preload_img.length;i++){
		txt+='<img src="graf/'+preload_img[i]+'" />';
	}
	preload_div.innerHTML=txt
}
onresize=ustaw
onload=init