$(function() {
	$("table.zebra tr:even").addClass("even");
	$("table.zebra tr:odd").addClass("odd");
	$(".fb").colorbox();
	$("#nav").droppy( {
		speed : 350
	});

	// menu - animacja
	$('#nav li').css( {
		backgroundPosition : "0 -80px"
	}).mouseover(function() {
		$(this).stop().animate( {
			backgroundPosition : "(0 0)"
		}, {
			duration : 200
		})
	}).mouseout(function() {
		$(this).stop().animate( {
			backgroundPosition : "(0 -80px)"
		}, {
			duration : 200,
			complete : function() {
				$(this).css( {
					backgroundPosition : "0 -80px"
				});
			}
		});
	});

	// sponsorzy prawa kolumna
	theRotator();

	// lista sponsorow
	$('ul.sponsor li').hover(function() {
		$(this).find('img').animate( {
			top : '182px'
		}, {
			queue : false,
			duration : 500
		});
	}, function() {
		$(this).find('img').animate( {
			top : '0px'
		}, {
			queue : false,
			duration : 500
		});
	});

	$('#popup a').click(function() {
		$('#popup').hide();
	});

	var mecz = new Date();
	mecz = new Date(2010, 7 - 1, 11, 17, 30);
	$('#countdown').countdown( {
		until : mecz,
		format : 'dHM'
	});
	
	flowplayer("player", "/flowplayer-3.2.2.swf");
});