var motivy_id = 'motiv';
var motivy_dir = 'motivy';
var motivy_zmena_cas = 5000;
var motivy_efekt_cas = 800;

//-- ready
$(document).ready(function(){

  if(motivy_list[0]) {
    $('#'+motivy_id).css('background-image','url('+motivy_dir+'/'+motivy_list[0]+')').data('motiv_index', 0);
  }
  motivy_zmena();
  setInterval("motivy_zmena()", motivy_zmena_cas); 
});

function motivy_zmena(){
  var motiv_index = $('#'+motivy_id).data('motiv_index') + 1;
  if(!motivy_list[motiv_index]){
    motiv_index = 0;
  }
  if(motivy_list[motiv_index]){
    $('#clona').css('opacity',0);
    $('#clona').css('background-image','url('+motivy_dir+'/'+motivy_list[motiv_index]+')').data('motiv_index', motiv_index);
    $('#clona').animate({opacity: 1},motivy_efekt_cas,function(){
      $('#'+motivy_id).css('background-image','url('+motivy_dir+'/'+motivy_list[motiv_index]+')').data('motiv_index', motiv_index);
    });
  } 
}

