function getData(index){
//  console.log(index);
  var time = new Date().getTime();
  if((index %4) == 0){
    $("#basic_slideshow").load('templates/drb.hu/chip1.html?'+ time, function() {});
    index++;
    setTimeout("getData("+index+")", 19500);
    return;
  }
  else if((index %4) == 1){
    $("#basic_slideshow").load('templates/drb.hu/dombor1.html?'+ time, function() {});
    index++;
    setTimeout("getData("+index+")", 18500);
    return;
  }
  else if((index % 4) == 2){
    $("#basic_slideshow").load('templates/drb.hu/akcios.html?'+ time, function() {});
    index++;
    setTimeout("getData("+index+")", 19000);
    return;
  }
  else if((index % 4) == 3){
    $("#basic_slideshow").load('templates/drb.hu/miamano.html?' + time, function() {});
    index++;
    setTimeout("getData("+index+")", 31000);
    return;
  }
  
}

