/**
* Výběr skrytých položek v objednávkovém formuláři
* Fancybox, obrázková galerie
* Listování v doporučených produktech
*/

$(document).ready(function(){
	
	var first = 0;
	var speed = 800;
	var pause = 5000;
	
		function removeFirst(){
			first = $('ul#doporucujeme li:first').html();
			$('ul#doporucujeme li:first')
			.animate({opacity: 0}, speed)
			.hide('slow', function() {$(this).remove();});
			addLast(first);
		}
		
		function addLast(first){
			last = '<li style="display:none">'+first+'</li>';
			$('ul#doporucujeme').append(last)
			$('ul#doporucujeme li:last')
			.animate({opacity: 1}, speed)
			.show('slow')
		}
	
	interval = setInterval(removeFirst, pause);
});
	
$(document).ready(function() {
	$("a[rel=fancybox]").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' : 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});

$(function () {
    $('#oZiFiremni').click(function () {
   	    company();
    });
   
    $('#oZiDorucovaci').click(function () {
   	    delivery();
    });
});
   
    function company() {
   	    if ($('#oZiFiremni:checked').length) {
   	       	$('#firemni_data').show('fast');
   	    } else {
   	       	$('#firemni_data').hide();   	   	
   	    }   	   
    }
   
    function delivery() {
   	    if ($('#oZiDorucovaci:checked').length) {
   	       	$('#dorucovaci_data').hide();
   	    } else {
   	       	$('#dorucovaci_data').show('fast');   	   	
   	    }   	   
    }
   
    $(function () {
        company();
        delivery();
    })

