﻿
//document.ready replaced with window.load to add compability with Opera
$(window).load( function() {
        var topHeight = $("#TopLeftBanner").height()

        if (topHeight > 150) {
            topHeight += 10;
            $("#downwardsPusherHackSoThePageLooksWhiteOnLoad").animate({ height: topHeight }, 100, function () {
                $("#TopLeftBanner").show();
            });
        }
        else {
            $("#TopLeftBanner").show();
        }
    });

