$(document).ready(function(){
    var opacity = 0.25;

    $('div#foot-case-studies, div#foot-latest-twitter, div#foot-get-involved, div#foot-home-center, div#foot-home-blog').each(function(){
        $(this).fadeTo(0.05, opacity);
    });

    $('div#foot-case-studies, div#foot-latest-twitter, div#foot-get-involved, div#foot-home-center, div#foot-home-blog').each(function(){
        $(this).hover(function(){
            $(this).fadeTo('normal', 1.0);
        }, function(){
            $(this).fadeTo('normal', opacity);
        });
    });
});