﻿$(document).ready(function() {
    $("div.focus a img.fade").hover(
        function() {
            $(this).fadeTo("fast", 0.8);
        },
        function() {
            $(this).fadeTo("fast", 1);
        }
    );
    $("div.focus h1").css("display", "none");
});

