/* novinky, akcie slide -------------------------------------------------------------- */


$(document).ready(function () {
	var default_content = $('#middle-content').html();
	
	
	var activate = 1;
	
	$('#no_1').click(function() {
		changeli(1);
	});
	$('#no_2').click(function() {
		changeli(2);	
	});
	$('#no_3').click(function() {
		changeli(3);
	});
	
	$('#cbtn').click(function () {
		$('#middle-content').html(default_content);
		$('a.novinka').removeClass('a-nov');
		$('div.close').addClass('hidden');
	});

	function changeli (activate) {		
		$('div.close').removeClass('hidden');
		var cont = $('#nov-1'+activate).html();
		var new_height = $('#nov-1'+activate).height();
		if(new_height < 270) new_height = 270;
		
		$('#middle-content').animate({
				height: new_height
			}, 500, function() {
			$('#middle-content').html(cont);
			// Animation complete.
		});

		$('a.novinka').removeClass('a-nov');
		$('a#no_'+activate).addClass('a-nov');	
	}
});



/* fotogaleria ------------------------------------------------------------------------- */
$(document).ready(function () {
	$(document).pngFix();  // png FIX 
	$("a.fancy-a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	/* iframe odkazy */
	$("div.cpage_body a.iframe").addClass('button');
});
