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

$().ready(function() {   
   $('div.morePanel').hide()
      .prev().toggle(function() {
            $(this).next().slideDown();
         }, function() {
            $(this).next().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').show()
      .prev().toggle(function() {
            $(this).next().fadeOut();
         }, function() {
            $(this).next().fadeIn();
         });   
});

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

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

$().ready(function() {   
   $('div.contentfade').fadeTo(4000, 0.4)
      .prev().toggle(function() {
            $(this).next().fadeTo('slow', 1);
         }, function() {
            $(this).next().fadeTo('slow', 0.75);
         });   
});

