$(document).ready(function() {
 
 $('#menu-poziome li a').hover(function() {
  $(this).animate({
   paddingBottom: 12,
   bottom: 12
  }, 300);
 }, function() {
  $(this).stop().animate({
   paddingBottom: 0,
   bottom: 0
  }, 200);
 });
 
 if ($.browser.msie) {
  
  $('#menu-poziome li:has(img), #menu-pionowe li:has(img)').each(function() {
   var address = $(this).find('a').attr('href');
   $(this).find('a span img').wrap($('<a href="' + address + '"></a>').css('height', 'auto').css('padding', 0).css('bottom', 0));
  });
  
 }
 
});

