var timer=true;

$(function() {
  $(".pozadi").hide();
  $(".pozadi").first().show();  
  $("#stred").find("a.pozadi-titulka-right").click(function(){
  	timer=false;
	posun();
  });
  
  $("#stred").find("a.pozadi-titulka-left").click(function(){
  	timer=false;
    if($(".pozadi:first").is(":visible")){
      $(".pozadi:visible").fadeOut("slow");
      $(".pozadi:last").fadeIn("slow");
    }else{
      $(".pozadi:visible").fadeOut("slow").prev().fadeIn("slow");  
    }
  });
  
  $(document).everyTime(rychlost,function(){
  	if(timer==true){
  		posun();
  	}
  	});
})


function posun(){
  if($(".pozadi:last").is(":visible")){
    $(".pozadi:visible").fadeOut("slow");
    $(".pozadi:first").fadeIn("slow");
  }else{
    $(".pozadi:visible").fadeOut("slow").next().fadeIn("slow");  
  }
  
  if($(".puntik:last").is(".on")){
    $(".puntik.on").removeClass("on");
    $(".puntik:first").addClass("on");
  }else{
    $(".puntik.on").removeClass("on").next().addClass("on");
      
  }
}
