$(document).ready(function() {
	$('#menu a').mouseover(function(){$(this).find('img').attr('src', $(this).find('img').attr('src').replace('1.png', '2.png'))}).mouseout(function(){$(this).find('img[src$=".png"]').attr('src', $(this).find('img').attr('src').replace('2.png', '1.png'))});


	$('a.green-button').append('<img src="/img/buttons/bg1r.jpg" />');
	
	
	$('.infZasady .cont').hide();
	
	$('.infZasady a.toggle').data('status', 'hide').each(function(){$(this).find('img').attr('src', $(this).find('img').attr('src').replace('-', '+'));}).click(function(event){
		event.preventDefault();
		
		if ($(this).data('status')=='hide') {
			$('.infZasady #zs'+$(this).data('id')).show();
			$(this).data('status', 'show');
			$(this).find('img').attr('src', $(this).find('img').attr('src').replace('+', '-'));
		} else {
			$('.infZasady #zs'+$(this).data('id')).hide();
			$(this).data('status', 'hide');
			$(this).find('img').attr('src', $(this).find('img').attr('src').replace('-', '+'));
		}
	});
	
	$('.aaa img').each(function(i){
		$(this).click(function() {
			$('body, td, th').css('font-size', (12+i)+'px');
		});
	});
});

