var widgets;

jQuery(document).ready(function($) {
    widgets = $('#feeds .widget');
    //widgets.fadeTo(0, 0);
    $('#footer .menu li').last().css('background', 'none');
    
    $('#slide_fade .verbatim').hover(function() {
        $(this).parent().parent().prev().children().addClass('hover')
    }, function() { 
        $(this).parent().parent().prev().children().removeClass('hover');
    });
});

jQuery(window).load(function($) {
    //var max = Math.max(widgets.eq(0).height(), widgets.eq(1).height(), widgets.eq(2).height());
    //widgets.height(max).fadeTo(400, 1);
});
