$(document).ready(function() {
	$('.testimonial').hide();
	$('.testimonial:first').show();
	var i = 0;
	setInterval(function() {
		if(i >= $('.testimonial').size() - 1) {
			$('.testimonial:eq(' + i + ')').hide();
			i = 0;
			$('.testimonial:eq(' + i + ')').fadeIn();
		} else {
			$('.testimonial:eq(' + i + ')').hide();
			i++;
			$('.testimonial:eq(' + i + ')').fadeIn();
		}
	}, 6000);
	
	$('#imInterested').hide();
	$('a.imInterested').click(function(e) {
		$('#showIntro').hide();
		$('#imInterested').fadeIn();
		e.preventDefault();
	});

	$('a.showIntro').click(function(e) {
		$('#imInterested').hide();
		$('#showIntro').fadeIn();
		e.preventDefault();
	});

	$('#myModal').reveal();

	/** Podrobne informace */
	$("a.showInfo").live("click", function (e) {
		$('.infoBox').hide();
		$('#' + this.href.split('#')[1]).fadeIn('fast');
		$(this).parent().parent().find('li.active').removeClass();
		$(this).parent().addClass('active');
		e.preventDefault();
	});
	
	if(window.location.hash != '') {
		$('.infoBox').hide();
		$(window.location.hash).fadeIn('fast');
		$('li.active').removeClass();
		$('a[href=' + window.location.hash + ']').parent().addClass('active');
	}

	/** Cena / licence */
	$('.showLicenseContent').click(function(e) {
		e.preventDefault();
		
		$(this).parent().find('.licenseContent').reveal();
		
	});

});
