$().ready(function() {   
   $('div.more').fadeOut(6500)
      .prev().toggle(function() {
            $(this).next().fadeIn().slideDown();
         }, function() {
            $(this).next().fadeOut().slideUp();
         });   
});

$().ready(function() {   
   $('div.pokazuj').fadeOut()
      .prev().toggle(function() {
            $(this).next().fadeIn().slideDown();
         }, function() {
            $(this).next().fadeOut().slideUp();
         });   
});


$().ready(function() {   
   $('div.infomore').show()
      .prev().toggle(function() {
            $(this).next().fadeOut();
         }, function() {
            $(this).next().fadeIn();
         });   
});

$().ready(function() {   
   $('div.infomore2').fadeOut()
      .prev().toggle(function() {
            $(this).next().fadeIn();
         }, function() {
            $(this).next().fadeOut(500);
         });   
});

$().ready(function() {   
   $('div.nawigacjalewa').fadeTo(4500, 0.45)
      .prev().toggle(function() {
            $(this).next().fadeTo('slow', 1);
         }, function() {
            $(this).next().fadeTo('slow', 0.45);
         });   
});

$().ready(function() {   
   $('div.nawigacjaprawa').fadeTo(4500, 0.45)
      .prev().toggle(function() {
            $(this).next().fadeTo('slow', 1);
         }, function() {
            $(this).next().fadeTo('slow', 0.45);
         });   
});

$().ready(function() {   
   $('div.szukajkajs').fadeTo(4500, 0.55)
      .prev().toggle(function() {
            $(this).next().fadeTo('slow', 1);
         }, function() {
            $(this).next().fadeTo('slow', 0.45);
         });   
});

