$().ready(function() {   
   $('div.shade').fadeTo(10000, 0.3)
      .prev().toggle(function() {
            $(this).next().slideDown();
         }, function() {
            $(this).next().slideUp();
         });   
});

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

$().ready(function() {   
   $('div.komunikaciory2').fadeTo(6000, 0.75, function(){ //fade
             $(this).fadeOut("slow", function() { //slide up
                 $(this).remove(); //then remove from the DOM
             });
         });
});

$().ready(function() {   
   $('div.komunikaciory3').fadeTo(6900, 0.75, function(){ //fade
             $(this).fadeOut("slow", function() { //slide up
                 $(this).remove(); //then remove from the DOM
             });
         });
});

$().ready(function() {   
   $('div.after').fadeTo(5000, 1.0, function(){ //fade
             $(this).slideUp("slow", function() { //slide up
                 $(this).remove(); //then remove from the DOM
             });
         });
});

$().ready(function(){
$(".thumbs").fadeTo(3000, 0.45); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$(".thumbs").hover(function(){
$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("slow", 0.45); // This should set the opacity back to 60% on mouseout
});
});


$().ready(function(){
$(".thumbs2").fadeTo(3000, 0.05); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$(".thumbs2").hover(function(){
$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("slow", 0.05); // This should set the opacity back to 60% on mouseout
});
});

