$(document).ready(function () {

							
  $(".serie_piece").fadeTo(1, 0.3);
  $(".serie_piece").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("fast", 0.3);
    }
  );
  
   $(".home_piece").fadeTo(1, 0.7);
  $(".home_piece").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("fast", 0.7);
    }
  );
});