// JavaScript Document

$(document).ready(function () {
  $(".opacify").fadeTo(1, 0.63);
  $(".opacify").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("normal", 0.63);
    }
  );
  
  $(".opacify_tn").fadeTo(1, 0.70);
  $(".opacify_tn").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("normal", 0.70);
    }
  );
  
  
});
