        $(document).ready(function() {  
            // Add the class 'button' just like in CSS with a dot in front of it  
            $('.buttonfb').append('<span class="hover"></span>').each(function () {  
                var $span = $('> span.hover', this).css('opacity', 0);  
                $(this).hover(function () {  
                    $span.stop().fadeTo(2500, 1); //Change the number 500 to change the speed of the Fade In  
                }, function () {  
            $span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out  
                });  
            });  
        });  
        
        $().ready(function() {   
   $('div.more').hide()
      .prev().toggle(function() {
            $(this).next().slideDown();
         }, function() {
            $(this).next().slideUp();
         });   
});

        
                $(document).ready(function() {  
            // Add the class 'button' just like in CSS with a dot in front of it  
            $('.buttondwa').append('<span class="hoverdwa"></span>').each(function () {  
                var $span = $('> span.hoverdwa', this).css('opacity', 0);  
                $(this).hover(function () {  
                    $span.stop().fadeTo(2500, 1); //Change the number 500 to change the speed of the Fade In  
                }, function () {  
            $span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out  
                });  
            });  
        });  
        
                        $(document).ready(function() {  
            // Add the class 'button' just like in CSS with a dot in front of it  
            $('.buttontri').append('<span class="hovertri"></span>').each(function () {  
                var $span = $('> span.hovertri', this).css('opacity', 0);  
                $(this).hover(function () {  
                    $span.stop().fadeTo(2500, 1); //Change the number 500 to change the speed of the Fade In  
                }, function () {  
            $span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out  
                });  
            });  
        });  
        
                                $(document).ready(function() {  
            // Add the class 'button' just like in CSS with a dot in front of it  
            $('.buttonostat').append('<span class="hoverostat"></span>').each(function () {  
                var $span = $('> span.hoverostat', this).css('opacity', 0);  
                $(this).hover(function () {  
                    $span.stop().fadeTo(2500, 1); //Change the number 500 to change the speed of the Fade In  
                }, function () {  
            $span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out  
                });  
            });  
        });  
        
                        $(document).ready(function() {  
            // Add the class 'button' just like in CSS with a dot in front of it  
            $('.buttonczt').append('<span class="hoverczt"></span>').each(function () {  
                var $span = $('> span.hoverczt', this).css('opacity', 0);  
                $(this).hover(function () {  
                    $span.stop().fadeTo(2500, 1); //Change the number 500 to change the speed of the Fade In  
                }, function () {  
            $span.stop().fadeTo(500, 0); //Change the number 500 to change the speed of the Fade Out  
                });  
            });  
        });  
        
$(document).ready(function(){
$(".thumb").hover(
function() {
$(this).stop().animate({"opacity": "0.1"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});

