$(document).ready(function() {

    if ($('#std-top').hasClass('showAll')) {
        setTimeout("$('#std-top a div').fadeIn()", 1000);
    } else {
        $('#std-top a').hover(function() {
            $(this).contents('div').fadeIn('fast');
        }, function() {
            $(this).contents('div').fadeOut('fast');
        });
    }
    function fadeBoxesIn() { $('#std-top a div').fadeIn(); }
});
