$(document).ready(function() {
	$('.menuitem').mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition: "0 -55px"}, 
			{duration:200})
		}).mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"0 0"}, 
			{duration:200})
		}).click(function() {
			document.location = $(this).find('a').attr('href');
		});
	$('.menu_n').hover(function() {
		$(this).addClass('menu_h');
	}, function() {
		$(this).removeClass('menu_h');
	}).click(function() {
		document.location = $(this).find('a').attr('href');
	});
	niceTables();
});

function niceTables() {
	$('table').each(function() {
		var cpd = $(this).attr('cellpadding');
		var brd = $(this).attr('border');
		if(cpd == 4 && brd == 1) {
			/*$(this).css({border: '0'});
			$(this).find('*').css({border: '0', padding: '2'});
			$(this).find('p').css({padding: '0', margin: '0'});*/
			$(this).addClass('cennik');
			$(this).find('tbody tr:first td').css({backgroundColor: '#E9E9E9', borderBottom: '2px solid #333'});
			$(this).find('tbody tr').hover(function() {
				$(this).css('background-color', '#E9E9E9');
			}, function() {
				$(this).css('background-color', 'transparent');
			});
		}
	});
}

