function ImageManager(){
  
  actual = $('#head_photogallery img:visible').fadeOut('1000');
  next = actual.next()
  if(next.length == 0){
    $('#head_photogallery img:first').fadeIn('1000');
  } else {
    next.fadeIn('1000');
  }
  window.setTimeout(ImageManager, '3000');  
  
}



$(document).ready(function() {
  if($('#head_photogallery img').length > 1){    
    $('#head_photogallery img').hide();
    $('#head_photogallery img:first').show();	
    window.setTimeout(ImageManager, '3000');  
  }
});



Abtera_Eshop_Kosik = {
  changeDoprava: function(id, cena, cena_zbozi, vysledek){
    $('#'+vysledek).html(cena+cena_zbozi);
    $('table.doprava tr td:last-child strong').removeClass('actual');
    $('#doprava_'+id).parent().next().children().addClass('actual');
  }
}
