$(document).ready(function() {
	$('#menu>li:last-child>a').addClass('ramkabrak');
	$('#submenu>li:last-child>a').addClass('ramkabrak');
	$('table tr:nth-child(odd)').addClass('tabela_parzyste');
	$('table tr td:last-child').addClass('tabela_ost_kol');
	$('table tr td').bind('mouseover', function() {
		$(this).parent().addClass('tabela_wyroznienie').css('background-color', 'red');
	});
	$('table tr td').bind('mouseout', function() {
		$(this).parent().removeClass('tabela_wyroznienie');
	});
});

$(document).ready(function() { //Menu dwu-poziomowe
	$('.menu_lv2').hide();
	
	$('#menu li').bind('mouseover', function() {
		$('#menu a').removeClass('hoover');
		$(this).children('a').addClass('hoover');
		$('.menu_lv2').hide();
		$(this).children().show();
	});
	$('#menu li').bind('mouseout', function() {
		$('.menu_lv2').hide();
	});
	
	$('#menu a').bind('mouseover', function() {
		$(this).hide();
		$(this).fadeIn(500);
	});
});															//Menu dwu-poziomowe END

$(document).ready(function() { //SubMenu dwu-poziomowe
	$('.submenu_lv2').hide();
	
	$('#submenu li').bind('mouseover', function() {
		$('#submenu a').removeClass('hoover');
		$(this).children('a').addClass('hoover');
		$('.submenu_lv2').hide();
		$(this).children().show();
	});
	$('#submenu li').bind('mouseout', function() {
		$('.submenu_lv2').hide();
	});
	$('#submenu a').bind('mouseover', function() {
		$(this).hide();
		$(this).fadeIn(500);
	});
});															//SubMenu dwu-poziomowe END

$(document).ready(function() {
	$('#zawartosc').hide();
	$('#zawartosc').animate({height: 'toggle', opacity: 'toggle'}, 1000);
	$('#kolumna_prawa>div').hide();
	$('#kolumna_prawa>div:nth-child(1)').fadeIn(2000);
	$('#kolumna_prawa>div:nth-child(2)').fadeIn(3000);
	$('#kolumna_prawa>div:nth-child(3)').fadeIn(4000);
});
