$(document).ready(function(){
 	$('#favouriteProducts')
		.jcarousel({
			animation: 'slow',
			scroll: 1,
			auto: 4,
			wrap: 'circular'
	});
	
	$('#favouriteCategories')
		.jcarousel({
			animation: 'slow',
			scroll: 1,
			auto: 4,
			wrap: 'circular'
	});
	
	/* Toggle pre zobrazenie viac informacii */

	var showText="Více";
	var hideText="Méně";

	$(".toggle").prev().append(' <a href="#" class="toggleLink">'+showText+'</a>');
	$('.toggle').hide();
	$('a.toggleLink').click(function() {

	if ($(this).html()==showText) {
		$(this).html(hideText);
	}
	else {
		$(this).html(showText);
	}

	$(this).parent().next('.toggle').toggle();
	return false;
	});	
});

