$(function () {
  $('.thumbs').hover(function() {
    $(this).fadeTo("normal", 0.70);
  }, function() {
    $(this).fadeTo("normal", 1);
  });
});


