<!-- 

// 1k DHTML API

d=document;l=(d.layers)?1:0;op=navigator.userAgent.toLowerCase().indexOf('opera')!=-1;
function gE(e,f){if(l){f=(f)?f:self;var V=f.document.layers;if(V[e])return V[e];for(var W=0;W<V.length;)t=gE(e,V[W++]);return t;}if(d.all)return d.all[e];return d.getElementById(e);}
function sE(e){if(l)e.visibility='show';else e.style.visibility='visible';}
function hE(e){if(l)e.visibility='hide';else e.style.visibility='hidden';}
function sZ(e,z){if(l)e.zIndex=z;else e.style.zIndex=z;}
function sX(e,x){if(l)e.left=x;else if(op)e.style.pixelLeft=x;else e.style.left=x;}
function sY(e,y){if(l)e.top=y;else if(op)e.style.pixelTop=y;else e.style.top=y;}
function sW(e,w){if(l)e.clip.width=w;else if(op)e.style.pixelWidth=w;else e.style.width=w;}
function sH(e,h){if(l)e.clip.height=h;else if(op)e.style.pixelHeight=h;else e.style.height=h;}
function sC(e,t,r,b,x){if(l){X=e.clip;X.top=t;X.right=r;X.bottom=b;X.left=x;}else e.style.clip='rect('+t+' '+r+' '+b+' '+x+')';}
function wH(e,h){if(l){Y=e.document;Y.write(h);Y.close();}if(e.innerHTML)e.innerHTML=h;}

function sB(e,b){e.style.background=b};

function gX(e){if(l)return e.left;else if(op)return e.style.pixelLeft;else return parseInt(e.style.left);}
function gY(e){if(l)return e.top;else if(op)return e.style.pixelTop;else return parseInt(e.style.top);}

function gH(e){if(l)return e.clip.height;else if(op)return e.style.pixelHeight;else return parseInt(e.style.height);}
function gW(e){if(l)return e.clip.width;else if(op)return e.style.pixelWidth;else return parseInt(e.style.width);}

function gZ(e){if(l)return e.zIndex;else if(op)return e.style.zIndex;else return parseInt(e.style.zIndex);}

        var agent = navigator.userAgent.toLowerCase();
        var os = navigator.platform.toLowerCase();
		
		var win = (os.indexOf('win32') != -1);
        var mac = (os.indexOf('mac') != -1);
        var ie = (agent.indexOf('msie') != -1);
        var ie5 = (agent.indexOf('msie 5') != -1);
        var ie6 = (agent.indexOf('msie 6') != -1);
        var nn = (agent.indexOf('netscape') != -1);
        var mz = (agent.indexOf('gecko') != -1 && !nn);
        var op  = (agent.indexOf('opera') != -1);	
        var op5  = (agent.indexOf('opera 5') != -1);
        var op6  = (agent.indexOf('opera 6') != -1);
		
onload = function() {
	
			one = gE("ONE");	
			two = gE("TWO");		
			three = gE("THREE");
			four = gE("FOUR");																																																																	

			sX(one,177);
			sY(one,3);
			sW(one,565);
			sH(one,70);
            sC(one,0,565,70,0);
            sE(one);
			sZ(one,5);
			
			sX(two,177);
			sY(two,3);
			sW(two,565);
			sH(two,70);
            sC(two,0,565,70,0);
            hE(two);
			sZ(two,5);
			
			sX(three,177);
			sY(three,3);
			sW(three,565);
			sH(three,70);
            sC(three,0,565,70,0);
            hE(three);
			sZ(three,5);
			
			sX(four,177);
			sY(four,3);
			sW(four,565);
			sH(four,70);
            sC(four,0,565,70,0);
            hE(four);
			sZ(four,5);
			
			setTimeout('startfade();',5000);
			}

			
function startfade() {
if (win)
              {
tjek_browser();
			  }
if (mac) {
showbanner_one();
}
}


function tjek_browser() {
if (ie)
{
tjek_opera();
}
else {
showbanner_one();
}
}

function tjek_opera() {
if (op) {
showbanner_one();
}
else {
fadebanner_one();
}
}

function fadebanner_one() {
ONE.filters.blendTrans.apply();
ONE.style.visibility="hidden";
ONE.filters.blendTrans.play();

TWO.filters.blendTrans.apply();
TWO.style.visibility="visible";
TWO.filters.blendTrans.play();
setTimeout('fadebanner_two();',5000);
}

function fadebanner_two() {
TWO.filters.blendTrans.apply();
TWO.style.visibility="hidden";
TWO.filters.blendTrans.play();

THREE.filters.blendTrans.apply();
THREE.style.visibility="visible";
THREE.filters.blendTrans.play();
setTimeout('fadebanner_three();',5000);
}

function fadebanner_three() {
THREE.filters.blendTrans.apply();
THREE.style.visibility="hidden";
THREE.filters.blendTrans.play();

FOUR.filters.blendTrans.apply();
FOUR.style.visibility="visible";
FOUR.filters.blendTrans.play();
setTimeout('fadebanner_four();',5000);
}

function fadebanner_four() {
FOUR.filters.blendTrans.apply();
FOUR.style.visibility="hidden";
FOUR.filters.blendTrans.play();

ONE.filters.blendTrans.apply();
ONE.style.visibility="visible";
ONE.filters.blendTrans.play();
setTimeout('fadebanner_one();',5000);
}

function showbanner_one() {
hE(one);
sE(two);
setTimeout('showbanner_two();',5000);
}

function showbanner_two() {
hE(two);
sE(three);
setTimeout('showbanner_three();',5000);
}

function showbanner_three() {
hE(three);
sE(four);
setTimeout('showbanner_four();',5000);
}

function showbanner_four() {
hE(four);
sE(one);
setTimeout('showbanner_one();',5000);
}
//-->