// jquery system
$(document).ready(function(){

//-------------------------- menu ---------------------------------------------------------
	  $(".boczek").hover(function()
		{
			$img = $(this).find('img');
			$img.animate({width:"-=20", height:"-=20"},100);
		},function()
		{
	$img = $(this).find('img');
			$img.animate({width:"+=20", height:"+=20"},100);
			$p = $(this).find('p');
		});

//end document.ready	
});

