acc = {};
acc.counter = 0;
acc.files = ["fotka4.jpg","fotka2.jpg","fotka3.jpg","fotka1.jpg"];
acc.loaded=[];
acc.waitTime = 5000;
acc.fadeTime = 1000;
acc.dir = './img/baner/';
acc.div1 = '#div_top_1 img';
acc.div2 = '#div_top_2 img';

acc.animateSplash = function(){
    this.counter++;
    if(this.counter>=this.files.length){
        this.counter=0;
    }
    var nextImg =  $("<img></img>");
    $(nextImg).attr("src",acc.dir+acc.files[acc.counter]);
    $(nextImg).unbind("load");
    if(acc.loaded[acc.files[acc.counter]]==1){
	acc.animateSplash2()
    }else{
	$(nextImg).bind("load",function(){
	    acc.animateSplash2();
	});
    }
}

acc.animateSplash2 = function(){
    acc.loaded[acc.files[acc.counter]]=1;
    $(acc.div2).stop(true,true).hide(0,function(){
	    $(acc.div2).attr('src',acc.dir+acc.files[acc.counter]);
	    $(acc.div2).fadeIn(acc.fadeTime ,function(){
		    $(acc.div1).attr('src',acc.dir+acc.files[acc.counter]);
		    $(acc.div2).hide(0);
	    });

    });
    setTimeout("acc.animateSplash()", acc.waitTime);
}

$(document).ready(function(){
    setTimeout('acc.animateSplash()', acc.waitTime);
});

