﻿$(document).ready(function(){

	
	$(".fancybox").fancybox({
		'titlePosition' : 'over'
	});
	
	$('#hp div').hide();
	
	$('#lista-left .menu ul li a').click(function(event){
		
		
	
		if ($(this).parent().hasClass('active_parent'))
			{
				$(this).parent().removeClass('active_parent');
				$('ul:first',$(this).parent()).show();
			}
		$('ul:first',$(this).parent()).slideToggle('fast');
		
	});
	
	$('.fajfka').click(function(event){
		event.preventDefault()
		// alert(0);
		pocet = ($('.ks', $(this).parent().parent()).val());
		id = ($('.ks', $(this).parent().parent()).attr('rel'));
		
		
		if (Number(pocet) > 0)
		{
			$('#kosik').html('');
			$('#kosik').load('ajax/kosik', { 'id': id, 'mnozstvi': pocet }, function(){
				$('#vhozeno').click();
			});
		}
		else alert('Neplatný počet ks.');
	});

	$('.balicek').click(function(event){
		event.preventDefault()
		// alert(0);
		
		balicek_id = $(this).attr('rel');
		
		
		
			$('#kosik').html('');
			$('#kosik').load('ajax/kosik', { 'balicek_id': balicek_id }, function(){
				$('#vhozeno').click();
			});
		
	});
	
	$('.close-fancy').live("click", function(event){
		event.preventDefault();
		$.fancybox.close();
	});
	
			
});

$(window).ready(function(){
	
function go(){
	
	$('#hp1').fadeIn(1500,function(){
		$('#hp2').fadeIn(1500, function(){
			$('#hp3').fadeIn(1500, function(){
				$('#hp4').fadeIn(1500, function(){
					$('#hp5').fadeIn();
				});
			});
		});
	});
}

go();	

	
});

