/* Rozbalovaci --- */
jQuery(document).ready(function(){
	jQuery(".toggle-container").hide();
	jQuery(".trigger").click(function(){
		jQuery(this).toggleClass("trigger-ac").next().slideToggle("fast");
	});
});

/* Fancybox --- */
jQuery(document).ready(function() {
	jQuery("a.fancy").fancybox({
		'opacity'		: true,
		'overlayShow'	: false,
		'transitionIn'	: 'opacity',
		'transitionOut'	: 'opacity'
	});
	jQuery("a[rel=fancy-gallery]").fancybox({
    'transitionIn'		: 'opacity',
    'transitionOut'		: 'opacity',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});

jQuery( document ).ready( function ( $ ) {
	$('.breads li:last-child').addClass( 'last' );
	$('.lang li:first-child').addClass( 'first' );
	$('.text table tbody tr td:first-child').addClass( 'first' );
});
