// JavaScript Document

function setOpacify0 (){
  $(".opacify0").fadeTo(1, 0);
  $(".opacify0").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("normal", 0);
    }
  );
}

