  $(document).ready(function() {
        $(".thumbs img").fadeTo("fast", 0.7);
        $(".thumbs img").hover(function() {
            $(this).fadeTo("fast", 1.0);
        }, function() {
            $(this).fadeTo("fast", 0.7);
        });
    });
