

var boxes;
var curr_box = 0;

function changeBox(){
    $("#editBox .reklamaGlownaContent:eq(" + curr_box + ")").fadeOut("slow");
    $("#editBox a:eq(" + curr_box + ")").fadeOut("slow");
    
    
    curr_box++;
    if(curr_box == boxes) curr_box = 0;
    
    $("#editBox .reklamaGlownaContent:eq(" + curr_box + ")").fadeIn("slow");
    $("#editBox a:eq(" + curr_box + ")").fadeIn("slow");;
    

    setTimeout(changeBox, 10000);
}

$(document).ready(function(){
    // zliczenie ile boxow reklamowych mamy
    boxes = $("#editBox .reklamaGlownaContent").length;
    
    if(boxes > 1) setTimeout(changeBox, 10000);    
});



