$(document).ready(function(){											

	$("a[rel='fancybox']").fancybox({ 'zoomSpeedIn': 1000, 'zoomSpeedOut': 500, 'overlayShow': true, 'hideOnContentClick': true, 'easingIn': 'easeOutBack', 'easingOut': 'easeInBack' });
	
	$('.zebra tr:nth-child(odd)').addClass('zebruj');
	
	$(".zebra tr").hover(function() {
			$(this).addClass("highlight");
		},function(){
			$(this).removeClass("highlight");
	});
	
	$("#menu a em, #submenu a em").css("top", "0").hide();
	
	$("#menu a").hover(function() {
			$(this).find("em:not(:animated)").animate({opacity: "show"}, "slow");
		}, function() {
			$(this).children().animate({opacity: "hide"}, "slow");
	});
		
	$("#submenu a").hover(function() {
			$(this).children("em:not(:animated)").stop().animate({opacity: "show"}, "slow");
		}, function() {
			$(this).children().animate({opacity: "hide"}, "slow");
	});
	
//	$('.l1').cycle({ 
//    fx: 'fade', 
//    speed: 2000,
//		timeout: 9000,
//		delay: -6000 
// 	});
//	$('.l2').cycle({ 
//    fx: 'fade', 
//    speed: 2000,
//		timeout: 9000, 
//		delay: -3000 
// 	});
//	$('.l3').cycle({ 
//    fx: 'fade', 
//    speed: 2000,
//		timeout: 9000 
// 	});
		
});