﻿$(document).ready(function () {
    $('.copyright').fadeIn(500);

    $(".dtext").hover(function () {
        $(this).find("img").stop().fadeTo("fast", 0.75);
        $(this).addClass("dtextHover");
    }, function () {
        $(this).find("img").stop().fadeTo("fast", 1.0);
        $(this).removeClass("dtextHover");
    });
});
